~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/autorun.sh

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
fi
30
30
 
31
31
if test x$LIBTOOLIZE = x; then
32
 
  if test \! "x`which libtoolize-1.5 2> /dev/null | grep -v '^no'`" = x; then
 
32
  if test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
 
33
    LIBTOOLIZE=glibtoolize
 
34
  elif test \! "x`which libtoolize-1.5 2> /dev/null | grep -v '^no'`" = x; then
33
35
    LIBTOOLIZE=libtoolize-1.5
34
36
  elif test \! "x`which libtoolize 2> /dev/null | grep -v '^no'`" = x; then
35
37
    LIBTOOLIZE=libtoolize
36
38
  elif test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
37
39
    LIBTOOLIZE=glibtoolize
38
40
  else 
39
 
    echo "libtoolize 1.5.x wasn't found, exiting"; exit 0
 
41
    echo "libtoolize 1.5.x wasn't found, exiting"; exit 1
40
42
  fi
41
43
fi
42
44
 
48
50
  elif test \! "x`which aclocal 2> /dev/null | grep -v '^no'`" = x; then
49
51
    ACLOCAL=aclocal
50
52
  else 
51
 
    echo "automake 1.10.x (aclocal) wasn't found, exiting"; exit 0
 
53
    echo "automake 1.10.x (aclocal) wasn't found, exiting"; exit 1
52
54
  fi
53
55
fi
54
56
 
60
62
  elif test \! "x`which automake 2> /dev/null | grep -v '^no'`" = x; then
61
63
    AUTOMAKE=automake
62
64
  else 
63
 
    echo "automake 1.10.x wasn't found, exiting"; exit 0
 
65
    echo "automake 1.10.x wasn't found, exiting"; exit 1
64
66
  fi
65
67
fi
66
68
 
74
76
  elif test \! "x`which autoconf 2> /dev/null | grep -v '^no'`" = x; then
75
77
    AUTOCONF=autoconf
76
78
  else 
77
 
    echo "autoconf 2.59+ wasn't found, exiting"; exit 0
 
79
    echo "autoconf 2.59+ wasn't found, exiting"; exit 1
78
80
  fi
79
81
fi
80
82
 
86
88
  elif test \! "x`which autoheader 2> /dev/null | grep -v '^no'`" = x; then
87
89
    AUTOHEADER=autoheader
88
90
  else 
89
 
    echo "autoconf 2.59+ (autoheader) wasn't found, exiting"; exit 0
 
91
    echo "autoconf 2.59+ (autoheader) wasn't found, exiting"; exit 1
90
92
  fi
91
93
fi
92
94