Store git version string to a C file, not a header.
[srvx.git] / configure.in
index 4f47987b62706cbf270d67cf6bcc9ea839109d76..c275ea09828103d6b6125bfe6698f20a27b7c1ec 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],[srvx-bugs@lists.sourceforge.net])
 CODENAME=surge
 AC_CONFIG_HEADERS(src/config.h)
 AC_CONFIG_SRCDIR(src/opserv.c)
@@ -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)"