From 75c03ef2312398560c05800d35ffffe0fe15ef7e Mon Sep 17 00:00:00 2001 From: Lindsay Date: Sat, 6 Jan 2018 16:13:00 -0600 Subject: Added contrib/mailman-config.py and changes to configure.in and configure to support it. mailman-config.py is added to the build/contrib directory when configure is run, and when executed, emits, to stdout, a number of useful configuration options, including the option string provided to configure at build time. This is useful when updating Mailman 2, or when trying to synchronize a manual install of Mailman with a distribution's FHS. --- configure.in | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index f7bb7919..ead04a3a 100644 --- a/configure.in +++ b/configure.in @@ -23,6 +23,10 @@ AC_INIT(src/common.h) # /usr/local/mailman is the default installation directory AC_PREFIX_DEFAULT(/usr/local/mailman) +CONFIGURE_OPTS=`echo $@` +AC_SUBST(CONFIGURE_OPTS) +BUILD_DATE=`date` +AC_SUBST(BUILD_DATE) # Check for Python! Better be found on $PATH AC_MSG_CHECKING(for --with-python) @@ -135,6 +139,17 @@ $PYTHON conftest.py needemailpkg=`cat conftest.out` rm -f conftest.out conftest.py +cat > getver.py < Date: Sat, 6 Jan 2018 22:18:27 -0600 Subject: Configured source to put mailman-config in bin rather than contrib. Changed the name from mailman-config.py to mailman-config. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index ead04a3a..4946367b 100644 --- a/configure.in +++ b/configure.in @@ -720,13 +720,13 @@ bin/unshunt \ bin/update \ bin/version \ bin/withlist \ +bin/mailman-config \ bin/b4b5-archfix \ bin/rb-archfix \ contrib/check_perms_grsecurity.py \ contrib/qmail-to-mailman.py \ contrib/courier-to-mailman.py \ contrib/rotatelogs.py \ -contrib/mailman-config.py \ cron/bumpdigests \ cron/checkdbs \ cron/cull_bad_shunt \ -- cgit v1.2.3 From 88da2bf6b172587f9e42c8730b7d4a6f97b91c90 Mon Sep 17 00:00:00 2001 From: Lindsay Date: Wed, 10 Jan 2018 23:03:17 -0600 Subject: Added appropriate FSF Copyright notices --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 4946367b..e4956674 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2008 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2018 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License -- cgit v1.2.3