Clean up protocol and mail backend selection.
authorMichael Poole <mdpoole@troilus.org>
Sun, 11 Mar 2007 15:17:57 +0000 (11:17 -0400)
committerMichael Poole <mdpoole@troilus.org>
Sun, 11 Mar 2007 15:17:57 +0000 (11:17 -0400)
configure.in: Allow easier selection of protocol and mail backends.

configure.in

index 57deaaeb5b2eb80f3cec29a5fa8d1092ef3384ac..4f47987b62706cbf270d67cf6bcc9ea839109d76 100644 (file)
@@ -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