Protect sq->reaped with sighold and sigrelease.
[platform/upstream/rpm.git] / autogen.sh
index 3de7db2..ec524ac 100755 (executable)
@@ -3,20 +3,20 @@
 export CFLAGS
 export LDFLAGS
 
-LTV="libtoolize (GNU libtool) 1.4.3"
-ACV="autoconf (GNU Autoconf) 2.56"
-AMV="automake (GNU automake) 1.6.3"
+LTV="libtoolize (GNU libtool) 1.5.2"
+ACV="autoconf (GNU Autoconf) 2.59"
+AMV="automake (GNU automake) 1.8.2"
 USAGE="
 This script documents the versions of the tools I'm using to build rpm:
-       libtool-1.4.3
-       autoconf-2.56
-       automake-1.6.3
+       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
+[ "`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
 
@@ -55,7 +55,12 @@ if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
        mandir=/usr/man
        infodir=/usr/info
     fi
-    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --infodir=${infodir} --mandir=${mandir} --without-javaglue "$@"
+    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