Protect sq->reaped with sighold and sigrelease.
[platform/upstream/rpm.git] / autogen.sh
index d998e60..ec524ac 100755 (executable)
@@ -3,25 +3,44 @@
 export CFLAGS
 export LDFLAGS
 
-LTV="libtoolize (GNU libtool) 1.3.4"
-ACV="Autoconf version 2.13"
-AMV="automake (GNU automake) 1.4"
+LTV="libtoolize (GNU libtool) 1.5.2"
+ACV="autoconf (GNU Autoconf) 2.59"
+AMV="automake (GNU automake) 1.8.2"
 USAGE="
-You need to install:
-       libtool-1.3.4
-       autoconf-2.13
-       automake-1.4
+This script documents the versions of the tools I'm using to build rpm:
+       libtool-1.5.2
+       autoconf-2.59
+       automake-1.8.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`" != "$ACV" ] && echo "$USAGE" && exit 1
+[ "`libtoolize --version | head -1`" != "$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
 
-(cd popt; ./autogen.sh --noconfigure "$@")
+if [ -d popt ]; then
+    (echo "--- popt"; cd popt; ./autogen.sh --noconfigure "$@")
+fi
+if [ -d zlib ]; then
+    (echo "--- zlib"; cd zlib; ./autogen.sh --noconfigure "$@")
+fi
+if [ -d beecrypt ]; then
+    (echo "--- beecrypt"; cd beecrypt; ./autogen.sh --noconfigure "$@")
+fi
+if [ -d elfutils ]; then
+    (echo "--- elfutils"; cd elfutils; ./autogen.sh --noconfigure "$@")
+fi
+if [ -d file ]; then
+    (echo "--- file"; cd file; ./autogen.sh --noconfigure "$@")
+fi
+
+echo "--- rpm"
 libtoolize --copy --force
 aclocal
 autoheader
-automake
+automake -a -c
 autoconf
 
 if [ "$1" = "--noconfigure" ]; then 
@@ -29,7 +48,19 @@ if [ "$1" = "--noconfigure" ]; then
 fi
 
 if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
-    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var "$@"
+    if [ -d /usr/share/man ]; then
+       mandir=/usr/share/man
+       infodir=/usr/share/info
+    else
+       mandir=/usr/man
+       infodir=/usr/info
+    fi
+    if [ -d /usr/lib/nptl ]; then
+       enable_posixmutexes="--enable-posixmutexes"
+    else
+       enable_posixmutexes=
+    fi
+    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --infodir=${infodir} --mandir=${mandir} ${enable_posixmutexes} "$@"
 else
     ./configure "$@"
 fi