From: Kevin Bowling Date: Sun, 2 Jan 2011 13:35:05 +0000 (-0700) Subject: evconfig-private.h with recusive configure subdirs X-Git-Tag: release-2.1.1-alpha~320^2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed53d5ef8053af08186ef80dfc1647cff769fac8;p=libevent evconfig-private.h with recusive configure subdirs --- diff --git a/configure.in b/configure.in index bd9ad7fc..021eb0f7 100644 --- a/configure.in +++ b/configure.in @@ -608,5 +608,6 @@ if test x$enable_gcc_warnings = xyes; then fi +AC_CONFIG_SUBDIRS( [evconfig-private] ) AC_CONFIG_FILES( [libevent.pc libevent_openssl.pc libevent_pthreads.pc] ) AC_OUTPUT(Makefile include/Makefile test/Makefile sample/Makefile) diff --git a/evconfig-private/configure.in b/evconfig-private/configure.in new file mode 100644 index 00000000..a14e0945 --- /dev/null +++ b/evconfig-private/configure.in @@ -0,0 +1,17 @@ +dnl private configure.in for libevent +dnl Kevin Bowling +AC_PREREQ(2.59c) +AC_INIT(configure.in) + +AC_CONFIG_HEADER(config.h) + +dnl Try and get a full POSIX environment on obscure systems +ifdef([AC_USE_SYSTEM_EXTENSIONS], [ +AC_USE_SYSTEM_EXTENSIONS +], [ +AC_AIX +AC_GNU_SOURCE +AC_MINIX +]) + +AC_OUTPUT