diff options
author | unknown <brian@avenger.(none)> | 2004-12-06 10:04:16 -0800 |
---|---|---|
committer | unknown <brian@avenger.(none)> | 2004-12-06 10:04:16 -0800 |
commit | 3a5f7eab1dd3a9e5d8a8f1a7c273e155a6c351f1 (patch) | |
tree | 40b35141bfa0ff9e210d77d1f46610227160340a /configure.in | |
parent | e0dad0555d0721529b6b46fc75c99c20607a0c13 (diff) | |
download | mariadb-git-3a5f7eab1dd3a9e5d8a8f1a7c273e155a6c351f1.tar.gz |
Removed the need for our own sanity check file (which was just the default anyways).
BitKeeper/deleted/.del-sanity.m4~bce40721a813daac:
Delete: config/ac-macros/sanity.m4
configure.in:
Removed the need for our own sanity check.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 025d7d306b1..5ca890a7df1 100644 --- a/configure.in +++ b/configure.in @@ -1,17 +1,11 @@ dnl -*- ksh -*- dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.12)dnl Minimum Autoconf version required. +AC_PREREQ(2.50)dnl Minimum Autoconf version required. AC_INIT(sql/mysqld.cc) AC_CANONICAL_SYSTEM -# For some reason we have our own AM_SANITY_CHECK which is just a copy -# of the default one included in 1.8 (it was from some version before -# 1.4, but I updated it to fix a FreeBSD problem). It must be included -# before we call AM_INIT_AUTOMAKE. Don't forget to also update the -# NDB lines below. -# -Brian -sinclude(config/ac-macros/sanity.m4) +# Don't forget to also update the NDB lines below. AM_INIT_AUTOMAKE(mysql, 5.0.3-alpha) AM_CONFIG_HEADER(config.h) |