1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

changes to make things work in the max version

acinclude.m4:
  automatically detect installation paths of OpenSSL instead of hard-coding
  automatically enable --with-vio if --with-openssl is enabled
client/mysqltest.c:
  fixes for embedded library
libmysqld/Makefile.am:
  md5 is now in mysys
libmysqld/libmysqld.c:
  added my_connect(), but now can be removed - will do in the next
  changeset
mysql-test/include/have_bdb.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/include/have_gemini.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/include/have_innodb.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/include/have_openssl.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/include/have_openssl_1.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/include/have_openssl_2.inc:
  disable query log so that result file will not have unneeded 
  show variables
mysql-test/r/bdb.result:
  fix for new format
mysql-test/r/have_openssl.require:
  ssl->openssl
mysql-test/r/innodb.result:
  fix for query logging
This commit is contained in:
unknown
2001-10-04 15:42:25 -06:00
parent 07ccd64e74
commit 5ee900d38a
13 changed files with 1116 additions and 13 deletions

View File

@ -1,2 +1,4 @@
-- require r/have_bdb.require
disable_query_log;
show variables like "have_bdb";
enable_query_log;

View File

@ -1,2 +1,4 @@
-- require r/have_gemini.require
disable_query_log;
show variables like "have_gemini";
enable_query_log;

View File

@ -1,2 +1,4 @@
-- require r/have_innodb.require
disable_query_log;
show variables like "have_innodb";
enable_query_log;

View File

@ -1,2 +1,4 @@
-- require r/have_openssl.require
disable_query_log;
show variables like "have_openssl";
enable_query_log;

View File

@ -1,2 +1,4 @@
-- require r/have_openssl_1.require
disable_query_log;
show variables like "have_openssl";
enable_query_log;

View File

@ -1,2 +1,4 @@
-- require r/have_openssl_2.require
disable_query_log;
SHOW STATUS LIKE "SSL_get_cipher";
enable_query_log;