diff options
author | jperkin@production.mysql.com <> | 2007-07-25 10:44:45 +0200 |
---|---|---|
committer | jperkin@production.mysql.com <> | 2007-07-25 10:44:45 +0200 |
commit | 6df53ea2df58e94cda2dfe9bc2ddb126f5efbd04 (patch) | |
tree | 2cd10d4215d867b3a4f430965206f914fee5a7f5 /storage/innobase/plug.in | |
parent | 0886cc3bedb394dc38affddd959975f1ed19a91d (diff) | |
download | mariadb-git-6df53ea2df58e94cda2dfe9bc2ddb126f5efbd04.tar.gz |
Fix for bug#29641 - $CC on Open Server is set to contain arguments
for enabling threads. However, duplicate AC_PROG_* macros in the
innobase plug.in file were resetting $CC and causing link errors.
As AC_PROG_* macros are already used in the main configure.in file
there should be no need for them to be duplicated here too.
Diffstat (limited to 'storage/innobase/plug.in')
-rw-r--r-- | storage/innobase/plug.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/storage/innobase/plug.in b/storage/innobase/plug.in index 6e26a7d3376..b252d471fba 100644 --- a/storage/innobase/plug.in +++ b/storage/innobase/plug.in @@ -6,10 +6,6 @@ MYSQL_PLUGIN_DYNAMIC(innobase, [ha_innodb.la]) MYSQL_PLUGIN_ACTIONS(innobase, [ AC_CHECK_LIB(rt, aio_read, [innodb_system_libs="-lrt"]) AC_SUBST(innodb_system_libs) - AC_PROG_CC - AC_PROG_RANLIB - AC_PROG_INSTALL - AC_PROG_LIBTOOL AC_CHECK_HEADERS(aio.h sched.h) AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long, 4) |