From: Michael Poole Date: Sun, 11 Mar 2007 19:53:56 +0000 (-0400) Subject: Restore checks for WITH_PROTOCOL_BAHAMUT. X-Git-Tag: v1.4.0-rc1~57 X-Git-Url: http://git.pk910.de/?p=srvx.git;a=commitdiff_plain;h=8f9e8c8d9bd7a28b9a099a77f9802f491c1d24a4 Restore checks for WITH_PROTOCOL_BAHAMUT. --- diff --git a/configure.in b/configure.in index 4f47987..5ca8652 100644 --- a/configure.in +++ b/configure.in @@ -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)"