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 | 00e6c3a89e1665c00b6553be28cf689996d6c58a (patch) | |
tree | 31a67f79b813c5dddc38768b1143574c59ac9666 | |
parent | b66b3c1635dbda369b1466c7c7ff6103ae09ae66 (diff) | |
download | mariadb-git-00e6c3a89e1665c00b6553be28cf689996d6c58a.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 |