diff options
author | Stef Walter <stef@memberwebs.com> | 2006-03-31 20:32:35 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-03-31 20:32:35 +0000 |
commit | 1bb0c82c015120449ce8d9440a28a7973f85b87a (patch) | |
tree | 721d972fd36f696a72f3922d5a0ed2dc254e1d64 | |
parent | abaa38cdf786bbecf4050a7edb2e6c6db3f789bf (diff) |
Update the build somewhat.
-rw-r--r-- | ChangeLog (renamed from CHANGES) | 0 | ||||
-rw-r--r-- | configure.in | 14 |
2 files changed, 2 insertions, 12 deletions
diff --git a/configure.in b/configure.in index 40e6806..1a519be 100644 --- a/configure.in +++ b/configure.in @@ -4,8 +4,8 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(nullpop, 0.1, nielsen@memberwebs.com) AM_INIT_AUTOMAKE(nullpop, 0.1) -dnl Process this file with autoconf to produce a configure script. -AC_INIT(nullpop.c) +AC_CONFIG_SRCDIR([nullpop.c]) +AM_CONFIG_HEADER([config.h]) dnl Checks for programs. AC_PROG_CC @@ -20,20 +20,10 @@ AC_CHECK_HEADERS(fcntl.h limits.h paths.h sys/file.h sys/time.h syslog.h unistd. dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T -AC_HEADER_TIME -AC_TYPE_UID_T dnl Checks for library functions. AC_FUNC_ALLOCA AC_TYPE_SIGNAL AC_CHECK_FUNCS(gethostname select socket strdup strerror strstr) -AC_ARG_ENABLE(debug, -[ --enable-debug enable debugging messages and logging.], -[ -AC_MSG_RESULT(debugging enabled) -AC_DEFINE(DEBUG) -],) - -AC_CONFIG_HEADER(config.h) AC_OUTPUT(Makefile) |