diff options
| author | Tom Yu <tlyu@mit.edu> | 2003-04-10 22:06:08 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2003-04-10 22:06:08 +0000 |
| commit | 6bb863038295102af98ca157ed337f1141e2305d (patch) | |
| tree | 8a9d0112bebea7ce6ecca6bb73c713dfbdb889a8 /src/util | |
| parent | c8bacba561b1467ecbe88ca6f1a6dabad1db5cca (diff) | |
back out requirement of autoconf-2.53
Back out requirement of autoconf-2.53, as MacOS X doesn't have it. To
compensate, place warning in util/reconf if autoconf-2.52 is
discovered.
ticket: new
status: open
tags: pullup
target_version: 1.3
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15339 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/ChangeLog | 6 | ||||
| -rw-r--r-- | src/util/reconf | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 926b6c46d..5401447ad 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,9 @@ +2003-04-10 Tom Yu <tlyu@mit.edu> + + * reconf: Warn if autoconf-2.52 is used, as it generates buggy + configure scripts that don't work with BSD /bin/sh, and don't + comply with POSIX.2 (no conditions inside "case" statement). + 2003-02-05 Tom Yu <tlyu@mit.edu> * mkrel: Exclude .rconf files. diff --git a/src/util/reconf b/src/util/reconf index c24627203..5ee6bc331 100644 --- a/src/util/reconf +++ b/src/util/reconf @@ -51,6 +51,9 @@ if autoreconf --version | sed -e "$sedcmd1" -e "$sedcmd2" | egrep "$patb" >/dev/ # Determine if we need to patch autoreconf for 2.53 case "$autoconfversion" in + 2.52) + echo "WARNING: autoconf 2.52 is known to generate buggy configure scripts!" + ;; 2.53) echo "Patching autoreconf" # Walk the path to find autoreconf |
