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 /configure.in | |
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 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index abf2ae9790f..e09d15866c3 100644 --- a/configure.in +++ b/configure.in @@ -1910,7 +1910,7 @@ if test "$GCC" != "yes"; then AC_SYS_COMPILER_FLAG(-nolib_inline,nolib_inline,CFLAGS,[],[]) fi -AC_FUNC_MMAP +#AC_FUNC_MMAP AC_TYPE_SIGNAL MYSQL_TYPE_QSORT AC_FUNC_UTIME_NULL @@ -1921,7 +1921,7 @@ AC_CHECK_FUNCS(alarm bcmp bfill bmove bzero chsize cuserid fchmod fcntl \ getcwd gethostbyaddr_r gethostbyname_r getpass getpassphrase getpwnam \ getpwuid getrlimit getrusage getwd gmtime_r index initgroups isnan \ localtime_r locking longjmp lrand48 madvise mallinfo memcpy memmove \ - mkstemp mlockall perror poll pread pthread_attr_create \ + mkstemp mlockall perror poll pread pthread_attr_create mmap \ pthread_attr_getstacksize pthread_attr_setprio pthread_attr_setschedparam \ pthread_attr_setstacksize pthread_condattr_create pthread_getsequence_np \ pthread_key_delete pthread_rwlock_rdlock pthread_setprio \ |