Revision 18878,
852 bytes
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18877,
which included commits to RCS files with non-trunk default branches.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[18877] | 1 | #!/bin/sh |
---|
| 2 | # Run this to generate all the initial makefiles, etc. |
---|
| 3 | |
---|
| 4 | DIE=0 |
---|
| 5 | |
---|
| 6 | (autoconf --version) < /dev/null > /dev/null 2>&1 || { |
---|
| 7 | echo |
---|
| 8 | echo "You must have autoconf installed to compile ThinIce." |
---|
| 9 | echo "Download the appropriate package for your distribution," |
---|
| 10 | echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" |
---|
| 11 | DIE=1 |
---|
| 12 | } |
---|
| 13 | |
---|
| 14 | (libtool --version) < /dev/null > /dev/null 2>&1 || { |
---|
| 15 | echo |
---|
| 16 | echo "You must have libtool installed to compile ThinIce." |
---|
| 17 | echo "Get it from ftp://ftp.gnu.org/pub/gnu/libtool/" |
---|
| 18 | DIE=1 |
---|
| 19 | } |
---|
| 20 | if test "$DIE" -eq 1; then |
---|
| 21 | exit 1 |
---|
| 22 | fi |
---|
| 23 | |
---|
| 24 | if test -z "$*"; then |
---|
| 25 | echo "I am going to run ./configure with no arguments - if you wish " |
---|
| 26 | echo "to pass any to it, please specify them on the $0 command line." |
---|
| 27 | fi |
---|
| 28 | |
---|
| 29 | aclocal $ACLOCAL_FLAGS |
---|
| 30 | automake --add-missing |
---|
| 31 | autoconf |
---|
| 32 | ./configure "$@" |
---|
| 33 | |
---|
| 34 | echo |
---|
| 35 | echo "Now type 'make' to compile ThinIce" |
---|
Note: See
TracBrowser
for help on using the repository browser.