source: sources/bootstrap @ 38

Last change on this file since 38 was 27, checked in by buchmann, 15 years ago

SystemCASS now uses autoconf/automake to build the API. Regression tests still
use the old Makefiles.
(thanks to Nicolas Pouillon)

The library directory no longer is "lib-arch-system". The directory now is "lib-linux". Everyone needs to pay attention about SYSTEMCASS environment variable.

Changes:

  • system header includes
  • Add includes to config.h (generated by autoconf/automake)
  • test:
    • linux preprocessor macro instead of _WIN32
    • CONFIG_DEBUG instead of DEBUG

Removes:

  • Makefile
  • guess_endianness.cc
  • guess_os.sh
  • assert.h (we now use standard assert.h)
  • Options.def
  • Property svn:executable set to *
File size: 3.6 KB
Line 
1#! /bin/sh
2# $Id: bootstrap 1974 2008-04-04 11:32:24Z sam $
3
4# bootstrap: generic bootstrap/autogen.sh script for autotools projects
5#
6# Copyright (c) 2002-2008 Sam Hocevar <sam@zoy.org>
7#
8#    This program is free software. It comes without any warranty, to
9#    the extent permitted by applicable law. You can redistribute it
10#    and/or modify it under the terms of the Do What The Fuck You Want
11#    To Public License, Version 2, as published by Sam Hocevar. See
12#    http://sam.zoy.org/wtfpl/COPYING for more details.
13#
14# The latest version of this script can be found at the following place:
15#   http://sam.zoy.org/autotools/
16
17# Die if an error occurs
18set -e
19
20# Guess whether we are using configure.ac or configure.in
21if test -f configure.ac; then
22  conffile="configure.ac"
23elif test -f configure.in; then
24  conffile="configure.in"
25else
26  echo "$0: could not find configure.ac or configure.in"
27  exit 1
28fi
29
30# Check for needed features
31auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`"
32libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`"
33header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`"
34makefile="`[ -f Makefile.am ] && echo yes || echo no`"
35aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am 2>/dev/null || :`"
36
37# Check for automake
38amvers="no"
39for v in 11 10 9 8 7 6 5; do
40  if automake-1.${v} --version >/dev/null 2>&1; then
41    amvers="-1.${v}"
42    break
43  elif automake1.${v} --version >/dev/null 2>&1; then
44    amvers="1.${v}"
45    break
46  fi
47done
48
49if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then
50  amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`"
51  if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then
52    amvers="no"
53  else
54    amvers=""
55  fi
56fi
57
58if test "$amvers" = "no"; then
59  echo "$0: you need automake version 1.5 or later"
60  exit 1
61fi
62
63# Check for autoconf
64acvers="no"
65for v in "" "259" "253"; do
66  if autoconf${v} --version >/dev/null 2>&1; then
67    acvers="${v}"
68    break
69  fi
70done
71
72if test "$acvers" = "no"; then
73  echo "$0: you need autoconf"
74  exit 1
75fi
76
77# Check for libtool
78if test "$libtool" = "yes"; then
79  libtoolize="no"
80  if glibtoolize --version >/dev/null 2>&1; then
81    libtoolize="glibtoolize"
82  else
83    for v in "16" "15" "" "14"; do
84      if libtoolize${v} --version >/dev/null 2>&1; then
85        libtoolize="libtoolize${v}"
86        break
87      fi
88    done
89  fi
90
91  if test "$libtoolize" = "no"; then
92    echo "$0: you need libtool"
93    exit 1
94  fi
95fi
96
97# Remove old cruft
98for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done
99rm -Rf autom4te.cache
100if test -n "$auxdir"; then
101  if test ! -d "$auxdir"; then
102    mkdir "$auxdir"
103  fi
104  aclocalflags="${aclocalflags} -I $auxdir -I ."
105fi
106
107# Explain what we are doing from now
108set -x
109
110# Bootstrap package
111if test "$libtool" = "yes"; then
112  ${libtoolize} --copy --force
113  if test -n "$auxdir" -a ! "$auxdir" = "." -a -f "ltmain.sh"; then
114    echo "$0: working around a minor libtool issue"
115    mv ltmain.sh "$auxdir/"
116  fi
117fi
118
119aclocal${amvers} ${aclocalflags}
120autoconf${acvers}
121if test "$header" = "yes"; then
122  autoheader${acvers}
123fi
124if test "$makefile" = "yes"; then
125  #add --include-deps if you want to bootstrap with any other compiler than gcc
126  #automake${amvers} --add-missing --copy --include-deps
127  automake${amvers} --foreign --add-missing --copy
128fi
129
130# Remove cruft that we no longer want
131rm -Rf autom4te.cache
132
Note: See TracBrowser for help on using the repository browser.