source: trunk/third/gtk-thinice-engine/autogen.sh @ 18878

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 *
Line 
1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4DIE=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}
20if test "$DIE" -eq 1; then
21        exit 1
22fi
23
24if 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."
27fi
28
29aclocal $ACLOCAL_FLAGS
30automake --add-missing
31autoconf
32./configure "$@"
33
34echo
35echo "Now type 'make' to compile ThinIce"
Note: See TracBrowser for help on using the repository browser.