1
dnl Copyright (C) 2009 Sun Microsystems, Inc.
2
dnl This file is free software; Sun Microsystems, Inc.
3
dnl gives unlimited permission to copy and/or distribute it,
4
dnl with or without modifications, as long as this notice is preserved.
6
dnl Which version of the canonical setup we're using
7
AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.171])
9
AC_DEFUN([PANDORA_FORCE_DEPEND_TRACKING],[
10
AC_ARG_ENABLE([fat-binaries],
11
[AS_HELP_STRING([--enable-fat-binaries],
12
[Enable fat binary support on OSX @<:@default=off@:>@])],
13
[ac_enable_fat_binaries="$enableval"],
14
[ac_enable_fat_binaries="no"])
16
dnl Force dependency tracking on for Sun Studio builds
17
AS_IF([test "x${enable_dependency_tracking}" = "x"],[
18
enable_dependency_tracking=yes
20
dnl If we're building OSX Fat Binaries, we have to turn off -M options
21
AS_IF([test "x${ac_enable_fat_binaries}" = "xyes"],[
22
enable_dependency_tracking=no
26
AC_DEFUN([PANDORA_BLOCK_BAD_OPTIONS],[
27
AS_IF([test "x${prefix}" = "x"],[
28
AC_MSG_ERROR([--prefix requires an argument])
32
dnl The standard setup for how we build Pandora projects
33
AC_DEFUN([PANDORA_CANONICAL_TARGET],[
34
AC_REQUIRE([PANDORA_FORCE_DEPEND_TRACKING])
35
ifdef([m4_define],,[define([m4_define], defn([define]))])
36
ifdef([m4_undefine],,[define([m4_undefine], defn([undefine]))])
37
m4_define([PCT_ALL_ARGS],[$*])
38
m4_define([PCT_REQUIRE_CXX],[no])
39
m4_define([PCT_FORCE_GCC42],[no])
40
m4_define([PCT_DONT_SUPPRESS_INCLUDE],[no])
41
m4_define([PCT_NO_VC_CHANGELOG],[no])
42
m4_define([PCT_VERSION_FROM_VC],[no])
43
m4_define([PCT_USE_VISIBILITY],[yes])
44
m4_foreach([pct_arg],[$*],[
47
m4_undefine([PCT_REQUIRE_CXX])
48
m4_define([PCT_REQUIRE_CXX],[yes])
51
m4_undefine([PCT_FORCE_GCC42])
52
m4_define([PCT_FORCE_GCC42],[yes])
55
m4_undefine([PCT_USE_VISIBILITY])
56
m4_define([PCT_USE_VISIBILITY],[no])
58
[dont-suppress-include], [
59
m4_undefine([PCT_DONT_SUPPRESS_INCLUDE])
60
m4_define([PCT_DONT_SUPPRESS_INCLUDE],[yes])
63
m4_undefine([PCT_NO_VC_CHANGELOG])
64
m4_define([PCT_NO_VC_CHANGELOG],[yes])
67
m4_undefine([PCT_VERSION_FROM_VC])
68
m4_define([PCT_VERSION_FROM_VC],[yes])
72
AC_CONFIG_MACRO_DIR([m4])
74
m4_if(m4_substr(m4_esyscmd(test -d src && echo 0),0,1),0,[
75
AC_CONFIG_HEADERS([src/config.h])
77
AC_CONFIG_HEADERS([config.h])
80
PANDORA_BLOCK_BAD_OPTIONS
82
# We need to prevent canonical target
83
# from injecting -O2 into CFLAGS - but we won't modify anything if we have
84
# set CFLAGS on the command line, since that should take ultimate precedence
85
AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"],
87
AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],
92
m4_if(PCT_DONT_SUPRESS_INCLUDE,yes,[
93
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability subdir-objects foreign tar-ustar)
95
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability nostdinc subdir-objects foreign tar-ustar)
98
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
100
m4_if(m4_substr(m4_esyscmd(test -d gnulib && echo 0),0,1),0,[
106
AC_REQUIRE([AC_PROG_CC])
107
m4_if(PCT_FORCE_GCC42, [yes], [
108
AC_REQUIRE([PANDORA_ENSURE_GCC_VERSION])
110
AC_REQUIRE([PANDORA_64BIT])
112
m4_if(PCT_NO_VC_CHANGELOG,yes,[
117
m4_if(PCT_VERSION_FROM_VC,yes,[
122
changequote(<<, >>)dnl
123
PANDORA_RELEASE_ID=`echo $VERSION | sed 's/[^0-9]//g'`
126
PANDORA_RELEASE_COMMENT=""
127
AC_DEFINE_UNQUOTED([PANDORA_RELEASE_VERSION],["$VERSION"],
128
[Version of the software])
130
AC_SUBST(PANDORA_RELEASE_COMMENT)
131
AC_SUBST(PANDORA_RELEASE_VERSION)
132
AC_SUBST(PANDORA_RELEASE_ID)
136
dnl Once we can use a modern autoconf, we can use this
138
AC_REQUIRE([AC_PROG_CXX])
148
dnl autoconf doesn't automatically provide a fail-if-no-C++ macro
149
dnl so we check c++98 features and fail if we don't have them, mainly
151
PANDORA_CHECK_CXX_STANDARD
152
m4_if(PCT_REQUIRE_CXX, [yes], [
153
AS_IF([test "$ac_cv_cxx_stdcxx_98" = "no"],[
154
AC_MSG_ERROR([No working C++ Compiler has been found. ${PACKAGE} requires a C++ compiler that can handle C++98])
158
PANDORA_CXX_CINTTYPES
160
m4_if(m4_substr(m4_esyscmd(test -d gnulib && echo 0),0,1),0,[
162
AC_CONFIG_LIBOBJ_DIR([gnulib])
165
PANDORA_CHECK_C_VERSION
166
PANDORA_CHECK_CXX_VERSION
178
PANDORA_CLOCK_GETTIME
180
AC_CHECK_HEADERS(sys/socket.h)
182
# off_t is not a builtin type
183
AC_CHECK_SIZEOF(off_t, 4)
184
AS_IF([test "$ac_cv_sizeof_off_t" -eq 0],[
185
AC_MSG_ERROR("${PACKAGE} needs an off_t type.")
188
AC_CHECK_SIZEOF(size_t)
189
AS_IF([test "$ac_cv_sizeof_size_t" -eq 0],[
190
AC_MSG_ERROR("${PACKAGE} needs an size_t type.")
193
AC_DEFINE_UNQUOTED([SIZEOF_SIZE_T],[$ac_cv_sizeof_size_t],[Size of size_t as computed by sizeof()])
194
AC_CHECK_SIZEOF(long long)
195
AC_DEFINE_UNQUOTED([SIZEOF_LONG_LONG],[$ac_cv_sizeof_long_long],[Size of long long as computed by sizeof()])
196
AC_CACHE_CHECK([if time_t is unsigned], [ac_cv_time_t_unsigned],[
197
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
202
int array[(((time_t)-1) > 0) ? 1 : -1];
205
ac_cv_time_t_unsigned=yes
207
ac_cv_time_t_unsigned=no
210
AS_IF([test "$ac_cv_time_t_unsigned" = "yes"],[
211
AC_DEFINE([TIME_T_UNSIGNED], 1, [Define to 1 if time_t is unsigned])
214
AC_CACHE_CHECK([if system defines RUSAGE_THREAD], [ac_cv_rusage_thread],[
215
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
217
#include <sys/time.h>
218
#include <sys/resource.h>
220
int x= RUSAGE_THREAD;
223
ac_cv_rusage_thread=yes
225
ac_cv_rusage_thread=no
228
AS_IF([test "$ac_cv_rusage_thread" = "no"],[
229
AC_DEFINE([RUSAGE_THREAD], [RUSAGE_SELF],
230
[Define if system doesn't define])
234
dnl Bug on FreeBSD - LIBM check doesn't set the damn variable
237
AC_CHECK_FUNC(setsockopt, [], [AC_CHECK_LIB(socket, setsockopt)])
238
AC_CHECK_FUNC(bind, [], [AC_CHECK_LIB(bind, bind)])
245
# Test whether madvise() is declared in C++ code -- it is not on some
246
# systems, such as Solaris
247
AC_CHECK_DECLS([madvise], [], [], [AC_INCLUDES_DEFAULT[
249
#include <sys/types.h>
250
#include <sys/mman.h>
255
PANDORA_HAVE_GCC_ATOMICS
257
m4_if(PCT_USE_VISIBILITY,[yes],[
258
PANDORA_ENABLE_VISIBILITY
260
PANDORA_CHECK_VISIBILITY
263
PANDORA_HEADER_ASSERT
265
PANDORA_WARNINGS(PCT_ALL_ARGS)
267
PANDORA_ENABLE_DTRACE
270
PANDORA_HAVE_BETTER_MALLOC
272
AC_CHECK_PROGS([DOXYGEN], [doxygen])
273
AC_CHECK_PROGS([PERL], [perl])
274
AC_CHECK_PROGS([DPKG_GENSYMBOLS], [dpkg-gensymbols], [:])
275
AC_CHECK_PROGS([LCOV], [lcov], [echo lcov not found])
276
AC_CHECK_PROGS([LCOV_GENHTML], [genhtml], [echo genhtml not found])
278
AC_CHECK_PROGS([SPHINXBUILD], [sphinx-build], [:])
279
AS_IF([test "x${SPHINXBUILD}" != "x:"],[
280
AC_CACHE_CHECK([if sphinx is new enough],[ac_cv_recent_sphinx],[
282
${SPHINXBUILD} -Q -C -b man -d conftest.d . . >/dev/null 2>&1
283
AS_IF([test $? -eq 0],[ac_cv_recent_sphinx=yes],
284
[ac_cv_recent_sphinx=no])
289
AM_CONDITIONAL(HAVE_DPKG_GENSYMBOLS,[test "x${DPKG_GENSYMBOLS}" != "x:"])
290
AM_CONDITIONAL(HAVE_SPHINX,[test "x${SPHINXBUILD}" != "x:"])
291
AM_CONDITIONAL(HAVE_RECENT_SPHINX,[test "x${ac_cv_recent_sphinx}" = "xyes"])
293
m4_if(m4_substr(m4_esyscmd(test -d po && echo 0),0,1),0, [
295
IT_PROG_INTLTOOL([0.35],[no-xml])
297
GETTEXT_PACKAGE=$PACKAGE
298
AC_CHECK_LIB(intl, libintl_gettext)
299
AC_SUBST([GETTEXT_PACKAGE])
300
AS_IF([test "x${USE_NLS}" = "xyes" -a "x${pandora_have_intltool}" = "xyes"],
301
[AC_DEFINE([ENABLE_NLS],[1],[Turn on language support])
302
AC_CONFIG_FILES([po/Makefile.in])
305
AM_CONDITIONAL(BUILD_PO,[test "x${USE_NLS}" = "xyes" -a "x${pandora_have_intltool}" = "xyes"])
307
AS_IF([test "x${gl_LIBOBJS}" != "x"],[
308
AS_IF([test "$GCC" = "yes"],[
309
AM_CPPFLAGS="-isystem \${top_srcdir}/gnulib -isystem \${top_builddir}/gnulib ${AM_CPPFLAGS}"
311
AM_CPPFLAGS="-I\${top_srcdir}/gnulib -I\${top_builddir}/gnulib ${AM_CPPFLAGS}"
314
m4_if(m4_substr(m4_esyscmd(test -d src && echo 0),0,1),0,[
315
AM_CPPFLAGS="-I\$(top_srcdir)/src -I\$(top_builddir)/src ${AM_CPPFLAGS}"
317
AM_CPPFLAGS="-I\$(top_srcdir) -I\$(top_builddir) ${AM_CPPFLAGS}"
326
/* _SYS_FEATURE_TESTS_H is Solaris, _FEATURES_H is GCC */
327
#if defined( _SYS_FEATURE_TESTS_H) || defined(_FEATURES_H)
328
#error "You should include config.h as your first include file"
331
#include "config/top.h"
334
cat > config/top.h.stamp <<EOF_CONFIG_TOP
336
#if defined(i386) && !defined(__i386__)
340
#if defined(_FILE_OFFSET_BITS)
341
# undef _FILE_OFFSET_BITS
345
diff config/top.h.stamp config/top.h >/dev/null 2>&1 || mv config/top.h.stamp config/top.h
346
rm -f config/top.h.stamp
349
#if defined(__cplusplus)
351
# include CINTTYPES_H
354
# include <inttypes.h>
357
#if !defined(HAVE_ULONG) && !defined(__USE_MISC)
358
# define HAVE_ULONG 1
359
typedef unsigned long int ulong;
362
/* To hide the platform differences between MS Windows and Unix, I am
363
* going to use the Microsoft way and #define the Microsoft-specific
364
* functions to the unix way. Microsoft use a separate subsystem for sockets,
365
* but Unix normally just use a filedescriptor on the same functions. It is
366
* a lot easier to map back to the unix way with macros than going the other
367
* way without side effect ;-)
369
#ifdef TARGET_OS_WINDOWS
370
#define random() rand()
371
#define srandom(a) srand(a)
372
#define get_socket_errno() WSAGetLastError()
374
#define INVALID_SOCKET -1
375
#define SOCKET_ERROR -1
376
#define closesocket(a) close(a)
377
#define get_socket_errno() errno
380
#if defined(__cplusplus)
385
template<typename To, typename From>
386
inline To implicit_cast(From const &f) {
389
template<typename To, typename From> // use like this: down_cast<T*>(foo);
390
inline To down_cast(From* f) { // so we only accept pointers
391
// Ensures that To is a sub-type of From *. This test is here only
392
// for compile-time type checking, and has no overhead in an
393
// optimized build at run-time, as it will be optimized away
396
implicit_cast<From*, To>(0);
400
assert(f == NULL || dynamic_cast<To>(f) != NULL); // RTTI: debug mode only!
402
return static_cast<To>(f);
404
#endif /* defined(__cplusplus) */
406
#endif /* __CONFIG_H__ */
409
AM_CFLAGS="${AM_CFLAGS} ${CC_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"
410
AM_CXXFLAGS="${AM_CXXFLAGS} ${CXX_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"
412
AC_SUBST([AM_CFLAGS])
413
AC_SUBST([AM_CXXFLAGS])
414
AC_SUBST([AM_CPPFLAGS])
415
AC_SUBST([AM_LDFLAGS])