Browse CVS Repository
Diff of /xoonips/AL/bootstrap.sh
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#!/bin/sh |
#!/bin/sh |
| 2 |
AUTOCONF=autoconf |
|
| 3 |
AUTOHEADER=autoheader |
AUTOCONF=autoconf259 |
| 4 |
AUTOMAKE=automake |
AUTOMAKE=automake19 |
| 5 |
ACLOCAL=aclocal |
ACLOCAL=aclocal19 |
| 6 |
LIBTOOLIZE=libtoolize |
AUTOHEADER=autoheader259 |
| 7 |
|
LIBTOOLIZE=libtoolize15 |
| 8 |
|
|
| 9 |
# host os check |
# host os check |
| 10 |
if [ ! -f /etc/fedora-release ]; then |
UNAME=`uname -s` |
| 11 |
echo "running host is not Fedora Core"; |
if test X"$UNAME" != X"FreeBSD" ; then |
| 12 |
exit 1; |
echo "running host is not FreeBSD"; |
|
fi |
|
|
if [ x"`cat /etc/fedora-release`" != x"Fedora Core release 1 (Yarrow)" ]; then |
|
|
echo "running host is not Frdora Core release 1"; |
|
| 13 |
exit 1; |
exit 1; |
| 14 |
fi |
fi |
| 15 |
|
|
| 17 |
$ACLOCAL -I macros -I config |
$ACLOCAL -I macros -I config |
| 18 |
$AUTOHEADER -I macros -I config |
$AUTOHEADER -I macros -I config |
| 19 |
$LIBTOOLIZE --automake --force --copy |
$LIBTOOLIZE --automake --force --copy |
|
#$ACLOCAL -I macros -I config |
|
| 20 |
$AUTOMAKE --foreign --add-missing --copy |
$AUTOMAKE --foreign --add-missing --copy |
| 21 |
$AUTOCONF |
$AUTOCONF |
| 22 |
|
|
|
|
Legend:
| Removed from v.1.1 |
|
| changed lines |
| |
Added in v.1.2 |
|
|
|