From fcbdadd235248efb65f2da768b54b838ea43059f Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Sun, 11 Mar 2007 11:17:57 -0400 Subject: [PATCH] Clean up protocol and mail backend selection. configure.in: Allow easier selection of protocol and mail backends. --- configure.in | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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 -- 2.20.1