diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7ac1a6b..f563e42 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,10 @@ AC_PREREQ([2.66]) AC_INIT([NetNuke], [2.0.2], [jhunkeler@gmail.com], [netnuke], [https://github.com/jhunkeler/NetNuke]) AM_INIT_AUTOMAKE(1.11.1) -AM_MAINTAINER_MODE + AC_CONFIG_SRCDIR([src/netnuke.c]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_SUBDIRS([sysfsutils]) CFLAGS="-Wall -O2 -I../include -static" LDFLAGS="-lpthread -lrt" @@ -18,7 +19,7 @@ AC_CHECK_LIB([pthread], [pthread_create], [], [AC_MSG_ERROR([required library pthread missing])]) # Checks for header files. -AC_CHECK_HEADERS_ONCE([fcntl.h stdlib.h string.h sys/ioctl.h unistd.h sysfs/libsysfs.h]) +AC_CHECK_HEADERS_ONCE([fcntl.h stdlib.h string.h sys/ioctl.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_UID_T |