diff options
author | kent@mysql.com/kent-amd64.(none) <> | 2007-01-01 09:54:41 +0100 |
---|---|---|
committer | kent@mysql.com/kent-amd64.(none) <> | 2007-01-01 09:54:41 +0100 |
commit | 344599948d2867ddd13ba6045faaa08a6129386a (patch) | |
tree | 35f41749eecf26144d794eddf967663eaa34d16f /configure.in | |
parent | fd833d70377d947d59169aa45ff7c2ce637ae6ec (diff) | |
download | mariadb-git-344599948d2867ddd13ba6045faaa08a6129386a.tar.gz |
mysqld.cc, configure.in:
Don't use thread priority by default on Mac OS X (bug#18526)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 26ccd3f4155..69a0f9b576e 100644 --- a/configure.in +++ b/configure.in @@ -1073,6 +1073,8 @@ case $SYSTEM_TYPE in fi ;; *darwin*) + AC_DEFINE([DEFAULT_SKIP_THREAD_PRIORITY], [1], [default to skip thread priority]) + CPPFLAGS="-D" if test "$ac_cv_prog_gcc" = "yes" then FLAGS="-D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT" |