1
dnl Copyright (C) 2009 Sun Microsystems
2
dnl This file is free software; Sun Microsystems
1
dnl Copyright (C) 2009 Sun Microsystems, Inc.
2
dnl This file is free software; Sun Microsystems, Inc.
3
3
dnl gives unlimited permission to copy and/or distribute it,
4
4
dnl with or without modifications, as long as this notice is preserved.
6
6
dnl Which version of the canonical setup we're using
7
AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.134])
7
AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.171])
9
9
AC_DEFUN([PANDORA_FORCE_DEPEND_TRACKING],[
10
10
AC_ARG_ENABLE([fat-binaries],
26
AC_DEFUN([PANDORA_BLOCK_BAD_OPTIONS],[
27
AS_IF([test "x${prefix}" = "x"],[
28
AC_MSG_ERROR([--prefix requires an argument])
26
32
dnl The standard setup for how we build Pandora projects
27
33
AC_DEFUN([PANDORA_CANONICAL_TARGET],[
28
34
AC_REQUIRE([PANDORA_FORCE_DEPEND_TRACKING])
32
38
m4_define([PCT_REQUIRE_CXX],[no])
33
39
m4_define([PCT_FORCE_GCC42],[no])
34
40
m4_define([PCT_DONT_SUPPRESS_INCLUDE],[no])
41
m4_define([PCT_NO_VC_CHANGELOG],[no])
35
42
m4_define([PCT_VERSION_FROM_VC],[no])
36
43
m4_define([PCT_USE_VISIBILITY],[yes])
37
44
m4_foreach([pct_arg],[$*],[
52
59
m4_undefine([PCT_DONT_SUPPRESS_INCLUDE])
53
60
m4_define([PCT_DONT_SUPPRESS_INCLUDE],[yes])
63
m4_undefine([PCT_NO_VC_CHANGELOG])
64
m4_define([PCT_NO_VC_CHANGELOG],[yes])
55
66
[version-from-vc], [
56
67
m4_undefine([PCT_VERSION_FROM_VC])
57
68
m4_define([PCT_VERSION_FROM_VC],[yes])
66
77
AC_CONFIG_HEADERS([config.h])
80
PANDORA_BLOCK_BAD_OPTIONS
69
82
# We need to prevent canonical target
70
83
# from injecting -O2 into CFLAGS - but we won't modify anything if we have
71
84
# set CFLAGS on the command line, since that should take ultimate precedence
77
90
AC_CANONICAL_TARGET
79
92
m4_if(PCT_DONT_SUPRESS_INCLUDE,yes,[
80
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability subdir-objects foreign)
93
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability subdir-objects foreign tar-ustar)
82
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability nostdinc subdir-objects foreign)
95
AM_INIT_AUTOMAKE(-Wall -Werror -Wno-portability nostdinc subdir-objects foreign tar-ustar)
85
98
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
87
100
m4_if(m4_substr(m4_esyscmd(test -d gnulib && echo 0),0,1),0,[
91
106
AC_REQUIRE([AC_PROG_CC])
95
110
AC_REQUIRE([PANDORA_64BIT])
112
m4_if(PCT_NO_VC_CHANGELOG,yes,[
97
117
m4_if(PCT_VERSION_FROM_VC,yes,[
98
118
PANDORA_VC_VERSION
100
120
PANDORA_TEST_VC_DIR
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)
121
153
AS_IF([test "$ac_cv_cxx_stdcxx_98" = "no"],[
122
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
127
160
m4_if(m4_substr(m4_esyscmd(test -d gnulib && echo 0),0,1),0,[
145
178
PANDORA_CLOCK_GETTIME
180
AC_CHECK_HEADERS(sys/socket.h)
147
182
# off_t is not a builtin type
148
183
AC_CHECK_SIZEOF(off_t, 4)
149
184
AS_IF([test "$ac_cv_sizeof_off_t" -eq 0],[
176
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])
180
234
dnl Bug on FreeBSD - LIBM check doesn't set the damn variable
201
255
PANDORA_HAVE_GCC_ATOMICS
203
257
m4_if(PCT_USE_VISIBILITY,[yes],[
204
dnl We need to inject error into the cflags to test if visibility works or not
205
save_CFLAGS="${CFLAGS}"
206
CFLAGS="${CFLAGS} -Werror"
208
CFLAGS="${save_CFLAGS}"
258
PANDORA_ENABLE_VISIBILITY
260
PANDORA_CHECK_VISIBILITY
211
263
PANDORA_HEADER_ASSERT
220
272
AC_CHECK_PROGS([DOXYGEN], [doxygen])
221
273
AC_CHECK_PROGS([PERL], [perl])
222
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])
224
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"])
228
307
AS_IF([test "x${gl_LIBOBJS}" != "x"],[
229
308
AS_IF([test "$GCC" = "yes"],[
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__ */
244
409
AM_CFLAGS="${AM_CFLAGS} ${CC_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"
245
410
AM_CXXFLAGS="${AM_CXXFLAGS} ${CXX_WARNINGS} ${CC_PROFILING} ${CC_COVERAGE}"