From ed53d5ef8053af08186ef80dfc1647cff769fac8 Mon Sep 17 00:00:00 2001 From: Kevin Bowling Date: Sun, 2 Jan 2011 06:35:05 -0700 Subject: [PATCH] evconfig-private.h with recusive configure subdirs --- configure.in | 1 + evconfig-private/configure.in | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 evconfig-private/configure.in 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 -- 2.50.1