We'll always use sendmail (spost) now
[mmh] / configure.in
index e93e173..44f07b3 100644 (file)
@@ -5,7 +5,7 @@ dnl
 dnl Move this up a bit
 AC_PREREQ(2.61)
 
-AC_INIT(nmh, m4_normalize(m4_include([VERSION])))
+AC_INIT(mmh, m4_normalize(m4_include([VERSION])))
 AC_CONFIG_SRCDIR(h/nmh.h)
 AC_CONFIG_HEADER(config.h)
 
@@ -165,18 +165,9 @@ else
 fi
 
 dnl What method of posting should post use?
-AC_ARG_WITH(mts,
-  AS_HELP_STRING([--with-mts=@<:@smtp|sendmail@:>@],
-  [specify the default mail transport agent/service]))
-
-if test x"$with_mts" = x"smtp"; then
-  MTS="smtp"
-elif test x"$with_mts" = x"sendmail"; then
-  MTS="sendmail"
-else
-  MTS="smtp"
-fi
-AC_SUBST(MTS)dnl
+dnl We'll always use sendmail now. (mmh)
+MTS="sendmail"
+dnl #AC_SUBST(MTS)dnl
 
 dnl Both the smtp and sendmail mail transport services use the smtp code
 AC_DEFINE(SMTPMTS, 1,
@@ -202,9 +193,10 @@ fi
 AC_SUBST(smtpservers)dnl
 
 dnl ----------------------------------------------------
-dnl Default location is /usr/local/nmh/{bin,etc,lib,man}
+dnl Default location is /usr/local/mmh/{bin,etc,lib,share/man}
 dnl ----------------------------------------------------
-AC_PREFIX_DEFAULT(/usr/local/nmh)
+AC_PREFIX_DEFAULT(/usr/local/mmh)
+
 
 dnl ------------------
 dnl CHECK THE COMPILER