1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Minor fix

include/my_pthread.h:
  Fixed missing \ in #if directive.
This commit is contained in:
unknown
2006-12-08 19:23:12 +01:00
parent 42b2cb8613
commit a79858049e

View File

@@ -45,7 +45,7 @@ extern "C" {
TODO: Remove this code when fixed versions of glibc6 are in common use.
*/
#if defined(TARGET_OS_LINUX) && defined(HAVE_NPTL) &&
#if defined(TARGET_OS_LINUX) && defined(HAVE_NPTL) && \
defined(__GLIBC__) && ( __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 5 )
#define NPTL_PTHREAD_EXIT_BUG 1
#endif