From: Tom C. <tom...@us...> - 2004-06-13 01:48:26
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30677 Modified Files: Tag: stable-1_2 ChangeLog configure.in configure Log Message: Remove --enable-true-path from configure (no longer used). Index: ChangeLog =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/ChangeLog,v retrieving revision 1.15.2.12 retrieving revision 1.15.2.13 diff -u -d -r1.15.2.12 -r1.15.2.13 --- ChangeLog 12 Jun 2004 21:28:04 -0000 1.15.2.12 +++ ChangeLog 13 Jun 2004 01:48:14 -0000 1.15.2.13 @@ -21,6 +21,7 @@ - Display aliases with "-default" in the name. - Use "# delete" instead of "|/bin/true delete" for blackholed accounts. + - Remove --enable-true-path from configure (no longer used). 1.2.1 - released 10-Feb-04 Index: configure =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure,v retrieving revision 1.14.2.3 retrieving revision 1.14.2.4 diff -u -d -r1.14.2.3 -r1.14.2.4 --- configure 18 Feb 2004 18:43:35 -0000 1.14.2.3 +++ configure 13 Jun 2004 01:48:15 -0000 1.14.2.4 @@ -848,7 +848,6 @@ --enable-imagedir=DIR Where to put the image files DocumentRoot/images/qmailadmin. --enable-htmllibdir=DIR qmailadmin HTML library directory. --enable-qmaildir=DIR directory where qmail is installed. - --enable-true-path=PATH Path to 'true' binary. --enable-ezmlmdir=PATH Path to ezmlm binaries or =n to disable. --enable-cgipath=PATH URL path for cgi /cgi-bin/qmailadmin. --enable-autoresponder-path=PATH Path to autoresponder directory. @@ -4620,34 +4619,6 @@ _ACEOF -true_path="" -for f in /bin /usr/bin /usr/local/bin -do - if test -f $f/true - then - true_path=$f - fi -done -# Check whether --enable-true-path or --disable-true-path was given. -if test "${enable_true_path+set}" = set; then - enableval="$enable_true_path" - true_path="$enableval" -else - - if test "$true_path" = "" - then - { { echo "$as_me:$LINENO: error: Unable to find 'true' binary, specify --enable-true-path." >&5 -echo "$as_me: error: Unable to find 'true' binary, specify --enable-true-path." >&2;} - { (exit 1); exit 1; }; } - fi - -fi; - -cat >>confdefs.h <<_ACEOF -#define TRUE_PATH "$true_path" -_ACEOF - - ezmlmdir="" for f in /usr/local/bin/ezmlm /usr/bin /usr/sbin /usr/local/bin do Index: configure.in =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/configure.in,v retrieving revision 1.15.2.3 retrieving revision 1.15.2.4 diff -u -d -r1.15.2.3 -r1.15.2.4 --- configure.in 18 Feb 2004 18:43:35 -0000 1.15.2.3 +++ configure.in 13 Jun 2004 01:48:15 -0000 1.15.2.4 @@ -176,24 +176,6 @@ ] ) AC_DEFINE_UNQUOTED(QMAILDIR,"$qmaildir","") -true_path="" -for f in /bin /usr/bin /usr/local/bin -do - if test -f $f/true - then - true_path=$f - fi -done -AC_ARG_ENABLE(true-path, [ --enable-true-path=PATH Path to 'true' binary.], - true_path="$enableval", - [ - if test "$true_path" = "" - then - AC_MSG_ERROR([Unable to find 'true' binary, specify --enable-true-path.]) - fi - ] ) -AC_DEFINE_UNQUOTED(TRUE_PATH,"$true_path","") - ezmlmdir="" for f in /usr/local/bin/ezmlm /usr/bin /usr/sbin /usr/local/bin do |