diff options
author | unknown <serg@serg.mylan> | 2004-11-17 14:38:01 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-17 14:38:01 +0100 |
commit | 7fc70c7f40187be08f82c7ba1290f63ffd854308 (patch) | |
tree | 538a718516c0dc2b89ab2d97d286cb313eda6b8a /include | |
parent | c0114674fda0002305c625999af39d2fd130844f (diff) | |
download | mariadb-git-7fc70c7f40187be08f82c7ba1290f63ffd854308.tar.gz |
#warning removed
AC_FUNC_MMAP changes to AC_CHECK_FUNCS(mmap)
configure.in:
don't use AC_FUNC_MMAP - it checks for "private fixed mapping of
already-mapped memory" - and we don't care about it.
use regular AC_CHECK_FUNCS(mmap) instead
(blame autoconf for misleading macro name - should've been
AC_MMAP_CAN_DO_PRIVATE_FIXING_MAPPING_OF_ALREADY_MAPPED_MEMORY :)
include/my_pthread.h:
not all cpp's understand #warning :-[]
Diffstat (limited to 'include')
-rw-r--r-- | include/my_pthread.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index 29d1c0bc1d9..b483b68d5cb 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -702,7 +702,6 @@ static inline bool thread_safe_dec_and_test(ulong V, pthread_mutex_t *L) a regular function somewhere in mysys/ ? for now it's only used in c++ code, so there's no need to bother */ -#warning "No thread_safe_dec_and_test() for this architecture" #endif #endif /* HAVE_ATOMIC_ADD */ #ifdef SAFE_STATISTICS |