2
# Copyright (C) 2006, 2009, Innobase Oy. All Rights Reserved.
4
# This program is free software; you can redistribute it and/or modify it under
5
# the terms of the GNU General Public License as published by the Free Software
6
# Foundation; version 2 of the License.
8
# This program is distributed in the hope that it will be useful, but WITHOUT
9
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
# You should have received a copy of the GNU General Public License along with
13
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
14
# St, Fifth Floor, Boston, MA 02110-1301 USA
17
AC_DEFUN([AC_INNODB_ACTIONS],[
20
AC_REQUIRE([AC_FUNC_MMAP])
22
AC_CHECK_LIB(rt, aio_read, [innodb_system_libs="-lrt"])
23
AC_SUBST(innodb_system_libs)
24
AC_CHECK_HEADERS(aio.h sched.h)
25
AC_CHECK_SIZEOF(int, 4)
26
AC_CHECK_SIZEOF(long, 4)
27
AC_CHECK_SIZEOF(void*, 4)
28
AC_CHECK_FUNCS(sched_yield fdatasync localtime_r pread)
29
AC_CHECK_FUNCS([uname munmap memchr getpagesize bzero])
33
AM_CFLAGS="$AM_CFLAGS -DUNIV_LINUX";;
35
AM_CFLAGS="$AM_CFLAGS -DUNIV_MUST_NOT_INLINE -DUNIV_HPUX -DUNIV_HPUX10";;
37
AM_CFLAGS="$AM_CFLAGS -DUNIV_MUST_NOT_INLINE -DUNIV_HPUX";;
39
AM_CFLAGS="$AM_CFLAGS -DUNIV_AIX";;
40
irix*|osf*|sysv5uw7*|openbsd*)
41
AM_CFLAGS="$AM_CFLAGS -DUNIV_MUST_NOT_INLINE";;
43
# Begin Solaris atomic function checks
44
AC_CHECK_FUNCS([atomic_cas_ulong atomic_cas_32 \
45
atomic_cas_64 atomic_add_long],
46
[plugin_innodb_have_solaris_atomics=yes],
47
[plugin_innodb_have_solaris_atomics=no])
49
AS_IF([test "${plugin_innodb_have_solaris_atomics}" = "yes"],[
50
AC_DEFINE([HAVE_SOLARIS_ATOMICS],
52
[Define to 1 if Solaris supports \
55
### End Solaris atomic function checks
56
AM_CFLAGS="$AM_CFLAGS -DUNIV_SOLARIS";;
58
INNODB_DYNAMIC_CFLAGS="-DPANDORA_DYNAMIC_PLUGIN"
61
# The AMD64 ABI forbids absolute addresses in shared libraries
64
# Use absolute addresses on IA-32
65
INNODB_DYNAMIC_CFLAGS="$INNODB_DYNAMIC_CFLAGS -prefer-non-pic"
68
AC_SUBST(INNODB_DYNAMIC_CFLAGS)
70
AC_CACHE_CHECK([whether pthread_t can be used by GCC atomic builtins],
71
[ac_cv_plugin_innodb_have_gcc_atomic],[
81
memset(&x1, 0x0, sizeof(x1));
82
memset(&x2, 0x0, sizeof(x2));
83
memset(&x3, 0x0, sizeof(x3));
85
__sync_bool_compare_and_swap(&x1, x2, x3);
87
[ac_cv_plugin_innodb_have_gcc_atomic=yes],
88
[ac_cv_plugin_innodb_have_gcc_atomic=no])
90
AS_IF([test "${ac_cv_plugin_innodb_have_gcc_atomic}" = "yes"],[
91
AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1],
92
[pthread_t can be used by GCC atomic builtins])
96
[whether __attribute__ visibility "hidden" is supported],
97
[ac_cv_can_use_hidden_],[
99
dnl Must be done once we turn on warnings and such
100
save_CXXFLAGS="${CXXFLAGS}"
101
CXXFLAGS="${AM_CXXFLAGS} ${CXXFLAGS}"
105
__attribute__((visibility ("hidden")))
109
[ac_cv_can_use_hidden_=yes],
110
[ac_cv_can_use_hidden_=no])
111
CXXFLAGS="${save_CXXFLAGS}"
113
AS_IF([test "$ac_cv_can_use_hidden_" = "yes"],[
114
AC_DEFINE(HAVE_ATTR_HIDDEN, 1,
115
[Define to 1 if you have support for __attribute__((visibility("hidden")))])
118
# Try using solaris atomics on SunOS if GCC atomics are not available
119
AS_IF([test "${ac_cv_plugin_innodb_have_gcc_atomic}" = "yes"],[
120
AC_MSG_NOTICE([no need to check pthread_t size])
122
AS_IF([test "${ac_cv_plugin_innodb_have_solaris_atomics}" = "yes"],[
123
AC_CACHE_CHECK([checking if pthread_t size is integral],
124
[ac_cv_plugin_innodb_pthread_integral],[
131
ac_cv_plugin_innodb_pthread_integral=yes
133
ac_cv_plugin_innodb_pthread_integral=no
136
AS_IF([test "${ac_cv_plugin_innodb_pthread_integral}" = "yes"],[
137
AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1],
138
[pthread_t can be used by solaris atomics])
140
# size of pthread_t is needed for typed solaris atomics
141
AC_CHECK_SIZEOF([pthread_t], [], [
147
# Check for x86 PAUSE instruction
148
AC_CACHE_CHECK([for x86 PAUSE instruction],[ac_cv_plugin_innodb_has_pause],[
149
# We have to actually try running the test program, because of a bug
150
# in Solaris on x86_64, where it wrongly reports that PAUSE is not
151
# supported when trying to run an application. See
152
# http://bugs.opensolaris.org/bugdatabase/printableBug.do?bug_id=6478684
153
# We use ib_ prefix to avoid collisoins if this code is added to
154
# mysql's configure.in.
155
AC_RUN_IFELSE([AC_LANG_PROGRAM([[]],[[
156
__asm__ __volatile__ ("pause");
158
ac_cv_plugin_innodb_has_pause=yes
160
ac_cv_plugin_innodb_has_pause=no
163
AS_IF([test "${ac_cv_plugin_innodb_has_pause}" = "yes"],[
164
AC_DEFINE([IB_HAVE_PAUSE_INSTRUCTION], [1],
165
[Does x86 PAUSE instruction exist])
171
# vim: set ft=config: