Browse CVS Repository
Annotation of /xoonips/AL/bootstrap.sh
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( hide annotations)
( download)
( as text)
Sat Dec 10 11:55:02 2005 UTC
(18 years, 4 months ago)
by orrisroot
Branch: MAIN
CVS Tags: AL_PORTING, REL20051226, REL20060323, tag20060615, tag20070307current, tag20061130, merge_to_20060605, tag20070307, REL20060213, tag20060622, merge_to_20060411, HEAD
Branch point for: XOONIPS_STABLE_32, XOONIPS_STABLE_3, XOONIPS_STABLE_2
Changes since 1.1: +9 -12 lines
File MIME type: text/x-sh
- updated autotools versions.
autoconf -> 2.59
automake -> 1.9.6
libtool -> 1.5.20
- fixed help messages and indents for './configure --help'.
- fixed extra files list for 'make dist'
- added COPYING file
| 1 |
orrisroot |
1.1 |
#!/bin/sh |
| 2 |
orrisroot |
1.2 |
|
| 3 |
|
|
AUTOCONF=autoconf259 |
| 4 |
|
|
AUTOMAKE=automake19 |
| 5 |
|
|
ACLOCAL=aclocal19 |
| 6 |
|
|
AUTOHEADER=autoheader259 |
| 7 |
|
|
LIBTOOLIZE=libtoolize15 |
| 8 |
orrisroot |
1.1 |
|
| 9 |
|
|
# host os check |
| 10 |
orrisroot |
1.2 |
UNAME=`uname -s` |
| 11 |
|
|
if test X"$UNAME" != X"FreeBSD" ; then |
| 12 |
|
|
echo "running host is not FreeBSD"; |
| 13 |
orrisroot |
1.1 |
exit 1; |
| 14 |
|
|
fi |
| 15 |
|
|
|
| 16 |
|
|
set -x |
| 17 |
|
|
$ACLOCAL -I macros -I config |
| 18 |
|
|
$AUTOHEADER -I macros -I config |
| 19 |
|
|
$LIBTOOLIZE --automake --force --copy |
| 20 |
|
|
$AUTOMAKE --foreign --add-missing --copy |
| 21 |
|
|
$AUTOCONF |
| 22 |
|
|
|
| 23 |
|
|
if [ -f config.h.in ]; then |
| 24 |
|
|
touch config.h.in |
| 25 |
|
|
fi |
| 26 |
|
|
|
| 27 |
|
|
if [ -f stamp-h.in ]; then |
| 28 |
|
|
touch stamp-h.in |
| 29 |
|
|
fi |
| 30 |
|
|
|
| 31 |
|
|
tmp=`find . -name 'autom4te.cache'` |
| 32 |
|
|
if [ x"$tmp" != x"" ]; then |
| 33 |
|
|
rm -rf $tmp; |
| 34 |
|
|
fi |
| 35 |
|
|
tmp=`find . -name 'configure.lineno'` |
| 36 |
|
|
if [ x"$tmp" != x"" ]; then |
| 37 |
|
|
rm -f $tmp; |
| 38 |
|
|
fi |
| 39 |
|
|
tmp=`find . -name '*~'` |
| 40 |
|
|
if [ x"$tmp" != x"" ]; then |
| 41 |
|
|
rm -f $tmp; |
| 42 |
|
|
fi |
|