2 # Run this to generate all the initial makefiles, etc.
3 # This was lifted from the Gimp, and adapted slightly by
10 # Check how echo works in this /bin/sh
12 -n) _echo_n= _echo_c='\c';;
13 *) _echo_n=-n _echo_c=;;
16 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
18 echo "You must have autoconf installed to compile $PROG."
19 echo "Download the appropriate package for your distribution,"
20 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
24 (libtoolize --version) < /dev/null > /dev/null 2>&1 || {
26 echo "You must have libtool installed to compile $PROG."
27 echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.4.tar.gz"
28 echo "(or a newer version if it is available)"
32 (automake --version) < /dev/null > /dev/null 2>&1 || {
34 echo "You must have automake installed to compile $PROG."
35 echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.4.tar.gz"
36 echo "(or a newer version if it is available)"
40 (aclocal --version) < /dev/null > /dev/null 2>&1 || {
42 echo "**Error**: Missing aclocal. The version of automake"
43 echo "installed doesn't appear recent enough."
44 echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.4.tar.gz"
45 echo "(or a newer version if it is available)"
49 if test "$DIE" -eq 1; then
53 aclocalinclude="$ACLOCAL_FLAGS"; \
54 (echo $_echo_n " + Running aclocal: $_echo_c"; \
55 aclocal $aclocalinclude; \
57 (echo $_echo_n " + Running libtoolize: $_echo_c"; \
58 libtoolize --force --copy >/dev/null 2>&1; \
60 (echo $_echo_n " + Running autoheader: $_echo_c"; \
63 (echo $_echo_n " + Running automake: $_echo_c"; \
64 automake --gnu --add-missing --copy; \
66 (echo $_echo_n " + Running autoconf: $_echo_c"; \
72 if [ x"$NO_CONFIGURE" = "x" ]; then
73 echo " + Running 'configure $@':"
75 echo " ** If you wish to pass arguments to ./configure, please"
76 echo " ** specify them on the command line."