diff options
author | Alan Brault <alan.brault@incruentatus.net> | 2010-12-07 18:46:06 -0500 |
---|---|---|
committer | Alan Brault <alan.brault@incruentatus.net> | 2010-12-07 18:46:06 -0500 |
commit | 78d2728b5b5a50cb72db8d14b46cf86284aea03b (patch) | |
tree | b7993b2b5ecc83a7292b46ca8272f69221e4cc77 /configure.ac | |
parent | a70b36f98f42924c36d6b14cd10fb874d6a8c779 (diff) | |
download | NetNuke2-78d2728b5b5a50cb72db8d14b46cf86284aea03b.tar.gz |
Fully integrate libsysfs into NetNuke (it compiles and links correctly)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b21fe1d..da78ffb 100644 --- a/configure.ac +++ b/configure.ac @@ -4,9 +4,11 @@ AM_INIT_AUTOMAKE(1.11.1) AC_CONFIG_SRCDIR([src/netnuke.c]) AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_SUBDIRS([sysfsutils]) # Checks for programs. +AC_PROG_LIBTOOL +AC_SUBST(LIBTOOL_DEPS) + AC_PROG_CC_C99 AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([no C99 compiler found. Aborting.])]) @@ -25,6 +27,6 @@ AC_TYPE_UID_T AC_FUNC_MALLOC AC_CHECK_FUNCS_ONCE([memmove memset strerror strncasecmp]) -AC_CONFIG_FILES([Makefile src/Makefile]) +AC_CONFIG_FILES([Makefile libsysfs/Makefile src/Makefile]) AC_OUTPUT |