diff options
author | unknown <tim@black.box> | 2001-10-09 18:11:44 -0400 |
---|---|---|
committer | unknown <tim@black.box> | 2001-10-09 18:11:44 -0400 |
commit | 0cbaff7b752c186de851bc5f512a43ac8b4dd19d (patch) | |
tree | 305dc7d1714dcdcdf3f64ca1e68570c5d11ee6b8 /acconfig.h | |
parent | 7291568c0f6f79cd2cee369314fca0024af5dafd (diff) | |
download | mariadb-git-0cbaff7b752c186de851bc5f512a43ac8b4dd19d.tar.gz |
Add --without-isam configure switch.
Portability fix for mysqlmanager.
acconfig.h:
Add HAVE_ISAM
acinclude.m4:
Add --without-isam configure switch.
configure.in:
Add --without-isam configure switch.
include/my_global.h:
remove #define HAVE_ISAM
libmysqld/examples/test-run:
pass --language option to embedded server
sql/Makefile.am:
use @isam_libs@ instead of hard-coded values
tools/mysqlmanager.c:
#include <signal.h> for portability
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 341de4a2ceb..1e62d2a4248 100644 --- a/acconfig.h +++ b/acconfig.h @@ -81,6 +81,9 @@ /* Using Innobase DB */ #undef HAVE_INNOBASE_DB +/* Using old ISAM tables */ +#undef HAVE_ISAM + /* Define if we have GNU readline */ #undef HAVE_LIBREADLINE |