diff options
author | unknown <tim@localhost.polyesthetic.msg> | 2000-08-18 14:49:31 -0400 |
---|---|---|
committer | unknown <tim@localhost.polyesthetic.msg> | 2000-08-18 14:49:31 -0400 |
commit | 42e9ffdcd646eb0e0035439db8115afe4d03256f (patch) | |
tree | d856a5bdf30bea7244c537d3c01a586e03e6ba5b /include | |
parent | 03f4445cd235d53ce00bb0424063713b1dd10d18 (diff) | |
download | mariadb-git-42e9ffdcd646eb0e0035439db8115afe4d03256f.tar.gz |
Change the behavior of --enable-thread-safe-client. It now builds
both a non-threaded libmysqlclient and a threaded libmysqlclient_r.
Makefile.am:
- build libmysqlclient_r in a separate directory
include/global.h:
- build libmysqlclient_r in a separate directory
libmysql/Makefile.am:
- build libmysqlclient_r in a separate directory
Diffstat (limited to 'include')
-rw-r--r-- | include/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index c56b1f83dc3..4f1e7156597 100644 --- a/include/global.h +++ b/include/global.h @@ -33,7 +33,7 @@ #endif /* _cplusplus */ /* The client defines this to avoid all thread code */ -#if defined(UNDEF_THREADS_HACK) && !defined(THREAD_SAFE_CLIENT) +#if defined(UNDEF_THREADS_HACK) #undef THREAD #undef HAVE_mit_thread #undef HAVE_LINUXTHREADS |