Develop and Download Open Source Software

Browse CVS Repository

Annotation of /satellite/satellite4/bootstrap.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.5 - (hide annotations) (download) (as text)
Mon Mar 13 15:12:15 2006 UTC (18 years, 1 month ago) by orrisroot
Branch: MAIN
Changes since 1.4: +1 -1 lines
File MIME type: text/x-sh
updated libtool version to 1.5.22.
added type check for 'off_t' and 'ssize_t'.

1 orrisroot 1.1 #!/bin/sh
2    
3 orrisroot 1.4 AUTOCONF=autoconf259
4     AUTOMAKE=automake19
5     ACLOCAL=aclocal19
6     AUTOHEADER=autoheader259
7 orrisroot 1.5 LIBTOOLIZE=libtoolize
8 orrisroot 1.1
9     # host os check
10 orrisroot 1.4 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 orrisroot 1.3 $AUTOHEADER -I macros -I config
19 orrisroot 1.1 $LIBTOOLIZE --automake --force --copy
20     #$ACLOCAL -I macros -I config
21     $AUTOMAKE --foreign --add-missing --copy
22     $AUTOCONF
23    
24     if [ -f config.h.in ]; then
25     touch config.h.in
26     fi
27    
28     if [ -f stamp-h.in ]; then
29     touch stamp-h.in
30     fi
31    
32     tmp=`find . -name 'autom4te.cache'`
33     if [ x"$tmp" != x"" ]; then
34     rm -rf $tmp;
35     fi
36     tmp=`find . -name 'configure.lineno'`
37     if [ x"$tmp" != x"" ]; then
38     rm -f $tmp;
39     fi
40     tmp=`find . -name '*~'`
41     if [ x"$tmp" != x"" ]; then
42     rm -f $tmp;
43     fi
44    
45 orrisroot 1.2 # (cd modules/gpm && sh ./bootstrap.sh)

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26