Pare down to internal only libelf.
[platform/upstream/rpm.git] / autogen.sh
index 875c303..0adb4d5 100755 (executable)
@@ -1,8 +1,36 @@
 #!/bin/sh
 
-(cd popt; ./autogen.sh "$@")
-libtoolize --copy
+export CFLAGS
+export LDFLAGS
+
+LTV="libtoolize (GNU libtool) 1.4.2"
+ACV="autoconf (GNU Autoconf) 2.53"
+AMV="automake (GNU automake) 1.6.3"
+USAGE="
+This script documents the versions of the tools I'm using to build rpm:
+       libtool-1.4.2
+       autoconf-2.53
+       automake-1.6.2
+Simply edit this script to change the libtool/autoconf/automake versions
+checked if you need to, as rpm should build (and has built) with all
+recent versions of libtool/autoconf/automake.
+"
+
+[ "`libtoolize --version`" != "$LTV" ] && echo "$USAGE" && exit 1
+[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" && exit 1
+[ "`automake --version | head -1 | sed -e 's/1\.4[a-z]/1.4/'`" != "$AMV" ] && echo "$USAGE" && exit 1
+
+(echo "--- popt"; cd popt; ./autogen.sh --noconfigure "$@")
+(echo "--- zlib"; cd zlib; ./autogen.sh --noconfigure "$@")
+(echo "--- beecrypt"; cd beecrypt; ./autogen.sh --noconfigure "$@")
+(echo "--- elfutils"; cd elfutils; ./autogen.sh --noconfigure "$@")
+(echo "--- file"; cd file; ./autogen.sh --noconfigure "$@")
+
+echo "--- rpm"
+libtoolize --copy --force
+aclocal
 autoheader
+automake -a -c
 autoconf
 
 if [ "$1" = "--noconfigure" ]; then 
@@ -10,7 +38,14 @@ if [ "$1" = "--noconfigure" ]; then
 fi
 
 if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
-    ./configure --prefix=/usr --disable-shared
+    if [ -d /usr/share/man ]; then
+       mandir=/usr/share/man
+       infodir=/usr/share/info
+    else
+       mandir=/usr/man
+       infodir=/usr/info
+    fi
+    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --infodir=${infodir} --mandir=${mandir} --without-javaglue "$@"
 else
     ./configure "$@"
 fi