Updated to latest pandora-build. Removed the .ver scripts to be consistent with other...
[awesomized/libmemcached] / m4 / pandora_canonical.m4
1 dnl Copyright (C) 2009 Sun Microsystems
2 dnl This file is free software; Sun Microsystems
3 dnl gives unlimited permission to copy and/or distribute it,
4 dnl with or without modifications, as long as this notice is preserved.
5
6 dnl Which version of the canonical setup we're using
7 AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.86])
8
9 AC_DEFUN([PANDORA_FORCE_DEPEND_TRACKING],[
10 dnl Force dependency tracking on for Sun Studio builds
11 AS_IF([test "x${enable_dependency_tracking}" = "x"],[
12 enable_dependency_tracking=yes
13 ])
14 ])
15
16 dnl The standard setup for how we build Pandora projects
17 AC_DEFUN([PANDORA_CANONICAL_TARGET],[
18 AC_REQUIRE([PANDORA_FORCE_DEPEND_TRACKING])
19 ifdef([m4_define],,[define([m4_define], defn([define]))])
20 ifdef([m4_undefine],,[define([m4_undefine], defn([undefine]))])
21 m4_define([PCT_ALL_ARGS],[$*])
22 m4_define([PCT_USE_GNULIB],[no])
23 m4_define([PCT_REQUIRE_CXX],[no])
24 m4_define([PCT_IGNORE_SHARED_PTR],[no])
25 m4_define([PCT_FORCE_GCC42],[no])
26 m4_define([PCT_SRC_IN_SRC],[no])
27 m4_define([PCT_VERSION_FROM_VC],[no])
28 m4_define([PCT_USE_VISIBILITY],[yes])
29 m4_foreach([pct_arg],[$*],[
30 m4_case(pct_arg,
31 [use-gnulib], [
32 m4_undefine([PCT_USE_GNULIB])
33 m4_define([PCT_USE_GNULIB],[yes])
34 ],
35 [require-cxx], [
36 m4_undefine([PCT_REQUIRE_CXX])
37 m4_define([PCT_REQUIRE_CXX],[yes])
38 ],
39 [ignore-shared-ptr], [
40 m4_undefine([PCT_IGNORE_SHARED_PTR])
41 m4_define([PCT_IGNORE_SHARED_PTR],[yes])
42 ],
43 [force-gcc42], [
44 m4_undefine([PCT_FORCE_GCC42])
45 m4_define([PCT_FORCE_GCC42],[yes])
46 ],
47 [skip-visibility], [
48 m4_undefine([PCT_USE_VISIBILITY])
49 m4_define([PCT_USE_VISIBILITY],[no])
50 ],
51 [src-in-src], [
52 m4_undefine([PCT_SRC_IN_SRC])
53 m4_define([PCT_SRC_IN_SRC],[yes])
54 ],
55 [version-from-vc], [
56 m4_undefine([PCT_VERSION_FROM_VC])
57 m4_define([PCT_VERSION_FROM_VC],[yes])
58 ])
59 ])
60
61 # We need to prevent canonical target
62 # from injecting -O2 into CFLAGS - but we won't modify anything if we have
63 # set CFLAGS on the command line, since that should take ultimate precedence
64 AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"],
65 [CFLAGS=""])
66 AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],
67 [CXXFLAGS=""])
68
69 AC_CANONICAL_TARGET
70
71 AM_INIT_AUTOMAKE(-Wall -Werror nostdinc subdir-objects foreign)
72 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
73
74 m4_if(PCT_USE_GNULIB,yes,[ gl_EARLY ])
75
76 AC_REQUIRE([AC_PROG_CC])
77 AC_REQUIRE([PANDORA_MAC_GCC42])
78 AC_REQUIRE([PANDORA_64BIT])
79
80 m4_if(PCT_VERSION_FROM_VC,yes,[
81 PANDORA_VC_VERSION
82 ])
83 PANDORA_VERSION
84
85 dnl Once we can use a modern autoconf, we can use this
86 dnl AC_PROG_CC_C99
87 AC_REQUIRE([AC_PROG_CXX])
88 PANDORA_EXTENSIONS
89 AM_PROG_CC_C_O
90
91
92 m4_if(PCT_FORCE_GCC42, [yes], [
93 AS_IF([test "$GCC" = "yes"], PANDORA_ENSURE_GCC_VERSION)
94 ])
95
96 PANDORA_PLATFORM
97
98 PANDORA_LIBTOOL
99
100 dnl autoconf doesn't automatically provide a fail-if-no-C++ macro
101 dnl so we check c++98 features and fail if we don't have them, mainly
102 dnl for that reason
103 PANDORA_CHECK_CXX_STANDARD
104 m4_if(PCT_REQUIRE_CXX, [yes], [
105 AS_IF([test "$ac_cv_cxx_stdcxx_98" = "no"],[
106 AC_MSG_ERROR([No working C++ Compiler has been found. ${PACKAGE} requires a C++ compiler that can handle C++98])
107 ])
108
109 ])
110
111 PANDORA_SHARED_PTR
112 m4_if(PCT_IGNORE_SHARED_PTR, [no], [
113 AS_IF([test "$ac_cv_shared_ptr_namespace" = "missing"],[
114 AC_MSG_WARN([a usable shared_ptr implementation was not found. Let someone know what your platform is.])
115 ])
116 ])
117
118 m4_if(PCT_USE_GNULIB, [yes], [
119 gl_INIT
120 AC_CONFIG_LIBOBJ_DIR([gnulib])
121 ])
122
123 PANDORA_CHECK_C_VERSION
124 PANDORA_CHECK_CXX_VERSION
125
126 AC_C_BIGENDIAN
127 AC_C_CONST
128 AC_C_INLINE
129 AC_C_VOLATILE
130 AC_C_RESTRICT
131
132 AC_HEADER_TIME
133 AC_TYPE_SIZE_T
134 AC_SYS_LARGEFILE
135
136 # off_t is not a builtin type
137 AC_CHECK_SIZEOF(off_t, 4)
138 AS_IF([test "$ac_cv_sizeof_off_t" -eq 0],[
139 AC_MSG_ERROR("${PACKAGE} needs an off_t type.")
140 ])
141
142 AC_CHECK_SIZEOF(size_t)
143 AS_IF([test "$ac_cv_sizeof_size_t" -eq 0],[
144 AC_MSG_ERROR("${PACKAGE} needs an size_t type.")
145 ])
146
147 AC_DEFINE_UNQUOTED([SIZEOF_SIZE_T],[$ac_cv_sizeof_size_t],[Size of size_t as computed by sizeof()])
148 AC_CHECK_SIZEOF(long long)
149 AC_DEFINE_UNQUOTED([SIZEOF_LONG_LONG],[$ac_cv_sizeof_long_long],[Size of long long as computed by sizeof()])
150 AC_CACHE_CHECK([if time_t is unsigned], [ac_cv_time_t_unsigned],[
151 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
152 [[
153 #include <time.h>
154 ]],
155 [[
156 int array[(((time_t)-1) > 0) ? 1 : -1];
157 ]])
158 ],[
159 ac_cv_time_t_unsigned=yes
160 ],[
161 ac_cv_time_t_unsigned=no
162 ])
163 ])
164 AS_IF([test "$ac_cv_time_t_unsigned" = "yes"],[
165 AC_DEFINE([TIME_T_UNSIGNED], 1, [Define to 1 if time_t is unsigned])
166 ])
167
168 dnl AC_FUNC_ALLOCA would test for stack direction if we didn't have a working
169 dnl alloca - but we need to know it anyway for check_stack_overrun.
170 PANDORA_STACK_DIRECTION
171
172 AC_CHECK_LIBM
173
174 AC_CHECK_FUNC(setsockopt, [], [AC_CHECK_LIB(socket, setsockopt)])
175 AC_CHECK_FUNC(bind, [], [AC_CHECK_LIB(bind, bind)])
176
177
178
179 PANDORA_OPTIMIZE
180
181 AC_LANG_PUSH(C++)
182 # Test whether madvise() is declared in C++ code -- it is not on some
183 # systems, such as Solaris
184 AC_CHECK_DECLS([madvise], [], [], [AC_INCLUDES_DEFAULT[
185 #if HAVE_SYS_MMAN_H
186 #include <sys/types.h>
187 #include <sys/mman.h>
188 #endif
189 ]])
190 AC_LANG_POP()
191
192 PANDORA_HAVE_GCC_ATOMICS
193
194 m4_if(PCT_USE_VISIBILITY,[yes],[
195 dnl We need to inject error into the cflags to test if visibility works or not
196 save_CFLAGS="${CFLAGS}"
197 CFLAGS="${CFLAGS} -Werror"
198 gl_VISIBILITY
199 CFLAGS="${save_CFLAGS}"
200 ])
201
202 PANDORA_HEADER_ASSERT
203
204 PANDORA_WARNINGS(PCT_ALL_ARGS)
205
206 PANDORA_ENABLE_DTRACE
207
208 AC_LIB_PREFIX
209 PANDORA_HAVE_BETTER_MALLOC
210
211 AC_CHECK_PROGS([DOXYGEN], [doxygen])
212 AC_CHECK_PROGS([PERL], [perl])
213
214 AS_IF([test "x${gl_LIBOBJS}" != "x"],[
215 AS_IF([test "$GCC" = "yes"],[
216 AM_CPPFLAGS="-isystem \$(top_srcdir)/gnulib -isystem \$(top_builddir)/gnulib ${AM_CPPFLAGS}"
217 ],[
218 AM_CPPFLAGS="-I\$(top_srcdir)/gnulib -I\$(top_builddir)/gnulib ${AM_CPPFLAGS}"
219 ])
220 ])
221 AS_IF([test "PCT_SRC_IN_SRC" = "yes"],[
222 AM_CPPFLAGS="-I\$(top_srcdir)/src -I\$(top_builddir)/src ${AM_CPPFLAGS}"
223 ])
224
225 PANDORA_USE_PIPE
226
227
228 AM_CPPFLAGS="-I\${top_srcdir} -I\${top_builddir} ${AM_CPPFLAGS}"
229 AM_CFLAGS="${AM_CFLAGS} ${CC_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"
230 AM_CXXFLAGS="${AM_CXXFLAGS} ${CXX_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"
231
232 AC_SUBST([AM_CFLAGS])
233 AC_SUBST([AM_CXXFLAGS])
234 AC_SUBST([AM_CPPFLAGS])
235
236 ])