diff options
author | jbj <devnull@localhost> | 2001-06-08 20:45:59 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-06-08 20:45:59 +0000 |
commit | 03f527390168680d98f13ada0dbf6be4cd17dc9c (patch) | |
tree | 775e83d8fc7532376766381fb94496b3dec6f31d /autogen.sh | |
parent | 7bf9296288c38f3bf82ec38481738101bf063981 (diff) | |
download | rpm-03f527390168680d98f13ada0dbf6be4cd17dc9c.tar.gz |
- fix: QUERY_FOR_LIST file count clobbered.
- create top level rpmcli API, factor top level modes into popt tables.
- popt: add POPT_BIT_SET/POPT_BIT_CLR to API.
- autogen.sh checks for latest libtool-1.4 and automake-1.4-p2.
- rpm --verify reports failure(s) if corresponding tag is not in header.
- rpm --verify honors %config(missingok), add -v for legacy behavior.
CVS patchset: 4852
CVS date: 2001/06/08 20:45:59
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index 853cc9619..35ca92474 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,14 +3,15 @@ export CFLAGS export LDFLAGS -LTV="libtoolize (GNU libtool) 1.3.5" +LTV="libtoolize (GNU libtool) 1.4" ACV="Autoconf version 2.13" -AMV="automake (GNU automake) 1.4" +AMV="automake (GNU automake) 1.4-p2" USAGE=" You need to install: - libtool-1.3.5 + libtool-1.4 autoconf-2.13 - automake-1.4 + automake-1.4-p2 +Or edit this script to change the libtool/autoconf/automake versions checked ... " [ "`libtoolize --version`" != "$LTV" ] && echo "$USAGE" && exit 1 |