diff options
author | Staale Smedseng <staale.smedseng@sun.com> | 2009-12-20 19:02:15 +0100 |
---|---|---|
committer | Staale Smedseng <staale.smedseng@sun.com> | 2009-12-20 19:02:15 +0100 |
commit | ff6c429612b8a4250f9b6a28a4e5660f44a1480b (patch) | |
tree | 31a67f79b813c5dddc38768b1143574c59ac9666 | |
parent | 885523381fc5e0f56a25c9a1f6671a55fd93a239 (diff) | |
download | mariadb-git-ff6c429612b8a4250f9b6a28a4e5660f44a1480b.tar.gz |
Bug#43397 mysql headers redefine pthread_mutex_init
unnecessarily
Changing an instance of the define that was missed
in the original commit due to the fact that it was
misspelled.
-rw-r--r-- | include/config-win.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config-win.h b/include/config-win.h index af4915440b1..da9b1fc00c3 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -160,7 +160,7 @@ typedef uint rf_SetTimer; #define isnan(X) _isnan(X) #define finite(X) _finite(X) -#ifndef UNDEF_THREAD_HACK +#ifndef MYSQL_CLIENT_NO_THREADS #define THREAD #endif #define VOID_SIGHANDLER |