diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-17 18:02:56 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-17 18:02:56 +0300 |
commit | 0c8071a3a1f430640aa9911f51209cf844c8c2bf (patch) | |
tree | cb6c69dea958c68e0dfee4737f5b9a8f63b37aee /mysys/my_pthread.c | |
parent | 9a1c277f09d339bbfc0a8991b549aaf4648ab260 (diff) | |
download | mariadb-git-0c8071a3a1f430640aa9911f51209cf844c8c2bf.tar.gz |
Portability fixes for 4.0.3 build.
Don't update MyISAM index file on UPDATE if index is not changed
Build-tools/Do-compile:
Remove log files as early as possible
Docs/manual.texi:
Changelog
BitKeeper/etc/ignore:
Added myisam/test2.MYD myisam/test2.MYI to the ignore list
include/my_semaphore.h:
Portability fix for SCO and BSDI
innobase/configure.in:
Don't use inline with openbsd as this cases linker problems.
myisam/mi_update.c:
Don't update index file on UPDATE if index is not changed
mysys/my_pthread.c:
Portability fix for hpux
sql/item_cmpfunc.cc:
Don't convert bigint to bigint
Diffstat (limited to 'mysys/my_pthread.c')
-rw-r--r-- | mysys/my_pthread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mysys/my_pthread.c b/mysys/my_pthread.c index 9abe5d22c92..54a5c71c695 100644 --- a/mysys/my_pthread.c +++ b/mysys/my_pthread.c @@ -387,14 +387,13 @@ int pthread_signal(int sig, void (*func)()) #undef pthread_mutex_destroy #undef pthread_mutex_wait #undef pthread_mutex_timedwait +#undef pthread_mutex_trylock #undef pthread_mutex_t +#undef pthread_cond_init #undef pthread_cond_wait #undef pthread_cond_timedwait -#undef pthread_mutex_trylock -#undef pthread_mutex_t #undef pthread_cond_t - /***************************************************************************** ** Patches for AIX and DEC OSF/1 3.2 *****************************************************************************/ |