Fixed silly typo: "np" instead of "no"
[tinc] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles,
3 # etc. just after a checkout.
4
5 DIE=0
6
7 alias make=${MAKE:-make}
8
9 srcdir="`/bin/pwd`"
10
11 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
12   echo
13   echo "**Error**: You must have \`autoconf' installed to compile tinc."
14   echo "Download the appropriate package for your distribution,"
15   echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
16   DIE=1
17 }
18
19 (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && {
20   (libtool --version) < /dev/null > /dev/null 2>&1 || {
21     echo
22     echo "**Error**: You must have \`libtool' installed to compile tinc."
23     echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz"
24     echo "(or a newer version if it is available)"
25     DIE=1
26   }
27 }
28
29 grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && {
30   grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
31   (gettext --version) < /dev/null > /dev/null 2>&1 || {
32     echo
33     echo "**Error**: You must have \`gettext' installed to compile tinc."
34     echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz"
35     echo "(or a newer version if it is available)"
36     DIE=1
37   }
38 }
39
40 grep "^AM_GNOME_GETTEXT" $srcdir/configure.in >/dev/null && {
41   grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
42   (gettext --version) < /dev/null > /dev/null 2>&1 || {
43     echo
44     echo "**Error**: You must have \`gettext' installed to compile tinc."
45     echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz"
46     echo "(or a newer version if it is available)"
47     DIE=1
48   }
49 }
50
51 (automake --version) < /dev/null > /dev/null 2>&1 || {
52   echo
53   echo "**Error**: You must have \`automake' installed to compile tinc."
54   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
55   echo "(or a newer version if it is available)"
56   DIE=1
57   NO_AUTOMAKE=yes
58 }
59
60
61 # if no automake, don't bother testing for aclocal
62 test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
63   echo
64   echo "**Error**: Missing \`aclocal'.  The version of \`automake'"
65   echo "installed doesn't appear recent enough."
66   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
67   echo "(or a newer version if it is available)"
68   DIE=1
69 }
70
71 if test "$DIE" -eq 1; then
72   exit 1
73 fi
74
75 if test -z "$*"; then
76   echo "**Warning**: I am going to run \`configure' with no arguments."
77   echo "If you wish to pass any to it, please specify them on the"
78   echo \`$0\'" command line."
79   echo
80 fi
81
82 case $CC in
83 xlc )
84   am_opt=--include-deps;;
85 esac
86
87 for coin in `find $srcdir -name configure.in -print`
88 do 
89   dr=`dirname $coin`
90   if test -f $dr/NO-AUTO-GEN; then
91     echo skipping $dr -- flagged as no auto-gen
92   else
93     echo processing $dr
94     macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $coin`
95     ( cd $dr
96       aclocalinclude="$ACLOCAL_FLAGS"
97       for k in $macrodirs; do
98         if test -d $k; then
99           if test -f $k/Makefile.am.in; then
100             make -C $k -f Makefile.am.in Makefile.am
101           fi
102           aclocalinclude="$aclocalinclude -I $k"
103         ##else 
104         ##  echo "**Warning**: No such directory \`$k'.  Ignored."
105         fi
106       done
107       touch ChangeLog
108       if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then
109         if grep "sed.*POTFILES" configure.in >/dev/null; then
110           : do nothing -- we still have an old unmodified configure.in
111         else
112           echo "Creating $dr/aclocal.m4 ..."
113           test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
114           echo "Running gettextize...  Ignore non-fatal messages."
115           echo "no" | gettextize --force --copy
116           echo "Making $dr/aclocal.m4 writable ..."
117           test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
118         fi
119       fi
120       if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then
121         echo "Creating $dr/aclocal.m4 ..."
122         test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
123         echo "Running gettextize...  Ignore non-fatal messages."
124         echo "no" | gettextize --force --copy
125         echo "Making $dr/aclocal.m4 writable ..."
126         test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
127       fi
128       if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
129         echo "Running libtoolize..."
130         libtoolize --force --copy
131       fi
132       echo "Running aclocal $aclocalinclude ..."
133       aclocal $aclocalinclude
134       if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
135         echo "Running autoheader..."
136         autoheader
137       fi
138       echo "Running automake --gnu $am_opt ..."
139       automake --add-missing --gnu $am_opt
140       echo "Running autoconf ..."
141       autoconf
142     )
143   fi
144 done
145
146 conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
147
148 if test x$NOCONFIGURE = x; then
149   echo Running $srcdir/configure $conf_flags "$@" ...
150   $srcdir/configure $conf_flags "$@" \
151   && echo Now type \`make\' to compile $PKG_NAME || exit 1
152 else
153   echo Skipping configure process.
154 fi