diff options
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/play.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 22cabbd..3855060 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,7 @@ AC_INIT([libplay], [1.0], [vcaputo@pengaru.com]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC +AC_CONFIG_HEADERS([config.h]) AM_PROG_CC_C_O AM_PROG_AR AC_PROG_RANLIB @@ -21,6 +21,8 @@ #include <stdint.h> #include <stdlib.h> /* exit, atexit */ +#include "config.h" + #include "macros.h" #include "play.h" |