diff options
author | Edward Rudd | 2003-12-23 19:49:56 +0000 |
---|---|---|
committer | Edward Rudd | 2003-12-23 19:49:56 +0000 |
commit | ab1ac8ba7570005c169e7aa772762b55d354e07d (patch) | |
tree | a4e8d712b5dbf4b5edbb7bd89edc1fa08e40a332 /autogen.sh | |
parent | f89b2cced3608b248cb02b2e48907dcae07e8bbe (diff) |
update autoconf scripts to check MySQL..1.91
moved autoconf DEFUN macros to m4 subdirectory
autogen.sh calls aclocal to include m4 directory.
merged in changes from 1.19b1
fixed log_sql_merge_config bug in 1.19b1
release 1.91
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,12 +1,16 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | rm -rf autom4te-2.53.cache | 3 | if [ -z $ACLOCAL ]; then |
4 | ACLOCAL=aclocal-1.5 | ||
5 | fi | ||
4 | if [ -z $AUTOCONF ]; then | 6 | if [ -z $AUTOCONF ]; then |
5 | AUTOCONF=autoconf-2.53 | 7 | AUTOCONF=autoconf-2.53 |
6 | fi | 8 | fi |
7 | if [ -z $AUTOHEADER ]; then | 9 | if [ -z $AUTOHEADER ]; then |
8 | AUTOHEADER=autoheader-2.53 | 10 | AUTOHEADER=autoheader-2.53 |
9 | fi | 11 | fi |
12 | rm -rf autom4te-2.53.cache | ||
13 | $ACLOCAL -I m4 | ||
10 | $AUTOHEADER | 14 | $AUTOHEADER |
11 | $AUTOCONF | 15 | $AUTOCONF |
12 | touch stamp-h.in | 16 | touch stamp-h.in |