Greatly enhance the slab allocator.
[srvx.git] / configure.in
index 4f47987b62706cbf270d67cf6bcc9ea839109d76..31c82aa7ac180f06cf040c7dc06b77482454db0a 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to create a configure script.
 
 dnl General initialization.
 AC_PREREQ(2.59)
-AC_INIT([srvx],[1.3.1],[srvx-bugs@lists.sourceforge.net])
+AC_INIT([srvx],[1.4.0],[srvx-bugs@lists.sourceforge.net])
 CODENAME=surge
 AC_CONFIG_HEADERS(src/config.h)
 AC_CONFIG_SRCDIR(src/opserv.c)
@@ -83,7 +83,7 @@ AC_CHECK_MEMBER([struct addrinfo.ai_flags],
 #include <netdb.h>])
 
 dnl We have fallbacks in case these are missing, so just check for them.
-AC_CHECK_FUNCS(freeaddrinfo getaddrinfo gai_strerror getnameinfo getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit getopt getopt_long regcomp regexec regfree sysconf inet_aton epoll_create select gettimeofday times GetProcessTimes,,)
+AC_CHECK_FUNCS(freeaddrinfo getaddrinfo gai_strerror getnameinfo getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit getopt getopt_long regcomp regexec regfree sysconf inet_aton epoll_create select gettimeofday times GetProcessTimes mprotect,,)
 
 dnl Check for the fallbacks for functions missing above.
 if test $ac_cv_func_gettimeofday = no; then
@@ -239,6 +239,10 @@ if test "x$withval" = "xp10" ; then
   AC_MSG_RESULT([P10])
   AC_DEFINE(WITH_PROTOCOL_P10, 1, [Define if using the P10 dialect of IRC])
   MODULE_OBJS="$MODULE_OBJS proto-p10.\$(OBJEXT)"
+elif test "x$withval" = "xbahamut" ; then
+  AC_MSG_RESULT([Bahamut])
+  AC_DEFINE(WITH_PROTOCOL_BAHAMUT, 1, [Define if using the Bahamut dialect of IRC])
+  MODULE_OBJS="$MODULE_OBJS proto-bahamut.\$(OBJEXT)"
 elif test -r "${srcdir}/src/proto-${withval}.c" ; then
   AC_MSG_RESULT([$withval])
   MODULE_OBJS="$MODULE_OBJS proto-${withval}.\$(OBJEXT)"