- blueprint rpm-4_4 and HEAD to minimize diff spew.
[platform/upstream/rpm.git] / autogen.sh
1 #!/bin/sh
2
3 export CFLAGS
4 export LDFLAGS
5
6 LTV="libtoolize (GNU libtool) 1.5.10"
7 ACV="autoconf (GNU Autoconf) 2.59"
8 AMV="automake (GNU automake) 1.9.3"
9 USAGE="
10 This script documents the versions of the tools I'm using to build rpm:
11         libtool-1.5.10
12         autoconf-2.59
13         automake-1.9.3
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 if [ X"$@" = X  -a "X`uname -s`" = "XDarwin" -a -d /opt/local ]; then
34     export myprefix=/opt/local
35     export CPPFLAGS="-I${myprefix}/include"
36 fi
37
38 if [ -d popt ]; then
39     (echo "--- popt"; cd popt; ./autogen.sh --noconfigure "$@")
40 fi
41 if [ -d zlib ]; then
42     (echo "--- zlib"; cd zlib; ./autogen.sh --noconfigure "$@")
43 fi
44 if [ -d beecrypt ]; then
45     (echo "--- beecrypt"; cd beecrypt; ./autogen.sh --noconfigure "$@")
46 fi
47 if [ -d elfutils ]; then
48     (echo "--- elfutils"; cd elfutils; ./autogen.sh --noconfigure "$@")
49 fi
50 if [ -d file ]; then
51     (echo "--- file"; cd file; ./autogen.sh --noconfigure "$@")
52 fi
53 if [ -d neon ]; then
54     (echo "--- neon"; cd neon; ./autogen.sh "$@")
55 fi
56
57 echo "--- rpm"
58 $libtoolize --copy --force
59 aclocal
60 autoheader
61 automake -a -c
62 autoconf
63
64 if [ "$1" = "--noconfigure" ]; then 
65     exit 0;
66 fi
67
68 if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
69     if [ -d /usr/share/man ]; then
70         mandir=/usr/share/man
71         infodir=/usr/share/info
72     else
73         mandir=/usr/man
74         infodir=/usr/info
75     fi
76     if [ -d /usr/lib/nptl ]; then
77         enable_posixmutexes="--enable-posixmutexes"
78     else
79         enable_posixmutexes=
80     fi
81     ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --infodir=${infodir} --mandir=${mandir} ${enable_posixmutexes} "$@"
82 else
83     ./configure --prefix=${myprefix} "$@"
84 fi