Search notes:

AC_DEFINE

AC_DEFINE([VAR], [Value], [Comment on var])
writes
/* Comment on var */
#define VAR Value
to config.h.

Index