From: Michael Poole Date: Sun, 11 Mar 2007 15:17:57 +0000 (-0400) Subject: Clean up protocol and mail backend selection. X-Git-Tag: v1.4.0-rc1~62 X-Git-Url: http://git.pk910.de/?p=srvx.git;a=commitdiff_plain;h=fcbdadd235248efb65f2da768b54b838ea43059f Clean up protocol and mail backend selection. configure.in: Allow easier selection of protocol and mail backends. --- diff --git a/configure.in b/configure.in index 57deaae..4f47987 100644 --- a/configure.in +++ b/configure.in @@ -236,13 +236,12 @@ AC_ARG_WITH(protocol, [], [withval="p10"]) if test "x$withval" = "xp10" ; then - AC_MSG_RESULT(P10) + 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)" else AC_MSG_ERROR([Unknown IRC dialect $withval]) fi @@ -253,9 +252,9 @@ AC_ARG_WITH(mail, sendmail (the default)], [], [withval="sendmail"]) -if test "x$withval" = "xsendmail" ; then - AC_MSG_RESULT(sendmail) - MODULE_OBJS="$MODULE_OBJS mail-sendmail.\$(OBJEXT)" +if test -r "${srcdir}/src/mail-${withval}.c" ; then + AC_MSG_RESULT([$withval]) + MODULE_OBJS="$MODULE_OBJS mail-${withval}.\$(OBJEXT)" else AC_MSG_ERROR([Unknown mail method $withval]) fi