msm: consistency for equally ranked keys
[platform/upstream/rpm.git] / autogen.sh
index d4e1cbf..f7ea2cf 100755 (executable)
@@ -1,32 +1,20 @@
 #!/bin/sh
 
-LTV="libtoolize (GNU libtool) 1.3.2"
-ACV="Autoconf version 2.13"
-AMV="automake (GNU automake) 1.4"
-USAGE="
-You need to install:
-       libtool-1.3.2
-       autoconf-2.13
-       automake-1.4
-"
+export CPPFLAGS
+export CFLAGS
+export LDFLAGS
 
-[ "`libtoolize --version`" != "$LTV" ] && echo "$USAGE" && exit 1
-[ "`autoconf --version`" != "$ACV" ] && echo "$USAGE" && exit 1
-[ "`automake --version | head -1 | sed -e 's/1\.4[a-z]/1.4/'`" != "$AMV" ] && echo "$USAGE" && exit 1
+autoreconf -i
 
-(cd popt; ./autogen.sh --noconfigure "$@")
-libtoolize --copy --force
-aclocal
-autoheader
-automake
-autoconf
-
-if [ "$1" = "--noconfigure" ]; then 
+case "$1" in
+  "--noconfigure")
     exit 0;
-fi
-
-if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
-    ./configure --prefix=/usr --enable-shared
-else
+    ;;
+  "--rpmconfigure")
+    shift
+    eval "`rpm --eval %configure`" "$@"
+    ;;
+  *)
     ./configure "$@"
-fi
+    ;;
+esac