Develop and Download Open Source Software

Browse CVS Repository

Contents of /xoonips/AL/bootstrap.sh

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Mar 11 20:00:28 2005 UTC (19 years, 1 month ago) by orrisroot
Branch: MAIN
CVS Tags: MergePnt_20051116, XOONIPS_RC1, MergePnt_20051220, RELEASE_1_0_0, RELEASE_1_0_1
Branch point for: XOONIPS_STABLE
File MIME type: text/x-sh
- Autotoolized XooNiPs Abstract Layer projects.
- changelog.cc commonal.cc index.cc item.cc :
    included <time.h> header file for undefined data type 'time_t' error.

1 #!/bin/sh
2 AUTOCONF=autoconf
3 AUTOHEADER=autoheader
4 AUTOMAKE=automake
5 ACLOCAL=aclocal
6 LIBTOOLIZE=libtoolize
7
8 # host os check
9 if [ ! -f /etc/fedora-release ]; then
10 echo "running host is not Fedora Core";
11 exit 1;
12 fi
13 if [ x"`cat /etc/fedora-release`" != x"Fedora Core release 1 (Yarrow)" ]; then
14 echo "running host is not Frdora Core release 1";
15 exit 1;
16 fi
17
18 set -x
19 $ACLOCAL -I macros -I config
20 $AUTOHEADER -I macros -I config
21 $LIBTOOLIZE --automake --force --copy
22 #$ACLOCAL -I macros -I config
23 $AUTOMAKE --foreign --add-missing --copy
24 $AUTOCONF
25
26 if [ -f config.h.in ]; then
27 touch config.h.in
28 fi
29
30 if [ -f stamp-h.in ]; then
31 touch stamp-h.in
32 fi
33
34 tmp=`find . -name 'autom4te.cache'`
35 if [ x"$tmp" != x"" ]; then
36 rm -rf $tmp;
37 fi
38 tmp=`find . -name 'configure.lineno'`
39 if [ x"$tmp" != x"" ]; then
40 rm -f $tmp;
41 fi
42 tmp=`find . -name '*~'`
43 if [ x"$tmp" != x"" ]; then
44 rm -f $tmp;
45 fi

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