diff options
author | unknown <serg@serg.mysql.com> | 2001-12-15 21:39:26 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-12-15 21:39:26 +0100 |
commit | 565e5cc71de483e9bdf5ff6897c861190125db3e (patch) | |
tree | 85451db091b2d55b35cc3b99896b0c1b3d925a6e /include | |
parent | f40d6b616b982887a664ad5146c860d78f0a4e6f (diff) | |
download | mariadb-git-565e5cc71de483e9bdf5ff6897c861190125db3e.tar.gz |
freebsd fix for openssl
horrible bug fixed
mysql-test/r/fulltext_multi.result:
Change mode to -rw-rw-r--
mysql-test/r/fulltext_order_by.result:
Change mode to -rw-rw-r--
mysql-test/r/fulltext_update.result:
Change mode to -rw-rw-r--
mysql-test/r/fulltext_var.result:
Change mode to -rw-rw-r--
mysql-test/r/bulk_replace.result:
Change mode to -rw-rw-r--
mysql-test/r/handler.result:
Change mode to -rw-rw-r--
include/my_global.h:
FreeBSD fix for openssl
myisam/ft_static.c:
some boolean search operators added
sql/sql_parse.cc:
fixed horrible bug that makes mysqld CRASH when mysql client is started
Diffstat (limited to 'include')
-rw-r--r-- | include/my_global.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_global.h b/include/my_global.h index 7fd781f69cf..27781b230fd 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -188,8 +188,8 @@ # endif #endif /* TIME_WITH_SYS_TIME */ #ifdef HAVE_UNISTD_H -#ifdef HAVE_OPENSSL -#define crypt dummy +#if defined(HAVE_OPENSSL) && !defined(__FreeBSD__) && !defined(NeXT) +#define crypt unistd_crypt #endif #include <unistd.h> #ifdef HAVE_OPENSSL |