autogen.sh tweaking:
[platform/upstream/rpm.git] / autogen.sh
1 #!/bin/sh
2
3 export CFLAGS
4 export LDFLAGS
5
6 LTV="libtoolize (GNU libtool) 1.5.22"
7 ACV="autoconf (GNU Autoconf) 2.61"
8 AMV="automake (GNU automake) 1.10"
9 USAGE="
10 This script documents the versions of the tools I'm using to build rpm:
11         libtool-1.5.22
12         autoconf-2.61
13         automake-1.10
14 Simply edit this script to change the libtool/autoconf/automake versions
15 checked if you need to, as rpm should build (and has built) with all
16 recent versions of libtool/autoconf/automake.
17 "
18
19 libtoolize=`which glibtoolize 2>/dev/null`
20 case $libtoolize in
21 /*) ;;
22 *)  libtoolize=`which libtoolize 2>/dev/null`
23     case $libtoolize in
24     /*) ;;
25     *)  libtoolize=libtoolize
26     esac
27 esac
28
29 [ "`$libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" # && exit 1
30 [ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" # && exit 1
31 [ "`automake --version | head -1 | sed -e 's/1\.4[a-z]/1.4/'`" != "$AMV" ] && echo "$USAGE" # && exit 1
32
33 myopts=
34 if [ X"$@" = X  -a "X`uname -s`" = "XDarwin" -a -d /opt/local ]; then
35     export myopts="--prefix=/usr --disable-nls"
36     export CPPFLAGS="-I${myprefix}/include"
37 fi
38
39 # XXX add missing config.rpath, kludgery around what's apparently 
40 # gettext related stuff...
41 for d in . popt file; do
42     touch $d/config.rpath
43 done
44
45 if [ -d popt ]; then
46     (echo "--- popt"; cd popt; ./autogen.sh --noconfigure "$@")
47 fi
48 if [ -d zlib ]; then
49     (echo "--- zlib"; cd zlib; ./autogen.sh --noconfigure "$@")
50 fi
51 if [ -d beecrypt ]; then
52     (echo "--- beecrypt"; cd beecrypt; ./autogen.sh --noconfigure "$@")
53 fi
54 if [ -d elfutils ]; then
55     (echo "--- elfutils"; cd elfutils; ./autogen.sh --noconfigure "$@")
56 fi
57 if [ -d file ]; then
58     (echo "--- file"; cd file; ./autogen.sh --noconfigure "$@")
59 fi
60 if [ -d neon ]; then
61     (echo "--- neon"; cd neon; ./autogen.sh "$@")
62 fi
63
64 echo "--- rpm"
65 $libtoolize --copy --force
66 aclocal
67 autoheader
68 automake -a -c
69 autoconf
70
71 if [ "$1" = "--noconfigure" ]; then 
72     exit 0;
73 fi
74
75 if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
76     if [ -d /usr/share/man ]; then
77         mandir=/usr/share/man
78         infodir=/usr/share/info
79     else
80         mandir=/usr/man
81         infodir=/usr/info
82     fi
83     if [ -d /usr/lib/nptl ]; then
84         enable_posixmutexes="--enable-posixmutexes"
85     else
86         enable_posixmutexes=
87     fi
88     ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --infodir=${infodir} --mandir=${mandir} ${enable_posixmutexes} "$@"
89 else
90     ./configure ${myopts} "$@"
91 fi