1 # Process this file with autoconf to produce a configure script.
4 dnl ***********************************
5 dnl *** include special GLib macros ***
6 dnl ***********************************
8 m4_define(glib_configure_ac)
11 # The following version number definitions apply to GLib, GModule, GObject,
12 # GThread and GIO as a whole, so if changes occurred in any of them, they are
13 # all treated with the same interface and binary age.
16 # glib_micro_version += 1;
17 # glib_interface_age += 1;
18 # glib_binary_age += 1;
19 # if any functions have been added, set glib_interface_age to 0.
20 # if backwards compatibility has been broken,
21 # set glib_binary_age _and_ glib_interface_age to 0.
23 # remember to add a GLIB_VERSION_2_xx macro every time the minor version is
24 # bumped, as well as the GLIB_DEPRECATED_IN and GLIB_AVAILABLE_IN macros
25 # for that version - see gversion.h for further information.
27 # in easier to understand terms:
29 # <mclasen> on the stable branch, interface age == micro
30 # <mclasen> on the unstable (ie master), interface age = 0
32 m4_define([glib_major_version], [2])
33 m4_define([glib_minor_version], [57])
34 m4_define([glib_micro_version], [1])
35 m4_define([glib_interface_age], [0])
36 m4_define([glib_binary_age],
37 [m4_eval(100 * glib_minor_version + glib_micro_version)])
38 m4_define([glib_version],
39 [glib_major_version.glib_minor_version.glib_micro_version])
41 # libtool version related macros
42 m4_define([glib_lt_release], [glib_major_version.glib_minor_version])
43 m4_define([glib_lt_current],
44 [m4_eval(100 * glib_minor_version + glib_micro_version - glib_interface_age)])
45 m4_define([glib_lt_revision], [glib_interface_age])
46 m4_define([glib_lt_age], [m4_eval(glib_binary_age - glib_interface_age)])
47 m4_define([glib_lt_current_minus_age],
48 [m4_eval(glib_lt_current - glib_lt_age)])
50 # if the minor version number is odd, then we want debugging. Otherwise
51 # we only want minimal debugging support.
52 m4_define([glib_debug_default],
53 [m4_if(m4_eval(glib_minor_version % 2), [1], [yes], [minimum])])dnl
56 AC_INIT(glib, [glib_version],
57 [http://bugzilla.gnome.org/enter_bug.cgi?product=glib])
59 AC_CONFIG_HEADERS([config.h])
60 AC_CONFIG_SRCDIR([glib/glib.h])
61 AC_CONFIG_MACRO_DIR([m4macros])
63 # Save this value here, since automake will set cflags later
64 cflags_set=${CFLAGS:+set}
66 AM_INIT_AUTOMAKE([1.13.3 -Wno-portability no-define no-dist-gzip dist-xz tar-ustar subdir-objects])
67 AM_MAINTAINER_MODE([enable])
69 # Support silent build rules. Disable
70 # by either passing --disable-silent-rules to configure or passing V=1
72 AM_SILENT_RULES([yes])
74 GLIB_MAJOR_VERSION=glib_major_version
75 GLIB_MINOR_VERSION=glib_minor_version
76 GLIB_MICRO_VERSION=glib_micro_version
77 GLIB_INTERFACE_AGE=glib_interface_age
78 GLIB_BINARY_AGE=glib_binary_age
79 GLIB_VERSION=glib_version
81 AC_SUBST(GLIB_MAJOR_VERSION)
82 AC_SUBST(GLIB_MINOR_VERSION)
83 AC_SUBST(GLIB_MICRO_VERSION)
84 AC_SUBST(GLIB_VERSION)
85 AC_SUBST(GLIB_INTERFACE_AGE)
86 AC_SUBST(GLIB_BINARY_AGE)
88 AC_DEFINE(GLIB_MAJOR_VERSION, [glib_major_version],
89 [Define to the GLIB major version])
90 AC_DEFINE(GLIB_MINOR_VERSION, [glib_minor_version],
91 [Define to the GLIB minor version])
92 AC_DEFINE(GLIB_MICRO_VERSION, [glib_micro_version],
93 [Define to the GLIB micro version])
94 AC_DEFINE(GLIB_INTERFACE_AGE, [glib_interface_age],
95 [Define to the GLIB interface age])
96 AC_DEFINE(GLIB_BINARY_AGE, [glib_binary_age],
97 [Define to the GLIB binary age])
100 LT_RELEASE=glib_lt_release
101 LT_CURRENT=glib_lt_current
102 LT_REVISION=glib_lt_revision
104 LT_CURRENT_MINUS_AGE=glib_lt_current_minus_age
107 AC_SUBST(LT_REVISION)
109 AC_SUBST(LT_CURRENT_MINUS_AGE)
111 dnl Checks for programs.
114 AC_USE_SYSTEM_EXTENSIONS
116 AM_CONDITIONAL(HAVE_GCC, [test "$GCC" = "yes"])
122 AC_MSG_CHECKING([for Win32])
123 LIB_EXE_MACHINE_FLAG=X86
126 glib_native_win32=yes
127 glib_pid_type='void *'
129 glib_pollfd_format='%#x'
130 glib_dir_separator='\\\\'
131 glib_searchpath_separator=';'
132 glib_cv_stack_grows=no
133 # Unfortunately the mingw implementations of C99-style snprintf and vsnprintf
134 # don't seem to be quite good enough, at least not in mingw-runtime-3.14.
135 # (Sorry, I don't know exactly what is the problem, but it is related to
136 # floating point formatting and decimal point vs. comma.)
137 # The simple tests in AC_FUNC_VSNPRINTF_C99 and AC_FUNC_SNPRINTF_C99 aren't
138 # rigorous enough to notice, though.
139 # So preset the autoconf cache variables.
140 ac_cv_func_vsnprintf_c99=no
141 ac_cv_func_snprintf_c99=no
144 LIB_EXE_MACHINE_FLAG=X64
145 glib_pollfd_format='%#I64x'
149 AC_DEFINE([_WIN32_WINNT], [0x0601], [Target the Windows 7 API])
155 glib_pollfd_format='%d'
156 glib_dir_separator='/'
157 glib_searchpath_separator=':'
166 AC_MSG_RESULT([$glib_native_win32])
168 AC_MSG_CHECKING([for the Android])
171 glib_native_android="yes"
174 glib_native_android="no"
177 AC_MSG_RESULT([$glib_native_android])
179 AC_SUBST(LIB_EXE_MACHINE_FLAG)
182 AC_MSG_CHECKING([for Mac OS X Carbon support])
184 #include <Carbon/Carbon.h>
185 #include <CoreServices/CoreServices.h>
186 ], glib_have_carbon=yes)
188 AC_MSG_RESULT([$glib_have_carbon])
191 AC_MSG_CHECKING([for Mac OS X Cocoa support])
193 #include <Cocoa/Cocoa.h>
194 #ifdef GNUSTEP_BASE_VERSION
195 #error "Detected GNUstep, not Cocoa"
197 ], glib_have_cocoa=yes)
199 AC_MSG_RESULT([$glib_have_cocoa])
201 AM_CONDITIONAL(OS_WIN32, [test "$glib_native_win32" = "yes"])
202 AM_CONDITIONAL(OS_WIN32_X64, [test "$LIB_EXE_MACHINE_FLAG" = "X64"])
203 AM_CONDITIONAL(OS_UNIX, [test "$glib_native_win32" != "yes"])
204 AM_CONDITIONAL(OS_LINUX, [test "$glib_os_linux" = "yes"])
205 AM_CONDITIONAL(OS_CARBON, [test "$glib_have_carbon" = "yes"])
206 AM_CONDITIONAL(OS_COCOA, [test "$glib_have_cocoa" = "yes"])
208 AS_IF([test "$glib_native_win32" = "yes"], [
209 AC_CHECK_TOOL(WINDRES, windres, no)
210 if test "$WINDRES" = no; then
211 AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.])
213 AC_CHECK_TOOL(NM, nm, no)
214 if test "$NM" = no; then
215 AC_MSG_ERROR([*** Could not find an implementation of nm in your PATH.])
217 AC_CHECK_TOOL(RANLIB, ranlib, :)
218 AC_CHECK_TOOL(DLLTOOL, dlltool, :)
219 AC_CHECK_PROG(ms_librarian, [lib.exe], [yes], [no])
221 AM_CONDITIONAL(MS_LIB_AVAILABLE, [test x$ms_librarian = xyes])
223 AS_IF([test "x$glib_have_carbon" = "xyes"], [
224 AC_DEFINE(HAVE_CARBON, 1, [define to 1 if Carbon is available])
225 CARBON_LIBS="-Wl,-framework,Carbon"
226 LDFLAGS="$LDFLAGS $CARBON_LIBS"
229 AC_SUBST([CARBON_LIBS])
230 ac_cv_have_os_x_9_or_later="no"
231 AS_IF([test "x$glib_have_cocoa" = "xyes"], [
232 AC_DEFINE(HAVE_COCOA, 1, [define to 1 if Cocoa is available])
233 COCOA_LIBS="-Wl,-framework,Foundation -Wl,-framework,AppKit"
234 LDFLAGS="$LDFLAGS $COCOA_LIBS"
235 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
236 #include <AvailabilityMacros.h>
237 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
238 #error Compiling for minimum OS X version before 10.9
240 ]])],[ac_cv_have_os_x_9_or_later="yes"])
242 AM_CONDITIONAL([MAC_OS_X_9], [test "x$ac_cv_have_os_x_9_or_later" = xyes])
243 AC_SUBST([COCOA_LIBS])
245 dnl declare --enable-* args and collect ac_help strings
247 AS_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
248 [turn on debugging @<:@default=glib_debug_default@:>@]),,
249 enable_debug=glib_debug_default)
253 dnl location to install runtime libraries, e.g. ../../lib to install
254 dnl to /lib if libdir is /usr/lib
255 AC_ARG_WITH(runtime-libdir,
256 [AS_HELP_STRING([--with-runtime-libdir=RELPATH],
257 [install runtime libraries relative to libdir])],
259 [with_runtime_libdir=""])
260 GLIB_RUNTIME_LIBDIR="$with_runtime_libdir"
261 AC_SUBST(GLIB_RUNTIME_LIBDIR)
262 AM_CONDITIONAL(HAVE_GLIB_RUNTIME_LIBDIR, [test "x$with_runtime_libdir" != "x"])
264 dnl Check for a working C++ compiler, but do not bail out, if none is found.
265 AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], [gcc])
268 AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)
269 AM_CONDITIONAL(HAVE_CXX, [test "$CXX" != ""])
277 PKG_PROG_PKG_CONFIG(0.16)
279 if test "x$enable_debug" = "xyes"; then
280 if test "x$cflags_set" != "x" ; then
282 *[[\ \ ]]-g[[\ \ ]]*) ;;
283 *) CFLAGS="$CFLAGS -g" ;;
286 GLIB_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
288 GLIB_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS"
290 if test "x$enable_debug" = "xno"; then
291 GLIB_DEBUG_FLAGS="$GLIB_DEBUG_FLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
295 # Ensure MSVC-compatible struct packing convention is used when
296 # compiling for Win32 with gcc.
297 # What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while
298 # gcc2 uses "-fnative-struct".
299 if test x"$glib_native_win32" = xyes; then
300 if test x"$GCC" = xyes; then
302 AC_MSG_CHECKING([how to get MSVC-compatible struct packing])
303 if test -z "$ac_cv_prog_CC"; then
306 our_gcc="$ac_cv_prog_CC"
308 case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in
310 if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then
311 msnative_struct='-fnative-struct'
315 if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then
316 msnative_struct='-mms-bitfields'
320 if test x"$msnative_struct" = x ; then
321 AC_MSG_RESULT([no way])
322 AC_MSG_WARN([produced libraries might be incompatible with MSVC-compiled code])
324 CFLAGS="$CFLAGS $msnative_struct"
325 AC_MSG_RESULT([${msnative_struct}])
329 GLIB_EXTRA_CFLAGS="${msnative_struct}"
330 AC_SUBST(GLIB_EXTRA_CFLAGS)
335 AC_CHECK_PROGS(PERL, [perl5 perl])
337 # option to specify python interpreter to use; this just sets $PYTHON, so that
338 # we will fallback to reading $PYTHON if --with-python is not given, and
339 # python.m4 will get the expected input
341 AS_HELP_STRING([--with-python=PATH],
342 [Path to Python interpreter; searches $PATH if only a program name is given; if not given, searches for a few standard names such as "python3" or "python2"]),
343 [PYTHON="$withval"], [])
344 if test x"$PYTHON" = xyes; then
345 AC_MSG_ERROR([--with-python option requires a path or program argument])
347 AM_PATH_PYTHON(2.7,,PYTHON="python2.7")
350 dnl ***********************
351 dnl *** Tests for iconv ***
352 dnl ***********************
354 dnl We do this before the gettext checks, to avoid distortion
356 dnl On Windows we use a native implementation
358 AS_IF([ test x"$glib_native_win32" = xyes], [
361 AC_ARG_WITH(libiconv,
362 [AS_HELP_STRING([--with-libiconv=@<:@no/gnu/native@:>@],
363 [use the libiconv library])],,
364 [with_libiconv=maybe])
367 case $with_libiconv in
369 # Check in the C library first
370 AC_CHECK_FUNC(iconv_open, [with_libiconv=no; found_iconv=yes])
371 # Check if we have GNU libiconv
372 if test $found_iconv = "no"; then
373 AC_CHECK_LIB(iconv, libiconv_open, [with_libiconv=gnu; found_iconv=yes])
375 # Check if we have a iconv in -liconv, possibly from vendor
376 if test $found_iconv = "no"; then
377 AC_CHECK_LIB(iconv, iconv_open, [with_libiconv=native; found_iconv=yes])
381 AC_CHECK_FUNC(iconv_open, [with_libiconv=no; found_iconv=yes])
384 AC_CHECK_LIB(iconv, libiconv_open, [with_libiconv=gnu; found_iconv=yes])
387 AC_CHECK_LIB(iconv, iconv_open, [with_libiconv=native; found_iconv=yes])
391 if test "x$found_iconv" = "xno" ; then
392 AC_MSG_ERROR([*** No iconv() implementation found in C library or libiconv])
399 PKG_CHECK_MODULES([ZLIB], [zlib], [found_zlib=yes], [found_zlib=no])
400 AS_IF([test "x$found_zlib" = "xno"], [
401 AC_CHECK_LIB(z, inflate, [AC_CHECK_HEADER(zlib.h, found_zlib=yes)])
402 if test "x$found_zlib" = "xno" ; then
403 AC_MSG_ERROR([*** Working zlib library and headers not found ***])
409 PKG_CHECK_MODULES(LIBFFI, [libffi >= 3.0.0])
410 AC_SUBST(LIBFFI_CFLAGS)
411 AC_SUBST(LIBFFI_LIBS)
417 ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`"
418 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
421 if test "$gt_cv_have_gettext" != "yes" ; then
423 *** You must have either have gettext support in your C library, or use the
424 *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html)
428 LIBS="$INTLLIBS $LIBS"
430 GETTEXT_PACKAGE=glib20
431 AC_SUBST(GETTEXT_PACKAGE)
432 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"],
433 [Define the gettext package to be used])
435 GLIB_DEFINE_LOCALEDIR(GLIB_LOCALE_DIR)
438 dnl Now we are done with gettext checks, figure out ICONV_LIBS
441 AS_IF([test x"$glib_native_win32" != xyes], [
442 if test x$with_libiconv != xno ; then
443 case " $INTLLIBS " in
444 *[[\ \ ]]-liconv[[\ \ ]]*) ;;
445 *) ICONV_LIBS="-liconv" ;;
451 case $with_libiconv in
453 AC_DEFINE(USE_LIBICONV_GNU, 1, [Using GNU libiconv])
456 AC_DEFINE(USE_LIBICONV_NATIVE, 1, [Using a native implementation of iconv in a separate library])
460 dnl Initialize libtool
462 LT_INIT([disable-static win32-dll])
463 dnl when using libtool 2.x create libtool early, because it's used in configure
464 m4_ifdef([LT_OUTPUT], [LT_OUTPUT])
467 AS_IF([test "$glib_native_win32" = "yes"], [
468 if test x$enable_static = xyes -a x$enable_shared = xyes; then
469 AC_MSG_ERROR([Can not build both shared and static at the same time on Windows.])
471 if test x$enable_static = xyes; then
472 glib_win32_static_compilation=yes
473 GLIB_WIN32_STATIC_COMPILATION_DEFINE="#define GLIB_STATIC_COMPILATION 1
474 #define GOBJECT_STATIC_COMPILATION 1"
475 AC_SUBST(GLIB_WIN32_STATIC_COMPILATION_DEFINE)
478 AM_CONDITIONAL(OS_WIN32_AND_DLL_COMPILATION, [test x$glib_native_win32 = xyes -a x$glib_win32_static_compilation != xyes])
480 # Checks for library functions.
482 AC_CHECK_FUNCS(mmap posix_memalign memalign valloc fsync pipe2 issetugid)
483 AC_CHECK_FUNCS(timegm gmtime_r)
486 AC_CHECK_SIZEOF(char)
487 AC_CHECK_SIZEOF(short)
488 AC_CHECK_SIZEOF(long)
490 AC_CHECK_SIZEOF(void *)
491 AC_CHECK_SIZEOF(long long)
492 AC_CHECK_SIZEOF(__int64)
494 AC_CACHE_CHECK([for sig_atomic_t], ac_cv_type_sig_atomic_t,
495 [AC_TRY_LINK([#include <signal.h>
496 #include <sys/types.h>
497 sig_atomic_t val = 42;],
498 [return val == 42 ? 0 : 1],
499 ac_cv_type_sig_atomic_t=yes,
500 ac_cv_type_sig_atomic_t=no)])
501 if test x$ac_cv_type_sig_atomic_t = xyes; then
502 AC_DEFINE(HAVE_SIG_ATOMIC_T, 1,
503 [Define if you have the 'sig_atomic_t' type.])
506 if test x$ac_cv_sizeof_long = x8 || test x$ac_cv_sizeof_long_long = x8 || test x$ac_cv_sizeof___int64 = x8 ; then
510 *** GLib requires a 64 bit type. You might want to consider
511 *** using the GNU C compiler.
515 AS_IF([test x$glib_native_win32 != xyes && test x$ac_cv_sizeof_long_long = x8], [
516 # long long is a 64 bit integer.
517 AC_MSG_CHECKING(for format to printf and scanf a guint64)
518 AC_CACHE_VAL(glib_cv_long_long_format,[
519 for format in ll q I64; do
520 AC_TRY_RUN([#include <stdio.h>
523 long long b, a = -0x3AFAFAFAFAFAFAFALL;
525 sprintf (buffer, "%${format}u", a);
526 sscanf (buffer, "%${format}u", &b);
530 [glib_cv_long_long_format=${format}
534 AS_IF([ test -n "$glib_cv_long_long_format"], [
535 AC_MSG_RESULT(%${glib_cv_long_long_format}u)
536 ], [AC_MSG_RESULT(none)])
537 ],[ test x$ac_cv_sizeof___int64 = x8], [
538 # __int64 is a 64 bit integer.
539 AC_MSG_CHECKING(for format to printf and scanf a guint64)
540 # We know this is MSVCRT.DLL, and what the formats are
541 glib_cv_long_long_format=I64
542 AC_MSG_RESULT(%${glib_cv_long_long_format}u)
548 dnl check in which direction the stack grows
550 AC_CACHE_CHECK([for growing stack pointer],glib_cv_stack_grows,[
552 volatile int *a = 0, *b = 0;
553 void f (int i) { volatile int x = 5; if (i == 0) b = &x; else f (i - 1); }
554 int main () { volatile int y = 7; a = &y; f (100); return b > a ? 0 : 1; }
556 glib_cv_stack_grows=yes
558 glib_cv_stack_grows=no
562 # check for flavours of varargs macros
563 AC_MSG_CHECKING(for ISO C99 varargs macros in C)
565 int a(int p1, int p2, int p3);
566 #define call_a(...) a(1,__VA_ARGS__)
568 ],g_have_iso_c_varargs=yes,g_have_iso_c_varargs=no)
569 AC_MSG_RESULT($g_have_iso_c_varargs)
571 AC_MSG_CHECKING(for ISO C99 varargs macros in C++)
572 AS_IF([test "$CXX" = ""], [
574 g_have_iso_cxx_varargs=no
578 int a(int p1, int p2, int p3);
579 #define call_a(...) a(1,__VA_ARGS__)
581 ],g_have_iso_cxx_varargs=yes,g_have_iso_cxx_varargs=no)
584 AC_MSG_RESULT($g_have_iso_cxx_varargs)
586 AC_MSG_CHECKING(for GNUC varargs macros)
588 int a(int p1, int p2, int p3);
589 #define call_a(params...) a(1,params)
591 ],g_have_gnuc_varargs=yes,g_have_gnuc_varargs=no)
592 AC_MSG_RESULT($g_have_gnuc_varargs)
594 # check for GNUC visibility support
595 AC_MSG_CHECKING(for GNUC visibility attribute)
596 GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
598 __attribute__ ((visibility ("hidden")))
603 __attribute__ ((visibility ("internal")))
608 __attribute__ ((visibility ("protected")))
613 __attribute__ ((visibility ("default")))
625 ]])],g_have_gnuc_visibility=yes,g_have_gnuc_visibility=no)
626 AC_MSG_RESULT($g_have_gnuc_visibility)
627 AM_CONDITIONAL(HAVE_GNUC_VISIBILITY, [test x$g_have_gnuc_visibility = xyes])
629 AC_MSG_CHECKING([whether using Sun Studio C compiler])
630 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if defined(__SUNPRO_C) || (__SUNPRO_C >= 0x550)
632 # include "error: this is not Sun Studio."
634 ]], [[]])], [ g_have_sunstudio_visibility=yes ], [ g_have_sunstudio_visibility=no ])
635 AC_MSG_RESULT($g_have_sunstudio_visibility)
636 AM_CONDITIONAL(HAVE_SUNSTUDIO_VISIBILITY, [test x$g_have_sunstudio_visibility = xyes])
638 # check for bytesex stuff
640 if test x$ac_cv_c_bigendian = xuniversal ; then
641 AC_MSG_ERROR([Universal builds not supported: see https://bugzilla.gnome.org/show_bug.cgi?id=742548])
645 # check for header files
646 AC_CHECK_HEADERS([sys/param.h sys/resource.h mach/mach_time.h])
647 AC_CHECK_HEADERS([sys/select.h stdint.h inttypes.h sched.h malloc.h])
648 AC_CHECK_HEADERS([sys/vfs.h sys/vmount.h sys/statfs.h sys/statvfs.h sys/filio.h sys/auxv.h])
649 AC_CHECK_HEADERS([mntent.h sys/mnttab.h sys/vfstab.h sys/mntctl.h fstab.h])
650 AC_CHECK_HEADERS([linux/magic.h])
651 AC_CHECK_HEADERS([termios.h])
653 # Some versions of MSC lack these
654 AC_CHECK_HEADERS([dirent.h sys/time.h])
656 # We don't care about this, but we need to keep including it in
657 # glibconfig.h for backward compatibility
658 AC_CHECK_HEADERS([values.h])
660 AC_CHECK_HEADERS([sys/mount.h sys/sysctl.h], [], [],
661 [#if HAVE_SYS_PARAM_H
662 #include <sys/param.h>
665 AC_CHECK_FUNCS(sysctlbyname)
668 AS_IF([test "$ac_cv_header_sys_types_h_makedev" = "yes"],
669 [AC_DEFINE([MAJOR_IN_TYPES], [1], [Define to 1 if `major', `minor', and `makedev' are declared in <sys/types.h>.])])
670 AC_CHECK_HEADERS([xlocale.h])
672 # check for structure fields
673 AC_CHECK_MEMBERS([struct stat.st_mtimensec, struct stat.st_mtim.tv_nsec, struct stat.st_atimensec, struct stat.st_atim.tv_nsec, struct stat.st_ctimensec, struct stat.st_ctim.tv_nsec, struct stat.st_birthtime, struct stat.st_birthtimensec, struct stat.st_birthtim, struct stat.st_birthtim.tv_nsec])
674 AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct statfs.f_fstypename, struct statfs.f_bavail],,, [#include <sys/types.h>
675 #include <sys/stat.h>
679 #ifdef HAVE_SYS_STATFS_H
680 #include <sys/statfs.h>
682 #ifdef HAVE_SYS_PARAM_H
683 #include <sys/param.h>
685 #ifdef HAVE_SYS_MOUNT_H
686 #include <sys/mount.h>
688 # struct statvfs.f_basetype is available on Solaris but not for Linux.
689 AC_CHECK_MEMBERS([struct statvfs.f_basetype],,, [#include <sys/statvfs.h>])
690 AC_CHECK_MEMBERS([struct statvfs.f_fstypename],,, [#include <sys/statvfs.h>])
691 AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.__tm_gmtoff],,,[#include <time.h>])
693 AC_STRUCT_DIRENT_D_TYPE
695 # Checks for libcharset
698 AC_ARG_WITH(charsetalias-dir,
699 AS_HELP_STRING([--with-charsetalias-dir=DIR], [directory for charset.alias file [LIBDIR]]),
701 [with_charsetalias_dir='${libdir}'])
702 GLIB_CHARSETALIAS_DIR=$with_charsetalias_dir
703 AC_SUBST(GLIB_CHARSETALIAS_DIR)
705 # check additional type sizes
706 AC_CHECK_SIZEOF(size_t)
708 dnl Try to figure out whether gsize should be long or int
709 AC_MSG_CHECKING([for the appropriate definition for size_t])
711 case $ac_cv_sizeof_size_t in
721 $ac_cv_sizeof_long_long)
722 glib_size_type='long long'
724 $ac_cv_sizeof__int64)
725 glib_size_type='__int64'
727 *) AC_MSG_ERROR([No type matching size_t in size])
731 dnl If int/long are the same size, we see which one produces
732 dnl warnings when used in the location as size_t. (This matters
735 AS_IF([test $ac_cv_sizeof_size_t = $ac_cv_sizeof_int &&
736 test $ac_cv_sizeof_size_t = $ac_cv_sizeof_long], [
737 GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
738 #if defined(_AIX) && !defined(__GNUC__)
739 #pragma options langlvl=stdc89
745 unsigned int *size_int = &s;
746 return (int)*size_int;
748 ]])],glib_size_type=int,
749 [GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
750 #if defined(_AIX) && !defined(__GNUC__)
751 #pragma options langlvl=stdc89
757 unsigned long *size_long = &s;
758 return (int)*size_long;
760 ]])],glib_size_type=long)])
763 AC_MSG_RESULT(unsigned $glib_size_type)
765 AC_CHECK_SIZEOF(ssize_t)
767 dnl Try to figure out whether gssize should be long or int
768 AC_MSG_CHECKING([for the appropriate definition for ssize_t])
770 case $ac_cv_sizeof_ssize_t in
772 glib_ssize_type=short
780 $ac_cv_sizeof_long_long)
781 glib_ssize_type='long long'
783 $ac_cv_sizeof__int64)
784 glib_ssize_type='__int64'
786 *) AC_MSG_ERROR([No type matching ssize_t in size])
790 dnl If int/long are the same size, we see which one produces
791 dnl warnings when used in the location as ssize_t. (This matters
792 dnl on Android where ssize_t is long and size_t is unsigned int)
794 AS_IF([test $ac_cv_sizeof_ssize_t = $ac_cv_sizeof_int &&
795 test $ac_cv_sizeof_ssize_t = $ac_cv_sizeof_long], [
796 GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
797 #if defined(_AIX) && !defined(__GNUC__)
798 #pragma options langlvl=stdc89
801 #ifdef HAVE_INTTYPES_H
802 # include <inttypes.h>
807 #include <sys/types.h>
812 return (int)*size_int;
814 ]])],glib_ssize_type=int,
815 [GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
816 #if defined(_AIX) && !defined(__GNUC__)
817 #pragma options langlvl=stdc89
820 #ifdef HAVE_INTTYPES_H
821 # include <inttypes.h>
826 #include <sys/types.h>
830 long *size_long = &s;
831 return (int)*size_long;
833 ]])],glib_ssize_type=long)])
836 AC_MSG_RESULT($glib_ssize_type)
838 # Check for some functions
839 AC_CHECK_FUNCS(lstat strsignal vsnprintf stpcpy strcasecmp strncasecmp poll vasprintf setenv unsetenv getc_unlocked readlink symlink fdwalk mkostemp link)
840 AC_CHECK_FUNCS(lchmod lchown fchmod fchown utimes getresuid)
841 AC_CHECK_FUNCS(getmntent_r setmntent endmntent hasmntopt getfsstat getvfsstat fallocate)
842 case $host_os in aix*) ac_cv_func_splice=no ;; esac # AIX splice() is something else
843 AC_CHECK_FUNCS(splice)
844 AC_CHECK_FUNCS(prlimit)
846 # To avoid finding a compatibility unusable statfs, which typically
847 # successfully compiles, but warns to use the newer statvfs interface:
848 AS_IF([test $ac_cv_header_sys_statvfs_h = yes], [AC_CHECK_FUNCS([statvfs])])
849 AS_IF([test $ac_cv_header_sys_statfs_h = yes -o $ac_cv_header_sys_mount_h = yes], [AC_CHECK_FUNCS([statfs])])
851 AC_MSG_CHECKING([whether to use statfs or statvfs])
852 # Some systems have both statfs and statvfs, pick the most "native" for these
853 AS_IF([test x$ac_cv_func_statfs = xyes && test x$ac_cv_func_statvfs = xyes],
855 # on solaris and irix, statfs doesn't even have the f_bavail field
856 AS_IF([test x$ac_cv_member_struct_statfs_f_bavail = xno],
857 [ac_cv_func_statfs=no],
858 # else, at least on linux, statfs is the actual syscall
859 [ac_cv_func_statvfs=no])
862 AS_IF([test x$ac_cv_func_statfs = xyes],
864 AC_DEFINE([USE_STATFS], [1], [Define to use statfs()])
865 AC_MSG_RESULT([statfs])
867 [test x$ac_cv_func_statvfs = xyes],
869 AC_DEFINE([USE_STATVFS], [1], [Define to use statvfs()])
870 AC_MSG_RESULT([statvfs])
872 [ AC_MSG_RESULT([neither])])
874 AC_CHECK_HEADERS(crt_externs.h)
875 AC_CHECK_FUNCS(_NSGetEnviron)
877 AC_CHECK_FUNCS(newlocale uselocale strtod_l strtoll_l strtoull_l)
879 # Internet address families
880 if test $glib_native_win32 = yes; then
881 glib_inet_includes=["
882 #include <winsock2.h>
885 glib_inet_includes=["
886 #include <sys/types.h>
887 #include <sys/socket.h>
892 GLIB_CHECK_VALUE(AF_INET, $glib_inet_includes, glib_failed=true)
893 GLIB_CHECK_VALUE(AF_INET6, $glib_inet_includes, glib_failed=true)
894 # winsock defines this even though it doesn't support it
895 GLIB_CHECK_VALUE(AF_UNIX, $glib_inet_includes, glib_failed=true)
896 if $glib_failed ; then
897 AC_MSG_ERROR([Could not determine values for AF_INET* constants])
901 GLIB_CHECK_VALUE(MSG_PEEK, $glib_inet_includes, glib_failed=true)
902 GLIB_CHECK_VALUE(MSG_OOB, $glib_inet_includes, glib_failed=true)
903 GLIB_CHECK_VALUE(MSG_DONTROUTE, $glib_inet_includes, glib_failed=true)
904 if $glib_failed ; then
905 AC_MSG_ERROR([Could not determine values for MSG_* constants])
908 AC_CHECK_FUNCS(endservent if_nametoindex if_indextoname sendmmsg recvmmsg)
910 AC_MSG_CHECKING([for SIOCGIFADDR])
911 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
913 #include <sys/ioctl.h>
918 ioctl(0, SIOCGIFADDR, &ifr);
921 AC_DEFINE(HAVE_SIOCGIFADDR, 1, [SIOCGIFADDR is available])
926 AC_MSG_CHECKING([if ip_mreq_source.imr_interface has s_addr member])
927 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
929 #include <netinet/in.h>
932 struct ip_mreq_source mc_req_src;
933 mc_req_src.imr_interface.s_addr = 0;
938 AC_DEFINE(BROKEN_IP_MREQ_SOURCE_STRUCT, 1, [struct ip_mreq_source definition is broken on Android NDK <= r16])
941 AS_IF([test $glib_native_win32 = yes], [
942 # <wspiapi.h> in the Windows SDK and in mingw-w64 has wrappers for
943 # inline workarounds for getaddrinfo, getnameinfo and freeaddrinfo if
944 # they aren't present at run-time (on Windows 2000).
945 AC_CHECK_HEADER([wspiapi.h], [WSPIAPI_INCLUDE="#include <wspiapi.h>"])
946 AC_SUBST(WSPIAPI_INCLUDE)
948 # Android does not have C_IN in public headers, we define it wherever necessary
949 AS_IF([test $glib_native_android != yes], [
950 AC_MSG_CHECKING([if arpa/nameser_compat.h is needed])
951 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
952 #include <arpa/nameser.h>],
953 [int qclass = C_IN;])],
954 [AC_MSG_RESULT([no])],
955 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
956 #include <arpa/nameser.h>
957 #include <arpa/nameser_compat.h>],
958 [int qclass = C_IN;])],
959 [AC_MSG_RESULT([yes])
960 NAMESER_COMPAT_INCLUDE="#include <arpa/nameser_compat.h>"],
961 [AC_MSG_ERROR([could not compile test program either way])])])])
962 AC_SUBST(NAMESER_COMPAT_INCLUDE)
964 # We can't just use AC_CHECK_FUNC/AC_CHECK_LIB here. Bug 586150
966 AC_MSG_CHECKING([for res_query])
967 AC_TRY_LINK([#include <sys/types.h>
968 #include <netinet/in.h>
969 #include <arpa/nameser.h>
972 res_query("test", 0, 0, (void *)0, 0);
973 ],[AC_MSG_RESULT([yes])],
975 LIBS="-lresolv $LIBS"
976 AC_TRY_LINK([#include <sys/types.h>
977 #include <netinet/in.h>
978 #include <arpa/nameser.h>
981 res_query("test", 0, 0, (void *)0, 0);
982 ],[AC_MSG_RESULT([in -lresolv])
983 NETWORK_LIBS="-lresolv $NETWORK_LIBS"],
984 [LIBS="-lbind $save_libs"
985 AC_TRY_LINK([#include <resolv.h>],
986 [res_query("test", 0, 0, (void *)0, 0);],
987 [AC_MSG_RESULT([in -lbind])
988 NETWORK_LIBS="-lbind $NETWORK_LIBS"],
989 [AC_MSG_ERROR(not found)])])
991 AC_CHECK_FUNC(socket, :, AC_CHECK_LIB(socket, socket,
992 [NETWORK_LIBS="-lsocket $NETWORK_LIBS"],
993 [AC_MSG_ERROR(Could not find socket())]))
995 LIBS="$LIBS $NETWORK_LIBS"
997 AC_MSG_CHECKING([for res_init])
998 AC_TRY_LINK([#include <sys/types.h>
999 #include <netinet/in.h>
1000 #include <arpa/nameser.h>
1004 ],[AC_MSG_RESULT([yes])
1005 AC_DEFINE(HAVE_RES_INIT, 1, [Define to 1 if you have the 'res_init' function.])
1006 ],[AC_MSG_RESULT([no])])
1008 AC_MSG_CHECKING([for res_nclose])
1009 AC_TRY_LINK([#include <sys/types.h>
1010 #include <netinet/in.h>
1011 #include <arpa/nameser.h>
1014 struct __res_state res;
1016 ],[AC_MSG_RESULT([yes])
1017 AC_DEFINE(HAVE_RES_NCLOSE, 1, [Define to 1 if you have the 'res_nclose' function.])
1018 ],[AC_MSG_RESULT([no])])
1020 AC_MSG_CHECKING([for res_ndestroy])
1021 AC_TRY_LINK([#include <sys/types.h>
1022 #include <netinet/in.h>
1023 #include <arpa/nameser.h>
1026 struct __res_state res;
1028 ],[AC_MSG_RESULT([yes])
1029 AC_DEFINE(HAVE_RES_NDESTROY, 1, [Define to 1 if you have the 'res_ndestroy' function.])
1030 ],[AC_MSG_RESULT([no])])
1032 AC_MSG_CHECKING([for res_ninit])
1033 AC_TRY_LINK([#include <sys/types.h>
1034 #include <netinet/in.h>
1035 #include <arpa/nameser.h>
1038 struct __res_state res;
1040 ],[AC_MSG_RESULT([yes])
1041 AC_DEFINE(HAVE_RES_NINIT, 1, [Define to 1 if you have the 'res_ninit' function.])
1042 ],[AC_MSG_RESULT([no])])
1044 AC_MSG_CHECKING([for res_nquery])
1045 AC_TRY_LINK([#include <sys/types.h>
1046 #include <netinet/in.h>
1047 #include <arpa/nameser.h>
1050 struct __res_state res;
1051 res_nquery(&res, "test", 0, 0, (void *)0, 0);
1052 ],[AC_MSG_RESULT([yes])
1053 AC_DEFINE(HAVE_RES_NQUERY, 1, [Define to 1 if you have the 'res_nquery' function.])
1054 ],[AC_MSG_RESULT([no])])
1057 AC_SUBST(NETWORK_LIBS)
1059 AC_CHECK_HEADER([linux/netlink.h],
1060 [AC_DEFINE(HAVE_NETLINK, 1, [We have AF_NETLINK sockets])],,
1061 [#include <sys/socket.h>])
1062 AM_CONDITIONAL(HAVE_NETLINK, [test "$ac_cv_header_linux_netlink_h" = "yes"])
1064 AC_CHECK_TYPE([struct ip_mreqn], [
1065 AC_DEFINE(HAVE_IP_MREQN,, [Define if we have struct ip_mreqn])],,
1066 [#include <netinet/in.h>])
1070 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
1071 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
1072 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
1077 dnl if statfs() takes 2 arguments (Posix) or 4 (Solaris)
1079 AS_IF([test "$ac_cv_func_statfs" = yes], [
1080 AC_MSG_CHECKING([number of arguments to statfs()])
1081 AC_TRY_COMPILE([#include <unistd.h>
1082 #ifdef HAVE_SYS_PARAM_H
1083 #include <sys/param.h>
1085 #ifdef HAVE_SYS_VFS_H
1086 #include <sys/vfs.h>
1088 #ifdef HAVE_SYS_MOUNT_H
1089 #include <sys/mount.h>
1091 #ifdef HAVE_SYS_STATFS_H
1092 #include <sys/statfs.h>
1093 #endif], [struct statfs st;
1094 statfs("/", &st);],[
1096 AC_DEFINE(STATFS_ARGS, 2, [Number of arguments to statfs()])],[
1097 AC_TRY_COMPILE([#include <unistd.h>
1098 #ifdef HAVE_SYS_PARAM_H
1099 #include <sys/param.h>
1101 #ifdef HAVE_SYS_VFS_H
1102 #include <sys/vfs.h>
1104 #ifdef HAVE_SYS_MOUNT_H
1105 #include <sys/mount.h>
1107 #ifdef HAVE_SYS_STATFS_H
1108 #include <sys/statfs.h>
1109 #endif], [struct statfs st;
1110 statfs("/", &st, sizeof (st), 0);],[
1112 AC_DEFINE(STATFS_ARGS, 4, [Number of arguments to statfs()])],[
1113 AC_MSG_RESULT(unknown)
1114 AC_MSG_ERROR([unable to determine number of arguments to statfs()])])])
1118 dnl open takes O_DIRECTORY as an option
1120 AC_MSG_CHECKING([open() option O_DIRECTORY])
1121 AC_TRY_COMPILE([#include <fcntl.h>
1122 #include <sys/types.h>
1123 #include <sys/stat.h>],
1124 [open(0, O_DIRECTORY, 0);],[
1125 AC_MSG_RESULT([yes])
1126 AC_DEFINE(HAVE_OPEN_O_DIRECTORY, 1, [open option O_DIRECTORY])],[
1127 AC_MSG_RESULT([no])])
1130 # Check whether to use an included printf
1132 AC_FUNC_VSNPRINTF_C99
1133 AC_FUNC_PRINTF_UNIX98
1135 AC_ARG_ENABLE(included-printf,
1136 [AS_HELP_STRING([--enable-included-printf],
1137 [use included printf [default=auto]])],
1138 enable_included_printf="$enableval")
1140 need_included_printf=no
1141 if test "x$enable_included_printf" = "xyes" ; then
1142 need_included_printf=yes
1144 if test "$ac_cv_func_vsnprintf_c99" != "yes" ; then
1145 need_included_printf=yes
1147 if test "$ac_cv_func_printf_unix98" != "yes" ; then
1148 need_included_printf=yes
1150 if test "x$ac_cv_sizeof_long_long" = "x8" &&
1151 test -z "$glib_cv_long_long_format" ; then
1152 need_included_printf=yes
1155 if test "x$enable_included_printf" = "xno" &&
1156 test "x$need_included_printf" = "xyes" ; then
1158 *** Your C library's printf doesn't appear to have the features that
1159 *** GLib needs, but you specified --enable-included-printf=no.])
1162 enable_included_printf=$need_included_printf
1164 AM_CONDITIONAL(HAVE_GOOD_PRINTF, test "$enable_included_printf" != "yes")
1165 AS_IF([test "$enable_included_printf" != "yes"], [
1166 AC_DEFINE(HAVE_GOOD_PRINTF,1,[define to use system printf])
1168 if test -z "$glib_cv_long_long_format" ; then
1169 glib_cv_long_long_format="ll"
1171 AC_DEFINE(HAVE_VASPRINTF,1)
1174 # Checks needed for gnulib vasnprintf
1176 jm_AC_TYPE_LONG_LONG
1181 AC_CHECK_TYPES(ptrdiff_t)
1183 AC_CHECK_FUNCS([snprintf strnlen wcslen wcsnlen mbrtowc wcrtomb])
1184 AC_FUNC_SNPRINTF_C99
1186 dnl Check for nl_langinfo and CODESET
1189 AC_CACHE_CHECK([for nl_langinfo (CODESET)],glib_cv_langinfo_codeset,[
1190 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1191 [char *codeset = nl_langinfo (CODESET);])],
1192 [glib_cv_langinfo_codeset=yes],
1193 [glib_cv_langinfo_codeset=no])])
1194 if test x$glib_cv_langinfo_codeset = xyes; then
1195 AC_DEFINE(HAVE_CODESET,1,[Have nl_langinfo (CODESET)])
1198 dnl Check for nl_langinfo and LC_TIME parts that are needed in gdatetime.c
1199 AC_CACHE_CHECK([for nl_langinfo (PM_STR)],glib_cv_langinfo_time,[
1200 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1202 str = nl_langinfo (PM_STR);
1203 str = nl_langinfo (D_T_FMT);
1204 str = nl_langinfo (D_FMT);
1205 str = nl_langinfo (T_FMT);
1206 str = nl_langinfo (T_FMT_AMPM);
1207 str = nl_langinfo (MON_1);
1208 str = nl_langinfo (ABMON_12);
1209 str = nl_langinfo (DAY_1);
1210 str = nl_langinfo (ABDAY_7);])],
1211 [glib_cv_langinfo_time=yes],
1212 [glib_cv_langinfo_time=no])])
1213 if test x$glib_cv_langinfo_time = xyes; then
1214 AC_DEFINE(HAVE_LANGINFO_TIME,1,[Have nl_langinfo (PM_STR)])
1217 dnl Check for nl_langinfo and _NL_CTYPE_OUTDIGITn_MB
1218 AC_CACHE_CHECK([for nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)], glib_cv_langinfo_outdigit,[
1219 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1221 str = nl_langinfo (_NL_CTYPE_OUTDIGIT0_MB);
1222 str = nl_langinfo (_NL_CTYPE_OUTDIGIT1_MB);
1223 str = nl_langinfo (_NL_CTYPE_OUTDIGIT2_MB);
1224 str = nl_langinfo (_NL_CTYPE_OUTDIGIT3_MB);
1225 str = nl_langinfo (_NL_CTYPE_OUTDIGIT4_MB);
1226 str = nl_langinfo (_NL_CTYPE_OUTDIGIT5_MB);
1227 str = nl_langinfo (_NL_CTYPE_OUTDIGIT6_MB);
1228 str = nl_langinfo (_NL_CTYPE_OUTDIGIT7_MB);
1229 str = nl_langinfo (_NL_CTYPE_OUTDIGIT8_MB);
1230 str = nl_langinfo (_NL_CTYPE_OUTDIGIT9_MB);])],
1231 [glib_cv_langinfo_outdigit=yes],
1232 [glib_cv_langinfo_outdigit=no])])
1233 if test x$glib_cv_langinfo_outdigit = xyes; then
1234 AC_DEFINE(HAVE_LANGINFO_OUTDIGIT,1,[Have nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)])
1237 dnl Check for nl_langinfo and ALTMON_n
1238 AC_CACHE_CHECK([for nl_langinfo (ALTMON_n)], glib_cv_langinfo_altmon,[
1239 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1241 str = nl_langinfo (ALTMON_1);
1242 str = nl_langinfo (ALTMON_2);
1243 str = nl_langinfo (ALTMON_3);
1244 str = nl_langinfo (ALTMON_4);
1245 str = nl_langinfo (ALTMON_5);
1246 str = nl_langinfo (ALTMON_6);
1247 str = nl_langinfo (ALTMON_7);
1248 str = nl_langinfo (ALTMON_8);
1249 str = nl_langinfo (ALTMON_9);
1250 str = nl_langinfo (ALTMON_10);
1251 str = nl_langinfo (ALTMON_11);
1252 str = nl_langinfo (ALTMON_12);])],
1253 [glib_cv_langinfo_altmon=yes],
1254 [glib_cv_langinfo_altmon=no])])
1255 if test x$glib_cv_langinfo_altmon = xyes; then
1256 AC_DEFINE(HAVE_LANGINFO_ALTMON,1,[Have nl_langinfo (ALTMON_n)])
1259 dnl Check for nl_langinfo and _NL_ABALTMON_n
1260 AC_CACHE_CHECK([for nl_langinfo (_NL_ABALTMON_n)], glib_cv_langinfo_abaltmon,[
1261 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1263 str = nl_langinfo (_NL_ABALTMON_1);
1264 str = nl_langinfo (_NL_ABALTMON_2);
1265 str = nl_langinfo (_NL_ABALTMON_3);
1266 str = nl_langinfo (_NL_ABALTMON_4);
1267 str = nl_langinfo (_NL_ABALTMON_5);
1268 str = nl_langinfo (_NL_ABALTMON_6);
1269 str = nl_langinfo (_NL_ABALTMON_7);
1270 str = nl_langinfo (_NL_ABALTMON_8);
1271 str = nl_langinfo (_NL_ABALTMON_9);
1272 str = nl_langinfo (_NL_ABALTMON_10);
1273 str = nl_langinfo (_NL_ABALTMON_11);
1274 str = nl_langinfo (_NL_ABALTMON_12);])],
1275 [glib_cv_langinfo_abaltmon=yes],
1276 [glib_cv_langinfo_abaltmon=no])])
1277 if test x$glib_cv_langinfo_abaltmon = xyes; then
1278 AC_DEFINE(HAVE_LANGINFO_ABALTMON,1,[Have nl_langinfo (_NL_ABALTMON_n)])
1283 dnl ****************************************
1284 dnl *** strlcpy/strlcat ***
1285 dnl ****************************************
1287 AC_CACHE_CHECK([for OpenBSD strlcpy/strlcat],glib_cv_have_strlcpy,[
1288 AC_TRY_RUN([#include <stdlib.h>
1292 (void) strlcpy (p, "hi", 10);
1293 if (strlcat (p, "bye", 0) != 3)
1296 }], glib_cv_have_strlcpy=yes,
1297 glib_cv_have_strlcpy=no,
1298 glib_cv_have_strlcpy=no)])
1299 if test "$glib_cv_have_strlcpy" = "yes"; then
1300 AC_DEFINE(HAVE_STRLCPY,1,[Have functions strlcpy and strlcat])
1304 dnl **********************
1305 dnl *** va_copy checks ***
1306 dnl **********************
1307 dnl we currently check for all three va_copy possibilities, so we get
1308 dnl all results in config.log for bug reports.
1309 AC_CACHE_CHECK([for an implementation of va_copy()],glib_cv_va_copy,[
1310 AC_LINK_IFELSE([AC_LANG_SOURCE([[#include <stdarg.h>
1312 void f (int i, ...) {
1313 va_list args1, args2;
1314 va_start (args1, i);
1315 va_copy (args2, args1);
1316 if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1318 va_end (args1); va_end (args2);
1324 [glib_cv_va_copy=yes],
1325 [glib_cv_va_copy=no])
1327 AC_CACHE_CHECK([for an implementation of __va_copy()],glib_cv___va_copy,[
1328 AC_LINK_IFELSE([AC_LANG_SOURCE([[#include <stdarg.h>
1330 void f (int i, ...) {
1331 va_list args1, args2;
1332 va_start (args1, i);
1333 __va_copy (args2, args1);
1334 if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1336 va_end (args1); va_end (args2);
1342 [glib_cv___va_copy=yes],
1343 [glib_cv___va_copy=no])
1346 if test "x$glib_cv_va_copy" = "xyes"; then
1347 g_va_copy_func=va_copy
1348 else if test "x$glib_cv___va_copy" = "xyes"; then
1349 g_va_copy_func=__va_copy
1353 if test -n "$g_va_copy_func"; then
1354 AC_DEFINE_UNQUOTED(G_VA_COPY,$g_va_copy_func,[A 'va_copy' style function])
1357 AC_CACHE_CHECK([whether va_lists can be copied by value],glib_cv_va_val_copy,[
1358 AC_TRY_RUN([#include <stdarg.h>
1360 void f (int i, ...) {
1361 va_list args1, args2;
1362 va_start (args1, i);
1364 if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1366 va_end (args1); va_end (args2);
1372 [glib_cv_va_val_copy=yes],
1373 [glib_cv_va_val_copy=no],
1374 [glib_cv_va_val_copy=yes])
1377 AS_IF([ test "x$glib_cv_va_val_copy" = "xno"], [
1378 AC_DEFINE(G_VA_COPY_AS_ARRAY,1, ['va_lists' cannot be copies as values])
1381 dnl ***********************
1382 dnl *** g_module checks ***
1383 dnl ***********************
1385 G_MODULE_LIBS_EXTRA=
1386 G_MODULE_PLUGIN_LIBS=
1387 if test x"$glib_native_win32" = xyes; then
1388 dnl No use for this on Win32
1392 eval G_MODULE_LDFLAGS=$export_dynamic_flag_spec
1394 dnl G_MODULE_IMPL= don't reset, so cmd-line can override
1395 G_MODULE_NEED_USCORE=0
1396 G_MODULE_BROKEN_RTLD_GLOBAL=0
1397 G_MODULE_HAVE_DLERROR=0
1398 dnl *** force native WIN32 shared lib loader
1399 if test -z "$G_MODULE_IMPL"; then
1401 *-*-mingw*|*-*-cygwin*) G_MODULE_IMPL=G_MODULE_IMPL_WIN32 ;;
1404 dnl *** force native AIX library loader
1405 dnl *** dlopen() filepath must be of the form /path/libname.a(libname.so)
1406 if test -z "$G_MODULE_IMPL"; then
1408 *-*-aix*) G_MODULE_IMPL=G_MODULE_IMPL_AR ;;
1411 dnl *** dlopen() and dlsym() in system libraries
1412 AS_IF([ test -z "$G_MODULE_IMPL"], [
1413 AC_CHECK_FUNC(dlopen,
1414 [AC_CHECK_FUNC(dlsym,
1415 [G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
1418 dnl *** NSLinkModule (dyld) in system libraries (Darwin)
1419 AS_IF([ test -z "$G_MODULE_IMPL" ], [
1420 AC_CHECK_FUNC(NSLinkModule,
1421 [G_MODULE_IMPL=G_MODULE_IMPL_DYLD
1422 G_MODULE_NEED_USCORE=1],
1425 dnl *** dlopen() and dlsym() in libdl
1426 AS_IF([ test -z "$G_MODULE_IMPL"], [
1427 AC_CHECK_LIB(dl, dlopen,
1428 [AC_CHECK_LIB(dl, dlsym,
1430 G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
1433 dnl *** additional checks for G_MODULE_IMPL_DL
1434 AS_IF([ test "$G_MODULE_IMPL" = "G_MODULE_IMPL_DL" ], [
1436 LDFLAGS_orig="$LDFLAGS"
1437 LIBS="$G_MODULE_LIBS $LIBS"
1438 LDFLAGS="$LDFLAGS $G_MODULE_LDFLAGS"
1439 dnl *** check for OSF1/5.0 RTLD_GLOBAL brokenness
1440 echo "void glib_plugin_test(void) { }" > plugin.c
1441 ${SHELL} ./libtool --mode=compile --tag=CC ${CC} ${CFLAGS} \
1442 ${CPPFLAGS} -c -o plugin.lo plugin.c >/dev/null 2>&1
1443 ${SHELL} ./libtool --mode=link --tag=CC ${CC} ${CFLAGS} \
1444 ${LDFLAGS} -module -o plugin.la -export-dynamic \
1445 -shrext ".o" -avoid-version plugin.lo \
1446 -rpath /dont/care >/dev/null 2>&1
1447 AC_CACHE_CHECK([for RTLD_GLOBAL brokenness],
1448 glib_cv_rtldglobal_broken,[
1452 # define RTLD_GLOBAL 0
1455 # define RTLD_LAZY 0
1457 int glib_plugin_test;
1459 void *handle, *global, *local;
1460 global = &glib_plugin_test;
1461 handle = dlopen ("./$objdir/plugin.o", RTLD_GLOBAL | RTLD_LAZY);
1462 if (!handle) return 0;
1463 local = dlsym (handle, "glib_plugin_test");
1464 return global == local;
1466 [glib_cv_rtldglobal_broken=no],
1467 [glib_cv_rtldglobal_broken=yes],
1468 [glib_cv_rtldglobal_broken=no])
1469 rm -f plugin.c plugin.o plugin.lo plugin.la ${objdir}/plugin.*
1470 rmdir ${objdir} 2>/dev/null
1472 if test "x$glib_cv_rtldglobal_broken" = "xyes"; then
1473 G_MODULE_BROKEN_RTLD_GLOBAL=1
1475 G_MODULE_BROKEN_RTLD_GLOBAL=0
1477 dnl *** check whether we need preceeding underscores
1478 AC_CACHE_CHECK([for preceeding underscore in symbols],
1480 AC_TRY_RUN([#include <dlfcn.h>
1481 int glib_underscore_test (void) { return 42; }
1483 void *f1 = (void*)0, *f2 = (void*)0, *handle;
1484 handle = dlopen ((void*)0, 0);
1486 f1 = dlsym (handle, "glib_underscore_test");
1487 f2 = dlsym (handle, "_glib_underscore_test");
1488 } return (!f2 || f1);
1490 [glib_cv_uscore=yes],
1491 [glib_cv_uscore=no],
1493 rm -f plugin.c plugin.$ac_objext plugin.lo
1495 GLIB_ASSERT_SET(glib_cv_uscore)
1496 if test "x$glib_cv_uscore" = "xyes"; then
1497 G_MODULE_NEED_USCORE=1
1499 G_MODULE_NEED_USCORE=0
1502 AC_CHECK_DECL([RTLD_LAZY],
1503 [AC_DEFINE(HAVE_RTLD_LAZY, 1, [Define to 1 if RTLD_LAZY is available])],
1504 [], [[#include <dlfcn.h>]])
1505 AC_CHECK_DECL([RTLD_NOW],
1506 [AC_DEFINE(HAVE_RTLD_NOW, 1, [Define to 1 if RTLD_NOW is available])],
1507 [], [[#include <dlfcn.h>]])
1508 AC_CHECK_DECL([RTLD_GLOBAL],
1509 [AC_DEFINE(HAVE_RTLD_GLOBAL, 1, [Define to 1 if RTLD_GLOBAL is available])],
1510 [], [[#include <dlfcn.h>]])
1512 LDFLAGS="$LDFLAGS_orig"
1513 dnl *** check for having dlerror()
1514 AC_CHECK_FUNC(dlerror,
1515 [G_MODULE_HAVE_DLERROR=1],
1516 [G_MODULE_HAVE_DLERROR=0])
1519 dnl *** done, have we got an implementation?
1520 if test -z "$G_MODULE_IMPL"; then
1522 G_MODULE_SUPPORTED=false
1524 G_MODULE_SUPPORTED=true
1527 AC_MSG_CHECKING(for the suffix of module shared libraries)
1529 module=yes eval std_shrext=$shrext_cmds
1530 # chop the initial dot
1531 glib_gmodule_suffix=`echo $std_shrext | sed 's/^\.//'`
1532 AC_MSG_RESULT(.$glib_gmodule_suffix)
1533 # any reason it may fail?
1534 if test "x$glib_gmodule_suffix" = x; then
1535 AC_MSG_ERROR(Cannot determine shared library suffix from libtool)
1538 AC_SUBST(G_MODULE_SUPPORTED)
1539 AC_SUBST(G_MODULE_IMPL)
1540 AC_SUBST(G_MODULE_LIBS)
1541 AC_SUBST(G_MODULE_LIBS_EXTRA)
1542 AC_SUBST(G_MODULE_PLUGIN_LIBS)
1543 AC_SUBST(G_MODULE_LDFLAGS)
1544 AC_SUBST(G_MODULE_HAVE_DLERROR)
1545 AC_SUBST(G_MODULE_BROKEN_RTLD_GLOBAL)
1546 AC_SUBST(G_MODULE_NEED_USCORE)
1547 AC_SUBST(GLIB_DEBUG_FLAGS)
1549 dnl **********************
1550 dnl *** g_spawn checks ***
1551 dnl **********************
1553 AC_MSG_CHECKING(for gspawn implementation)
1556 GSPAWN=gspawn-win32.lo
1562 AC_MSG_RESULT($GSPAWN)
1565 dnl *************************
1566 dnl *** GIOChannel checks ***
1567 dnl *************************
1569 AC_MSG_CHECKING(for GIOChannel implementation)
1581 dnl *********************************
1582 dnl *** Directory for GIO modules ***
1583 dnl *********************************
1585 AC_ARG_WITH(gio-module-dir,
1586 [AS_HELP_STRING([--with-gio-module-dir=DIR],
1587 [load gio modules from this directory [LIBDIR/gio/modules]])],
1589 [with_gio_module_dir='${libdir}/gio/modules'])
1590 GIO_MODULE_DIR=$with_gio_module_dir
1591 AC_SUBST(GIO_MODULE_DIR)
1593 dnl **********************************
1594 dnl *** Check for libselinux (GIO) ***
1595 dnl **********************************
1596 AC_ARG_ENABLE(selinux,
1597 AS_HELP_STRING([--disable-selinux],
1598 [build without selinux support]))
1601 AS_IF([ test "x$enable_selinux" != "xno"], [
1603 AC_CHECK_LIB(selinux, is_selinux_enabled,
1604 [AC_CHECK_HEADERS(selinux/selinux.h,
1605 [AC_CHECK_LIB(selinux, lgetfilecon_raw,
1606 [AC_DEFINE(HAVE_SELINUX, 1, [Define to 1 if libselinux is available])
1607 SELINUX_LIBS="-lselinux"
1612 AC_SUBST(SELINUX_LIBS)
1614 dnl *****************************
1615 dnl ** Check for inotify (GIO) **
1616 dnl *****************************
1618 AC_CHECK_HEADERS([sys/inotify.h],
1620 AC_CHECK_FUNCS(inotify_init1, [inotify_support=yes], [inotify_support=no])
1623 AM_CONDITIONAL(HAVE_INOTIFY, [test "$inotify_support" = "yes"])
1625 dnl ****************************
1626 dnl ** Check for kqueue (GIO) **
1627 dnl ****************************
1629 AC_CHECK_HEADERS([sys/event.h],
1631 AC_CHECK_FUNCS(kqueue kevent, [kqueue_support=yes])
1634 AM_CONDITIONAL(HAVE_KQUEUE, [test "$kqueue_support" = "yes"])
1636 dnl ****************************
1637 dnl *** Checks for FAM (GIO) ***
1638 dnl ****************************
1640 should_disable_fam=no
1643 AS_HELP_STRING([--disable-fam],
1644 [don't use fam for file system monitoring]),
1646 if test "x$enable_fam" = "xno"; then
1647 should_disable_fam=yes
1653 if test "x$should_disable_fam" = "xno"; then
1654 AC_CHECK_LIB(fam, FAMOpen,
1655 [AC_CHECK_HEADERS(fam.h,
1656 [AC_CHECK_LIB(fam, FAMNoExists,
1657 AC_DEFINE(HAVE_FAM_NO_EXISTS, [], [Define if we have FAMNoExists in fam]))
1660 AC_MSG_WARN(*** FAM support will not be built (header files not found) ***))],
1661 AC_MSG_WARN(*** FAM support will not be built (FAM library not found) ***))
1664 AM_CONDITIONAL(HAVE_FAM, [test "$fam_support" = "yes"])
1667 dnl *****************************
1668 dnl *** Check for xattr (GIO) ***
1669 dnl *****************************
1670 AC_ARG_ENABLE(xattr,
1671 AS_HELP_STRING([--disable-xattr], [build without xattr support]))
1674 AS_IF([ test "x$enable_xattr" != "xno"], [
1676 dnl either glibc or libattr can provide xattr support
1678 dnl for both of them, we check for getxattr being in
1679 dnl the library and a valid xattr header.
1682 AC_CHECK_LIB(c, getxattr,
1683 [AC_CHECK_HEADERS(sys/xattr.h,
1684 [AC_DEFINE(HAVE_XATTR, 1, [Define to 1 if xattr is available])
1688 AS_IF([ test "x$msg_xattr" != "xyes"], [
1689 dnl failure. try libattr
1690 AC_CHECK_LIB(attr, getxattr,
1691 [AC_CHECK_HEADERS(attr/xattr.h,
1692 [AC_DEFINE(HAVE_XATTR, 1, [Define to 1 if xattr is available])
1698 AS_IF([ test "x$msg_xattr" = "xyes"], [
1699 AC_MSG_CHECKING([for XATTR_NOFOLLOW])
1702 #ifdef HAVE_SYS_TYPES_H
1703 #include <sys/types.h>
1705 #ifdef HAVE_SYS_XATTR_H
1706 #include <sys/xattr.h>
1707 #elif HAVE_ATTR_XATTR_H
1708 #include <attr/xattr.h>
1711 [ssize_t len = getxattr("", "", NULL, 0, 0, XATTR_NOFOLLOW);],
1713 AC_DEFINE([HAVE_XATTR_NOFOLLOW], [1], [Define to 1 if xattr API uses XATTR_NOFOLLOW])
1714 AC_MSG_RESULT([yes])
1716 [AC_MSG_RESULT([no])]
1720 AC_SUBST(XATTR_LIBS)
1722 dnl ************************
1723 dnl *** check for libelf ***
1724 dnl ************************
1725 AC_ARG_ENABLE(libelf,
1726 AS_HELP_STRING([--disable-libelf], [build without libelf support]))
1727 AS_IF([ test "x$enable_libelf" != "xno"],[
1728 PKG_CHECK_MODULES([LIBELF], [libelf >= 0.8.12], [have_libelf=yes], [have_libelf=maybe])
1729 AS_IF([ test $have_libelf = maybe ], [
1730 glib_save_LIBS=$LIBS
1731 AC_CHECK_LIB([elf], [elf_begin], [:], [have_libelf=no])
1732 AC_CHECK_LIB([elf], [elf_getshdrstrndx], [:], [have_libelf=no])
1733 AC_CHECK_LIB([elf], [elf_getshdrnum], [:], [have_libelf=no])
1734 AC_CHECK_HEADER([libelf.h], [:], [have_libelf=no])
1735 LIBS=$glib_save_LIBS
1737 if test $have_libelf != no; then
1744 if test x$have_libelf = xyes; then
1745 AC_DEFINE(HAVE_LIBELF, 1, [Define if libelf is available])
1748 dnl ************************
1749 dnl *** check for libmount ***
1750 dnl ************************
1752 dnl The fallback code doesn't really implement the same behaviors - e.g.
1753 dnl so on linux we want to require libmount unless specifically disabled
1755 enable_libmount_default=${glib_os_linux:-no}
1756 AC_ARG_ENABLE(libmount,
1757 [AS_HELP_STRING([--enable-libmount],
1758 [build with libmount support [default for Linux]])],,
1759 [enable_libmount=$enable_libmount_default])
1760 AS_IF([ test "x$enable_libmount" = "xyes"],[
1761 PKG_CHECK_MODULES([LIBMOUNT], [mount >= 2.23], [have_libmount=yes], [have_libmount=no])
1762 if test $have_libmount = no ; then
1763 AC_MSG_ERROR([*** Could not find libmount])
1767 if test x$have_libmount = xyes; then
1768 AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available])
1770 AM_CONDITIONAL(HAVE_LIBMOUNT, [test x$have_libmount = xyes])
1772 dnl ****************************************
1773 dnl *** platform dependent source checks ***
1774 dnl ****************************************
1776 AC_MSG_CHECKING(for platform-dependent source)
1778 *-*-cygwin*|*-*-mingw*)
1779 PLATFORMDEP=gwin32.lo
1785 AC_MSG_RESULT($PLATFORMDEP)
1786 AC_SUBST(PLATFORMDEP)
1788 AC_MSG_CHECKING([whether to compile timeloop])
1790 *-*-cygwin*|*-*-mingw*|*-*-minix)
1797 AC_MSG_RESULT($enable_timeloop)
1798 AM_CONDITIONAL(ENABLE_TIMELOOP, test x$enable_timeloop = xyes)
1800 AC_MSG_CHECKING([if building for some Win32 platform])
1802 *-*-mingw*|*-*-cygwin*)
1809 AC_MSG_RESULT($platform_win32)
1810 AM_CONDITIONAL(PLATFORM_WIN32, test x$platform_win32 = xyes)
1812 dnl ***********************
1813 dnl *** g_thread checks ***
1814 dnl ***********************
1816 AC_ARG_WITH(threads,
1817 [AS_HELP_STRING([--with-threads=@<:@posix/win32@:>@],
1818 [specify a thread implementation to use])],
1822 dnl error and warning message
1823 dnl *************************
1825 THREAD_NO_IMPLEMENTATION="No thread implementation found."
1827 FLAG_DOES_NOT_WORK="I can't find the MACRO to enable thread safety on your
1828 platform (normally it's "_REENTRANT"). I'll not use any flag on
1829 compilation now, but then your programs might not work.
1830 Please provide information on how it is done on your system."
1832 LIBS_NOT_FOUND_1="I can't find the libraries for the thread implementation
1835 LIBS_NOT_FOUND_2=". Please choose another thread implementation or
1836 provide information on your thread implementation."
1838 FUNC_NO_GETPWUID_R="the 'g_get_(user_name|real_name|home_dir|tmp_dir)'
1839 functions will not be MT-safe during their first call because
1840 there is no working 'getpwuid_r' on your system."
1842 FUNC_NO_LOCALTIME_R="the 'g_date_set_time' function will not be MT-safe
1843 because there is no 'localtime_r' on your system."
1845 AIX_COMPILE_INFO="AIX's C compiler needs to be called by a different name, when
1846 linking threaded applications. As GLib cannot do that
1847 automatically, you will get an linkg error everytime you are
1848 not using the right compiler. In that case you have to relink
1849 with the right compiler. Ususally just '_r' is appended
1850 to the compiler name."
1852 dnl determination of thread implementation
1853 dnl ***************************************
1855 AC_MSG_CHECKING(for thread implementation)
1858 AS_IF([ test "x$with_threads" = xyes || test "x$with_threads" = xposix], [
1859 AS_IF([ test "x$have_threads" = xno], [
1860 AC_TRY_COMPILE([#include <pthread.h>],
1861 [pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;],
1864 # Tru64Unix requires -pthread to find pthread.h. See #103020
1865 if test "x$have_threads" = xno; then
1866 glib_save_CPPFLAGS="$CPPFLAGS"
1867 CPPFLAGS="$CPPFLAGS -pthread"
1868 AC_TRY_COMPILE([#include <pthread.h>],
1869 [pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;],
1871 CPPFLAGS="$glib_save_CPPFLAGS"
1874 if test "x$with_threads" = xyes || test "x$with_threads" = xwin32; then
1882 if test "x$have_threads" = xno; then
1883 AC_MSG_RESULT(none available)
1884 AC_MSG_ERROR($THREAD_NO_IMPLEMENTATION)
1886 AC_MSG_RESULT($have_threads)
1890 dnl determination of G_THREAD_CFLAGS
1891 dnl ********************************
1894 G_THREAD_LIBS_EXTRA=
1898 dnl Test program for basic POSIX threads functionality
1900 m4_define([glib_thread_test],[
1901 #include <pthread.h>
1903 void* func(void* data) {check_me = 42; return &check_me;}
1907 pthread_create (&t, $1, func, 0);
1908 pthread_join (t, &ret);
1909 return (check_me != 42 || ret != &check_me);
1912 AS_IF([ test x"$have_threads" = xposix], [
1913 # First we test for posix, whether -pthread or -pthreads do the trick as
1914 # both CPPFLAG and LIBS.
1915 # One of them does for most gcc versions and some other platforms/compilers
1916 # too and could be considered as the canonical way to go.
1918 *-*-cygwin*|*-*-darwin*)
1919 # skip cygwin and darwin -pthread or -pthreads test
1922 # These compiler/linker flags work with both Sun Studio and gcc
1923 # Sun Studio expands -mt to -D_REENTRANT and -lthread
1924 # gcc expands -pthreads to -D_REENTRANT -D_PTHREADS -lpthread
1925 G_THREAD_CFLAGS="-D_REENTRANT -D_PTHREADS"
1926 G_THREAD_LIBS="-lpthread -lthread"
1929 for flag in pthread pthreads mt; do
1930 glib_save_CFLAGS="$CFLAGS"
1931 CFLAGS="$CFLAGS -$flag"
1932 AC_TRY_RUN(glib_thread_test(0),
1933 glib_flag_works=yes,
1935 [AC_LINK_IFELSE([AC_LANG_SOURCE(glib_thread_test(0))],
1936 glib_flag_works=yes,
1937 glib_flag_works=no)])
1938 CFLAGS="$glib_save_CFLAGS"
1939 if test $glib_flag_works = yes ; then
1940 G_THREAD_CFLAGS=-$flag
1941 G_THREAD_LIBS=-$flag
1949 AS_IF([ test x"$G_THREAD_CFLAGS" = x], [
1951 # The canonical -pthread[s] does not work. Try something different.
1955 if test x"$GCC" = xyes; then
1956 # GCC 3.0 and above needs -pthread.
1957 # Should be coverd by the case above.
1958 # GCC 2.x and below needs -mthreads
1959 G_THREAD_CFLAGS="-mthreads"
1960 G_THREAD_LIBS=$G_THREAD_CFLAGS
1962 # We are probably using the aix compiler. Normaly a
1963 # program would have to be compiled with the _r variant
1964 # of the corresponding compiler, but we as GLib cannot
1965 # do that: but the good news is that for compiling the
1966 # only difference is the added -D_THREAD_SAFE compile
1967 # option. This is according to the "C for AIX User's
1969 G_THREAD_CFLAGS="-D_THREAD_SAFE"
1972 *-sysv5uw7*) # UnixWare 7
1973 # We are not using gcc with -pthread. Catched above.
1974 G_THREAD_CFLAGS="-Kthread"
1975 G_THREAD_LIBS=$G_THREAD_CFLAGS
1978 # No flag needed when using MSVCRT.DLL
1982 G_THREAD_CFLAGS="-D_REENTRANT" # good default guess otherwise
1987 # if we are not finding the localtime_r function, then we probably are
1988 # not using the proper multithread flag
1990 glib_save_CPPFLAGS="$CPPFLAGS"
1991 CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
1993 # First we test, whether localtime_r is declared in time.h
1994 # directly. Then we test whether a macro localtime_r exists, in
1995 # which case localtime_r in the test program is replaced and thus
1996 # if we still find localtime_r in the output, it is not defined as
1999 AC_EGREP_CPP([[^a-zA-Z1-9_]localtime_r[^a-zA-Z1-9_]], [#include <time.h>], ,
2000 [AC_EGREP_CPP([[^a-zA-Z1-9_]localtime_r[^a-zA-Z1-9_]], [#include <time.h>
2002 AC_MSG_WARN($FLAG_DOES_NOT_WORK))])
2004 CPPFLAGS="$glib_save_CPPFLAGS"
2006 AC_MSG_CHECKING(thread related cflags)
2007 AC_MSG_RESULT($G_THREAD_CFLAGS)
2008 CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
2010 dnl determination of G_THREAD_LIBS
2011 dnl ******************************
2013 AS_IF([test x$have_threads = xposix], [
2014 glib_save_CPPFLAGS="$CPPFLAGS"
2015 CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
2016 AS_IF([ test x"$G_THREAD_LIBS" = x ], [
2019 # We are not using gcc (would have set G_THREAD_LIBS) and thus
2020 # probably using the aix compiler.
2021 AC_MSG_WARN($AIX_COMPILE_INFO)
2025 glib_save_LIBS="$LIBS"
2026 for thread_lib in "" pthread pthread32 pthreads thread; do
2027 if test x"$thread_lib" = x; then
2031 add_thread_lib="-l$thread_lib"
2032 IN=" in -l$thread_lib"
2034 if test x"$have_threads" = xposix; then
2037 defattr=pthread_attr_default
2040 LIBS="$add_thread_lib $glib_save_LIBS"
2042 AC_MSG_CHECKING(for pthread_create/pthread_join$IN)
2043 AC_TRY_RUN(glib_thread_test($defattr),
2046 [AC_LINK_IFELSE([AC_LANG_SOURCE(glib_thread_test($defattr))],
2049 AC_MSG_RESULT($glib_result)
2051 if test "$glib_result" = "yes" ; then
2052 G_THREAD_LIBS="$add_thread_lib"
2056 if test "x$G_THREAD_LIBS" = xerror; then
2057 AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
2059 LIBS="$glib_save_LIBS"
2064 g_threads_impl="POSIX"
2065 AC_DEFINE([THREADS_POSIX], [1], [Use pthreads])
2066 AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
2067 CPPFLAGS="$glib_save_CPPFLAGS"
2068 ], [test x$have_threads = xwin32], [
2069 AC_DEFINE([THREADS_WIN32], [1], [Use w32 threads])
2070 g_threads_impl="WIN32"
2072 AC_DEFINE([THREADS_NONE], [1], [Use no threads])
2073 g_threads_impl="NONE"
2076 AM_CONDITIONAL(THREADS_POSIX, [test "$g_threads_impl" = "POSIX"])
2077 AM_CONDITIONAL(THREADS_WIN32, [test "$g_threads_impl" = "WIN32"])
2078 AM_CONDITIONAL(THREADS_NONE, [test "$g_threads_impl" = "NONE"])
2080 if test "x$G_THREAD_LIBS" = xerror; then
2081 AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
2084 AC_MSG_CHECKING(thread related libraries)
2085 AC_MSG_RESULT($G_THREAD_LIBS)
2087 dnl check for mt safe function variants and some posix functions
2088 dnl ************************************************************
2090 glib_save_LIBS="$LIBS"
2091 # we are not doing the following for now, as this might require glib
2092 # to always be linked with the thread libs on some platforms.
2093 # LIBS="$LIBS $G_THREAD_LIBS"
2094 AC_CHECK_FUNCS(localtime_r gmtime_r getpwuid_r getgrgid_r)
2096 LIBS="$G_THREAD_LIBS $LIBS"
2097 AS_IF([ test x"$have_threads" = xposix], [
2098 glib_save_CPPFLAGS="$CPPFLAGS"
2099 CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
2100 # This is not AC_CHECK_FUNC to also work with function
2101 # name mangling in header files.
2102 AC_MSG_CHECKING(for pthread_attr_setstacksize)
2105 [#include <pthread.h>],
2106 [pthread_attr_t t; pthread_attr_setstacksize(&t,0)])],
2108 AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE,1,
2109 [Have function pthread_attr_setstacksize])],
2110 [AC_MSG_RESULT(no)])
2111 AC_MSG_CHECKING(for pthread_condattr_setclock)
2114 [#include <pthread.h>],
2115 [pthread_condattr_t a; pthread_condattr_setclock(&a,0)])],
2117 AC_DEFINE(HAVE_PTHREAD_CONDATTR_SETCLOCK,1,
2118 [Have function pthread_condattr_setclock])],
2119 [AC_MSG_RESULT(no)])
2120 AC_MSG_CHECKING(for pthread_cond_timedwait_relative_np)
2123 [#include <pthread.h>],
2124 [pthread_cond_timedwait_relative_np(NULL, NULL, NULL)])],
2126 AC_DEFINE(HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP,1,
2127 [Have function pthread_cond_timedwait_relative_np])],
2128 [AC_MSG_RESULT(no)])
2129 dnl Sets thread names on OS X 10.6, iOS 3.2 (and higher)
2130 AC_MSG_CHECKING(for pthread_setname_np(const char*))
2133 [#include <pthread.h>],
2134 [pthread_setname_np("example")])],
2136 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID,1,
2137 [Have function pthread_setname_np(const char*)])],
2138 [AC_MSG_RESULT(no)])
2139 dnl Sets thread names on Solaris 11.3 & higher
2140 AC_MSG_CHECKING(for pthread_setname_np(pthread_t, const char*))
2143 [#include <pthread.h>],
2144 [pthread_setname_np(pthread_self(), "example")])],
2146 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP_WITH_TID,1,
2147 [Have function pthread_setname_np(pthread_t, const char*)])],
2148 [AC_MSG_RESULT(no)])
2149 AC_MSG_CHECKING(for pthread_getname_np(pthread_t, name, len))
2152 [#include <pthread.h>],
2153 [[char name[16]; pthread_getname_np(pthread_self(), name, 16);]])],
2155 AC_DEFINE(HAVE_PTHREAD_GETNAME_NP,1,
2156 [Have function pthread_getname_np(pthread_t, name, len)])],
2157 [AC_MSG_RESULT(no)])
2158 CPPFLAGS="$glib_save_CPPFLAGS"
2161 LIBS="$glib_save_LIBS"
2163 # now spit out all the warnings.
2164 if test "$ac_cv_func_getpwuid_r" != "yes"; then
2165 AC_MSG_WARN($FUNC_NO_GETPWUID_R)
2167 if test "$ac_cv_func_localtime_r" != "yes"; then
2168 AC_MSG_WARN($FUNC_NO_LOCALTIME_R)
2172 # Hack to deal with:
2174 # a) GCC < 3.3 for Linux doesn't include -lpthread when
2175 # building shared libraries with linux.
2176 # b) FreeBSD doesn't do this either.
2180 G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS"
2182 *-*-freebsd*|*-*-linux*)
2183 G_THREAD_LIBS_FOR_GTHREAD="`echo $G_THREAD_LIBS | sed s/-pthread/-lpthread/`"
2186 G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS"
2190 AC_SUBST(G_THREAD_CFLAGS)
2191 AC_SUBST(G_THREAD_LIBS)
2192 AC_SUBST(G_THREAD_LIBS_FOR_GTHREAD)
2193 AC_SUBST(G_THREAD_LIBS_EXTRA)
2195 AC_CHECK_FUNCS(clock_gettime, [], [
2196 AC_CHECK_LIB(rt, clock_gettime, [
2197 G_THREAD_LIBS="$G_THREAD_LIBS -lrt"
2198 G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS_FOR_GTHREAD -lrt"
2203 dnl ************************
2204 dnl *** g_atomic_* tests ***
2205 dnl ************************
2207 dnl We need to decide at configure time if GLib will use real atomic
2208 dnl operations ("lock free") or emulated ones with a mutex. This is
2209 dnl because we must put this information in glibconfig.h so we know if
2210 dnl it is safe or not to inline using compiler intrinsics directly from
2213 dnl We also publish the information via G_ATOMIC_LOCK_FREE in case the
2214 dnl user is interested in knowing if they can use the atomic ops across
2217 dnl We can currently support the atomic ops natively when building GLib
2218 dnl with recent versions of GCC or MSVC. MSVC doesn't run ./configure,
2219 dnl so we skip that case here and define G_ATOMIC_LOCK_FREE exactly when
2220 dnl we are using GCC (and not mingw*).
2222 dnl Note that the atomic ops are only available with GCC on x86 when
2223 dnl using -march=i486 or higher. If we detect that the atomic ops are
2224 dnl not available but would be available given the right flags, we want
2225 dnl to abort and advise the user to fix their CFLAGS. It's better to do
2226 dnl that then to silently fall back on emulated atomic ops just because
2227 dnl the user had the wrong build environment.
2229 dnl We may add other compilers here in the future...
2231 AC_CACHE_CHECK([for lock-free atomic intrinsics], glib_cv_g_atomic_lock_free, [
2234 glib_cv_g_atomic_lock_free=yes
2238 [volatile int atomic = 2;\
2239 __sync_bool_compare_and_swap (&atomic, 2, 3);],
2240 [glib_cv_g_atomic_lock_free=yes],
2241 [glib_cv_g_atomic_lock_free=no])
2242 if test "$glib_cv_g_atomic_lock_free" = "no"; then
2243 SAVE_CFLAGS="${CFLAGS}"
2244 CFLAGS="-march=i486"
2246 [volatile int atomic = 2;\
2247 __sync_bool_compare_and_swap (&atomic, 2, 3);],
2248 [AC_MSG_ERROR([GLib must be built with -march=i486 or later.])],
2250 CFLAGS="${SAVE_CFLAGS}"
2260 # Some compilers support atomic operations but do not define
2261 # __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, like clang
2262 if test x"$glib_cv_g_atomic_lock_free" = xyes; then
2264 [__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;],
2266 [AC_DEFINE(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, 1, [ compiler supports atomic operations])])
2271 dnl We need a more robust approach here...
2273 i?86|x86_64|s390|s390x|arm*|crisv32*|etrax*)
2274 glib_memory_barrier_needed=no
2276 sparc*|alpha*|powerpc*|ia64)
2277 glib_memory_barrier_needed=yes
2280 glib_memory_barrier_needed=yes
2284 dnl ************************
2285 dnl ** Check for futex(2) **
2286 dnl ************************
2287 AC_CACHE_CHECK(for futex(2) system call,
2288 glib_cv_futex,AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
2289 #include <linux/futex.h>
2290 #include <sys/syscall.h>
2293 syscall (__NR_futex, NULL, FUTEX_WAKE, FUTEX_WAIT);
2294 ])],glib_cv_futex=yes,glib_cv_futex=no))
2295 if test x"$glib_cv_futex" = xyes; then
2296 AC_DEFINE(HAVE_FUTEX, 1, [we have the futex(2) system call])
2299 AC_CACHE_CHECK(for eventfd(2) system call,
2300 glib_cv_eventfd,AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
2301 #include <sys/eventfd.h>
2304 eventfd (0, EFD_CLOEXEC);
2305 ])],glib_cv_eventfd=yes,glib_cv_eventfd=no))
2306 if test x"$glib_cv_eventfd" = x"yes"; then
2307 AC_DEFINE(HAVE_EVENTFD, 1, [we have the eventfd(2) system call])
2309 AM_CONDITIONAL(HAVE_EVENTFD, [test "$glib_cv_eventfd" = "yes"])
2311 dnl ****************************************
2312 dnl *** GLib POLL* compatibility defines ***
2313 dnl ****************************************
2315 glib_poll_includes=["
2316 #include <sys/types.h>
2320 AS_IF([ test $ac_cv_header_sys_types_h = yes &&
2321 test $ac_cv_func_poll = yes ], [
2323 GLIB_CHECK_VALUE(POLLIN, $glib_poll_includes, glib_failed=true)
2324 GLIB_CHECK_VALUE(POLLOUT, $glib_poll_includes, glib_failed=true)
2325 GLIB_CHECK_VALUE(POLLPRI, $glib_poll_includes, glib_failed=true)
2326 GLIB_CHECK_VALUE(POLLERR, $glib_poll_includes, glib_failed=true)
2327 GLIB_CHECK_VALUE(POLLHUP, $glib_poll_includes, glib_failed=true)
2328 GLIB_CHECK_VALUE(POLLNVAL, $glib_poll_includes, glib_failed=true)
2329 if $glib_failed ; then
2330 AC_MSG_ERROR([Could not determine values for POLL* constants])
2333 glib_cv_value_POLLIN=1
2334 glib_cv_value_POLLOUT=4
2335 glib_cv_value_POLLPRI=2
2336 glib_cv_value_POLLERR=8
2337 glib_cv_value_POLLHUP=16
2338 glib_cv_value_POLLNVAL=32
2341 AC_MSG_CHECKING([for broken poll])
2342 AC_RUN_IFELSE([AC_LANG_SOURCE([[
2347 struct pollfd fds[1];
2349 fd = open("/dev/null", 1);
2351 fds[0].events = POLLIN;
2353 if (poll(fds, 1, 0) < 0 || (fds[0].revents & POLLNVAL) != 0) {
2354 exit(1); /* Does not work for devices -- fail */
2360 AC_DEFINE(BROKEN_POLL,1,[poll doesn't work on devices])],
2361 [broken_poll="no (cross compiling)"])
2362 AC_MSG_RESULT($broken_poll)
2364 dnl *********************
2365 dnl *** GRegex checks ***
2366 dnl *********************
2368 PCRE_REQUIRED_VERSION=8.13
2370 # Check if we should use the internal or the system-supplied pcre
2372 [AS_HELP_STRING([--with-pcre=@<:@internal/system@:>@],
2373 [whether to use system PCRE [default=system]])],
2377 AM_CONDITIONAL(USE_SYSTEM_PCRE, [test "x$with_pcre" = xsystem])
2379 AS_IF([ test "x$with_pcre" = xsystem], [
2380 PKG_CHECK_MODULES(PCRE,
2381 libpcre >= $PCRE_REQUIRED_VERSION)
2382 AC_CACHE_CHECK([for Unicode support in PCRE],glib_cv_pcre_has_unicode,[
2383 glib_save_CFLAGS="$CFLAGS"
2384 glib_save_LIBS="$LIBS"
2385 CFLAGS="$CFLAGS $PCRE_CFLAGS" LIBS="$PCRE_LIBS"
2386 AC_TRY_RUN([#include <pcre.h>
2389 pcre_config (PCRE_CONFIG_UTF8, &support);
2392 pcre_config (PCRE_CONFIG_UNICODE_PROPERTIES, &support);
2397 glib_cv_pcre_has_unicode=yes,
2398 glib_cv_pcre_has_unicode=no,
2399 glib_cv_pcre_has_unicode=yes)
2400 CFLAGS="$glib_save_CFLAGS"
2401 LIBS="$glib_save_LIBS"
2403 if test "$glib_cv_pcre_has_unicode" = "no"; then
2404 AC_MSG_ERROR([*** The system-supplied PCRE does not support Unicode properties or UTF-8.])
2406 AC_SUBST(PCRE_CFLAGS)
2408 AC_DEFINE(USE_SYSTEM_PCRE, [], [using the system-supplied PCRE library])
2409 PCRE_REQUIRES=libpcre
2410 AC_SUBST(PCRE_REQUIRES)
2412 # If using gcc 4 pass -Wno-pointer-sign when compiling the internal PCRE
2413 AS_IF([ test x"$GCC" = xyes], [
2414 AC_MSG_CHECKING([whether compiler understands -Wno-pointer-sign])
2415 save_CFLAGS="$CFLAGS"
2416 CFLAGS="$CFLAGS -Wno-pointer-sign"
2417 AC_TRY_COMPILE([],[],[PCRE_WARN_CFLAGS="$PCRE_WARN_CFLAGS -Wno-pointer-sign"
2418 AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
2419 CFLAGS="$save_CFLAGS"
2422 AC_SUBST(PCRE_WARN_CFLAGS)
2424 dnl **********************
2425 dnl *** Win32 API libs ***
2426 dnl **********************
2430 G_LIBS_EXTRA="-luser32 -lkernel32"
2433 G_LIBS_EXTRA="-lws2_32 -lole32 -lwinmm -lshlwapi"
2439 AC_SUBST(G_LIBS_EXTRA)
2441 dnl If the system doesn't define EILSEQ, we should define EILSEQ ourselves
2442 dnl since we need it for g_iconv()
2444 AC_MSG_CHECKING([for EILSEQ])
2450 ], have_eilseq=yes, have_eilseq=no);
2451 AC_MSG_RESULT($have_eilseq)
2453 dnl Add a conditional we can use when cross-compiling, so we avoid running
2455 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
2457 dnl **************************
2458 dnl *** Checks for gtk-doc ***
2459 dnl **************************
2460 # gtkdocize greps for ^GTK_DOC_CHECK and parses it, so you need to have
2461 # it on it's own line.
2462 m4_ifdef([GTK_DOC_CHECK], [
2463 GTK_DOC_CHECK([1.20], [--flavour no-tmpl])
2465 AM_CONDITIONAL([ENABLE_GTK_DOC],[false])
2469 [AS_HELP_STRING([--enable-man],
2470 [generate man pages [default=auto]])],,
2473 AS_IF([test "$enable_man" != no], [
2474 AC_PATH_PROG([XSLTPROC], [xsltproc])
2475 AS_IF([test -z "$XSLTPROC"], [
2476 AS_IF([test "$enable_man" = yes], [
2477 AC_MSG_ERROR([xsltproc is required for --enable-man])
2483 AS_IF([ test "$enable_man" != no ], [
2484 dnl check for DocBook DTD in the local catalog
2485 JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
2486 [DocBook XML DTD V4.1.2], [have_docbook_dtd=yes], [have_docbook_dtd=no])
2487 AS_IF([test "$have_docbook_dtd" != yes], [
2488 AS_IF([test "$enable_man" = yes ], [
2489 AC_MSG_ERROR([DocBook DTD is required for --enable-man])
2495 AS_IF([test "$enable_man" != no], [
2496 dnl check for DocBook XSL stylesheets in the local catalog
2497 JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
2498 [DocBook XSL Stylesheets], [have_docbook_style=yes],[have_docbook_style=no])
2499 AS_IF([ test "$have_docbook_style" != yes ], [
2500 AS_IF([ test "$enable_man" = yes ], [
2501 AC_MSG_ERROR([DocBook XSL Stylesheets are required for --enable-man])
2507 AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no)
2509 AC_MSG_CHECKING([whether to generate man pages])
2510 AS_IF([ test "$enable_man" != no ], [
2511 AC_MSG_RESULT([yes])
2520 AC_ARG_ENABLE([dtrace],
2521 [AS_HELP_STRING([--enable-dtrace],
2522 [include tracing support for dtrace])])
2524 AC_MSG_CHECKING([whether to include dtrace tracing support])
2525 AS_IF([ test "x$enable_dtrace" != xno], [
2526 if test x$glib_have_carbon = xyes; then
2527 AC_MSG_RESULT([no (not yet compatible with MacOS dtrace)])
2529 AC_MSG_RESULT([yes])
2530 AC_CHECK_PROGS(DTRACE, dtrace)
2531 if test -z "$DTRACE"; then
2532 if test "x$enable_dtrace" = xyes; then
2533 AC_MSG_ERROR([dtrace not found])
2536 AC_CHECK_HEADER([sys/sdt.h],have_dtrace=yes,
2537 [if test "x$enable_dtrace" = xyes; then
2538 AC_MSG_ERROR([dtrace support needs sys/sdt.h header])
2545 if test "x$have_dtrace" = xyes; then
2546 AC_DEFINE([HAVE_DTRACE], [1], [Define to 1 if using dtrace probes.])
2548 AM_CONDITIONAL([ENABLE_DTRACE], [test x$have_dtrace = xyes ])
2550 AC_MSG_CHECKING([whether to include systemtap tracing support])
2551 AC_ARG_ENABLE([systemtap],
2552 [AS_HELP_STRING([--enable-systemtap],
2553 [include tracing support for systemtap])])
2555 if test "x$enable_systemtap" != xno -a "x$have_dtrace" = xyes; then
2558 AC_MSG_RESULT(${have_systemtap})
2560 AM_CONDITIONAL([ENABLE_SYSTEMTAP], [test x$have_systemtap = xyes])
2562 AC_ARG_WITH([tapset-install-dir],
2563 AS_HELP_STRING([--with-tapset-install-dir=DIR],
2564 [path where systemtap tapsets are installed [DATADIR/systemtap/tapset/HOST_CPU]]),
2565 [if test "x${withval}" = x; then
2566 ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset/${host_cpu}"
2568 ABS_TAPSET_DIR="${withval}"
2570 [ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset/${host_cpu}"])
2571 AC_SUBST(ABS_TAPSET_DIR)
2573 dnl ************************************
2574 dnl *** Enable lcov coverage reports ***
2575 dnl ************************************
2577 AC_ARG_ENABLE(coverage,
2578 AS_HELP_STRING([--enable-coverage],
2579 [enable coverage testing with gcov]),
2580 [use_gcov=$enableval], [use_gcov=no])
2582 AS_IF([ test "x$use_gcov" = "xyes"], [
2584 if test "$GCC" != "yes"; then
2585 AC_MSG_ERROR([GCC is required for --enable-coverage])
2588 dnl Check if ccache is being used
2589 AC_CHECK_PROG(SHTOOL, shtool, shtool)
2590 case `$SHTOOL path $CC` in
2591 *ccache*[)] gcc_ccache=yes;;
2592 *[)] gcc_ccache=no;;
2595 if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then
2596 AC_MSG_ERROR([ccache must be disabled when --enable-coverage option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.])
2599 ltp_version_list="1.6 1.7 1.8 1.9 1.10 1.12"
2600 AC_CHECK_PROG(LTP, lcov, lcov)
2601 AC_CHECK_PROG(LTP_GENHTML, genhtml, genhtml)
2603 AS_IF([ test "$LTP" ], [
2604 AC_CACHE_CHECK([for ltp version], glib_cv_ltp_version, [
2605 glib_cv_ltp_version=invalid
2606 ltp_version=`$LTP -v 2>/dev/null | $SED -e 's/^.* //'`
2607 for ltp_check_version in $ltp_version_list; do
2608 if test "$ltp_version" = "$ltp_check_version"; then
2609 glib_cv_ltp_version="$ltp_check_version (ok)"
2614 ltp_msg="To enable code coverage reporting you must have one of the following LTP versions installed: $ltp_version_list"
2615 AC_MSG_ERROR([$ltp_msg])
2618 case $glib_cv_ltp_version in
2620 ltp_msg="You must have one of the following versions of LTP: $ltp_version_list (found: $ltp_version)."
2621 AC_MSG_ERROR([$ltp_msg])
2626 if test -z "$LTP_GENHTML"; then
2627 AC_MSG_ERROR([Could not find genhtml from the LTP package])
2630 dnl Remove all optimization flags from CFLAGS
2632 CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9]*//g'`
2635 dnl Add the special gcc flags
2636 CFLAGS="$CFLAGS -O0 -fprofile-arcs -ftest-coverage"
2637 LDFLAGS="$LDFLAGS -lgcov"
2640 dnl *******************************
2641 dnl *** Disable strict aliasing ***
2642 dnl *******************************
2643 dnl See https://bugzilla.gnome.org/show_bug.cgi?id=791622
2644 AS_IF([test "${GCC}" = "yes"],[
2645 CFLAGS="$CFLAGS -fno-strict-aliasing"
2648 dnl ******************************
2649 dnl *** output the whole stuff ***
2650 dnl ******************************
2652 dnl this section will only be run if config.status is invoked with no
2653 dnl arguments, or with "glib/glibconfig.h" as an argument.
2654 AC_CONFIG_COMMANDS([glib/glibconfig.h],
2656 outfile=glib/glibconfig.h-tmp
2657 cat > $outfile <<\_______EOF
2660 * This is a generated file. Please modify 'configure.ac'
2663 #ifndef __GLIBCONFIG_H__
2664 #define __GLIBCONFIG_H__
2666 #include <glib/gmacros.h>
2670 echo '#include <limits.h>' >> $outfile
2671 echo '#include <float.h>' >> $outfile
2672 if test x$glib_values_h = xyes; then
2673 echo '#include <values.h>' >> $outfile
2675 if test "$glib_header_alloca_h" = "yes"; then
2676 echo '#define GLIB_HAVE_ALLOCA_H' >> $outfile
2678 if test x$glib_included_printf != xyes; then
2680 /* Specifies that GLib's g_print*() functions wrap the
2681 * system printf functions. This is useful to know, for example,
2682 * when using glibc's register_printf_function().
2684 echo '#define GLIB_USING_SYSTEM_PRINTF' >> $outfile
2687 cat >> $outfile <<_______EOF
2691 #define G_MINFLOAT FLT_MIN
2692 #define G_MAXFLOAT FLT_MAX
2693 #define G_MINDOUBLE DBL_MIN
2694 #define G_MAXDOUBLE DBL_MAX
2695 #define G_MINSHORT SHRT_MIN
2696 #define G_MAXSHORT SHRT_MAX
2697 #define G_MAXUSHORT USHRT_MAX
2698 #define G_MININT INT_MIN
2699 #define G_MAXINT INT_MAX
2700 #define G_MAXUINT UINT_MAX
2701 #define G_MINLONG LONG_MIN
2702 #define G_MAXLONG LONG_MAX
2703 #define G_MAXULONG ULONG_MAX
2708 ### this should always be true in a modern C/C++ compiler
2709 ### and is statically asserted by glib-init.c
2710 cat >>$outfile <<_______EOF
2711 typedef signed char gint8;
2712 typedef unsigned char guint8;
2716 if test -n "$gint16"; then
2717 cat >>$outfile <<_______EOF
2718 typedef signed $gint16 gint16;
2719 typedef unsigned $gint16 guint16;
2720 #define G_GINT16_MODIFIER $gint16_modifier
2721 #define G_GINT16_FORMAT $gint16_format
2722 #define G_GUINT16_FORMAT $guint16_format
2727 if test -n "$gint32"; then
2728 cat >>$outfile <<_______EOF
2729 typedef signed $gint32 gint32;
2730 typedef unsigned $gint32 guint32;
2731 #define G_GINT32_MODIFIER $gint32_modifier
2732 #define G_GINT32_FORMAT $gint32_format
2733 #define G_GUINT32_FORMAT $guint32_format
2737 cat >>$outfile <<_______EOF
2738 #define G_HAVE_GINT64 1 /* deprecated, always true */
2740 ${glib_extension}typedef signed $gint64 gint64;
2741 ${glib_extension}typedef unsigned $gint64 guint64;
2743 #define G_GINT64_CONSTANT(val) $gint64_constant
2744 #define G_GUINT64_CONSTANT(val) $guint64_constant
2747 if test x$gint64_format != x ; then
2748 cat >>$outfile <<_______EOF
2749 #define G_GINT64_MODIFIER $gint64_modifier
2750 #define G_GINT64_FORMAT $gint64_format
2751 #define G_GUINT64_FORMAT $guint64_format
2754 cat >>$outfile <<_______EOF
2755 #undef G_GINT64_MODIFIER
2756 #undef G_GINT64_FORMAT
2757 #undef G_GUINT64_FORMAT
2761 cat >>$outfile <<_______EOF
2763 #define GLIB_SIZEOF_VOID_P $glib_void_p
2764 #define GLIB_SIZEOF_LONG $glib_long
2765 #define GLIB_SIZEOF_SIZE_T $glib_size_t
2766 #define GLIB_SIZEOF_SSIZE_T $glib_ssize_t
2770 cat >>$outfile <<_______EOF
2771 typedef signed $glib_ssize_type_define gssize;
2772 typedef unsigned $glib_size_type_define gsize;
2773 #define G_GSIZE_MODIFIER $gsize_modifier
2774 #define G_GSSIZE_MODIFIER $gssize_modifier
2775 #define G_GSIZE_FORMAT $gsize_format
2776 #define G_GSSIZE_FORMAT $gssize_format
2778 #define G_MAXSIZE G_MAXU$glib_msize_type
2779 #define G_MINSSIZE G_MIN$glib_mssize_type
2780 #define G_MAXSSIZE G_MAX$glib_mssize_type
2782 typedef gint64 goffset;
2783 #define G_MINOFFSET G_MININT64
2784 #define G_MAXOFFSET G_MAXINT64
2786 #define G_GOFFSET_MODIFIER G_GINT64_MODIFIER
2787 #define G_GOFFSET_FORMAT G_GINT64_FORMAT
2788 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
2790 #define G_POLLFD_FORMAT $g_pollfd_format
2794 if test -z "$glib_unknown_void_p"; then
2795 cat >>$outfile <<_______EOF
2797 #define GPOINTER_TO_INT(p) ((gint) ${glib_gpi_cast} (p))
2798 #define GPOINTER_TO_UINT(p) ((guint) ${glib_gpui_cast} (p))
2800 #define GINT_TO_POINTER(i) ((gpointer) ${glib_gpi_cast} (i))
2801 #define GUINT_TO_POINTER(u) ((gpointer) ${glib_gpui_cast} (u))
2803 typedef signed $glib_intptr_type_define gintptr;
2804 typedef unsigned $glib_intptr_type_define guintptr;
2806 #define G_GINTPTR_MODIFIER $gintptr_modifier
2807 #define G_GINTPTR_FORMAT $gintptr_format
2808 #define G_GUINTPTR_FORMAT $guintptr_format
2811 echo '#error SIZEOF_VOID_P unknown - This should never happen' >>$outfile
2816 cat >>$outfile <<_______EOF
2817 #ifndef G_DISABLE_DEPRECATED
2818 #define g_ATEXIT(proc) (atexit (proc))
2819 #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
2823 $glib_static_compilation
2829 if test x$g_have_iso_c_varargs = xyes ; then
2830 cat >>$outfile <<_______EOF
2832 # define G_HAVE_ISO_VARARGS 1
2836 if test x$g_have_iso_cxx_varargs = xyes ; then
2837 cat >>$outfile <<_______EOF
2839 # define G_HAVE_ISO_VARARGS 1
2843 if test x$g_have_gnuc_varargs = xyes ; then
2844 cat >>$outfile <<_______EOF
2846 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
2847 * is passed ISO vararg support is turned off, and there is no work
2848 * around to turn it on, so we unconditionally turn it off.
2850 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
2851 # undef G_HAVE_ISO_VARARGS
2854 #define G_HAVE_GNUC_VARARGS 1
2858 case x$g_stack_grows in
2859 xyes) echo "#define G_HAVE_GROWING_STACK 1" >>$outfile ;;
2860 *) echo "#define G_HAVE_GROWING_STACK 0" >>$outfile ;;
2865 if test x$g_have_eilseq = xno; then
2866 cat >>$outfile <<_______EOF
2868 /* On some pre-C99 systems, EILSEQ is not defined.
2869 * The correspondence between this and the corresponding definition
2870 * in libiconv is essential.
2872 # define EILSEQ ENOENT
2878 if test x$g_have_gnuc_visibility = xyes; then
2879 cat >>$outfile <<_______EOF
2880 #define G_HAVE_GNUC_VISIBILITY 1
2883 cat >>$outfile <<_______EOF
2884 #if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
2885 #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
2886 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
2887 #define G_GNUC_INTERNAL __hidden
2888 #elif defined (__GNUC__) && defined (G_HAVE_GNUC_VISIBILITY)
2889 #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
2891 #define G_GNUC_INTERNAL
2896 cat >>$outfile <<_______EOF
2897 #define G_THREADS_ENABLED
2898 #define G_THREADS_IMPL_$g_threads_impl_def
2901 if test x"$g_memory_barrier_needed" != xno; then
2903 echo "#define G_ATOMIC_OP_MEMORY_BARRIER_NEEDED 1" >>$outfile
2905 if test x"$g_atomic_lock_free" = xyes; then
2907 echo "#define G_ATOMIC_LOCK_FREE" >>$outfile
2910 g_bit_sizes="16 32 64"
2911 for bits in $g_bit_sizes; do
2912 cat >>$outfile <<_______EOF
2913 #define GINT${bits}_TO_${g_bs_native}(val) ((gint${bits}) (val))
2914 #define GUINT${bits}_TO_${g_bs_native}(val) ((guint${bits}) (val))
2915 #define GINT${bits}_TO_${g_bs_alien}(val) ((gint${bits}) GUINT${bits}_SWAP_LE_BE (val))
2916 #define GUINT${bits}_TO_${g_bs_alien}(val) (GUINT${bits}_SWAP_LE_BE (val))
2920 cat >>$outfile <<_______EOF
2921 #define GLONG_TO_LE(val) ((glong) GINT${glongbits}_TO_LE (val))
2922 #define GULONG_TO_LE(val) ((gulong) GUINT${glongbits}_TO_LE (val))
2923 #define GLONG_TO_BE(val) ((glong) GINT${glongbits}_TO_BE (val))
2924 #define GULONG_TO_BE(val) ((gulong) GUINT${glongbits}_TO_BE (val))
2925 #define GINT_TO_LE(val) ((gint) GINT${gintbits}_TO_LE (val))
2926 #define GUINT_TO_LE(val) ((guint) GUINT${gintbits}_TO_LE (val))
2927 #define GINT_TO_BE(val) ((gint) GINT${gintbits}_TO_BE (val))
2928 #define GUINT_TO_BE(val) ((guint) GUINT${gintbits}_TO_BE (val))
2929 #define GSIZE_TO_LE(val) ((gsize) GUINT${gsizebits}_TO_LE (val))
2930 #define GSSIZE_TO_LE(val) ((gssize) GINT${gssizebits}_TO_LE (val))
2931 #define GSIZE_TO_BE(val) ((gsize) GUINT${gsizebits}_TO_BE (val))
2932 #define GSSIZE_TO_BE(val) ((gssize) GINT${gssizebits}_TO_BE (val))
2933 #define G_BYTE_ORDER $g_byte_order
2935 #define GLIB_SYSDEF_POLLIN =$g_pollin
2936 #define GLIB_SYSDEF_POLLOUT =$g_pollout
2937 #define GLIB_SYSDEF_POLLPRI =$g_pollpri
2938 #define GLIB_SYSDEF_POLLHUP =$g_pollhup
2939 #define GLIB_SYSDEF_POLLERR =$g_pollerr
2940 #define GLIB_SYSDEF_POLLNVAL =$g_pollnval
2942 #define G_MODULE_SUFFIX "$g_module_suffix"
2944 typedef $g_pid_type GPid;
2945 #define G_PID_FORMAT $g_pid_format
2947 #define GLIB_SYSDEF_AF_UNIX $g_af_unix
2948 #define GLIB_SYSDEF_AF_INET $g_af_inet
2949 #define GLIB_SYSDEF_AF_INET6 $g_af_inet6
2951 #define GLIB_SYSDEF_MSG_OOB $g_msg_oob
2952 #define GLIB_SYSDEF_MSG_PEEK $g_msg_peek
2953 #define GLIB_SYSDEF_MSG_DONTROUTE $g_msg_dontroute
2955 #define G_DIR_SEPARATOR '$g_dir_separator'
2956 #define G_DIR_SEPARATOR_S "$g_dir_separator"
2957 #define G_SEARCHPATH_SEPARATOR '$g_searchpath_separator'
2958 #define G_SEARCHPATH_SEPARATOR_S "$g_searchpath_separator"
2962 #endif /* __GLIBCONFIG_H__ */
2966 if cmp -s $outfile glib/glibconfig.h; then
2967 AC_MSG_NOTICE([glib/glibconfig.h is unchanged])
2970 mv $outfile glib/glibconfig.h
2974 # Note that if two cases are the same, case goes with the first one.
2975 # Note also that this is inside an AC_OUTPUT_COMMAND. We do not depend
2976 # on variable expansion in case labels. Look at the generated config.status
2979 if test "x${ac_cv_working_alloca_h+set}" = xset ; then
2980 glib_header_alloca_h="$ac_cv_working_alloca_h"
2982 glib_header_alloca_h="$ac_cv_header_alloca_h"
2985 if test x$enable_included_printf = xyes ; then
2986 glib_included_printf=yes
2990 $ac_cv_sizeof_short)
2992 gint16_modifier='"h"'
2993 gint16_format='"hi"'
2994 guint16_format='"hu"'
2998 gint16_modifier='""'
3000 guint16_format='"u"'
3004 $ac_cv_sizeof_short)
3006 gint32_modifier='"h"'
3007 gint32_format='"hi"'
3008 guint32_format='"hu"'
3012 gint32_modifier='""'
3014 guint32_format='"u"'
3018 gint32_modifier='"l"'
3019 gint32_format='"li"'
3020 guint32_format='"lu"'
3026 gint64_modifier='""'
3028 guint64_format='"u"'
3030 gint64_constant='(val)'
3031 guint64_constant='(val)'
3035 gint64_modifier='"l"'
3036 gint64_format='"li"'
3037 guint64_format='"lu"'
3039 gint64_constant='(val##L)'
3040 guint64_constant='(val##UL)'
3042 $ac_cv_sizeof_long_long)
3044 if test -n "$glib_cv_long_long_format"; then
3045 gint64_modifier='"'$glib_cv_long_long_format'"'
3046 gint64_format='"'$glib_cv_long_long_format'i"'
3047 guint64_format='"'$glib_cv_long_long_format'u"'
3049 glib_extension='G_GNUC_EXTENSION '
3050 gint64_constant='(G_GNUC_EXTENSION (val##LL))'
3051 guint64_constant='(G_GNUC_EXTENSION (val##ULL))'
3053 $ac_cv_sizeof___int64)
3055 if test -n "$glib_cv_long_long_format"; then
3056 gint64_modifier='"'$glib_cv_long_long_format'"'
3057 gint64_format='"'$glib_cv_long_long_format'i"'
3058 guint64_format='"'$glib_cv_long_long_format'u"'
3061 gint64_constant='(val##i64)'
3062 guint64_constant='(val##ui64)'
3065 glib_size_t=$ac_cv_sizeof_size_t
3066 glib_ssize_t=$ac_cv_sizeof_ssize_t
3067 glib_size_type_define="$glib_size_type"
3068 glib_ssize_type_define="$glib_ssize_type"
3069 glib_void_p=$ac_cv_sizeof_void_p
3070 glib_long=$ac_cv_sizeof_long
3072 case "$glib_size_type" in
3074 gsize_modifier='"h"'
3076 glib_msize_type='SHRT'
3081 glib_msize_type='INT'
3084 gsize_modifier='"l"'
3086 glib_msize_type='LONG'
3088 "long long"|__int64)
3089 gsize_modifier='"I64"'
3090 gsize_format='"I64u"'
3091 glib_msize_type='INT64'
3095 case "$glib_ssize_type" in
3097 gssize_modifier='"h"'
3098 gssize_format='"hi"'
3099 glib_mssize_type='SHRT'
3102 gssize_modifier='""'
3104 glib_mssize_type='INT'
3107 gssize_modifier='"l"'
3108 gssize_format='"li"'
3109 glib_mssize_type='LONG'
3111 "long long"|__int64)
3112 gssize_modifier='"I64"'
3113 gssize_format='"I64i"'
3114 glib_mssize_type='INT64'
3118 gintbits=`expr $ac_cv_sizeof_int \* 8`
3119 glongbits=`expr $ac_cv_sizeof_long \* 8`
3120 gsizebits=`expr $ac_cv_sizeof_size_t \* 8`
3121 gssizebits=`expr $ac_cv_sizeof_ssize_t \* 8`
3123 case $ac_cv_sizeof_void_p in
3125 glib_intptr_type_define=int
3126 gintptr_modifier='""'
3127 gintptr_format='"i"'
3128 guintptr_format='"u"'
3129 glib_gpi_cast='(gint)'
3130 glib_gpui_cast='(guint)'
3133 glib_intptr_type_define=long
3134 gintptr_modifier='"l"'
3135 gintptr_format='"li"'
3136 guintptr_format='"lu"'
3137 glib_gpi_cast='(glong)'
3138 glib_gpui_cast='(gulong)'
3140 $ac_cv_sizeof_long_long)
3141 glib_intptr_type_define='long long'
3142 gintptr_modifier='"I64"'
3143 gintptr_format='"I64i"'
3144 guintptr_format='"I64u"'
3145 glib_gpi_cast='(gint64)'
3146 glib_gpui_cast='(guint64)'
3148 $ac_cv_sizeof___int64)
3149 glib_intptr_type_define=__int64
3150 gintptr_modifier='"I64"'
3151 gintptr_format='"I64i"'
3152 guintptr_format='"I64u"'
3153 glib_gpi_cast='(gint64)'
3154 glib_gpui_cast='(guint64)'
3157 glib_unknown_void_p=yes
3163 #define GLIB_MAJOR_VERSION $GLIB_MAJOR_VERSION
3164 #define GLIB_MINOR_VERSION $GLIB_MINOR_VERSION
3165 #define GLIB_MICRO_VERSION $GLIB_MICRO_VERSION
3169 x$glib_cv_va_copy) glib_vacopy='#define G_VA_COPY va_copy' ;;
3170 x$glib_cv___va_copy) glib_vacopy='#define G_VA_COPY __va_copy' ;;
3174 if test x$glib_cv_va_val_copy = xno; then
3175 glib_vacopy="\$glib_vacopy
3176 #define G_VA_COPY_AS_ARRAY 1"
3179 g_have_gnuc_varargs=$g_have_gnuc_varargs
3180 g_have_iso_c_varargs=$g_have_iso_c_varargs
3181 g_have_iso_cxx_varargs=$g_have_iso_cxx_varargs
3183 g_have_gnuc_visibility=$g_have_gnuc_visibility
3184 g_have_sunstudio_visibility=$g_have_sunstudio_visibility
3186 if test x$ac_cv_c_bigendian = xyes; then
3187 g_byte_order=G_BIG_ENDIAN
3191 g_byte_order=G_LITTLE_ENDIAN
3196 g_pollin=$glib_cv_value_POLLIN
3197 g_pollout=$glib_cv_value_POLLOUT
3198 g_pollpri=$glib_cv_value_POLLPRI
3199 g_pollhup=$glib_cv_value_POLLHUP
3200 g_pollerr=$glib_cv_value_POLLERR
3201 g_pollnval=$glib_cv_value_POLLNVAL
3203 # If a family is not found on the system, define that family to
3204 # a negative value, picking a different one for each undefined
3205 # family (-1 for AF_UNIX, -2 for the next one, -3 ...)
3206 # This is needed because glib-mkenums doesn't handle optional
3207 # values in enums, and thus we have to have all existing values
3208 # defined in the enum.
3209 if test "x$glib_cv_value_AF_UNIX" != "x"; then
3210 g_af_unix=$glib_cv_value_AF_UNIX
3214 g_af_inet=$glib_cv_value_AF_INET
3215 g_af_inet6=$glib_cv_value_AF_INET6
3217 g_msg_peek=$glib_cv_value_MSG_PEEK
3218 g_msg_oob=$glib_cv_value_MSG_OOB
3219 g_msg_dontroute=$glib_cv_value_MSG_DONTROUTE
3221 g_stack_grows=$glib_cv_stack_grows
3223 g_have_eilseq=$have_eilseq
3225 g_threads_impl_def=$g_threads_impl
3227 g_atomic_lock_free="$glib_cv_g_atomic_lock_free"
3228 g_memory_barrier_needed="$glib_memory_barrier_needed"
3229 g_gcc_atomic_ops="$glib_cv_gcc_has_builtin_atomic_operations"
3231 g_module_suffix="$glib_gmodule_suffix"
3232 g_dir_separator="$glib_dir_separator"
3233 g_searchpath_separator="$glib_searchpath_separator"
3235 g_pid_type="$glib_pid_type"
3236 g_pid_format="\"$glib_pid_format\""
3237 g_pollfd_format="\"$glib_pollfd_format\""
3241 glib_os="#define G_OS_UNIX
3242 #define G_PLATFORM_WIN32
3243 #define G_WITH_CYGWIN"
3246 glib_os="#define G_OS_WIN32
3247 #define G_PLATFORM_WIN32"
3250 glib_os="#define G_OS_UNIX"
3253 glib_static_compilation=""
3254 if test x$glib_win32_static_compilation = xyes; then
3255 glib_static_compilation="#define GLIB_STATIC_COMPILATION 1
3256 #define GOBJECT_STATIC_COMPILATION 1"
3260 # Redo enough to get guint32 and guint64 for the alignment checks below
3262 $ac_cv_sizeof_short)
3279 $ac_cv_sizeof_long_long)
3282 $ac_cv_sizeof___int64)
3287 AC_CHECK_TYPE([guint32],,,[typedef unsigned $gint32 guint32;])
3288 AC_CHECK_ALIGNOF([guint32], [AC_INCLUDES_DEFAULT
3289 typedef unsigned $gint32 guint32;])
3290 AC_CHECK_TYPE([guint64],,,[typedef unsigned $gint64 guint64;])
3291 AC_CHECK_ALIGNOF([guint64], [AC_INCLUDES_DEFAULT
3292 typedef unsigned $gint64 guint64;])
3293 AC_CHECK_TYPE([unsigned long])
3294 AC_CHECK_ALIGNOF([unsigned long])
3296 # Check for libdbus1 - Optional - is only used in the GDBus test cases
3298 # 1.2.14 required for dbus_message_set_serial
3299 PKG_CHECK_MODULES(DBUS1,
3301 [AC_DEFINE(HAVE_DBUS1, 1, [Define if dbus-1 is available]) have_dbus1=yes],
3303 AC_SUBST(DBUS1_CFLAGS)
3304 AC_SUBST(DBUS1_LIBS)
3305 AM_CONDITIONAL(HAVE_DBUS1, [test "x$have_dbus1" = "xyes"])
3307 AC_CHECK_PROGS([DBUS_DAEMON], [dbus-daemon])
3308 AM_CONDITIONAL([HAVE_DBUS_DAEMON], [test x$DBUS_DAEMON = xdbus-daemon ])
3310 # Check whether MSVC toolset is explicitly set
3311 AM_CONDITIONAL(MSVC_BASE_NO_TOOLSET_SET, [test x$MSVC_BASE_TOOLSET = x])
3312 AM_CONDITIONAL(MSVC_NO_TOOLSET_SET, [test x$MSVC_TOOLSET = x])
3315 dnl Check for -Bsymbolic-functions linker flag used to avoid
3316 dnl intra-library PLT jumps, if available.
3319 AC_ARG_ENABLE(Bsymbolic,
3320 [AS_HELP_STRING([--disable-Bsymbolic],
3321 [avoid linking with -Bsymbolic])],,
3322 [SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
3323 AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
3324 LDFLAGS=-Wl,-Bsymbolic-functions
3326 AC_TRY_LINK([], [return 0],
3328 enable_Bsymbolic=yes,
3330 enable_Bsymbolic=no)
3331 LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
3333 if test "x${enable_Bsymbolic}" = "xyes"; then
3334 GLIB_LINK_FLAGS=-Wl,-Bsymbolic-functions
3338 dnl Check for -z,nodelete linker flag: the type system assumes that
3339 dnl libgobject stays loaded for the lifetime of the process.
3340 dnl Since ld.bfd does not treat wrong -z options as fatal by default,
3341 dnl we also try to check for the --fatal-warnings linker flag if
3345 SAVED_CFLAGS="${CFLAGS}" SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
3346 AC_MSG_CHECKING([for --fatal-warnings linker flag])
3347 CFLAGS="${SAVED_CFLAGS} ${shared_flag:- -shared}"
3348 LDFLAGS=-Wl,--fatal-warnings
3350 AC_TRY_LINK([], [return 0],
3352 [ldflags_fatal=-Wl,--fatal-warnings],
3356 AC_MSG_CHECKING([for -z,nodelete linker flag])
3357 LDFLAGS="$ldflags_fatal -Wl,-z,nodelete"
3358 AC_TRY_LINK([], [return 0],
3360 enable_znodelete=yes,
3362 enable_znodelete=no)
3363 CFLAGS="${SAVED_CFLAGS}" LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"
3365 if test "x${enable_znodelete}" = "xyes"; then
3366 GLIB_LINK_FLAGS="$GLIB_LINK_FLAGS -Wl,-z,nodelete"
3369 AC_SUBST(GLIB_LINK_FLAGS)
3372 dnl Check for -fvisibility=hidden to determine if we can do GNU-style
3373 dnl visibility attributes for symbol export control
3375 GLIB_HIDDEN_VISIBILITY_CFLAGS=""
3378 dnl on mingw32 we do -fvisibility=hidden and __declspec(dllexport)
3379 AC_DEFINE([_GLIB_EXTERN], [__attribute__((visibility("default"))) __declspec(dllexport) extern],
3380 [defines how to decorate public symbols while building])
3381 CFLAGS="${CFLAGS} -fvisibility=hidden"
3384 dnl on other compilers, check if we can do -fvisibility=hidden
3385 SAVED_CFLAGS="${CFLAGS}"
3386 CFLAGS="-fvisibility=hidden"
3387 AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
3388 AC_TRY_COMPILE([], [return 0],
3390 enable_fvisibility_hidden=yes,
3392 enable_fvisibility_hidden=no)
3393 CFLAGS="${SAVED_CFLAGS}"
3395 AS_IF([test "${enable_fvisibility_hidden}" = "yes"], [
3396 AC_DEFINE([_GLIB_EXTERN], [__attribute__((visibility("default"))) extern],
3397 [defines how to decorate public symbols while building])
3398 GLIB_HIDDEN_VISIBILITY_CFLAGS="-fvisibility=hidden"
3402 AC_SUBST(GLIB_HIDDEN_VISIBILITY_CFLAGS)
3404 dnl Compiler flags; macro originates from systemd
3405 dnl See https://bugzilla.gnome.org/show_bug.cgi?id=608953
3406 AC_ARG_ENABLE(compile-warnings,
3407 [AS_HELP_STRING([--disable-compile-warnings],
3408 [Don't use builtin compiler warnings])],,
3409 enable_compile_warnings=yes)
3410 AS_IF([test "x$enable_compile_warnings" != xno], [
3411 CC_CHECK_FLAGS_APPEND([GLIB_WARN_CFLAGS], [CFLAGS], [\
3412 -Wall -Wstrict-prototypes -Wduplicated-branches -Wmisleading-indentation \
3413 -Werror=declaration-after-statement \
3414 -Werror=missing-prototypes -Werror=implicit-function-declaration \
3415 -Werror=pointer-arith -Werror=init-self -Werror=format-security \
3416 -Werror=format=2 -Werror=missing-include-dirs])
3418 AC_SUBST(GLIB_WARN_CFLAGS)
3421 # Define variables corresponding to the correct include paths to use for
3426 config_h_INCLUDES='-I$(top_builddir)'
3427 AC_SUBST(config_h_INCLUDES)
3431 # $(top_builddir)/glib: for glibconfig.h
3432 # $(top_srcdir)/glib: for glib.h
3433 # $(top_srcdir): for everything
3434 glib_INCLUDES='$(config_h_INCLUDES) -I$(top_builddir)/glib -I$(top_srcdir)/glib -I$(top_srcdir)'
3435 AC_SUBST(glib_INCLUDES)
3439 gobject_INCLUDES='$(glib_INCLUDES)'
3440 AC_SUBST(gobject_INCLUDES)
3444 # $(top_srcdir)/gmodule: for gmodule.h
3445 gmodule_INCLUDES='$(glib_INCLUDES) -I$(top_srcdir)/gmodule'
3446 AC_SUBST(gmodule_INCLUDES)
3450 gio_INCLUDES='$(gmodule_INCLUDES)'
3451 AC_SUBST(gio_INCLUDES)
3457 gmodule-export-2.0.pc
3458 gmodule-no-export-2.0.pc
3467 build/win32/Makefile
3468 build/win32/dirent/Makefile
3470 glib/libcharset/Makefile
3471 glib/gnulib/Makefile
3473 glib/update-pcre/Makefile
3476 gmodule/gmoduleconf.h
3478 gobject/glib-genmarshal
3479 gobject/glib-mkenums
3480 gobject/tests/Makefile
3483 gio/gdbus-2.0/codegen/Makefile
3484 gio/gdbus-2.0/codegen/config.py
3486 gio/xdgmime/Makefile
3487 gio/inotify/Makefile
3492 gio/tests/gdbus-object-manager-example/Makefile
3493 gio/tests/services/Makefile
3494 gio/tests/services/org.gtk.GDBus.Examples.ObjectManager.service
3495 gio/tests/modules/Makefile
3498 docs/reference/Makefile
3499 docs/reference/glib/Makefile
3500 docs/reference/glib/version.xml
3501 docs/reference/gobject/Makefile
3502 docs/reference/gobject/version.xml
3503 docs/reference/gio/Makefile
3504 docs/reference/gio/version.xml
3506 tests/gobject/Makefile
3507 tests/refcount/Makefile
3509 subprojects/Makefile
3512 # We need this command because the configure script will not preserve
3513 # the same attributes of the template files
3514 AC_CONFIG_COMMANDS([chmod-scripts],
3515 [chmod 0755 glib-gettextize
3516 chmod 0755 gobject/glib-genmarshal
3517 chmod 0755 gobject/glib-mkenums])
3519 # we want to invoke this macro solely so that the config.status script
3520 # and automake generated makefiles know about these generated files.
3521 # They are only needed to distcheck the package