summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-03-14 19:10:44 +0000
committerbwarsaw2002-03-14 19:10:44 +0000
commit78e67a062c790a727305ebb258bd1c83f20b9a83 (patch)
tree1bda6306a7fc374c33c8fa752565e04154ae8f06
parent423e7002635ed30387ed33bcc1a492acad533a39 (diff)
downloadmailman-78e67a062c790a727305ebb258bd1c83f20b9a83.tar.gz
mailman-78e67a062c790a727305ebb258bd1c83f20b9a83.tar.zst
mailman-78e67a062c790a727305ebb258bd1c83f20b9a83.zip
-rwxr-xr-xconfigure8
-rw-r--r--configure.in8
2 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index 5920a0038..ffd7a3a49 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 2.21
+# From configure.in Revision: 2.22
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
@@ -1315,7 +1315,7 @@ then
if eval "test \"`echo '$''{'ac_cv_group_mail'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
- ac_cv_group_mail="other mail daemon"
+ ac_cv_group_mail="mailman other mail daemon"
fi
else
@@ -1479,14 +1479,14 @@ echo $ac_n "checking for email host name""... $ac_c" 1>&6
echo "configure:1480: checking for email host name" >&5
if test -z "$FQDN"
then
- FQDN=`head -1 conftest.out`
+ FQDN=`sed q conftest.out`
fi
echo "$ac_t""$FQDN" 1>&6
echo $ac_n "checking for web host name""... $ac_c" 1>&6
echo "configure:1487: checking for web host name" >&5
if test -z "$URL"
then
- URL=`tail -1 conftest.out`
+ URL=`sed -n '$p' conftest.out`
fi
echo "$ac_t""$URL" 1>&6
rm -f conftest.out conftest.py
diff --git a/configure.in b/configure.in
index a09e2b60a..958e5840e 100644
--- a/configure.in
+++ b/configure.in
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
dnl Process this file with autoconf to produce a configure script.
-AC_REVISION($Revision: 4885 $)
+AC_REVISION($Revision: 4938 $)
AC_PREREQ(2.0)
AC_INIT(src/alias-wrapper.c)
@@ -332,7 +332,7 @@ AC_ARG_WITH(mail-gid, dnl
if test -z "$with_mail_gid"
then
AC_CACHE_VAL(ac_cv_group_mail, [dnl
- ac_cv_group_mail="other mail daemon"])
+ ac_cv_group_mail="mailman other mail daemon"])
else
ac_cv_group_mail=$with_mail_gid
fi
@@ -421,13 +421,13 @@ changequote([, ])
AC_MSG_CHECKING(for email host name)
if test -z "$FQDN"
then
- FQDN=`head -1 conftest.out`
+ FQDN=`sed q conftest.out`
fi
AC_MSG_RESULT($FQDN)
AC_MSG_CHECKING(for web host name)
if test -z "$URL"
then
- URL=`tail -1 conftest.out`
+ URL=`sed -n '$p' conftest.out`
fi
AC_MSG_RESULT($URL)
rm -f conftest.out conftest.py