ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/autogen.sh
Revision: 1.4
Committed: 2007-06-13T12:09:05Z (17 years, 1 month ago) by gbeauche
Content type: application/x-sh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +4 -0 lines
Log Message:
ifdef() constructs cause problems, make sure to automatically include the m4 directory while
regenerating the configure script (provided no ACLOCAL_FLAGS are passed). i.e. ./autogen.sh
now just works, even on MacOS X!

File Contents

# Content
1 #! /bin/sh
2 # Run this to generate all the initial makefiles, etc.
3 # This was lifted from the Gimp, and adapted slightly by
4 # Christian Bauer.
5
6 DIE=0
7
8 PROG="SheepShaver"
9
10 # Check how echo works in this /bin/sh
11 case `echo -n` in
12 -n) _echo_n= _echo_c='\c';;
13 *) _echo_n=-n _echo_c=;;
14 esac
15
16 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
17 echo
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/"
21 DIE=1
22 }
23
24 (aclocal --version) < /dev/null > /dev/null 2>&1 || {
25 echo
26 echo "**Error**: Missing aclocal. The version of automake"
27 echo "installed doesn't appear recent enough."
28 echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
29 echo "(or a newer version if it is available)"
30 DIE=1
31 }
32
33 if test "$DIE" -eq 1; then
34 exit 1
35 fi
36
37 if test -z "$ACLOCAL_FLAGS"; then
38 ACLOCAL_FLAGS="-I `aclocal --print-ac-dir` -I m4"
39 fi
40
41 aclocalinclude="$ACLOCAL_FLAGS"; \
42 (echo $_echo_n " + Running aclocal: $_echo_c"; \
43 aclocal $aclocalinclude; \
44 echo "done.") && \
45 (echo $_echo_n " + Running autoheader: $_echo_c"; \
46 autoheader; \
47 echo "done.") && \
48 (echo $_echo_n " + Running autoconf: $_echo_c"; \
49 autoconf; \
50 echo "done.")
51
52 rm -f config.cache
53
54 if [ x"$NO_CONFIGURE" = "x" ]; then
55 echo " + Running 'configure $@':"
56 if [ -z "$*" ]; then
57 echo " ** If you wish to pass arguments to ./configure, please"
58 echo " ** specify them on the command line."
59 fi
60 ./configure "$@"
61 fi