Get rid of trailing whitespace in coverage scripts.
[srvx.git] / configure.in
index 57deaaeb5b2eb80f3cec29a5fa8d1092ef3384ac..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)
@@ -236,13 +236,16 @@ 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_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 +256,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