build: Use subdir-objects with Autotools
[glib.git] / configure.ac
blobb34ec4dee1b9bef98fad7143d7081f941c656146
1 # Process this file with autoconf to produce a configure script.
2 AC_PREREQ([2.62])
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.
15 # Making releases:
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], [55])
34 m4_define([glib_micro_version], [0])
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.14 -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
71 # to make
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])
99 # libtool versioning
100 LT_RELEASE=glib_lt_release
101 LT_CURRENT=glib_lt_current
102 LT_REVISION=glib_lt_revision
103 LT_AGE=glib_lt_age
104 LT_CURRENT_MINUS_AGE=glib_lt_current_minus_age
105 AC_SUBST(LT_RELEASE)
106 AC_SUBST(LT_CURRENT)
107 AC_SUBST(LT_REVISION)
108 AC_SUBST(LT_AGE)
109 AC_SUBST(LT_CURRENT_MINUS_AGE)
111 dnl Checks for programs.
112 AC_PROG_CC
113 AC_PROG_CPP
114 AC_USE_SYSTEM_EXTENSIONS
116 AM_CONDITIONAL(HAVE_GCC, [test "$GCC" = "yes"])
118 AC_CANONICAL_HOST
122 AC_MSG_CHECKING([for Win32])
123 LIB_EXE_MACHINE_FLAG=X86
124 case "$host" in
125   *-*-mingw*)
126     glib_native_win32=yes
127     glib_pid_type='void *'
128     glib_pid_format='p'
129     glib_pollfd_format='%#x'
130     glib_cv_stack_grows=no
131     # Unfortunately the mingw implementations of C99-style snprintf and vsnprintf
132     # don't seem to be quite good enough, at least not in mingw-runtime-3.14.
133     # (Sorry, I don't know exactly what is the problem, but it is related to
134     # floating point formatting and decimal point vs. comma.)
135     # The simple tests in AC_FUNC_VSNPRINTF_C99 and AC_FUNC_SNPRINTF_C99 aren't
136     # rigorous enough to notice, though.
137     # So preset the autoconf cache variables.
138     ac_cv_func_vsnprintf_c99=no
139     ac_cv_func_snprintf_c99=no
140     case "$host" in
141     x86_64-*-*)
142       LIB_EXE_MACHINE_FLAG=X64
143       glib_pollfd_format='%#I64x'
144       ;;
145     esac
147     AC_DEFINE([_WIN32_WINNT], [0x0601], [Target the Windows 7 API])
148     ;;
149   *)
150     glib_native_win32=no
151     glib_pid_type=int
152     glib_pid_format='i'
153     glib_pollfd_format='%d'
154     ;;
155 esac
156 case $host in
157   *-*-linux*)
158     glib_os_linux=yes
159     ;;
160 esac
162 AC_MSG_RESULT([$glib_native_win32])
164 AC_MSG_CHECKING([for the Android])
165 case $host in
166   *android*)
167     glib_native_android="yes"
168     ;;
169   *)
170     glib_native_android="no"
171     ;;
172 esac
173 AC_MSG_RESULT([$glib_native_android])
175 AC_SUBST(LIB_EXE_MACHINE_FLAG)
177 glib_have_carbon=no
178 AC_MSG_CHECKING([for Mac OS X Carbon support])
179 AC_TRY_CPP([
180 #include <Carbon/Carbon.h>
181 #include <CoreServices/CoreServices.h>
182 ], glib_have_carbon=yes)
184 AC_MSG_RESULT([$glib_have_carbon])
186 glib_have_cocoa=no
187 AC_MSG_CHECKING([for Mac OS X Cocoa support])
188 AC_TRY_CPP([
189 #include <Cocoa/Cocoa.h>
190 #ifdef GNUSTEP_BASE_VERSION
191 #error "Detected GNUstep, not Cocoa"
192 #endif
193 ], glib_have_cocoa=yes)
195 AC_MSG_RESULT([$glib_have_cocoa])
197 AM_CONDITIONAL(OS_WIN32, [test "$glib_native_win32" = "yes"])
198 AM_CONDITIONAL(OS_WIN32_X64, [test "$LIB_EXE_MACHINE_FLAG" = "X64"])
199 AM_CONDITIONAL(OS_UNIX, [test "$glib_native_win32" != "yes"])
200 AM_CONDITIONAL(OS_LINUX, [test "$glib_os_linux" = "yes"])
201 AM_CONDITIONAL(OS_CARBON, [test "$glib_have_carbon" = "yes"])
202 AM_CONDITIONAL(OS_COCOA, [test "$glib_have_cocoa" = "yes"])
204 AS_IF([test "$glib_native_win32" = "yes"], [
205   AC_CHECK_TOOL(WINDRES, windres, no)
206   if test "$WINDRES" = no; then
207     AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.])
208   fi
209   AC_CHECK_TOOL(NM, nm, no)
210   if test "$NM" = no; then
211     AC_MSG_ERROR([*** Could not find an implementation of nm in your PATH.])
212   fi
213   AC_CHECK_TOOL(RANLIB, ranlib, :)
214   AC_CHECK_TOOL(DLLTOOL, dlltool, :)
215   AC_CHECK_PROG(ms_librarian, [lib.exe], [yes], [no])
217 AM_CONDITIONAL(MS_LIB_AVAILABLE, [test x$ms_librarian = xyes])
219 AS_IF([test "x$glib_have_carbon" = "xyes"], [
220   AC_DEFINE(HAVE_CARBON, 1, [define to 1 if Carbon is available])
221   CARBON_LIBS="-Wl,-framework,Carbon"
222   LDFLAGS="$LDFLAGS $CARBON_LIBS"
223 ], [CARBON_LIBS=""])
225 AC_SUBST([CARBON_LIBS])
226 ac_cv_have_os_x_9_or_later="no"
227 AS_IF([test "x$glib_have_cocoa" = "xyes"], [
228   AC_DEFINE(HAVE_COCOA, 1, [define to 1 if Cocoa is available])
229   COCOA_LIBS="-Wl,-framework,Foundation"
230   LDFLAGS="$LDFLAGS $COCOA_LIBS"
231   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
232 #include <AvailabilityMacros.h>
233 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
234 #error Compiling for minimum OS X version before 10.9
235 #endif
236   ]])],[ac_cv_have_os_x_9_or_later="yes"])
237 ], [COCOA_LIBS=""])
238 AM_CONDITIONAL([MAC_OS_X_9], [test "x$ac_cv_have_os_x_9_or_later" = xyes])
239 AC_SUBST([COCOA_LIBS])
241 dnl declare --enable-* args and collect ac_help strings
242 AC_ARG_ENABLE(debug,
243               AS_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
244                              [turn on debugging @<:@default=glib_debug_default@:>@]),,
245               enable_debug=glib_debug_default)
247 AC_ARG_ENABLE(gc_friendly,
248               [AS_HELP_STRING([--enable-gc-friendly],
249                               [turn on garbage collector friendliness [default=no]])],,
250               [enable_gc_friendly=no])
251 AC_ARG_ENABLE(mem_pools,
252               [AS_HELP_STRING([--disable-mem-pools],
253                               [disable all glib memory pools])],,
254               [disable_mem_pools=no])
255 AC_ARG_ENABLE(rebuilds,
256               [AS_HELP_STRING([--disable-rebuilds],
257                               [disable all source autogeneration rules])],,
258               [enable_rebuilds=yes])
260 GLIB_TESTS
262 AC_MSG_CHECKING([whether to enable garbage collector friendliness])
263 AS_IF([test "x$enable_gc_friendly" = "xyes"], [
264   AC_DEFINE(ENABLE_GC_FRIENDLY_DEFAULT, 1, [Whether to enable GC friendliness by default])
265   AC_MSG_RESULT([yes])
266 ], [ AC_MSG_RESULT([no]) ])
268 AC_MSG_CHECKING([whether to disable memory pools])
269 AS_IF([test "x$disable_mem_pools" = "xno"], [
270   AC_MSG_RESULT([no])
271 ], [
272   AC_DEFINE(DISABLE_MEM_POOLS, [1], [Whether to disable memory pools])
273   AC_MSG_RESULT([yes])
276 dnl location to install runtime libraries, e.g. ../../lib to install
277 dnl to /lib if libdir is /usr/lib
278 AC_ARG_WITH(runtime-libdir,
279            [AS_HELP_STRING([--with-runtime-libdir=RELPATH],
280                            [install runtime libraries relative to libdir])],
281            [],
282            [with_runtime_libdir=""])
283 GLIB_RUNTIME_LIBDIR="$with_runtime_libdir"
284 AC_SUBST(GLIB_RUNTIME_LIBDIR)
285 AM_CONDITIONAL(HAVE_GLIB_RUNTIME_LIBDIR, [test "x$with_runtime_libdir" != "x"])
287 dnl Check for a working C++ compiler, but do not bail out, if none is found.
288 AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], [gcc])
289 AC_LANG_SAVE
290 AC_LANG_CPLUSPLUS
291 AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)
292 AM_CONDITIONAL(HAVE_CXX, [test "$CXX" != ""])
293 AC_LANG_RESTORE
295 AM_PROG_CC_C_O
296 AC_PROG_INSTALL
298 AC_SYS_LARGEFILE
300 PKG_PROG_PKG_CONFIG(0.16)
302 if test "x$enable_debug" = "xyes"; then
303   if test "x$cflags_set" != "x" ; then
304       case " $CFLAGS " in
305       *[[\ \    ]]-g[[\ \       ]]*) ;;
306       *) CFLAGS="$CFLAGS -g" ;;
307       esac
308   fi
309   GLIB_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
310 else
311   GLIB_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS"
313   if test "x$enable_debug" = "xno"; then
314     GLIB_DEBUG_FLAGS="$GLIB_DEBUG_FLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
315   fi
318 # Ensure MSVC-compatible struct packing convention is used when
319 # compiling for Win32 with gcc.
320 # What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while
321 # gcc2 uses "-fnative-struct".
322 if test x"$glib_native_win32" = xyes; then
323   if test x"$GCC" = xyes; then
324     msnative_struct=''
325     AC_MSG_CHECKING([how to get MSVC-compatible struct packing])
326     if test -z "$ac_cv_prog_CC"; then
327       our_gcc="$CC"
328     else
329       our_gcc="$ac_cv_prog_CC"
330     fi
331     case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in
332       2.)
333         if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then
334           msnative_struct='-fnative-struct'
335         fi
336         ;;
337       *)
338         if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then
339           msnative_struct='-mms-bitfields'
340         fi
341         ;;
342     esac
343     if test x"$msnative_struct" = x ; then
344       AC_MSG_RESULT([no way])
345       AC_MSG_WARN([produced libraries might be incompatible with MSVC-compiled code])
346     else
347       CFLAGS="$CFLAGS $msnative_struct"
348       AC_MSG_RESULT([${msnative_struct}])
349     fi
350   fi
352 GLIB_EXTRA_CFLAGS="${msnative_struct}"
353 AC_SUBST(GLIB_EXTRA_CFLAGS)
355 AC_EXEEXT
357 # define a MAINT-like variable REBUILD which is set if Perl
358 # and awk are found, so autogenerated sources can be rebuilt
359 AC_PROG_AWK
360 AC_CHECK_PROGS(PERL, [perl5 perl])
361 # We would like indent, but don't require it.
362 AC_CHECK_PROG(INDENT, indent, indent)
363 REBUILD=\#
364 if test "x$enable_rebuilds" = "xyes" && \
365      test -n "$PERL" && \
366      $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \
367      test -n "$AWK" ; then
368   REBUILD=
370 AC_SUBST(REBUILD)
372 # option to specify python interpreter to use; this just sets $PYTHON, so that
373 # we will fallback to reading $PYTHON if --with-python is not given, and
374 # python.m4 will get the expected input
375 AC_ARG_WITH(python,
376             AS_HELP_STRING([--with-python=PATH],
377                            [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"]),
378             [PYTHON="$withval"], [])
379 if test x"$PYTHON" = xyes; then
380   AC_MSG_ERROR([--with-python option requires a path or program argument])
382 AM_PATH_PYTHON(2.7,,PYTHON="python2.7")
385 dnl ***********************
386 dnl *** Tests for iconv ***
387 dnl ***********************
389 dnl We do this before the gettext checks, to avoid distortion
391 dnl On Windows we use a native implementation
393 AS_IF([ test x"$glib_native_win32" = xyes], [
394   with_libiconv=native
395 ], [
396   AC_ARG_WITH(libiconv,
397               [AS_HELP_STRING([--with-libiconv=@<:@no/gnu/native@:>@],
398                               [use the libiconv library])],,
399               [with_libiconv=maybe])
401   found_iconv=no
402   case $with_libiconv in
403     maybe)
404       # Check in the C library first
405       AC_CHECK_FUNC(iconv_open, [with_libiconv=no; found_iconv=yes])
406       # Check if we have GNU libiconv
407       if test $found_iconv = "no"; then
408         AC_CHECK_LIB(iconv, libiconv_open, [with_libiconv=gnu; found_iconv=yes])
409       fi
410       # Check if we have a iconv in -liconv, possibly from vendor
411       if test $found_iconv = "no"; then
412         AC_CHECK_LIB(iconv, iconv_open, [with_libiconv=native; found_iconv=yes])
413       fi
414       ;;
415     no)
416       AC_CHECK_FUNC(iconv_open, [with_libiconv=no; found_iconv=yes])
417       ;;
418     gnu|yes)
419       AC_CHECK_LIB(iconv, libiconv_open, [with_libiconv=gnu; found_iconv=yes])
420       ;;
421     native)
422       AC_CHECK_LIB(iconv, iconv_open, [with_libiconv=native; found_iconv=yes])
423       ;;
424   esac
426   if test "x$found_iconv" = "xno" ; then
427      AC_MSG_ERROR([*** No iconv() implementation found in C library or libiconv])
428   fi
432 dnl zlib support
434 PKG_CHECK_MODULES([ZLIB], [zlib], [found_zlib=yes], [found_zlib=no])
435 AS_IF([test "x$found_zlib" = "xno"], [
436   AC_CHECK_LIB(z, inflate, [AC_CHECK_HEADER(zlib.h, found_zlib=yes)])
437   if test "x$found_zlib" = "xno" ; then
438     AC_MSG_ERROR([*** Working zlib library and headers not found ***])
439   fi
440   ZLIB_LIBS='-lz'
441   AC_SUBST(ZLIB_LIBS)
444 PKG_CHECK_MODULES(LIBFFI, [libffi >= 3.0.0])
445 AC_SUBST(LIBFFI_CFLAGS)
446 AC_SUBST(LIBFFI_LIBS)
449 dnl gettext support
452 ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`"
453 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS'])
454 GLIB_GNU_GETTEXT
456 if test "$gt_cv_have_gettext" != "yes" ; then
457   AC_MSG_ERROR([
458 *** You must have either have gettext support in your C library, or use the
459 *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html)
463 LIBS="$INTLLIBS $LIBS"
465 GETTEXT_PACKAGE=glib20
466 AC_SUBST(GETTEXT_PACKAGE)
467 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], 
468   [Define the gettext package to be used])
470 GLIB_DEFINE_LOCALEDIR(GLIB_LOCALE_DIR)
473 dnl Now we are done with gettext checks, figure out ICONV_LIBS
476 AS_IF([test x"$glib_native_win32" != xyes], [
477   if test x$with_libiconv != xno ; then
478     case " $INTLLIBS " in
479     *[[\ \      ]]-liconv[[\ \  ]]*) ;;
480     *) ICONV_LIBS="-liconv" ;;
481     esac
482   fi
484 AC_SUBST(ICONV_LIBS)
486 case $with_libiconv in
487   gnu)
488     AC_DEFINE(USE_LIBICONV_GNU, 1, [Using GNU libiconv])
489     ;;
490   native)
491     AC_DEFINE(USE_LIBICONV_NATIVE, 1, [Using a native implementation of iconv in a separate library])
492     ;;
493 esac
495 dnl Initialize libtool
496 LT_PREREQ([2.2])
497 LT_INIT([disable-static win32-dll])
498 dnl when using libtool 2.x create libtool early, because it's used in configure
499 m4_ifdef([LT_OUTPUT], [LT_OUTPUT])
502 AS_IF([test "$glib_native_win32" = "yes"], [
503   if test x$enable_static = xyes -a x$enable_shared = xyes; then
504     AC_MSG_ERROR([Can not build both shared and static at the same time on Windows.])
505   fi
506   if test x$enable_static = xyes; then
507     glib_win32_static_compilation=yes
508     GLIB_WIN32_STATIC_COMPILATION_DEFINE="#define GLIB_STATIC_COMPILATION 1
509 #define GOBJECT_STATIC_COMPILATION 1"
510     AC_SUBST(GLIB_WIN32_STATIC_COMPILATION_DEFINE)
511   fi
513 AM_CONDITIONAL(OS_WIN32_AND_DLL_COMPILATION, [test x$glib_native_win32 = xyes -a x$glib_win32_static_compilation != xyes])
515 # Checks for library functions.
516 AC_FUNC_ALLOCA
517 AC_CHECK_FUNCS(mmap posix_memalign memalign valloc fsync pipe2 issetugid)
518 AC_CHECK_FUNCS(timegm gmtime_r)
519 AC_FUNC_STRERROR_R()
521 AC_CACHE_CHECK([for __libc_enable_secure], glib_cv_have_libc_enable_secure,
522   [AC_TRY_LINK([#include <unistd.h>
523     extern int __libc_enable_secure;],
524     [return __libc_enable_secure;],
525    glib_cv_have_libc_enable_secure=yes,
526    glib_cv_have_libc_enable_secure=no)])
527 AS_IF([test x$glib_cv_have_libc_enable_secure = xyes], [
528    AC_DEFINE(HAVE_LIBC_ENABLE_SECURE, 1,
529      [Define if you have the __libc_enable_secure variable (GNU libc, eglibc)])
532 AC_CHECK_SIZEOF(char)
533 AC_CHECK_SIZEOF(short)
534 AC_CHECK_SIZEOF(long)
535 AC_CHECK_SIZEOF(int)
536 AC_CHECK_SIZEOF(void *)
537 AC_CHECK_SIZEOF(long long)
538 AC_CHECK_SIZEOF(__int64)
540 AC_CACHE_CHECK([for sig_atomic_t], ac_cv_type_sig_atomic_t,
541   [AC_TRY_LINK([#include <signal.h>
542      #include <sys/types.h>
543      sig_atomic_t val = 42;],
544     [return val == 42 ? 0 : 1],
545    ac_cv_type_sig_atomic_t=yes,
546    ac_cv_type_sig_atomic_t=no)])
547 if test x$ac_cv_type_sig_atomic_t = xyes; then
548    AC_DEFINE(HAVE_SIG_ATOMIC_T, 1,
549      [Define if you have the 'sig_atomic_t' type.])
552 if test x$ac_cv_sizeof_long = x8 || test x$ac_cv_sizeof_long_long = x8 || test x$ac_cv_sizeof___int64 = x8 ; then
553   :
554 else
555   AC_MSG_ERROR([
556 *** GLib requires a 64 bit type. You might want to consider
557 *** using the GNU C compiler.
561 AS_IF([test x$glib_native_win32 != xyes && test x$ac_cv_sizeof_long_long = x8], [
562         # long long is a 64 bit integer.
563         AC_MSG_CHECKING(for format to printf and scanf a guint64)
564         AC_CACHE_VAL(glib_cv_long_long_format,[
565                 for format in ll q I64; do
566                   AC_TRY_RUN([#include <stdio.h>  
567                         int main()
568                         {
569                           long long b, a = -0x3AFAFAFAFAFAFAFALL;
570                           char buffer[1000];
571                           sprintf (buffer, "%${format}u", a);
572                           sscanf (buffer, "%${format}u", &b);
573                           exit (b!=a);
574                         }
575                         ],
576                         [glib_cv_long_long_format=${format}
577                         break],
578                         [],[:])
579                 done])
580         AS_IF([ test -n "$glib_cv_long_long_format"], [
581           AC_MSG_RESULT(%${glib_cv_long_long_format}u)
582           AC_DEFINE(HAVE_LONG_LONG_FORMAT,1,[define if system printf can print long long])
583           if test x"$glib_cv_long_long_format" = xI64; then
584             AC_DEFINE(HAVE_INT64_AND_I64,1,[define to support printing 64-bit integers with format I64])
585           fi
586         ], [AC_MSG_RESULT(none)])
587 ],[ test x$ac_cv_sizeof___int64 = x8], [
588         # __int64 is a 64 bit integer.
589         AC_MSG_CHECKING(for format to printf and scanf a guint64)
590         # We know this is MSVCRT.DLL, and what the formats are
591         glib_cv_long_long_format=I64
592         AC_MSG_RESULT(%${glib_cv_long_long_format}u)
593         AC_DEFINE(HAVE_LONG_LONG_FORMAT,1,[define if system printf can print long long])
594         AC_DEFINE(HAVE_INT64_AND_I64,1,[define to support printing 64-bit integers with format I64])
597 AC_C_CONST
600 dnl check in which direction the stack grows
602 AC_CACHE_CHECK([for growing stack pointer],glib_cv_stack_grows,[
603         AC_TRY_RUN([
604         volatile int *a = 0, *b = 0;
605         void f (int i) { volatile int x = 5; if (i == 0) b = &x; else f (i - 1); }
606         int main () { volatile int y = 7; a = &y; f (100); return b > a ? 0 : 1; }
607         ],
608         glib_cv_stack_grows=yes
609         ,
610         glib_cv_stack_grows=no
611         ,)
614 # check for flavours of varargs macros
615 AC_MSG_CHECKING(for ISO C99 varargs macros in C)
616 AC_TRY_COMPILE([],[
617 int a(int p1, int p2, int p3);
618 #define call_a(...) a(1,__VA_ARGS__)
619 call_a(2,3);
620 ],g_have_iso_c_varargs=yes,g_have_iso_c_varargs=no)
621 AC_MSG_RESULT($g_have_iso_c_varargs)
623 AC_MSG_CHECKING(for ISO C99 varargs macros in C++)
624 AS_IF([test "$CXX" = ""], [
625 dnl No C++ compiler
626   g_have_iso_cxx_varargs=no
627 else
628   AC_LANG_CPLUSPLUS
629   AC_TRY_COMPILE([],[
630 int a(int p1, int p2, int p3);
631 #define call_a(...) a(1,__VA_ARGS__)
632 call_a(2,3);
633 ],g_have_iso_cxx_varargs=yes,g_have_iso_cxx_varargs=no)
634   AC_LANG_C
636 AC_MSG_RESULT($g_have_iso_cxx_varargs)
638 AC_MSG_CHECKING(for GNUC varargs macros)
639 AC_TRY_COMPILE([],[
640 int a(int p1, int p2, int p3);
641 #define call_a(params...) a(1,params)
642 call_a(2,3);
643 ],g_have_gnuc_varargs=yes,g_have_gnuc_varargs=no)
644 AC_MSG_RESULT($g_have_gnuc_varargs)
646 # check for GNUC visibility support
647 AC_MSG_CHECKING(for GNUC visibility attribute)
648 GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
649 void
650 __attribute__ ((visibility ("hidden")))
651      f_hidden (void)
654 void
655 __attribute__ ((visibility ("internal")))
656      f_internal (void)
659 void
660 __attribute__ ((visibility ("protected")))
661      f_protected (void)
664 void
665 __attribute__ ((visibility ("default")))
666      f_default (void)
669 int main (void)
671         f_hidden();
672         f_internal();
673         f_protected();
674         f_default();
675         return 0;
677 ]])],g_have_gnuc_visibility=yes,g_have_gnuc_visibility=no)
678 AC_MSG_RESULT($g_have_gnuc_visibility)
679 AM_CONDITIONAL(HAVE_GNUC_VISIBILITY, [test x$g_have_gnuc_visibility = xyes])
681 AC_MSG_CHECKING([whether using Sun Studio C compiler])
682 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if defined(__SUNPRO_C) || (__SUNPRO_C >= 0x550)
683 #else
684 # include "error: this is not Sun Studio."
685 #endif
686 ]], [[]])], [ g_have_sunstudio_visibility=yes ], [ g_have_sunstudio_visibility=no ])
687 AC_MSG_RESULT($g_have_sunstudio_visibility)
688 AM_CONDITIONAL(HAVE_SUNSTUDIO_VISIBILITY, [test x$g_have_sunstudio_visibility = xyes])
690 # check for bytesex stuff
691 AC_C_BIGENDIAN
692 if test x$ac_cv_c_bigendian = xuniversal ; then
693   AC_MSG_ERROR([Universal builds not supported: see https://bugs.gnome.org/742548])
697 # check for header files
698 AC_CHECK_HEADERS([sys/param.h sys/resource.h mach/mach_time.h])
699 AC_CHECK_HEADERS([sys/select.h stdint.h inttypes.h sched.h malloc.h])
700 AC_CHECK_HEADERS([sys/vfs.h sys/vmount.h sys/statfs.h sys/statvfs.h sys/filio.h])
701 AC_CHECK_HEADERS([mntent.h sys/mnttab.h sys/vfstab.h sys/mntctl.h fstab.h])
702 AC_CHECK_HEADERS([linux/magic.h])
703 AC_CHECK_HEADERS([termios.h])
705 # Some versions of MSC lack these
706 AC_CHECK_HEADERS([dirent.h sys/time.h])
708 # We don't care about this, but we need to keep including it in
709 # glibconfig.h for backward compatibility
710 AC_CHECK_HEADERS([values.h])
712 AC_CHECK_HEADERS([sys/mount.h sys/sysctl.h], [], [],
713 [#if HAVE_SYS_PARAM_H
714  #include <sys/param.h>
715  #endif
717 AC_CHECK_FUNCS(sysctlbyname)
719 AC_HEADER_MAJOR
720 AC_CHECK_HEADERS([xlocale.h])
722 # check for structure fields
723 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])
724 AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct statfs.f_fstypename, struct statfs.f_bavail],,, [#include <sys/types.h>
725 #include <sys/stat.h>
726 #ifdef G_OS_UNIX
727 #include <unistd.h>
728 #endif
729 #ifdef HAVE_SYS_STATFS_H
730 #include <sys/statfs.h>
731 #endif
732 #ifdef HAVE_SYS_PARAM_H
733 #include <sys/param.h>
734 #endif
735 #ifdef HAVE_SYS_MOUNT_H
736 #include <sys/mount.h>
737 #endif])
738 # struct statvfs.f_basetype is available on Solaris but not for Linux. 
739 AC_CHECK_MEMBERS([struct statvfs.f_basetype],,, [#include <sys/statvfs.h>])
740 AC_CHECK_MEMBERS([struct statvfs.f_fstypename],,, [#include <sys/statvfs.h>])
741 AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.__tm_gmtoff],,,[#include <time.h>])
743 AC_STRUCT_DIRENT_D_TYPE
745 # Checks for libcharset
746 AM_LANGINFO_CODESET
747 gl_GLIBC21
749 # check additional type sizes
750 AC_CHECK_SIZEOF(size_t)
752 dnl Try to figure out whether gsize should be long or int
753 AC_MSG_CHECKING([for the appropriate definition for size_t])
755 case $ac_cv_sizeof_size_t in
756   $ac_cv_sizeof_short) 
757       glib_size_type=short
758       ;;
759   $ac_cv_sizeof_int) 
760       glib_size_type=int
761       ;;
762   $ac_cv_sizeof_long) 
763       glib_size_type=long
764       ;;
765   $ac_cv_sizeof_long_long)
766       glib_size_type='long long'
767       ;;
768   $ac_cv_sizeof__int64)
769       glib_size_type='__int64'
770       ;;
771   *)  AC_MSG_ERROR([No type matching size_t in size])
772       ;;
773 esac
775 dnl If int/long are the same size, we see which one produces
776 dnl warnings when used in the location as size_t. (This matters
777 dnl on AIX with xlc)
779 AS_IF([test $ac_cv_sizeof_size_t = $ac_cv_sizeof_int &&
780        test $ac_cv_sizeof_size_t = $ac_cv_sizeof_long], [
781   GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
782 #if defined(_AIX) && !defined(__GNUC__)
783 #pragma options langlvl=stdc89
784 #endif
785 #include <stddef.h> 
786 int main ()
788   size_t s = 1;
789   unsigned int *size_int = &s;
790   return (int)*size_int;
792     ]])],glib_size_type=int,
793       [GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
794 #if defined(_AIX) && !defined(__GNUC__)
795 #pragma options langlvl=stdc89
796 #endif
797 #include <stddef.h> 
798 int main ()
800    size_t s = 1;
801    unsigned long *size_long = &s;
802    return (int)*size_long;
804         ]])],glib_size_type=long)])
807 AC_MSG_RESULT(unsigned $glib_size_type)
809 AC_CHECK_SIZEOF(ssize_t)
811 dnl Try to figure out whether gssize should be long or int
812 AC_MSG_CHECKING([for the appropriate definition for ssize_t])
814 case $ac_cv_sizeof_ssize_t in
815   $ac_cv_sizeof_short) 
816       glib_ssize_type=short
817       ;;
818   $ac_cv_sizeof_int) 
819       glib_ssize_type=int
820       ;;
821   $ac_cv_sizeof_long) 
822       glib_ssize_type=long
823       ;;
824   $ac_cv_sizeof_long_long)
825       glib_ssize_type='long long'
826       ;;
827   $ac_cv_sizeof__int64)
828       glib_ssize_type='__int64'
829       ;;
830   *)  AC_MSG_ERROR([No type matching ssize_t in size])
831       ;;
832 esac
834 dnl If int/long are the same size, we see which one produces
835 dnl warnings when used in the location as ssize_t. (This matters
836 dnl on Android where ssize_t is long and size_t is unsigned int)
838 AS_IF([test $ac_cv_sizeof_ssize_t = $ac_cv_sizeof_int &&
839        test $ac_cv_sizeof_ssize_t = $ac_cv_sizeof_long], [
840   GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
841 #if defined(_AIX) && !defined(__GNUC__)
842 #pragma options langlvl=stdc89
843 #endif
844 #include <stddef.h>
845 #ifdef HAVE_INTTYPES_H
846 # include <inttypes.h>
847 #endif
848 #ifdef HAVE_STDINT_H
849 # include <stdint.h>
850 #endif
851 #include <sys/types.h>
852 int main ()
854   ssize_t s = 1;
855   int *size_int = &s;
856   return (int)*size_int;
858     ]])],glib_ssize_type=int,
859       [GLIB_CHECK_COMPILE_WARNINGS([AC_LANG_SOURCE([[
860 #if defined(_AIX) && !defined(__GNUC__)
861 #pragma options langlvl=stdc89
862 #endif
863 #include <stddef.h> 
864 #ifdef HAVE_INTTYPES_H
865 # include <inttypes.h>
866 #endif
867 #ifdef HAVE_STDINT_H
868 # include <stdint.h>
869 #endif
870 #include <sys/types.h>
871 int main ()
873    ssize_t s = 1;
874    long *size_long = &s;
875    return (int)*size_long;
877         ]])],glib_ssize_type=long)])
880 AC_MSG_RESULT($glib_ssize_type)
882 # Check for some functions
883 AC_CHECK_FUNCS(lstat strsignal vsnprintf stpcpy strcasecmp strncasecmp poll vasprintf setenv unsetenv getc_unlocked readlink symlink fdwalk mkostemp)
884 AC_CHECK_FUNCS(lchmod lchown fchmod fchown utimes getresuid)
885 AC_CHECK_FUNCS(getmntent_r setmntent endmntent hasmntopt getfsstat getvfsstat fallocate)
886 case $host_os in aix*) ac_cv_func_splice=no ;; esac # AIX splice() is something else
887 AC_CHECK_FUNCS(splice)
888 AC_CHECK_FUNCS(prlimit)
890 # To avoid finding a compatibility unusable statfs, which typically
891 # successfully compiles, but warns to use the newer statvfs interface:
892 AS_IF([test $ac_cv_header_sys_statvfs_h = yes], [AC_CHECK_FUNCS([statvfs])])
893 AS_IF([test $ac_cv_header_sys_statfs_h  = yes -o $ac_cv_header_sys_mount_h = yes], [AC_CHECK_FUNCS([statfs])])
895 AC_MSG_CHECKING([whether to use statfs or statvfs])
896 # Some systems have both statfs and statvfs, pick the most "native" for these
897 AS_IF([test x$ac_cv_func_statfs = xyes && test x$ac_cv_func_statvfs = xyes],
898    [
899    # on solaris and irix, statfs doesn't even have the f_bavail field
900    AS_IF([test x$ac_cv_member_struct_statfs_f_bavail = xno],
901       [ac_cv_func_statfs=no],
902    # else, at least on linux, statfs is the actual syscall
903       [ac_cv_func_statvfs=no])
904    ])
906 AS_IF([test x$ac_cv_func_statfs = xyes],
907       [
908          AC_DEFINE([USE_STATFS], [1], [Define to use statfs()])
909          AC_MSG_RESULT([statfs])
910       ],
911       [test x$ac_cv_func_statvfs = xyes],
912       [
913          AC_DEFINE([USE_STATVFS], [1], [Define to use statvfs()])
914          AC_MSG_RESULT([statvfs])
915       ],
916       [  AC_MSG_RESULT([neither])])
918 AC_CHECK_HEADERS(crt_externs.h)
919 AC_CHECK_FUNCS(_NSGetEnviron)
921 AC_CHECK_FUNCS(newlocale uselocale strtod_l strtoll_l strtoull_l)
923 # Internet address families
924 if test $glib_native_win32 = yes; then
925   glib_inet_includes=["
926 #include <winsock2.h>
927   "]
928 else
929   glib_inet_includes=["
930 #include <sys/types.h>
931 #include <sys/socket.h>
932   "]
935 glib_failed=false
936 GLIB_CHECK_VALUE(AF_INET, $glib_inet_includes, glib_failed=true)
937 GLIB_CHECK_VALUE(AF_INET6, $glib_inet_includes, glib_failed=true)
938 # winsock defines this even though it doesn't support it
939 GLIB_CHECK_VALUE(AF_UNIX, $glib_inet_includes, glib_failed=true)
940 if $glib_failed ; then
941   AC_MSG_ERROR([Could not determine values for AF_INET* constants])
944 glib_failed=false
945 GLIB_CHECK_VALUE(MSG_PEEK, $glib_inet_includes, glib_failed=true)
946 GLIB_CHECK_VALUE(MSG_OOB, $glib_inet_includes, glib_failed=true)
947 GLIB_CHECK_VALUE(MSG_DONTROUTE, $glib_inet_includes, glib_failed=true)
948 if $glib_failed ; then
949   AC_MSG_ERROR([Could not determine values for MSG_* constants])
952 AC_CHECK_FUNCS(endservent if_nametoindex if_indextoname sendmmsg recvmmsg)
954 AC_MSG_CHECKING([for SIOCGIFADDR])
955 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
956     [[
957         #include <sys/ioctl.h>
958         #include <net/if.h>
959     ]],
960     [[
961         struct ifreq ifr;
962         ioctl(0, SIOCGIFADDR, &ifr);
963     ]])], [
964         AC_MSG_RESULT(yes)
965         AC_DEFINE(HAVE_SIOCGIFADDR, 1, [SIOCGIFADDR is available])
966     ], [
967         AC_MSG_RESULT(no)
970 AS_IF([test $glib_native_win32 = yes], [
971   # <wspiapi.h> in the Windows SDK and in mingw-w64 has wrappers for
972   # inline workarounds for getaddrinfo, getnameinfo and freeaddrinfo if
973   # they aren't present at run-time (on Windows 2000).
974   AC_CHECK_HEADER([wspiapi.h], [WSPIAPI_INCLUDE="#include <wspiapi.h>"])
975   AC_SUBST(WSPIAPI_INCLUDE)
976 ], [
977   # Android does not have C_IN in public headers, we define it wherever necessary
978   AS_IF([test $glib_native_android != yes], [
979     AC_MSG_CHECKING([if arpa/nameser_compat.h is needed])
980     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
981                                         #include <arpa/nameser.h>],
982                                        [int qclass = C_IN;])],
983                       [AC_MSG_RESULT([no])],
984                       [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
985                                                            #include <arpa/nameser.h>
986                                                            #include <arpa/nameser_compat.h>],
987                                                           [int qclass = C_IN;])],
988                                          [AC_MSG_RESULT([yes])
989                                           NAMESER_COMPAT_INCLUDE="#include <arpa/nameser_compat.h>"],
990                                          [AC_MSG_ERROR([could not compile test program either way])])])])
991   AC_SUBST(NAMESER_COMPAT_INCLUDE)
993   # We can't just use AC_CHECK_FUNC/AC_CHECK_LIB here. Bug 586150
994   NETWORK_LIBS=""
995   AC_MSG_CHECKING([for res_query])
996   AC_TRY_LINK([#include <sys/types.h>
997                #include <netinet/in.h>
998                #include <arpa/nameser.h>
999                #include <resolv.h>
1000               ],[
1001                res_query("test", 0, 0, (void *)0, 0);
1002               ],[AC_MSG_RESULT([yes])],
1003               [save_libs="$LIBS"
1004                LIBS="-lresolv $LIBS"
1005                AC_TRY_LINK([#include <sys/types.h>
1006                             #include <netinet/in.h>
1007                             #include <arpa/nameser.h>
1008                             #include <resolv.h>
1009                            ],[
1010                             res_query("test", 0, 0, (void *)0, 0);
1011                            ],[AC_MSG_RESULT([in -lresolv])
1012                               NETWORK_LIBS="-lresolv $NETWORK_LIBS"],
1013                            [LIBS="-lbind $save_libs"
1014                             AC_TRY_LINK([#include <resolv.h>],
1015                                         [res_query("test", 0, 0, (void *)0, 0);],
1016                                         [AC_MSG_RESULT([in -lbind])
1017                                          NETWORK_LIBS="-lbind $NETWORK_LIBS"],
1018                                         [AC_MSG_ERROR(not found)])])
1019                LIBS="$save_libs"])
1020   AC_CHECK_FUNC(socket, :, AC_CHECK_LIB(socket, socket,
1021                                         [NETWORK_LIBS="-lsocket $NETWORK_LIBS"],
1022                                         [AC_MSG_ERROR(Could not find socket())]))
1023   save_libs="$LIBS"
1024   LIBS="$LIBS $NETWORK_LIBS"
1025   AC_MSG_CHECKING([for res_init])
1026   AC_TRY_LINK([#include <sys/types.h>
1027                #include <netinet/in.h>
1028                #include <arpa/nameser.h>
1029                #include <resolv.h>
1030               ],[
1031                res_init();
1032               ],[AC_MSG_RESULT([yes])
1033                  AC_DEFINE(HAVE_RES_INIT, 1, [Define to 1 if you have the 'res_init' function.])
1034               ],[AC_MSG_RESULT([no])])
1035   LIBS="$save_libs"
1037 AC_SUBST(NETWORK_LIBS)
1039 AC_CHECK_HEADER([linux/netlink.h],
1040                 [AC_DEFINE(HAVE_NETLINK, 1, [We have AF_NETLINK sockets])],,
1041                 [#include <sys/socket.h>])
1042 AM_CONDITIONAL(HAVE_NETLINK, [test "$ac_cv_header_linux_netlink_h" = "yes"])
1044 AC_CHECK_TYPE([struct ip_mreqn], [
1045               AC_DEFINE(HAVE_IP_MREQN,, [Define if we have struct ip_mreqn])],,
1046               [#include <netinet/in.h>])
1048 case $host in
1049   *-*-solaris* )
1050      AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
1051      AC_DEFINE(_XOPEN_SOURCE,          2, Needed to get declarations for msg_control and msg_controllen on Solaris)
1052      AC_DEFINE(__EXTENSIONS__,         1, Needed to get declarations for msg_control and msg_controllen on Solaris)
1053      ;;
1054 esac
1057 dnl if statfs() takes 2 arguments (Posix) or 4 (Solaris)
1059 AS_IF([test "$ac_cv_func_statfs" = yes], [
1060   AC_MSG_CHECKING([number of arguments to statfs()])
1061   AC_TRY_COMPILE([#include <unistd.h>
1062   #ifdef HAVE_SYS_PARAM_H
1063   #include <sys/param.h>
1064   #endif
1065   #ifdef HAVE_SYS_VFS_H
1066   #include <sys/vfs.h>
1067   #endif
1068   #ifdef HAVE_SYS_MOUNT_H
1069   #include <sys/mount.h>
1070   #endif
1071   #ifdef HAVE_SYS_STATFS_H
1072   #include <sys/statfs.h>
1073   #endif], [struct statfs st;
1074   statfs("/", &st);],[
1075     AC_MSG_RESULT([2])
1076     AC_DEFINE(STATFS_ARGS, 2, [Number of arguments to statfs()])],[
1077     AC_TRY_COMPILE([#include <unistd.h>
1078   #ifdef HAVE_SYS_PARAM_H
1079   #include <sys/param.h>
1080   #endif
1081   #ifdef HAVE_SYS_VFS_H
1082   #include <sys/vfs.h>
1083   #endif
1084   #ifdef HAVE_SYS_MOUNT_H
1085   #include <sys/mount.h>
1086   #endif
1087   #ifdef HAVE_SYS_STATFS_H
1088   #include <sys/statfs.h>
1089   #endif], [struct statfs st;
1090   statfs("/", &st, sizeof (st), 0);],[
1091       AC_MSG_RESULT([4])
1092       AC_DEFINE(STATFS_ARGS, 4, [Number of arguments to statfs()])],[
1093       AC_MSG_RESULT(unknown)
1094       AC_MSG_ERROR([unable to determine number of arguments to statfs()])])])
1098 dnl open takes O_DIRECTORY as an option
1100 AC_MSG_CHECKING([open() option O_DIRECTORY])
1101 AC_TRY_COMPILE([#include <fcntl.h>
1102 #include <sys/types.h>
1103 #include <sys/stat.h>],
1104 [open(0, O_DIRECTORY, 0);],[
1105         AC_MSG_RESULT([yes])
1106         AC_DEFINE(HAVE_OPEN_O_DIRECTORY, 1, [open option O_DIRECTORY])],[
1107         AC_MSG_RESULT([no])])
1110 # Check whether to use an included printf
1112 AC_FUNC_VSNPRINTF_C99
1113 AC_FUNC_PRINTF_UNIX98
1115 AC_ARG_ENABLE(included-printf,
1116               [AS_HELP_STRING([--enable-included-printf],
1117                               [use included printf [default=auto]])],
1118               enable_included_printf="$enableval")
1120 need_included_printf=no
1121 if test "x$enable_included_printf" = "xyes" ; then
1122   need_included_printf=yes
1124 if test "$ac_cv_func_vsnprintf_c99" != "yes" ; then
1125   need_included_printf=yes
1127 if test "$ac_cv_func_printf_unix98" != "yes" ; then
1128   need_included_printf=yes
1130 if test "x$ac_cv_sizeof_long_long" = "x8" &&
1131    test -z "$glib_cv_long_long_format" ; then
1132   need_included_printf=yes
1135 if test "x$enable_included_printf" = "xno" && 
1136    test "x$need_included_printf" = "xyes" ; then
1137   AC_MSG_ERROR([
1138 *** Your C library's printf doesn't appear to have the features that
1139 *** GLib needs, but you specified --enable-included-printf=no.])
1142 enable_included_printf=$need_included_printf
1144 AM_CONDITIONAL(HAVE_GOOD_PRINTF, test "$enable_included_printf" != "yes")
1145 AS_IF([test "$enable_included_printf" != "yes"], [
1146   AC_DEFINE(HAVE_GOOD_PRINTF,1,[define to use system printf])
1147 ], [
1148   if test -z "$glib_cv_long_long_format" ; then
1149     glib_cv_long_long_format="ll"
1150   fi
1151   AC_DEFINE(HAVE_VASPRINTF,1)
1154 # Checks needed for gnulib vasnprintf
1155 bh_C_SIGNED
1156 jm_AC_TYPE_LONG_LONG
1157 gt_TYPE_LONGDOUBLE
1158 gt_TYPE_WCHAR_T
1159 gt_TYPE_WINT_T
1160 AC_TYPE_SIZE_T
1161 AC_CHECK_TYPES(ptrdiff_t)
1162 jm_AC_TYPE_INTMAX_T
1163 AC_CHECK_FUNCS([snprintf strnlen wcslen wcsnlen mbrtowc wcrtomb])
1164 AC_FUNC_SNPRINTF_C99
1166 # Check if <sys/select.h> needs to be included for fd_set
1167 AC_MSG_CHECKING([for fd_set])
1168 AC_TRY_COMPILE([#include <sys/types.h>],
1169         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
1170 AS_IF([test "$gtk_ok" = "yes"], [
1171     AC_MSG_RESULT([yes, found in sys/types.h])
1172 ], [
1173     AC_EGREP_HEADER(fd_set, sys/select.h, gtk_ok=yes)
1174     if test "$gtk_ok" = "yes"; then
1175         # *** FIXME: give it a different name
1176         AC_DEFINE(HAVE_SYS_SELECT_H,1,[found fd_set in sys/select.h])
1177         AC_MSG_RESULT([yes, found in sys/select.h])
1178     else
1179         AC_DEFINE(NO_FD_SET,1,[didn't find fd_set])
1180         AC_MSG_RESULT(no)
1181     fi
1184 dnl Check for nl_langinfo and CODESET
1185 AC_LANG_SAVE
1186 AC_LANG_C
1187 AC_CACHE_CHECK([for nl_langinfo (CODESET)],glib_cv_langinfo_codeset,[
1188         AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1189                        [char *codeset = nl_langinfo (CODESET);])],
1190                 [glib_cv_langinfo_codeset=yes],
1191                 [glib_cv_langinfo_codeset=no])])
1192 if test x$glib_cv_langinfo_codeset = xyes; then
1193   AC_DEFINE(HAVE_CODESET,1,[Have nl_langinfo (CODESET)])
1196 dnl Check for nl_langinfo and LC_TIME parts that are needed in gdatetime.c
1197 AC_CACHE_CHECK([for nl_langinfo (PM_STR)],glib_cv_langinfo_time,[
1198         AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1199                  [char *str;
1200                  str = nl_langinfo (PM_STR);
1201                  str = nl_langinfo (D_T_FMT);
1202                  str = nl_langinfo (D_FMT);
1203                  str = nl_langinfo (T_FMT);
1204                  str = nl_langinfo (T_FMT_AMPM);
1205                  str = nl_langinfo (MON_1);
1206                  str = nl_langinfo (ABMON_12);
1207                  str = nl_langinfo (DAY_1);
1208                  str = nl_langinfo (ABDAY_7);])],
1209                 [glib_cv_langinfo_time=yes],
1210                 [glib_cv_langinfo_time=no])])
1211 if test x$glib_cv_langinfo_time = xyes; then
1212   AC_DEFINE(HAVE_LANGINFO_TIME,1,[Have nl_langinfo (PM_STR)])
1215 dnl Check for nl_langinfo and _NL_CTYPE_OUTDIGITn_MB
1216 AC_CACHE_CHECK([for nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)], glib_cv_langinfo_outdigit,[
1217         AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
1218                 [char *str;
1219                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT0_MB);
1220                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT1_MB);
1221                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT2_MB);
1222                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT3_MB);
1223                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT4_MB);
1224                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT5_MB);
1225                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT6_MB);
1226                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT7_MB);
1227                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT8_MB);
1228                  str = nl_langinfo (_NL_CTYPE_OUTDIGIT9_MB);])],
1229                 [glib_cv_langinfo_outdigit=yes],
1230                 [glib_cv_langinfo_outdigit=no])])
1231 if test x$glib_cv_langinfo_outdigit = xyes; then
1232   AC_DEFINE(HAVE_LANGINFO_OUTDIGIT,1,[Have nl_langinfo (_NL_CTYPE_OUTDIGITn_MB)])
1234 AC_LANG_RESTORE
1236 dnl ****************************************
1237 dnl *** posix_memalign                   ***
1238 dnl ****************************************
1239 AC_MSG_CHECKING(for a compliant posix_memalign() implementation)
1240 AC_CACHE_VAL(glib_cv_compliant_posix_memalign,[
1241     glib_cv_compliant_posix_memalign=0
1242     if test "$ac_cv_func_posix_memalign" = "yes" ; then
1243         AC_TRY_RUN([
1244                 #define _XOPEN_SOURCE 600
1245                 #include <stdlib.h> /* posix_memalign() should be defined here */
1246                 /* some systems break if #include <malloc.h> used */
1247                 static void test_memalign (size_t boundary, size_t size) {
1248                     void *mem = 0;
1249                     if (posix_memalign (&mem, boundary, size) != 0 || !mem)
1250                         exit (1);
1251                     else
1252                       free (mem);
1253                 }
1254                 int main() {
1255                     test_memalign (  128,   128 - 2 * sizeof (void*));
1256                     test_memalign (  256,   256 - 2 * sizeof (void*));
1257                     test_memalign (  512,   512 - 2 * sizeof (void*));
1258                     test_memalign ( 1024,  1024 - 2 * sizeof (void*));
1259                     test_memalign ( 2048,  2048 - 2 * sizeof (void*));
1260                     test_memalign ( 4096,  4096 - 2 * sizeof (void*));
1261                     test_memalign ( 8192,  8192 - 2 * sizeof (void*));
1262                     test_memalign (16384, 16384 - 2 * sizeof (void*));
1263                     test_memalign (32768, 32768 - 2 * sizeof (void*));
1264                     exit (0); /* success */
1265                 }
1266                 ],
1267             [glib_cv_compliant_posix_memalign=1], [], [:])
1268       :
1269     fi
1270     ])
1271 AS_IF([test "$glib_cv_compliant_posix_memalign" = "1"], [
1272     AC_MSG_RESULT(yes)
1273     AC_DEFINE(POSIX_MEMALIGN_WITH_COMPLIANT_ALLOCS, 1, [define if posix_memalign() can allocate any size])
1274 ], [
1275     AC_MSG_RESULT(no)
1279 dnl ****************************************
1280 dnl *** strlcpy/strlcat                  ***
1281 dnl ****************************************
1282 # Check for strlcpy
1283 AC_CACHE_CHECK([for OpenBSD strlcpy/strlcat],glib_cv_have_strlcpy,[
1284 AC_TRY_RUN([#include <stdlib.h>
1285 #include <string.h>
1286 int main() {
1287   char p[10];
1288   (void) strlcpy (p, "hi", 10);
1289   if (strlcat (p, "bye", 0) != 3) 
1290     return 1;
1291   return 0;
1292 }], glib_cv_have_strlcpy=yes, 
1293     glib_cv_have_strlcpy=no,
1294     glib_cv_have_strlcpy=no)])
1295 if test "$glib_cv_have_strlcpy" = "yes"; then
1296     AC_DEFINE(HAVE_STRLCPY,1,[Have functions strlcpy and strlcat])
1298   
1300 dnl **********************
1301 dnl *** va_copy checks ***
1302 dnl **********************
1303 dnl we currently check for all three va_copy possibilities, so we get
1304 dnl all results in config.log for bug reports.
1305 AC_CACHE_CHECK([for an implementation of va_copy()],glib_cv_va_copy,[
1306         AC_LINK_IFELSE([AC_LANG_SOURCE([[#include <stdarg.h>
1307 #include <stdlib.h>
1308         void f (int i, ...) {
1309         va_list args1, args2;
1310         va_start (args1, i);
1311         va_copy (args2, args1);
1312         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1313           exit (1);
1314         va_end (args1); va_end (args2);
1315         }
1316         int main() {
1317           f (0, 42);
1318           return 0;
1319         }]])],
1320         [glib_cv_va_copy=yes],
1321         [glib_cv_va_copy=no])
1323 AC_CACHE_CHECK([for an implementation of __va_copy()],glib_cv___va_copy,[
1324         AC_LINK_IFELSE([AC_LANG_SOURCE([[#include <stdarg.h>
1325 #include <stdlib.h>
1326         void f (int i, ...) {
1327         va_list args1, args2;
1328         va_start (args1, i);
1329         __va_copy (args2, args1);
1330         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1331           exit (1);
1332         va_end (args1); va_end (args2);
1333         }
1334         int main() {
1335           f (0, 42);
1336           return 0;
1337         }]])],
1338         [glib_cv___va_copy=yes],
1339         [glib_cv___va_copy=no])
1342 if test "x$glib_cv_va_copy" = "xyes"; then
1343   g_va_copy_func=va_copy
1344 else if test "x$glib_cv___va_copy" = "xyes"; then
1345   g_va_copy_func=__va_copy
1349 if test -n "$g_va_copy_func"; then
1350   AC_DEFINE_UNQUOTED(G_VA_COPY,$g_va_copy_func,[A 'va_copy' style function])
1353 AC_CACHE_CHECK([whether va_lists can be copied by value],glib_cv_va_val_copy,[
1354         AC_TRY_RUN([#include <stdarg.h>
1355 #include <stdlib.h> 
1356         void f (int i, ...) {
1357         va_list args1, args2;
1358         va_start (args1, i);
1359         args2 = args1;
1360         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1361           exit (1);
1362         va_end (args1); va_end (args2);
1363         }
1364         int main() {
1365           f (0, 42);
1366           return 0;
1367         }],
1368         [glib_cv_va_val_copy=yes],
1369         [glib_cv_va_val_copy=no],
1370         [glib_cv_va_val_copy=yes])
1373 AS_IF([ test "x$glib_cv_va_val_copy" = "xno"], [
1374   AC_DEFINE(G_VA_COPY_AS_ARRAY,1, ['va_lists' cannot be copies as values])
1377 dnl ***********************
1378 dnl *** g_module checks ***
1379 dnl ***********************
1380 G_MODULE_LIBS=
1381 G_MODULE_LIBS_EXTRA=
1382 G_MODULE_PLUGIN_LIBS=
1383 if test x"$glib_native_win32" = xyes; then
1384   dnl No use for this on Win32
1385   G_MODULE_LDFLAGS=
1386 else
1387   export SED
1388   eval G_MODULE_LDFLAGS=$export_dynamic_flag_spec
1390 dnl G_MODULE_IMPL= don't reset, so cmd-line can override
1391 G_MODULE_NEED_USCORE=0
1392 G_MODULE_BROKEN_RTLD_GLOBAL=0
1393 G_MODULE_HAVE_DLERROR=0
1394 dnl *** force native WIN32 shared lib loader 
1395 if test -z "$G_MODULE_IMPL"; then
1396   case "$host" in
1397   *-*-mingw*|*-*-cygwin*) G_MODULE_IMPL=G_MODULE_IMPL_WIN32 ;;
1398   esac
1400 dnl *** force native AIX library loader
1401 dnl *** dlopen() filepath must be of the form /path/libname.a(libname.so)
1402 if test -z "$G_MODULE_IMPL"; then
1403   case "$host" in
1404   *-*-aix*) G_MODULE_IMPL=G_MODULE_IMPL_AR ;;
1405   esac
1407 dnl *** dlopen() and dlsym() in system libraries
1408 AS_IF([ test -z "$G_MODULE_IMPL"], [
1409         AC_CHECK_FUNC(dlopen,
1410                       [AC_CHECK_FUNC(dlsym,
1411                                      [G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
1412                       [])
1414 dnl *** NSLinkModule (dyld) in system libraries (Darwin)
1415 AS_IF([ test -z "$G_MODULE_IMPL" ], [
1416         AC_CHECK_FUNC(NSLinkModule,
1417                       [G_MODULE_IMPL=G_MODULE_IMPL_DYLD
1418                        G_MODULE_NEED_USCORE=1],
1419                       [])
1421 dnl *** dlopen() and dlsym() in libdl
1422 AS_IF([ test -z "$G_MODULE_IMPL"], [
1423         AC_CHECK_LIB(dl, dlopen,
1424                      [AC_CHECK_LIB(dl, dlsym,
1425                                    [G_MODULE_LIBS=-ldl
1426                                    G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
1427                      [])
1429 dnl *** additional checks for G_MODULE_IMPL_DL
1430 AS_IF([ test "$G_MODULE_IMPL" = "G_MODULE_IMPL_DL" ], [
1431         LIBS_orig="$LIBS"
1432         LDFLAGS_orig="$LDFLAGS"
1433         LIBS="$G_MODULE_LIBS $LIBS"
1434         LDFLAGS="$LDFLAGS $G_MODULE_LDFLAGS"
1435 dnl *** check for OSF1/5.0 RTLD_GLOBAL brokenness
1436         echo "void glib_plugin_test(void) { }" > plugin.c
1437         ${SHELL} ./libtool --mode=compile --tag=CC ${CC} ${CFLAGS} \
1438                 ${CPPFLAGS} -c -o plugin.lo plugin.c >/dev/null 2>&1
1439         ${SHELL} ./libtool --mode=link --tag=CC ${CC} ${CFLAGS} \
1440                 ${LDFLAGS} -module -o plugin.la -export-dynamic \
1441                 -shrext ".o" -avoid-version plugin.lo \
1442                 -rpath /dont/care >/dev/null 2>&1
1443         AC_CACHE_CHECK([for RTLD_GLOBAL brokenness],
1444                 glib_cv_rtldglobal_broken,[
1445                 AC_TRY_RUN([
1446 #include <dlfcn.h>
1447 #ifndef RTLD_GLOBAL
1448 #  define RTLD_GLOBAL 0
1449 #endif
1450 #ifndef RTLD_LAZY
1451 #  define RTLD_LAZY 0
1452 #endif
1453 int glib_plugin_test;
1454 int main () {
1455     void *handle, *global, *local;
1456     global = &glib_plugin_test;
1457     handle = dlopen ("./$objdir/plugin.o", RTLD_GLOBAL | RTLD_LAZY);
1458     if (!handle) return 0;
1459     local = dlsym (handle, "glib_plugin_test");
1460     return global == local;
1461 }                       ],
1462                         [glib_cv_rtldglobal_broken=no],
1463                         [glib_cv_rtldglobal_broken=yes],
1464                         [glib_cv_rtldglobal_broken=no])
1465                 rm -f plugin.c plugin.o plugin.lo plugin.la ${objdir}/plugin.*
1466                 rmdir ${objdir} 2>/dev/null
1467         ])
1468         if test "x$glib_cv_rtldglobal_broken" = "xyes"; then
1469                 G_MODULE_BROKEN_RTLD_GLOBAL=1
1470         else
1471                 G_MODULE_BROKEN_RTLD_GLOBAL=0
1472         fi
1473 dnl *** check whether we need preceeding underscores
1474         AC_CACHE_CHECK([for preceeding underscore in symbols],
1475                 glib_cv_uscore,[
1476                 AC_TRY_RUN([#include <dlfcn.h>
1477                 int glib_underscore_test (void) { return 42; }
1478                 int main() {
1479                   void *f1 = (void*)0, *f2 = (void*)0, *handle;
1480                   handle = dlopen ((void*)0, 0);
1481                   if (handle) {
1482                     f1 = dlsym (handle, "glib_underscore_test");
1483                     f2 = dlsym (handle, "_glib_underscore_test");
1484                   } return (!f2 || f1);
1485                 }],
1486                         [glib_cv_uscore=yes],
1487                         [glib_cv_uscore=no],
1488                         [])
1489                 rm -f plugin.c plugin.$ac_objext plugin.lo
1490         ])
1491         GLIB_ASSERT_SET(glib_cv_uscore)
1492         if test "x$glib_cv_uscore" = "xyes"; then
1493                 G_MODULE_NEED_USCORE=1
1494         else
1495                 G_MODULE_NEED_USCORE=0
1496         fi
1498         AC_CHECK_DECL([RTLD_LAZY],
1499                       [AC_DEFINE(HAVE_RTLD_LAZY, 1, [Define to 1 if RTLD_LAZY is available])],
1500                       [], [[#include <dlfcn.h>]])
1501         AC_CHECK_DECL([RTLD_NOW],
1502                       [AC_DEFINE(HAVE_RTLD_NOW, 1, [Define to 1 if RTLD_NOW is available])],
1503                       [], [[#include <dlfcn.h>]])
1504         AC_CHECK_DECL([RTLD_GLOBAL],
1505                       [AC_DEFINE(HAVE_RTLD_GLOBAL, 1, [Define to 1 if RTLD_GLOBAL is available])],
1506                       [], [[#include <dlfcn.h>]])
1508         LDFLAGS="$LDFLAGS_orig"
1509 dnl *** check for having dlerror()
1510         AC_CHECK_FUNC(dlerror,
1511                 [G_MODULE_HAVE_DLERROR=1],
1512                 [G_MODULE_HAVE_DLERROR=0])
1513         LIBS="$LIBS_orig"
1515 dnl *** done, have we got an implementation?
1516 if test -z "$G_MODULE_IMPL"; then
1517         G_MODULE_IMPL=0
1518         G_MODULE_SUPPORTED=false
1519 else
1520         G_MODULE_SUPPORTED=true
1523 AC_MSG_CHECKING(for the suffix of module shared libraries)
1524 export SED
1525 module=yes eval std_shrext=$shrext_cmds
1526 # chop the initial dot
1527 glib_gmodule_suffix=`echo $std_shrext | sed 's/^\.//'`
1528 AC_MSG_RESULT(.$glib_gmodule_suffix)
1529 # any reason it may fail?
1530 if test "x$glib_gmodule_suffix" = x; then
1531         AC_MSG_ERROR(Cannot determine shared library suffix from libtool)
1534 AC_SUBST(G_MODULE_SUPPORTED)
1535 AC_SUBST(G_MODULE_IMPL)
1536 AC_SUBST(G_MODULE_LIBS)
1537 AC_SUBST(G_MODULE_LIBS_EXTRA)
1538 AC_SUBST(G_MODULE_PLUGIN_LIBS)
1539 AC_SUBST(G_MODULE_LDFLAGS)
1540 AC_SUBST(G_MODULE_HAVE_DLERROR)
1541 AC_SUBST(G_MODULE_BROKEN_RTLD_GLOBAL)
1542 AC_SUBST(G_MODULE_NEED_USCORE)
1543 AC_SUBST(GLIB_DEBUG_FLAGS)
1545 dnl **********************
1546 dnl *** g_spawn checks ***
1547 dnl **********************
1549 AC_MSG_CHECKING(for gspawn implementation)
1550 case "$host" in
1551   *-*-mingw*)
1552     GSPAWN=gspawn-win32.lo
1553     ;;
1554   *)
1555     GSPAWN=gspawn.lo
1556     ;;    
1557 esac
1558 AC_MSG_RESULT($GSPAWN)
1559 AC_SUBST(GSPAWN)
1561 dnl *************************
1562 dnl *** GIOChannel checks ***
1563 dnl *************************
1565 AC_MSG_CHECKING(for GIOChannel implementation)
1566 case "$host" in
1567   *-*-mingw*)
1568     GIO=giowin32.lo
1569     ;;
1570   *)
1571     GIO=giounix.lo
1572     ;;    
1573 esac
1574 AC_MSG_RESULT($GIO)
1575 AC_SUBST(GIO)
1577 dnl *********************************
1578 dnl *** Directory for GIO modules ***
1579 dnl *********************************
1581 AC_ARG_WITH(gio-module-dir,
1582            [AS_HELP_STRING([--with-gio-module-dir=DIR],
1583                            [load gio modules from this directory [LIBDIR/gio/modules]])],
1584            [],
1585            [with_gio_module_dir='${libdir}/gio/modules'])
1586 GIO_MODULE_DIR=$with_gio_module_dir
1587 AC_SUBST(GIO_MODULE_DIR)
1589 dnl **********************************
1590 dnl *** Check for libselinux (GIO) ***
1591 dnl **********************************
1592 AC_ARG_ENABLE(selinux,
1593               AS_HELP_STRING([--disable-selinux],
1594                              [build without selinux support]))
1595 msg_selinux=no
1596 SELINUX_LIBS=
1597 AS_IF([ test "x$enable_selinux" != "xno"], [
1599  AC_CHECK_LIB(selinux, is_selinux_enabled,
1600    [AC_CHECK_HEADERS(selinux/selinux.h,
1601      [AC_CHECK_LIB(selinux, lgetfilecon_raw, 
1602        [AC_DEFINE(HAVE_SELINUX, 1, [Define to 1 if libselinux is available])
1603         SELINUX_LIBS="-lselinux"
1604         msg_selinux=yes])
1605      ])
1606    ])
1608 AC_SUBST(SELINUX_LIBS)
1610 dnl *****************************
1611 dnl ** Check for inotify (GIO) **
1612 dnl *****************************
1613 inotify_support=no
1614 AC_CHECK_HEADERS([sys/inotify.h],
1616   AC_CHECK_FUNCS(inotify_init1, [inotify_support=yes], [inotify_support=no])
1619 AM_CONDITIONAL(HAVE_INOTIFY, [test "$inotify_support" = "yes"])
1621 dnl ****************************
1622 dnl ** Check for kqueue (GIO) **
1623 dnl ****************************
1624 kqueue_support=no
1625 AC_CHECK_HEADERS([sys/event.h],
1627         AC_CHECK_FUNCS(kqueue kevent, [kqueue_support=yes])
1630 AM_CONDITIONAL(HAVE_KQUEUE, [test "$kqueue_support" = "yes"])
1632 dnl ****************************
1633 dnl *** Checks for FAM (GIO) ***
1634 dnl ****************************
1636 should_disable_fam=no
1638 AC_ARG_ENABLE(fam,
1639               AS_HELP_STRING([--disable-fam],
1640                              [don't use fam for file system monitoring]),
1641                          [
1642                                 if test "x$enable_fam" = "xno"; then
1643                                         should_disable_fam=yes
1644                                 fi
1645                          ]
1646                          )
1647 fam_support=no
1648 FAM_LIBS=
1649 if test "x$should_disable_fam" = "xno"; then
1650 AC_CHECK_LIB(fam, FAMOpen,
1651   [AC_CHECK_HEADERS(fam.h,
1652     [AC_DEFINE(HAVE_FAM, [], [Define if we have FAM])
1653      AC_CHECK_LIB(fam, FAMNoExists,
1654                   AC_DEFINE(HAVE_FAM_NO_EXISTS, [], [Define if we have FAMNoExists in fam]))
1655      FAM_LIBS="-lfam"]
1656      fam_support=yes,
1657     AC_MSG_WARN(*** FAM support will not be built (header files not found) ***))],
1658   AC_MSG_WARN(*** FAM support will not be built (FAM library not found) ***))
1659 AC_SUBST(FAM_LIBS)
1661 AM_CONDITIONAL(HAVE_FAM, [test "$fam_support" = "yes"])
1664 dnl *****************************
1665 dnl *** Check for xattr (GIO) ***
1666 dnl *****************************
1667 AC_ARG_ENABLE(xattr,
1668               AS_HELP_STRING([--disable-xattr], [build without xattr support]))
1669 msg_xattr=no
1670 XATTR_LIBS=
1671 AS_IF([ test "x$enable_xattr" != "xno"], [
1673 dnl either glibc or libattr can provide xattr support
1675 dnl for both of them, we check for getxattr being in
1676 dnl the library and a valid xattr header.
1678 dnl try glibc
1679  AC_CHECK_LIB(c, getxattr,
1680    [AC_CHECK_HEADERS(sys/xattr.h,
1681      [AC_DEFINE(HAVE_XATTR, 1, [Define to 1 if xattr is available])
1682       msg_xattr=yes])
1683    ])
1685   AS_IF([ test "x$msg_xattr" != "xyes"], [
1686 dnl   failure. try libattr
1687    AC_CHECK_LIB(attr, getxattr,
1688       [AC_CHECK_HEADERS(attr/xattr.h,
1689        [AC_DEFINE(HAVE_XATTR, 1, [Define to 1 if xattr is available])
1690         XATTR_LIBS="-lattr"
1691         msg_xattr=yes])
1692       ])
1693   ])
1695   AS_IF([ test "x$msg_xattr" = "xyes"], [
1696     AC_MSG_CHECKING([for XATTR_NOFOLLOW])
1697     AC_TRY_COMPILE([
1698       #include <stdio.h>
1699       #ifdef HAVE_SYS_TYPES_H
1700       #include <sys/types.h>
1701       #endif
1702       #ifdef HAVE_SYS_XATTR_H
1703       #include <sys/xattr.h>
1704       #elif HAVE_ATTR_XATTR_H
1705       #include <attr/xattr.h>
1706       #endif
1707     ],
1708     [ssize_t len = getxattr("", "", NULL, 0, 0, XATTR_NOFOLLOW);],
1709     [
1710       AC_DEFINE([HAVE_XATTR_NOFOLLOW], [1], [Define to 1 if xattr API uses XATTR_NOFOLLOW])
1711       AC_MSG_RESULT([yes])
1712     ],
1713     [AC_MSG_RESULT([no])]
1714     )
1715   ])
1717 AC_SUBST(XATTR_LIBS)
1719 dnl ************************
1720 dnl *** check for libelf ***
1721 dnl ************************
1722 AC_ARG_ENABLE(libelf,
1723               AS_HELP_STRING([--disable-libelf], [build without libelf support]))
1724 AS_IF([ test "x$enable_libelf" != "xno"],[
1725 PKG_CHECK_MODULES([LIBELF], [libelf >= 0.8.12], [have_libelf=yes], [have_libelf=maybe])
1726 AS_IF([ test $have_libelf = maybe ], [
1727   glib_save_LIBS=$LIBS
1728   AC_CHECK_LIB([elf], [elf_begin], [:], [have_libelf=no])
1729   AC_CHECK_LIB([elf], [elf_getshdrstrndx], [:], [have_libelf=no])
1730   AC_CHECK_LIB([elf], [elf_getshdrnum], [:], [have_libelf=no])
1731   AC_CHECK_HEADER([libelf.h], [:], [have_libelf=no])
1732   LIBS=$glib_save_LIBS
1734   if test $have_libelf != no; then
1735     LIBELF_LIBS=-lelf
1736     have_libelf=yes
1737   fi
1741 if test x$have_libelf = xyes; then
1742   AC_DEFINE(HAVE_LIBELF, 1, [Define if libelf is available])
1745 dnl ************************
1746 dnl *** check for libmount ***
1747 dnl ************************
1749 dnl The fallback code doesn't really implement the same behaviors - e.g.
1750 dnl so on linux we want to require libmount unless specifically disabled
1752 enable_libmount_default=${glib_os_linux:-no}
1753 AC_ARG_ENABLE(libmount,
1754               [AS_HELP_STRING([--enable-libmount],
1755                               [build with libmount support [default for Linux]])],,
1756               [enable_libmount=$enable_libmount_default])
1757 AS_IF([ test "x$enable_libmount" = "xyes"],[
1758 PKG_CHECK_MODULES([LIBMOUNT], [mount >= 2.28], [have_libmount=yes], [have_libmount=maybe])
1759 AS_IF([ test $have_libmount = maybe ], [
1760   glib_save_LIBS=$LIBS
1761   AC_CHECK_HEADER([libmount/libmount.h], [:], [have_libmount=no])
1763   # Check for a recent enough libmount
1764   AC_CHECK_LIB([mount], [mnt_unref_table], [:], [have_libmount=no])
1765   LIBS=$glib_save_LIBS
1767   if test $have_libmount != no; then
1768     LIBMOUNT_LIBS=-lmount
1769     have_libmount=yes
1770   fi
1772 if test $have_libmount = no ; then
1773    AC_MSG_ERROR([*** Could not find libmount])
1777 if test x$have_libmount = xyes; then
1778   AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available])
1780 AM_CONDITIONAL(HAVE_LIBMOUNT, [test x$have_libmount = xyes])
1782 dnl ****************************************
1783 dnl *** platform dependent source checks ***
1784 dnl ****************************************
1786 AC_MSG_CHECKING(for platform-dependent source)
1787 case "$host" in
1788   *-*-cygwin*|*-*-mingw*)
1789     PLATFORMDEP=gwin32.lo
1790     ;;
1791   *)
1792     PLATFORMDEP=
1793     ;;    
1794 esac
1795 AC_MSG_RESULT($PLATFORMDEP)
1796 AC_SUBST(PLATFORMDEP)
1798 AC_MSG_CHECKING([whether to compile timeloop])
1799 case "$host" in
1800   *-*-cygwin*|*-*-mingw*|*-*-minix)
1801     enable_timeloop=no
1802     ;;
1803   *)
1804     enable_timeloop=yes
1805     ;;    
1806 esac
1807 AC_MSG_RESULT($enable_timeloop)
1808 AM_CONDITIONAL(ENABLE_TIMELOOP, test x$enable_timeloop = xyes)
1810 AC_MSG_CHECKING([if building for some Win32 platform])
1811 case "$host" in
1812   *-*-mingw*|*-*-cygwin*)
1813     platform_win32=yes
1814     ;;
1815   *)
1816     platform_win32=no
1817     ;;
1818 esac
1819 AC_MSG_RESULT($platform_win32)
1820 AM_CONDITIONAL(PLATFORM_WIN32, test x$platform_win32 = xyes)
1822 dnl ***********************
1823 dnl *** g_thread checks ***
1824 dnl ***********************
1826 AC_ARG_WITH(threads,
1827            [AS_HELP_STRING([--with-threads=@<:@posix/win32@:>@],
1828                            [specify a thread implementation to use])],
1829            [],
1830            [with_threads=yes])
1832 dnl error and warning message
1833 dnl *************************
1835 THREAD_NO_IMPLEMENTATION="No thread implementation found."
1837 FLAG_DOES_NOT_WORK="I can't find the MACRO to enable thread safety on your
1838                 platform (normally it's "_REENTRANT"). I'll not use any flag on
1839                 compilation now, but then your programs might not work.
1840                 Please provide information on how it is done on your system."
1842 LIBS_NOT_FOUND_1="I can't find the libraries for the thread implementation
1843                  "
1845 LIBS_NOT_FOUND_2=". Please choose another thread implementation or
1846                   provide information on your thread implementation."
1848 FUNC_NO_GETPWUID_R="the 'g_get_(user_name|real_name|home_dir|tmp_dir)'
1849                 functions will not be MT-safe during their first call because
1850                 there is no working 'getpwuid_r' on your system."
1852 FUNC_NO_LOCALTIME_R="the 'g_date_set_time' function will not be MT-safe
1853                 because there is no 'localtime_r' on your system."
1855 AIX_COMPILE_INFO="AIX's C compiler needs to be called by a different name, when
1856                 linking threaded applications. As GLib cannot do that 
1857                 automatically, you will get an linkg error everytime you are 
1858                 not using the right compiler. In that case you have to relink 
1859                 with the right compiler. Ususally just '_r' is appended 
1860                 to the compiler name."
1862 dnl determination of thread implementation
1863 dnl ***************************************
1865 AC_MSG_CHECKING(for thread implementation)
1867 have_threads=no
1868 AS_IF([ test "x$with_threads" = xyes || test "x$with_threads" = xposix], [
1869         AS_IF([ test "x$have_threads" = xno], [
1870                 AC_TRY_COMPILE([#include <pthread.h>],
1871                         [pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;],
1872                         have_threads=posix)
1873         ])
1874         # Tru64Unix requires -pthread to find pthread.h. See #103020
1875         if test "x$have_threads" = xno; then
1876                 glib_save_CPPFLAGS="$CPPFLAGS"
1877                 CPPFLAGS="$CPPFLAGS -pthread"
1878                 AC_TRY_COMPILE([#include <pthread.h>],
1879                        [pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;],
1880                        have_threads=posix)
1881                 CPPFLAGS="$glib_save_CPPFLAGS"
1882         fi
1884 if test "x$with_threads" = xyes || test "x$with_threads" = xwin32; then
1885         case $host in
1886                 *-*-mingw*)
1887                 have_threads=win32
1888                 ;;
1889         esac
1892 if test "x$have_threads" = xno; then
1893         AC_MSG_RESULT(none available)
1894         AC_MSG_ERROR($THREAD_NO_IMPLEMENTATION)
1895 else
1896         AC_MSG_RESULT($have_threads)
1900 dnl determination of G_THREAD_CFLAGS
1901 dnl ********************************
1903 G_THREAD_LIBS=
1904 G_THREAD_LIBS_EXTRA=
1905 G_THREAD_CFLAGS=
1908 dnl Test program for basic POSIX threads functionality
1910 m4_define([glib_thread_test],[
1911 #include <pthread.h> 
1912 int check_me = 0;
1913 void* func(void* data) {check_me = 42; return &check_me;}
1914 int main()
1915  { pthread_t t; 
1916    void *ret;
1917    pthread_create (&t, $1, func, 0);
1918    pthread_join (t, &ret);
1919    return (check_me != 42 || ret != &check_me);
1922 AS_IF([ test x"$have_threads" = xposix], [
1923   # First we test for posix, whether -pthread or -pthreads do the trick as 
1924   # both CPPFLAG and LIBS. 
1925   # One of them does for most gcc versions and some other platforms/compilers
1926   # too and could be considered as the canonical way to go. 
1927   case $host in
1928     *-*-cygwin*|*-*-darwin*)
1929        # skip cygwin and darwin -pthread or -pthreads test
1930        ;;
1931     *-solaris*)
1932       # These compiler/linker flags work with both Sun Studio and gcc
1933       # Sun Studio expands -mt to -D_REENTRANT and -lthread
1934       # gcc expands -pthreads to -D_REENTRANT -D_PTHREADS -lpthread
1935       G_THREAD_CFLAGS="-D_REENTRANT -D_PTHREADS"
1936       G_THREAD_LIBS="-lpthread -lthread"
1937       ;;
1938     *)
1939       for flag in pthread pthreads mt; do
1940         glib_save_CFLAGS="$CFLAGS"
1941         CFLAGS="$CFLAGS -$flag"
1942         AC_TRY_RUN(glib_thread_test(0),
1943                    glib_flag_works=yes,
1944                    glib_flag_works=no,
1945                    [AC_LINK_IFELSE([AC_LANG_SOURCE(glib_thread_test(0))],
1946                                    glib_flag_works=yes,
1947                                    glib_flag_works=no)])
1948         CFLAGS="$glib_save_CFLAGS"
1949         if test $glib_flag_works = yes ; then
1950            G_THREAD_CFLAGS=-$flag
1951         G_THREAD_LIBS=-$flag
1952         break;
1953         fi
1954       done
1955        ;;
1956   esac
1959 AS_IF([ test x"$G_THREAD_CFLAGS" = x], [
1961   # The canonical -pthread[s] does not work. Try something different.
1963   case $host in
1964         *-aix*)
1965                 if test x"$GCC" = xyes; then
1966                         # GCC 3.0 and above needs -pthread. 
1967                         # Should be coverd by the case above.
1968                         # GCC 2.x and below needs -mthreads
1969                         G_THREAD_CFLAGS="-mthreads"             
1970                         G_THREAD_LIBS=$G_THREAD_CFLAGS
1971                 else 
1972                         # We are probably using the aix compiler. Normaly a 
1973                         # program would have to be compiled with the _r variant
1974                         # of the corresponding compiler, but we as GLib cannot 
1975                         # do that: but the good news is that for compiling the
1976                         # only difference is the added -D_THREAD_SAFE compile 
1977                         # option. This is according to the "C for AIX User's 
1978                         # Guide".
1979                         G_THREAD_CFLAGS="-D_THREAD_SAFE"
1980                 fi
1981                 ;;
1982         *-sysv5uw7*) # UnixWare 7 
1983                 # We are not using gcc with -pthread. Catched above.
1984                 G_THREAD_CFLAGS="-Kthread"
1985                 G_THREAD_LIBS=$G_THREAD_CFLAGS
1986                 ;;
1987         *-mingw*)
1988                 # No flag needed when using MSVCRT.DLL
1989                 G_THREAD_CFLAGS=""
1990                 ;;
1991         *)
1992                 G_THREAD_CFLAGS="-D_REENTRANT" # good default guess otherwise
1993                 ;;
1994   esac
1997 # if we are not finding the localtime_r function, then we probably are
1998 # not using the proper multithread flag
2000 glib_save_CPPFLAGS="$CPPFLAGS"
2001 CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
2003 # First we test, whether localtime_r is declared in time.h
2004 # directly. Then we test whether a macro localtime_r exists, in
2005 # which case localtime_r in the test program is replaced and thus
2006 # if we still find localtime_r in the output, it is not defined as 
2007 # a macro.
2009 AC_EGREP_CPP([[^a-zA-Z1-9_]localtime_r[^a-zA-Z1-9_]], [#include <time.h>], ,
2010   [AC_EGREP_CPP([[^a-zA-Z1-9_]localtime_r[^a-zA-Z1-9_]], [#include <time.h> 
2011                                                            localtime_r(a,b)],
2012                    AC_MSG_WARN($FLAG_DOES_NOT_WORK))])
2014 CPPFLAGS="$glib_save_CPPFLAGS"
2016 AC_MSG_CHECKING(thread related cflags)
2017 AC_MSG_RESULT($G_THREAD_CFLAGS)
2018 CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
2020 dnl determination of G_THREAD_LIBS
2021 dnl ******************************
2023 AS_IF([test x$have_threads = xposix], [
2024           glib_save_CPPFLAGS="$CPPFLAGS"
2025           CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
2026           AS_IF([ test x"$G_THREAD_LIBS" = x ], [
2027             case $host in
2028               *-aix*)
2029                 # We are not using gcc (would have set G_THREAD_LIBS) and thus 
2030                 # probably using the aix compiler.
2031                 AC_MSG_WARN($AIX_COMPILE_INFO)
2032                 ;;
2033               *)
2034                 G_THREAD_LIBS=error
2035                 glib_save_LIBS="$LIBS"
2036                 for thread_lib in "" pthread pthread32 pthreads thread; do
2037                         if test x"$thread_lib" = x; then
2038                                 add_thread_lib=""
2039                                 IN=""
2040                         else
2041                                 add_thread_lib="-l$thread_lib"
2042                                 IN=" in -l$thread_lib"
2043                         fi
2044                         if test x"$have_threads" = xposix; then
2045                                 defattr=0
2046                         else
2047                                 defattr=pthread_attr_default
2048                         fi
2049                         
2050                         LIBS="$add_thread_lib $glib_save_LIBS"
2051                         
2052                         AC_MSG_CHECKING(for pthread_create/pthread_join$IN)
2053                         AC_TRY_RUN(glib_thread_test($defattr),
2054                                    glib_result=yes,
2055                                    glib_result=no,
2056                                    [AC_LINK_IFELSE([AC_LANG_SOURCE(glib_thread_test($defattr))],
2057                                                    glib_result=yes,
2058                                                    glib_result=no)])
2059                         AC_MSG_RESULT($glib_result)
2060                         
2061                         if test "$glib_result" = "yes" ; then
2062                           G_THREAD_LIBS="$add_thread_lib"
2063                           break
2064                         fi
2065                 done
2066                 if test "x$G_THREAD_LIBS" = xerror; then
2067                   AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
2068                 fi 
2069                 LIBS="$glib_save_LIBS"
2070                 ;;
2071             esac
2072           ])
2074           g_threads_impl="POSIX"
2075           AC_DEFINE([THREADS_POSIX], [1], [Use pthreads])
2076           AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
2077           CPPFLAGS="$glib_save_CPPFLAGS"
2078 ], [test x$have_threads = xwin32], [
2079            AC_DEFINE([THREADS_WIN32], [1], [Use w32 threads])
2080            g_threads_impl="WIN32"
2081 ], [
2082            AC_DEFINE([THREADS_NONE], [1], [Use no threads])
2083            g_threads_impl="NONE"
2084            G_THREAD_LIBS=error
2086 AM_CONDITIONAL(THREADS_POSIX, [test "$g_threads_impl" = "POSIX"])
2087 AM_CONDITIONAL(THREADS_WIN32, [test "$g_threads_impl" = "WIN32"])
2088 AM_CONDITIONAL(THREADS_NONE, [test "$g_threads_impl" = "NONE"])
2090 if test "x$G_THREAD_LIBS" = xerror; then
2091         AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
2094 AC_MSG_CHECKING(thread related libraries)
2095 AC_MSG_RESULT($G_THREAD_LIBS)
2097 dnl check for mt safe function variants and some posix functions
2098 dnl ************************************************************
2100 glib_save_LIBS="$LIBS"
2101 # we are not doing the following for now, as this might require glib 
2102 # to always be linked with the thread libs on some platforms. 
2103 # LIBS="$LIBS $G_THREAD_LIBS"
2104 AC_CHECK_FUNCS(localtime_r gmtime_r getpwuid_r getgrgid_r)
2106 LIBS="$G_THREAD_LIBS $LIBS"
2107 AS_IF([ test x"$have_threads" = xposix], [
2108         glib_save_CPPFLAGS="$CPPFLAGS"
2109         CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
2110         # This is not AC_CHECK_FUNC to also work with function
2111         # name mangling in header files.
2112         AC_MSG_CHECKING(for pthread_attr_setstacksize)
2113         AC_LINK_IFELSE(
2114             [AC_LANG_PROGRAM(
2115                 [#include <pthread.h>],
2116                 [pthread_attr_t t; pthread_attr_setstacksize(&t,0)])],
2117             [AC_MSG_RESULT(yes)
2118              AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE,1,
2119                 [Have function pthread_attr_setstacksize])],
2120             [AC_MSG_RESULT(no)])
2121         AC_MSG_CHECKING(for pthread_condattr_setclock)
2122         AC_LINK_IFELSE(
2123             [AC_LANG_PROGRAM(
2124                 [#include <pthread.h>],
2125                 [pthread_condattr_t a; pthread_condattr_setclock(&a,0)])],
2126             [AC_MSG_RESULT(yes)
2127              AC_DEFINE(HAVE_PTHREAD_CONDATTR_SETCLOCK,1,
2128                 [Have function pthread_condattr_setclock])],
2129             [AC_MSG_RESULT(no)])
2130         AC_MSG_CHECKING(for pthread_cond_timedwait_relative_np)
2131         AC_LINK_IFELSE(
2132             [AC_LANG_PROGRAM(
2133                 [#include <pthread.h>],
2134                 [pthread_cond_timedwait_relative_np(NULL, NULL, NULL)])],
2135             [AC_MSG_RESULT(yes)
2136              AC_DEFINE(HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP,1,
2137                 [Have function pthread_cond_timedwait_relative_np])],
2138             [AC_MSG_RESULT(no)])
2139         dnl Sets thread names on OS X 10.6, iOS 3.2 (and higher)
2140         AC_MSG_CHECKING(for pthread_setname_np(const char*))
2141         AC_LINK_IFELSE(
2142             [AC_LANG_PROGRAM(
2143                 [#include <pthread.h>],
2144                 [pthread_setname_np("example")])],
2145             [AC_MSG_RESULT(yes)
2146              AC_DEFINE(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID,1,
2147                 [Have function pthread_setname_np(const char*)])],
2148             [AC_MSG_RESULT(no)])
2149         dnl Sets thread names on Solaris 11.3 & higher
2150         AC_MSG_CHECKING(for pthread_setname_np(pthread_t, const char*))
2151         AC_LINK_IFELSE(
2152             [AC_LANG_PROGRAM(
2153                 [#include <pthread.h>],
2154                 [pthread_setname_np(pthread_self(), "example")])],
2155             [AC_MSG_RESULT(yes)
2156              AC_DEFINE(HAVE_PTHREAD_SETNAME_NP_WITH_TID,1,
2157                 [Have function pthread_setname_np(pthread_t, const char*)])],
2158             [AC_MSG_RESULT(no)])
2159         CPPFLAGS="$glib_save_CPPFLAGS"
2162 LIBS="$glib_save_LIBS"
2164 # now spit out all the warnings.
2165 if test "$ac_cv_func_getpwuid_r" != "yes"; then
2166         AC_MSG_WARN($FUNC_NO_GETPWUID_R)
2168 if test "$ac_cv_func_localtime_r" != "yes"; then
2169         AC_MSG_WARN($FUNC_NO_LOCALTIME_R)
2173 # Hack to deal with:
2175 #  a) GCC < 3.3 for Linux doesn't include -lpthread when
2176 #     building shared libraries with linux.
2177 #  b) FreeBSD doesn't do this either.
2179 case $host in
2180   *android*)
2181     G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS"
2182     ;;
2183   *-*-freebsd*|*-*-linux*)
2184     G_THREAD_LIBS_FOR_GTHREAD="`echo $G_THREAD_LIBS | sed s/-pthread/-lpthread/`"
2185     ;;
2186   *)
2187     G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS"
2188     ;;
2189 esac
2191 AC_SUBST(G_THREAD_CFLAGS)
2192 AC_SUBST(G_THREAD_LIBS)
2193 AC_SUBST(G_THREAD_LIBS_FOR_GTHREAD)
2194 AC_SUBST(G_THREAD_LIBS_EXTRA)
2196 AC_CHECK_FUNCS(clock_gettime, [], [
2197   AC_CHECK_LIB(rt, clock_gettime, [
2198     G_THREAD_LIBS="$G_THREAD_LIBS -lrt"
2199     G_THREAD_LIBS_FOR_GTHREAD="$G_THREAD_LIBS_FOR_GTHREAD -lrt"
2200   ])
2204 dnl ************************
2205 dnl *** g_atomic_* tests ***
2206 dnl ************************
2208 dnl We need to decide at configure time if GLib will use real atomic
2209 dnl operations ("lock free") or emulated ones with a mutex.  This is
2210 dnl because we must put this information in glibconfig.h so we know if
2211 dnl it is safe or not to inline using compiler intrinsics directly from
2212 dnl the header.
2214 dnl We also publish the information via G_ATOMIC_LOCK_FREE in case the
2215 dnl user is interested in knowing if they can use the atomic ops across
2216 dnl processes.
2218 dnl We can currently support the atomic ops natively when building GLib
2219 dnl with recent versions of GCC or MSVC.  MSVC doesn't run ./configure,
2220 dnl so we skip that case here and define G_ATOMIC_LOCK_FREE exactly when
2221 dnl we are using GCC (and not mingw*).
2223 dnl Note that the atomic ops are only available with GCC on x86 when
2224 dnl using -march=i486 or higher.  If we detect that the atomic ops are
2225 dnl not available but would be available given the right flags, we want
2226 dnl to abort and advise the user to fix their CFLAGS.  It's better to do
2227 dnl that then to silently fall back on emulated atomic ops just because
2228 dnl the user had the wrong build environment.
2230 dnl We may add other compilers here in the future...
2232 AC_CACHE_CHECK([for lock-free atomic intrinsics], glib_cv_g_atomic_lock_free, [
2233   case $host in
2234     *-*-mingw*)
2235       glib_cv_g_atomic_lock_free=yes
2236       ;;
2237     *)
2238       AC_TRY_LINK([],
2239                      [volatile int atomic = 2;\
2240                       __sync_bool_compare_and_swap (&atomic, 2, 3);],
2241                      [glib_cv_g_atomic_lock_free=yes],
2242                      [glib_cv_g_atomic_lock_free=no])
2243       if test "$glib_cv_g_atomic_lock_free" = "no"; then
2244         SAVE_CFLAGS="${CFLAGS}"
2245         CFLAGS="-march=i486"
2246         AC_TRY_LINK([],
2247                        [volatile int atomic = 2;\
2248                         __sync_bool_compare_and_swap (&atomic, 2, 3);],
2249                        [AC_MSG_ERROR([GLib must be built with -march=i486 or later.])],
2250                        [])
2251         CFLAGS="${SAVE_CFLAGS}"
2252       fi
2253       ;;
2254   esac])
2257 case $host in
2258   *-*-mingw*)
2259     ;;
2260   *)
2261     # Some compilers support atomic operations but do not define
2262     # __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, like clang
2263     if test x"$glib_cv_g_atomic_lock_free" = xyes; then
2264       AC_TRY_LINK([],
2265                      [__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;],
2266                      [],
2267                      [AC_DEFINE(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, 1, [ compiler supports atomic operations])])
2268     fi
2269     ;;
2270  esac
2272 dnl We need a more robust approach here...
2273 case $host_cpu in
2274   i?86|x86_64|s390|s390x|arm*|crisv32*|etrax*)
2275     glib_memory_barrier_needed=no
2276     ;;
2277   sparc*|alpha*|powerpc*|ia64)
2278     glib_memory_barrier_needed=yes
2279     ;;
2280   *)
2281     glib_memory_barrier_needed=yes
2282     ;;
2283 esac
2285 dnl ************************
2286 dnl ** Check for futex(2) **
2287 dnl ************************
2288 AC_CACHE_CHECK(for futex(2) system call,
2289     glib_cv_futex,AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
2290 #include <linux/futex.h>
2291 #include <sys/syscall.h>
2292 #include <unistd.h>
2294   syscall (__NR_futex, NULL, FUTEX_WAKE, FUTEX_WAIT);
2295 ])],glib_cv_futex=yes,glib_cv_futex=no))
2296 if test x"$glib_cv_futex" = xyes; then
2297   AC_DEFINE(HAVE_FUTEX, 1, [we have the futex(2) system call])
2300 AC_CACHE_CHECK(for eventfd(2) system call,
2301     glib_cv_eventfd,AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
2302 #include <sys/eventfd.h>
2303 #include <unistd.h>
2305   eventfd (0, EFD_CLOEXEC);
2306 ])],glib_cv_eventfd=yes,glib_cv_eventfd=no))
2307 if test x"$glib_cv_eventfd" = x"yes"; then
2308   AC_DEFINE(HAVE_EVENTFD, 1, [we have the eventfd(2) system call])
2310 AM_CONDITIONAL(HAVE_EVENTFD, [test "$glib_cv_eventfd" = "yes"])
2312 dnl ****************************************
2313 dnl *** GLib POLL* compatibility defines ***
2314 dnl ****************************************
2316 glib_poll_includes=["
2317 #include <sys/types.h>
2318 #include <poll.h>
2321 AS_IF([ test $ac_cv_header_sys_types_h = yes &&
2322    test $ac_cv_func_poll = yes ], [
2323   glib_failed=false
2324   GLIB_CHECK_VALUE(POLLIN, $glib_poll_includes, glib_failed=true)
2325   GLIB_CHECK_VALUE(POLLOUT, $glib_poll_includes, glib_failed=true)
2326   GLIB_CHECK_VALUE(POLLPRI, $glib_poll_includes, glib_failed=true)
2327   GLIB_CHECK_VALUE(POLLERR, $glib_poll_includes, glib_failed=true)
2328   GLIB_CHECK_VALUE(POLLHUP, $glib_poll_includes, glib_failed=true)
2329   GLIB_CHECK_VALUE(POLLNVAL, $glib_poll_includes, glib_failed=true)
2330   if $glib_failed ; then
2331     AC_MSG_ERROR([Could not determine values for POLL* constants])
2332   fi
2333 ], [
2334   glib_cv_value_POLLIN=1
2335   glib_cv_value_POLLOUT=4
2336   glib_cv_value_POLLPRI=2
2337   glib_cv_value_POLLERR=8
2338   glib_cv_value_POLLHUP=16
2339   glib_cv_value_POLLNVAL=32
2342 AC_MSG_CHECKING([for broken poll])
2343 AC_RUN_IFELSE([AC_LANG_SOURCE([[
2344         #include <stdlib.h>
2345         #include <fcntl.h>
2346         #include <poll.h>
2347         int main(void) {
2348           struct pollfd fds[1];
2349           int fd;
2350           fd = open("/dev/null", 1);
2351           fds[0].fd = fd;
2352           fds[0].events = POLLIN;
2353           fds[0].revents = 0;
2354           if (poll(fds, 1, 0) < 0 || (fds[0].revents & POLLNVAL) != 0) {
2355                 exit(1);  /* Does not work for devices -- fail */
2356           }
2357           exit(0);
2358         }]])],
2359   [broken_poll=no],
2360   [broken_poll=yes
2361    AC_DEFINE(BROKEN_POLL,1,[poll doesn't work on devices])],
2362   [broken_poll="no (cross compiling)"])
2363 AC_MSG_RESULT($broken_poll)
2365 dnl *********************
2366 dnl *** GRegex checks ***
2367 dnl *********************
2369 PCRE_REQUIRED_VERSION=8.13
2371 # Check if we should use the internal or the system-supplied pcre
2372 AC_ARG_WITH(pcre,
2373             [AS_HELP_STRING([--with-pcre=@<:@internal/system@:>@],
2374                             [whether to use system PCRE [default=system]])],
2375             [],
2376             [with_pcre=system])
2378 AM_CONDITIONAL(USE_SYSTEM_PCRE, [test "x$with_pcre" = xsystem])
2380 AS_IF([ test "x$with_pcre" = xsystem], [
2381   PKG_CHECK_MODULES(PCRE,
2382                     libpcre >= $PCRE_REQUIRED_VERSION)
2383   AC_CACHE_CHECK([for Unicode support in PCRE],glib_cv_pcre_has_unicode,[
2384                   glib_save_CFLAGS="$CFLAGS"
2385                   glib_save_LIBS="$LIBS"
2386                   CFLAGS="$CFLAGS $PCRE_CFLAGS" LIBS="$PCRE_LIBS"
2387                   AC_TRY_RUN([#include <pcre.h>
2388                               int main () {
2389                                 int support;
2390                                 pcre_config (PCRE_CONFIG_UTF8, &support);
2391                                 if (!support)
2392                                   return 1;
2393                                 pcre_config (PCRE_CONFIG_UNICODE_PROPERTIES, &support);
2394                                 if (!support)
2395                                   return 1;
2396                                 return 0;
2397                               }],
2398                   glib_cv_pcre_has_unicode=yes,
2399                   glib_cv_pcre_has_unicode=no,
2400                   glib_cv_pcre_has_unicode=yes)
2401                   CFLAGS="$glib_save_CFLAGS"
2402                   LIBS="$glib_save_LIBS"
2403       ])
2404   if test "$glib_cv_pcre_has_unicode" = "no"; then
2405     AC_MSG_ERROR([*** The system-supplied PCRE does not support Unicode properties or UTF-8.])
2406   fi
2407   AC_SUBST(PCRE_CFLAGS)
2408   AC_SUBST(PCRE_LIBS)
2409   AC_DEFINE(USE_SYSTEM_PCRE, [], [using the system-supplied PCRE library])
2410   PCRE_REQUIRES=libpcre
2411   AC_SUBST(PCRE_REQUIRES)
2412 ], [
2413   # If using gcc 4 pass -Wno-pointer-sign when compiling the internal PCRE
2414   AS_IF([ test x"$GCC" = xyes], [
2415     AC_MSG_CHECKING([whether compiler understands -Wno-pointer-sign])
2416     save_CFLAGS="$CFLAGS"
2417     CFLAGS="$CFLAGS -Wno-pointer-sign"
2418     AC_TRY_COMPILE([],[],[PCRE_WARN_CFLAGS="$PCRE_WARN_CFLAGS -Wno-pointer-sign"
2419                           AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
2420     CFLAGS="$save_CFLAGS"
2421   ])
2423 AC_SUBST(PCRE_WARN_CFLAGS)
2425 dnl **********************
2426 dnl *** Win32 API libs ***
2427 dnl **********************
2429 case $host in
2430   *-*-cygwin*)
2431         G_LIBS_EXTRA="-luser32 -lkernel32"
2432     ;;
2433   *-*-mingw*)
2434         G_LIBS_EXTRA="-lws2_32 -lole32 -lwinmm -lshlwapi"
2435     ;;
2436   *)
2437         G_LIBS_EXTRA=""
2438     ;;
2439 esac
2440 AC_SUBST(G_LIBS_EXTRA)
2442 dnl If the system doesn't define EILSEQ, we should define EILSEQ ourselves
2443 dnl since we need it for g_iconv()
2445 AC_MSG_CHECKING([for EILSEQ])
2446 AC_TRY_COMPILE([
2447 #include <errno.h>
2450 int error = EILSEQ;
2451 ], have_eilseq=yes, have_eilseq=no);
2452 AC_MSG_RESULT($have_eilseq)
2454 dnl Add a conditional we can use when cross-compiling, so we avoid running
2455 dnl binaries
2456 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
2458 dnl **************************
2459 dnl *** Checks for gtk-doc ***
2460 dnl **************************
2461 # gtkdocize greps for ^GTK_DOC_CHECK and parses it, so you need to have
2462 # it on it's own line.
2463 m4_ifdef([GTK_DOC_CHECK], [
2464 GTK_DOC_CHECK([1.20], [--flavour no-tmpl])
2466 AM_CONDITIONAL([ENABLE_GTK_DOC],[false])
2469 AC_ARG_ENABLE(man,
2470               [AS_HELP_STRING([--enable-man],
2471                               [generate man pages [default=auto]])],,
2472               enable_man=maybe)
2474 AS_IF([test "$enable_man" != no], [
2475   AC_PATH_PROG([XSLTPROC], [xsltproc])
2476   AS_IF([test -z "$XSLTPROC"], [
2477     AS_IF([test "$enable_man" = yes], [
2478       AC_MSG_ERROR([xsltproc is required for --enable-man])
2479     ])
2480     enable_man=no
2481   ])
2484 AS_IF([ test "$enable_man" != no ], [
2485   dnl check for DocBook DTD in the local catalog
2486   JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
2487      [DocBook XML DTD V4.1.2], [have_docbook_dtd=yes], [have_docbook_dtd=no])
2488   AS_IF([test "$have_docbook_dtd" != yes], [
2489     AS_IF([test "$enable_man" = yes ], [
2490       AC_MSG_ERROR([DocBook DTD is required for --enable-man])
2491     ])
2492     enable_man=no
2493   ])
2496 AS_IF([test "$enable_man" != no], [
2497   dnl check for DocBook XSL stylesheets in the local catalog
2498   JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
2499      [DocBook XSL Stylesheets], [have_docbook_style=yes],[have_docbook_style=no])
2500   AS_IF([ test "$have_docbook_style" != yes ], [
2501     AS_IF([ test "$enable_man" = yes ], [
2502       AC_MSG_ERROR([DocBook XSL Stylesheets are required for --enable-man])
2503     ])
2504     enable_man=no
2505   ])
2508 AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no)
2510 AC_MSG_CHECKING([whether to generate man pages])
2511 AS_IF([ test "$enable_man" != no ], [
2512   AC_MSG_RESULT([yes])
2513 ], [
2514   AC_MSG_RESULT([no])
2518 dnl Tracing
2521 AC_ARG_ENABLE([dtrace],
2522              [AS_HELP_STRING([--enable-dtrace],
2523                               [include tracing support for dtrace])])
2524 have_dtrace=no
2525 AC_MSG_CHECKING([whether to include dtrace tracing support])
2526 AS_IF([ test "x$enable_dtrace" != xno], [
2527   if test x$glib_have_carbon = xyes; then
2528     AC_MSG_RESULT([no (not yet compatible with MacOS dtrace)])
2529   else 
2530     AC_MSG_RESULT([yes])
2531     AC_CHECK_PROGS(DTRACE, dtrace)
2532     if test -z "$DTRACE"; then
2533       if test "x$enable_dtrace" = xyes; then
2534         AC_MSG_ERROR([dtrace not found])
2535       fi
2536     else
2537       AC_CHECK_HEADER([sys/sdt.h],have_dtrace=yes,
2538                       [if test "x$enable_dtrace" = xyes; then
2539                         AC_MSG_ERROR([dtrace support needs sys/sdt.h header])
2540                        fi])
2541     fi
2542   fi
2543 ], [
2544   AC_MSG_RESULT([no])
2546 if test "x$have_dtrace" = xyes; then
2547   AC_DEFINE([HAVE_DTRACE], [1], [Define to 1 if using dtrace probes.])
2549 AM_CONDITIONAL([ENABLE_DTRACE], [test x$have_dtrace = xyes ])
2551 AC_MSG_CHECKING([whether to include systemtap tracing support])
2552 AC_ARG_ENABLE([systemtap],
2553              [AS_HELP_STRING([--enable-systemtap],
2554                               [include tracing support for systemtap])])
2555 have_systemtap=no
2556 if test "x$enable_systemtap" != xno -a "x$have_dtrace" = xyes; then
2557   have_systemtap=yes
2559 AC_MSG_RESULT(${have_systemtap})
2561 AM_CONDITIONAL([ENABLE_SYSTEMTAP], [test x$have_systemtap = xyes])
2563 AC_ARG_WITH([tapset-install-dir],
2564             AS_HELP_STRING([--with-tapset-install-dir=DIR],
2565                             [path where systemtap tapsets are installed [DATADIR/systemtap/tapset]]),
2566             [if test "x${withval}" = x; then
2567                ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset"
2568              else
2569                ABS_TAPSET_DIR="${withval}"
2570               fi],
2571             [ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset"])
2572 AC_SUBST(ABS_TAPSET_DIR)
2574 dnl ************************************
2575 dnl *** Enable lcov coverage reports ***
2576 dnl ************************************
2578 AC_ARG_ENABLE(coverage,
2579   AS_HELP_STRING([--enable-coverage],
2580                  [enable coverage testing with gcov]),
2581   [use_gcov=$enableval], [use_gcov=no])
2583 AS_IF([ test "x$use_gcov" = "xyes"], [
2584   dnl we need gcc:
2585   if test "$GCC" != "yes"; then
2586     AC_MSG_ERROR([GCC is required for --enable-coverage])
2587   fi
2589   dnl Check if ccache is being used
2590   AC_CHECK_PROG(SHTOOL, shtool, shtool)
2591   case `$SHTOOL path $CC` in
2592     *ccache*[)] gcc_ccache=yes;;
2593     *[)] gcc_ccache=no;;
2594   esac
2596   if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then
2597     AC_MSG_ERROR([ccache must be disabled when --enable-coverage option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.])
2598   fi
2600   ltp_version_list="1.6 1.7 1.8 1.9 1.10 1.12"
2601   AC_CHECK_PROG(LTP, lcov, lcov)
2602   AC_CHECK_PROG(LTP_GENHTML, genhtml, genhtml)
2604   AS_IF([ test "$LTP" ], [
2605     AC_CACHE_CHECK([for ltp version], glib_cv_ltp_version, [
2606       glib_cv_ltp_version=invalid
2607       ltp_version=`$LTP -v 2>/dev/null | $SED -e 's/^.* //'`
2608       for ltp_check_version in $ltp_version_list; do
2609         if test "$ltp_version" = "$ltp_check_version"; then
2610           glib_cv_ltp_version="$ltp_check_version (ok)"
2611         fi
2612       done
2613     ])
2614   ], [
2615     ltp_msg="To enable code coverage reporting you must have one of the following LTP versions installed: $ltp_version_list"
2616     AC_MSG_ERROR([$ltp_msg])
2617   ])
2619   case $glib_cv_ltp_version in
2620     ""|invalid[)]
2621       ltp_msg="You must have one of the following versions of LTP: $ltp_version_list (found: $ltp_version)."
2622       AC_MSG_ERROR([$ltp_msg])
2623       LTP="exit 0;"
2624       ;;
2625   esac
2627   if test -z "$LTP_GENHTML"; then
2628     AC_MSG_ERROR([Could not find genhtml from the LTP package])
2629   fi
2631   dnl Remove all optimization flags from CFLAGS
2632   changequote({,})
2633   CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9]*//g'`
2634   changequote([,])
2636   dnl Add the special gcc flags
2637   CFLAGS="$CFLAGS -O0 -fprofile-arcs -ftest-coverage"
2638   LDFLAGS="$LDFLAGS -lgcov"
2641 dnl ******************************
2642 dnl *** output the whole stuff ***
2643 dnl ******************************
2645 dnl this section will only be run if config.status is invoked with no
2646 dnl arguments, or with "glib/glibconfig.h" as an argument.
2647 AC_CONFIG_COMMANDS([glib/glibconfig.h],
2649         outfile=glib/glibconfig.h-tmp
2650         cat > $outfile <<\_______EOF
2651 /* glibconfig.h
2653  * This is a generated file.  Please modify 'configure.ac'
2654  */
2656 #ifndef __GLIBCONFIG_H__
2657 #define __GLIBCONFIG_H__
2659 #include <glib/gmacros.h>
2661 _______EOF
2663         echo '#include <limits.h>' >> $outfile
2664         echo '#include <float.h>' >> $outfile
2665         if test x$glib_values_h = xyes; then
2666           echo '#include <values.h>' >> $outfile
2667         fi
2668         if test "$glib_header_alloca_h" = "yes"; then
2669           echo '#define GLIB_HAVE_ALLOCA_H' >> $outfile
2670         fi
2671         if test x$glib_included_printf != xyes; then
2672           echo "
2673 /* Specifies that GLib's g_print*() functions wrap the
2674  * system printf functions.  This is useful to know, for example,
2675  * when using glibc's register_printf_function().
2676  */" >> $outfile
2677           echo '#define GLIB_USING_SYSTEM_PRINTF' >> $outfile
2678         fi
2680         cat >> $outfile <<_______EOF
2682 G_BEGIN_DECLS
2684 #define G_MINFLOAT      FLT_MIN
2685 #define G_MAXFLOAT      FLT_MAX
2686 #define G_MINDOUBLE     DBL_MIN
2687 #define G_MAXDOUBLE     DBL_MAX
2688 #define G_MINSHORT      SHRT_MIN
2689 #define G_MAXSHORT      SHRT_MAX
2690 #define G_MAXUSHORT     USHRT_MAX
2691 #define G_MININT        INT_MIN
2692 #define G_MAXINT        INT_MAX
2693 #define G_MAXUINT       UINT_MAX
2694 #define G_MINLONG       LONG_MIN
2695 #define G_MAXLONG       LONG_MAX
2696 #define G_MAXULONG      ULONG_MAX
2698 _______EOF
2701         ### this should always be true in a modern C/C++ compiler
2702         ### and is statically asserted by glib-init.c
2703         cat >>$outfile <<_______EOF
2704 typedef signed char gint8;
2705 typedef unsigned char guint8;
2706 _______EOF
2709         if test -n "$gint16"; then
2710           cat >>$outfile <<_______EOF
2711 typedef signed $gint16 gint16;
2712 typedef unsigned $gint16 guint16;
2713 #define G_GINT16_MODIFIER $gint16_modifier
2714 #define G_GINT16_FORMAT $gint16_format
2715 #define G_GUINT16_FORMAT $guint16_format
2716 _______EOF
2717         fi
2720         if test -n "$gint32"; then
2721           cat >>$outfile <<_______EOF
2722 typedef signed $gint32 gint32;
2723 typedef unsigned $gint32 guint32;
2724 #define G_GINT32_MODIFIER $gint32_modifier
2725 #define G_GINT32_FORMAT $gint32_format
2726 #define G_GUINT32_FORMAT $guint32_format
2727 _______EOF
2728         fi
2730         cat >>$outfile <<_______EOF
2731 #define G_HAVE_GINT64 1          /* deprecated, always true */
2733 ${glib_extension}typedef signed $gint64 gint64;
2734 ${glib_extension}typedef unsigned $gint64 guint64;
2736 #define G_GINT64_CONSTANT(val)  $gint64_constant
2737 #define G_GUINT64_CONSTANT(val) $guint64_constant
2738 _______EOF
2740         if test x$gint64_format != x ; then
2741           cat >>$outfile <<_______EOF
2742 #define G_GINT64_MODIFIER $gint64_modifier
2743 #define G_GINT64_FORMAT $gint64_format
2744 #define G_GUINT64_FORMAT $guint64_format
2745 _______EOF
2746         else
2747           cat >>$outfile <<_______EOF
2748 #undef G_GINT64_MODIFIER
2749 #undef G_GINT64_FORMAT
2750 #undef G_GUINT64_FORMAT
2751 _______EOF
2752         fi           
2754         cat >>$outfile <<_______EOF
2756 #define GLIB_SIZEOF_VOID_P $glib_void_p
2757 #define GLIB_SIZEOF_LONG   $glib_long
2758 #define GLIB_SIZEOF_SIZE_T $glib_size_t
2759 #define GLIB_SIZEOF_SSIZE_T $glib_ssize_t
2761 _______EOF
2763         cat >>$outfile <<_______EOF
2764 typedef signed $glib_ssize_type_define gssize;
2765 typedef unsigned $glib_size_type_define gsize;
2766 #define G_GSIZE_MODIFIER $gsize_modifier
2767 #define G_GSSIZE_MODIFIER $gssize_modifier
2768 #define G_GSIZE_FORMAT $gsize_format
2769 #define G_GSSIZE_FORMAT $gssize_format
2771 #define G_MAXSIZE       G_MAXU$glib_msize_type
2772 #define G_MINSSIZE      G_MIN$glib_mssize_type
2773 #define G_MAXSSIZE      G_MAX$glib_mssize_type
2775 typedef gint64 goffset;
2776 #define G_MINOFFSET     G_MININT64
2777 #define G_MAXOFFSET     G_MAXINT64
2779 #define G_GOFFSET_MODIFIER      G_GINT64_MODIFIER
2780 #define G_GOFFSET_FORMAT        G_GINT64_FORMAT
2781 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
2783 #define G_POLLFD_FORMAT $g_pollfd_format
2785 _______EOF
2787         if test -z "$glib_unknown_void_p"; then
2788           cat >>$outfile <<_______EOF
2790 #define GPOINTER_TO_INT(p)      ((gint)  ${glib_gpi_cast} (p))
2791 #define GPOINTER_TO_UINT(p)     ((guint) ${glib_gpui_cast} (p))
2793 #define GINT_TO_POINTER(i)      ((gpointer) ${glib_gpi_cast} (i))
2794 #define GUINT_TO_POINTER(u)     ((gpointer) ${glib_gpui_cast} (u))
2796 typedef signed $glib_intptr_type_define gintptr;
2797 typedef unsigned $glib_intptr_type_define guintptr;
2799 #define G_GINTPTR_MODIFIER      $gintptr_modifier
2800 #define G_GINTPTR_FORMAT        $gintptr_format
2801 #define G_GUINTPTR_FORMAT       $guintptr_format
2802 _______EOF
2803         else
2804           echo '#error SIZEOF_VOID_P unknown - This should never happen' >>$outfile
2805         fi
2809         cat >>$outfile <<_______EOF
2810 #ifndef G_DISABLE_DEPRECATED
2811 #define g_ATEXIT(proc)  (atexit (proc))
2812 #define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
2813 #endif
2814 $glib_defines
2815 $glib_os
2816 $glib_static_compilation
2818 $glib_vacopy
2820 _______EOF
2822         if test x$g_have_iso_c_varargs = xyes ; then
2823                 cat >>$outfile <<_______EOF
2824 #ifndef __cplusplus
2825 # define G_HAVE_ISO_VARARGS 1
2826 #endif
2827 _______EOF
2828         fi
2829         if test x$g_have_iso_cxx_varargs = xyes ; then
2830                 cat >>$outfile <<_______EOF
2831 #ifdef __cplusplus
2832 # define G_HAVE_ISO_VARARGS 1
2833 #endif
2834 _______EOF
2835         fi
2836         if test x$g_have_gnuc_varargs = xyes ; then
2837                 cat >>$outfile <<_______EOF
2839 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
2840  * is passed ISO vararg support is turned off, and there is no work
2841  * around to turn it on, so we unconditionally turn it off.
2842  */
2843 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
2844 #  undef G_HAVE_ISO_VARARGS
2845 #endif
2847 #define G_HAVE_GNUC_VARARGS 1
2848 _______EOF
2849         fi
2851         case x$g_stack_grows in
2852         xyes) echo "#define G_HAVE_GROWING_STACK 1" >>$outfile ;;
2853         *)    echo "#define G_HAVE_GROWING_STACK 0" >>$outfile ;;
2854         esac
2857         echo >>$outfile
2858         if test x$g_have_eilseq = xno; then
2859                 cat >>$outfile <<_______EOF
2860 #ifndef EILSEQ
2861 /* On some pre-C99 systems, EILSEQ is not defined.
2862  * The correspondence between this and the corresponding definition
2863  * in libiconv is essential.
2864  */
2865 #  define EILSEQ ENOENT
2866 #endif
2867 _______EOF
2869         fi
2871         if test x$g_have_gnuc_visibility = xyes; then
2872                 cat >>$outfile <<_______EOF
2873 #define G_HAVE_GNUC_VISIBILITY 1
2874 _______EOF
2875         fi
2876                 cat >>$outfile <<_______EOF
2877 #if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
2878 #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
2879 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
2880 #define G_GNUC_INTERNAL __hidden
2881 #elif defined (__GNUC__) && defined (G_HAVE_GNUC_VISIBILITY)
2882 #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
2883 #else
2884 #define G_GNUC_INTERNAL
2885 #endif 
2886 _______EOF
2888         echo >>$outfile
2889         cat >>$outfile <<_______EOF
2890 #define G_THREADS_ENABLED
2891 #define G_THREADS_IMPL_$g_threads_impl_def
2892 _______EOF
2894         if test x"$g_memory_barrier_needed" != xno; then
2895           echo >>$outfile
2896           echo "#define G_ATOMIC_OP_MEMORY_BARRIER_NEEDED 1" >>$outfile
2897         fi
2898         if test x"$g_atomic_lock_free" = xyes; then
2899           echo >>$outfile
2900           echo "#define G_ATOMIC_LOCK_FREE" >>$outfile
2901         fi
2902         echo >>$outfile
2903         g_bit_sizes="16 32 64"
2904         for bits in $g_bit_sizes; do
2905           cat >>$outfile <<_______EOF
2906 #define GINT${bits}_TO_${g_bs_native}(val)      ((gint${bits}) (val))
2907 #define GUINT${bits}_TO_${g_bs_native}(val)     ((guint${bits}) (val))
2908 #define GINT${bits}_TO_${g_bs_alien}(val)       ((gint${bits}) GUINT${bits}_SWAP_LE_BE (val))
2909 #define GUINT${bits}_TO_${g_bs_alien}(val)      (GUINT${bits}_SWAP_LE_BE (val))
2910 _______EOF
2911         done
2913         cat >>$outfile <<_______EOF
2914 #define GLONG_TO_LE(val)        ((glong) GINT${glongbits}_TO_LE (val))
2915 #define GULONG_TO_LE(val)       ((gulong) GUINT${glongbits}_TO_LE (val))
2916 #define GLONG_TO_BE(val)        ((glong) GINT${glongbits}_TO_BE (val))
2917 #define GULONG_TO_BE(val)       ((gulong) GUINT${glongbits}_TO_BE (val))
2918 #define GINT_TO_LE(val)         ((gint) GINT${gintbits}_TO_LE (val))
2919 #define GUINT_TO_LE(val)        ((guint) GUINT${gintbits}_TO_LE (val))
2920 #define GINT_TO_BE(val)         ((gint) GINT${gintbits}_TO_BE (val))
2921 #define GUINT_TO_BE(val)        ((guint) GUINT${gintbits}_TO_BE (val))
2922 #define GSIZE_TO_LE(val)        ((gsize) GUINT${gsizebits}_TO_LE (val))
2923 #define GSSIZE_TO_LE(val)       ((gssize) GINT${gssizebits}_TO_LE (val))
2924 #define GSIZE_TO_BE(val)        ((gsize) GUINT${gsizebits}_TO_BE (val))
2925 #define GSSIZE_TO_BE(val)       ((gssize) GINT${gssizebits}_TO_BE (val))
2926 #define G_BYTE_ORDER $g_byte_order
2928 #define GLIB_SYSDEF_POLLIN =$g_pollin
2929 #define GLIB_SYSDEF_POLLOUT =$g_pollout
2930 #define GLIB_SYSDEF_POLLPRI =$g_pollpri
2931 #define GLIB_SYSDEF_POLLHUP =$g_pollhup
2932 #define GLIB_SYSDEF_POLLERR =$g_pollerr
2933 #define GLIB_SYSDEF_POLLNVAL =$g_pollnval
2935 #define G_MODULE_SUFFIX "$g_module_suffix"
2937 typedef $g_pid_type GPid;
2938 #define G_PID_FORMAT $g_pid_format
2940 #define GLIB_SYSDEF_AF_UNIX $g_af_unix
2941 #define GLIB_SYSDEF_AF_INET $g_af_inet
2942 #define GLIB_SYSDEF_AF_INET6 $g_af_inet6
2944 #define GLIB_SYSDEF_MSG_OOB $g_msg_oob
2945 #define GLIB_SYSDEF_MSG_PEEK $g_msg_peek
2946 #define GLIB_SYSDEF_MSG_DONTROUTE $g_msg_dontroute
2948 G_END_DECLS
2950 #endif /* __GLIBCONFIG_H__ */
2951 _______EOF
2954         if cmp -s $outfile glib/glibconfig.h; then
2955           AC_MSG_NOTICE([glib/glibconfig.h is unchanged])
2956           rm -f $outfile
2957         else
2958           mv $outfile glib/glibconfig.h
2959         fi
2962 # Note that if two cases are the same, case goes with the first one.
2963 # Note also that this is inside an AC_OUTPUT_COMMAND.  We do not depend
2964 # on variable expansion in case labels.  Look at the generated config.status
2965 # for a hint.
2967 if test "x${ac_cv_working_alloca_h+set}" = xset ; then
2968   glib_header_alloca_h="$ac_cv_working_alloca_h"
2969 else
2970   glib_header_alloca_h="$ac_cv_header_alloca_h"
2973 if test x$enable_included_printf = xyes ; then
2974   glib_included_printf=yes
2977 case 2 in
2978 $ac_cv_sizeof_short)            
2979   gint16=short
2980   gint16_modifier='"h"'
2981   gint16_format='"hi"'
2982   guint16_format='"hu"'
2983   ;;
2984 $ac_cv_sizeof_int)              
2985   gint16=int
2986   gint16_modifier='""'
2987   gint16_format='"i"'
2988   guint16_format='"u"'
2989   ;;
2990 esac
2991 case 4 in
2992 $ac_cv_sizeof_short)            
2993   gint32=short
2994   gint32_modifier='"h"'
2995   gint32_format='"hi"'
2996   guint32_format='"hu"'
2997   ;;
2998 $ac_cv_sizeof_int)              
2999   gint32=int
3000   gint32_modifier='""'
3001   gint32_format='"i"'
3002   guint32_format='"u"'
3003   ;;
3004 $ac_cv_sizeof_long)             
3005   gint32=long
3006   gint32_modifier='"l"'
3007   gint32_format='"li"'
3008   guint32_format='"lu"'
3009   ;;
3010 esac
3011 case 8 in
3012 $ac_cv_sizeof_int)
3013   gint64=int
3014   gint64_modifier='""'
3015   gint64_format='"i"'
3016   guint64_format='"u"'
3017   glib_extension=
3018   gint64_constant='(val)'
3019   guint64_constant='(val)'
3020   ;;
3021 $ac_cv_sizeof_long)
3022   gint64=long
3023   gint64_modifier='"l"'
3024   gint64_format='"li"'
3025   guint64_format='"lu"'
3026   glib_extension=
3027   gint64_constant='(val##L)'
3028   guint64_constant='(val##UL)'
3029   ;;
3030 $ac_cv_sizeof_long_long)
3031   gint64='long long'
3032   if test -n "$glib_cv_long_long_format"; then
3033     gint64_modifier='"'$glib_cv_long_long_format'"'
3034     gint64_format='"'$glib_cv_long_long_format'i"'
3035     guint64_format='"'$glib_cv_long_long_format'u"'
3036   fi
3037   glib_extension='G_GNUC_EXTENSION '
3038   gint64_constant='(G_GNUC_EXTENSION (val##LL))'
3039   guint64_constant='(G_GNUC_EXTENSION (val##ULL))'
3040   ;;
3041 $ac_cv_sizeof___int64)
3042   gint64='__int64'
3043   if test -n "$glib_cv_long_long_format"; then
3044     gint64_modifier='"'$glib_cv_long_long_format'"'
3045     gint64_format='"'$glib_cv_long_long_format'i"'
3046     guint64_format='"'$glib_cv_long_long_format'u"'
3047   fi
3048   glib_extension=
3049   gint64_constant='(val##i64)'
3050   guint64_constant='(val##ui64)'
3051   ;;
3052 esac
3053 glib_size_t=$ac_cv_sizeof_size_t
3054 glib_ssize_t=$ac_cv_sizeof_ssize_t
3055 glib_size_type_define="$glib_size_type"
3056 glib_ssize_type_define="$glib_ssize_type"
3057 glib_void_p=$ac_cv_sizeof_void_p
3058 glib_long=$ac_cv_sizeof_long
3060 case "$glib_size_type" in
3061 short)
3062   gsize_modifier='"h"'
3063   gsize_format='"hu"'
3064   glib_msize_type='SHRT'
3065   ;;
3066 int)
3067   gsize_modifier='""'
3068   gsize_format='"u"'
3069   glib_msize_type='INT'
3070   ;;
3071 long)
3072   gsize_modifier='"l"'
3073   gsize_format='"lu"'
3074   glib_msize_type='LONG'
3075   ;;
3076 "long long"|__int64)
3077   gsize_modifier='"I64"'
3078   gsize_format='"I64u"'
3079   glib_msize_type='INT64'
3080   ;;
3081 esac
3083 case "$glib_ssize_type" in
3084 short)
3085   gssize_modifier='"h"'
3086   gssize_format='"hi"'
3087   glib_mssize_type='SHRT'
3088   ;;
3089 int)
3090   gssize_modifier='""'
3091   gssize_format='"i"'
3092   glib_mssize_type='INT'
3093   ;;
3094 long)
3095   gssize_modifier='"l"'
3096   gssize_format='"li"'
3097   glib_mssize_type='LONG'
3098   ;;
3099 "long long"|__int64)
3100   gssize_modifier='"I64"'
3101   gssize_format='"I64i"'
3102   glib_mssize_type='INT64'
3103   ;;
3104 esac
3106 gintbits=`expr $ac_cv_sizeof_int \* 8`
3107 glongbits=`expr $ac_cv_sizeof_long \* 8`
3108 gsizebits=`expr $ac_cv_sizeof_size_t \* 8`
3109 gssizebits=`expr $ac_cv_sizeof_ssize_t \* 8`
3111 case $ac_cv_sizeof_void_p in
3112 $ac_cv_sizeof_int)
3113   glib_intptr_type_define=int
3114   gintptr_modifier='""'
3115   gintptr_format='"i"'
3116   guintptr_format='"u"'
3117   glib_gpi_cast='(gint)'
3118   glib_gpui_cast='(guint)'
3119   ;;
3120 $ac_cv_sizeof_long)
3121   glib_intptr_type_define=long
3122   gintptr_modifier='"l"'
3123   gintptr_format='"li"'
3124   guintptr_format='"lu"'
3125   glib_gpi_cast='(glong)'
3126   glib_gpui_cast='(gulong)'
3127   ;;
3128 $ac_cv_sizeof_long_long)
3129   glib_intptr_type_define='long long'
3130   gintptr_modifier='"I64"'
3131   gintptr_format='"I64i"'
3132   guintptr_format='"I64u"'
3133   glib_gpi_cast='(gint64)'
3134   glib_gpui_cast='(guint64)'
3135   ;;
3136 $ac_cv_sizeof___int64)
3137   glib_intptr_type_define=__int64
3138   gintptr_modifier='"I64"'
3139   gintptr_format='"I64i"'
3140   guintptr_format='"I64u"'
3141   glib_gpi_cast='(gint64)'
3142   glib_gpui_cast='(guint64)'
3143   ;;
3145   glib_unknown_void_p=yes
3146   ;;
3147 esac
3150 glib_defines="
3151 #define GLIB_MAJOR_VERSION $GLIB_MAJOR_VERSION
3152 #define GLIB_MINOR_VERSION $GLIB_MINOR_VERSION
3153 #define GLIB_MICRO_VERSION $GLIB_MICRO_VERSION
3156 case xyes in
3157 x$glib_cv_va_copy)      glib_vacopy='#define G_VA_COPY  va_copy' ;;
3158 x$glib_cv___va_copy)    glib_vacopy='#define G_VA_COPY  __va_copy' ;;
3159 *)                      glib_vacopy=''
3160 esac
3162 if test x$glib_cv_va_val_copy = xno; then
3163   glib_vacopy="\$glib_vacopy
3164 #define G_VA_COPY_AS_ARRAY 1"
3167 g_have_gnuc_varargs=$g_have_gnuc_varargs
3168 g_have_iso_c_varargs=$g_have_iso_c_varargs
3169 g_have_iso_cxx_varargs=$g_have_iso_cxx_varargs
3171 g_have_gnuc_visibility=$g_have_gnuc_visibility
3172 g_have_sunstudio_visibility=$g_have_sunstudio_visibility
3174 if test x$ac_cv_c_bigendian = xyes; then
3175   g_byte_order=G_BIG_ENDIAN
3176   g_bs_native=BE
3177   g_bs_alien=LE
3178 else
3179   g_byte_order=G_LITTLE_ENDIAN
3180   g_bs_native=LE
3181   g_bs_alien=BE
3184 g_pollin=$glib_cv_value_POLLIN
3185 g_pollout=$glib_cv_value_POLLOUT
3186 g_pollpri=$glib_cv_value_POLLPRI
3187 g_pollhup=$glib_cv_value_POLLHUP
3188 g_pollerr=$glib_cv_value_POLLERR
3189 g_pollnval=$glib_cv_value_POLLNVAL
3191 # If a family is not found on the system, define that family to
3192 # a negative value, picking a different one for each undefined
3193 # family (-1 for AF_UNIX, -2 for the next one, -3 ...)
3194 # This is needed because glib-mkenums doesn't handle optional
3195 # values in enums, and thus we have to have all existing values
3196 # defined in the enum.
3197 if test "x$glib_cv_value_AF_UNIX" != "x"; then
3198   g_af_unix=$glib_cv_value_AF_UNIX
3199 else
3200   g_af_unix=-1
3202 g_af_inet=$glib_cv_value_AF_INET
3203 g_af_inet6=$glib_cv_value_AF_INET6
3205 g_msg_peek=$glib_cv_value_MSG_PEEK
3206 g_msg_oob=$glib_cv_value_MSG_OOB
3207 g_msg_dontroute=$glib_cv_value_MSG_DONTROUTE
3209 g_stack_grows=$glib_cv_stack_grows
3211 g_have_eilseq=$have_eilseq
3213 g_threads_impl_def=$g_threads_impl
3215 g_atomic_lock_free="$glib_cv_g_atomic_lock_free"
3216 g_memory_barrier_needed="$glib_memory_barrier_needed"
3217 g_gcc_atomic_ops="$glib_cv_gcc_has_builtin_atomic_operations"
3219 g_module_suffix="$glib_gmodule_suffix"
3220 g_pid_type="$glib_pid_type"
3221 g_pid_format="\"$glib_pid_format\""
3222 g_pollfd_format="\"$glib_pollfd_format\""
3224 case $host in
3225   *-*-cygwin*)
3226     glib_os="#define G_OS_UNIX
3227 #define G_PLATFORM_WIN32
3228 #define G_WITH_CYGWIN"
3229     ;;
3230   *-*-mingw*)
3231     glib_os="#define G_OS_WIN32
3232 #define G_PLATFORM_WIN32"
3233     ;;
3234   *)
3235     glib_os="#define G_OS_UNIX"
3236     ;;
3237 esac
3238 glib_static_compilation=""
3239 if test x$glib_win32_static_compilation = xyes; then
3240   glib_static_compilation="#define GLIB_STATIC_COMPILATION 1
3241 #define GOBJECT_STATIC_COMPILATION 1"
3245 # Redo enough to get guint32 and guint64 for the alignment checks below
3246 case 4 in
3247 $ac_cv_sizeof_short)
3248   gint32=short
3249   ;;
3250 $ac_cv_sizeof_int)
3251   gint32=int
3252   ;;
3253 $ac_cv_sizeof_long)
3254   gint32=long
3255   ;;
3256 esac
3257 case 8 in
3258 $ac_cv_sizeof_int)
3259   gint64=int
3260   ;;
3261 $ac_cv_sizeof_long)
3262   gint64=long
3263   ;;
3264 $ac_cv_sizeof_long_long)
3265   gint64='long long'
3266   ;;
3267 $ac_cv_sizeof___int64)
3268   gint64='__int64'
3269   ;;
3270 esac
3272 AC_CHECK_TYPE([guint32],,,[typedef unsigned $gint32 guint32;])
3273 AC_CHECK_ALIGNOF([guint32], [AC_INCLUDES_DEFAULT
3274 typedef unsigned $gint32 guint32;])
3275 AC_CHECK_TYPE([guint64],,,[typedef unsigned $gint64 guint64;])
3276 AC_CHECK_ALIGNOF([guint64], [AC_INCLUDES_DEFAULT
3277 typedef unsigned $gint64 guint64;])
3278 AC_CHECK_TYPE([unsigned long])
3279 AC_CHECK_ALIGNOF([unsigned long])
3281 # Check for libdbus1 - Optional - is only used in the GDBus test cases
3283 # 1.2.14 required for dbus_message_set_serial
3284 PKG_CHECK_MODULES(DBUS1,
3285      dbus-1 >= 1.2.14,
3286      [AC_DEFINE(HAVE_DBUS1, 1, [Define if dbus-1 is available]) have_dbus1=yes],
3287      have_dbus1=no)
3288 AC_SUBST(DBUS1_CFLAGS)
3289 AC_SUBST(DBUS1_LIBS)
3290 AM_CONDITIONAL(HAVE_DBUS1, [test "x$have_dbus1" = "xyes"])
3292 AC_CHECK_PROGS([DBUS_DAEMON], [dbus-daemon])
3293 AM_CONDITIONAL([HAVE_DBUS_DAEMON], [test x$DBUS_DAEMON = xdbus-daemon ])
3295 # Check whether MSVC toolset is explicitly set
3296 AM_CONDITIONAL(MSVC_BASE_NO_TOOLSET_SET, [test x$MSVC_BASE_TOOLSET = x])
3297 AM_CONDITIONAL(MSVC_NO_TOOLSET_SET, [test x$MSVC_TOOLSET = x])
3300 dnl Check for -Bsymbolic-functions linker flag used to avoid
3301 dnl intra-library PLT jumps, if available.
3304 AC_ARG_ENABLE(Bsymbolic,
3305               [AS_HELP_STRING([--disable-Bsymbolic],
3306                               [avoid linking with -Bsymbolic])],,
3307               [SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
3308                AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
3309                LDFLAGS=-Wl,-Bsymbolic-functions
3310                LIBS=
3311                AC_TRY_LINK([], [return 0],
3312                            AC_MSG_RESULT(yes)
3313                            enable_Bsymbolic=yes,
3314                            AC_MSG_RESULT(no)
3315                            enable_Bsymbolic=no)
3316                LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
3318 if test "x${enable_Bsymbolic}" = "xyes"; then
3319   GLIB_LINK_FLAGS=-Wl,-Bsymbolic-functions
3323 dnl Check for -z,nodelete linker flag: the type system assumes that
3324 dnl libgobject stays loaded for the lifetime of the process.
3325 dnl Since ld.bfd does not treat wrong -z options as fatal by default,
3326 dnl we also try to check for the --fatal-warnings linker flag if
3327 dnl auto-detecting.
3330 AC_ARG_ENABLE([znodelete],
3331               [AS_HELP_STRING([--disable-znodelete],
3332                               [avoid linking with -z,nodelete])],,
3333               [SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
3334                AC_MSG_CHECKING([for --fatal-warnings linker flag])
3335                LDFLAGS=-Wl,--fatal-warnings
3336                LIBS=
3337                AC_TRY_LINK([], [return 0],
3338                            AC_MSG_RESULT(yes)
3339                            [ldflags_fatal=-Wl,--fatal-warnings],
3340                            AC_MSG_RESULT(no)
3341                            ldflags_fatal=)
3342                AC_MSG_CHECKING([for -z,nodelete linker flag])
3343                LDFLAGS="$ldflags_fatal -Wl,-z,nodelete"
3344                AC_TRY_LINK([], [return 0],
3345                            AC_MSG_RESULT(yes)
3346                            enable_znodelete=yes,
3347                            AC_MSG_RESULT(no)
3348                            enable_znodelete=no)
3349                LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
3351 if test "x${enable_znodelete}" = "xyes"; then
3352   GLIB_LINK_FLAGS="$GLIB_LINK_FLAGS -Wl,-z,nodelete"
3355 AC_SUBST(GLIB_LINK_FLAGS)
3358 dnl Check for -fvisibility=hidden to determine if we can do GNU-style
3359 dnl visibility attributes for symbol export control
3361 GLIB_HIDDEN_VISIBILITY_CFLAGS=""
3362 case "$host" in
3363   *-*-mingw*)
3364     dnl on mingw32 we do -fvisibility=hidden and __declspec(dllexport)
3365     AC_DEFINE([_GLIB_EXTERN], [__attribute__((visibility("default"))) __declspec(dllexport) extern],
3366               [defines how to decorate public symbols while building])
3367     CFLAGS="${CFLAGS} -fvisibility=hidden"
3368     ;;
3369   *)
3370     dnl on other compilers, check if we can do -fvisibility=hidden
3371     SAVED_CFLAGS="${CFLAGS}"
3372     CFLAGS="-fvisibility=hidden"
3373     AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
3374     AC_TRY_COMPILE([], [return 0],
3375                    AC_MSG_RESULT(yes)
3376                    enable_fvisibility_hidden=yes,
3377                    AC_MSG_RESULT(no)
3378                    enable_fvisibility_hidden=no)
3379     CFLAGS="${SAVED_CFLAGS}"
3381     AS_IF([test "${enable_fvisibility_hidden}" = "yes"], [
3382       AC_DEFINE([_GLIB_EXTERN], [__attribute__((visibility("default"))) extern],
3383                 [defines how to decorate public symbols while building])
3384       GLIB_HIDDEN_VISIBILITY_CFLAGS="-fvisibility=hidden"
3385     ])
3386     ;;
3387 esac
3388 AC_SUBST(GLIB_HIDDEN_VISIBILITY_CFLAGS)
3390 dnl Compiler flags; macro originates from systemd
3391 dnl See https://bugzilla.gnome.org/show_bug.cgi?id=608953
3392 AC_ARG_ENABLE(compile-warnings,
3393               [AS_HELP_STRING([--disable-compile-warnings],
3394                               [Don't use builtin compiler warnings])],,
3395                               enable_compile_warnings=yes)
3396 AS_IF([test "x$enable_compile_warnings" != xno], [
3397   CC_CHECK_FLAGS_APPEND([GLIB_WARN_CFLAGS], [CFLAGS], [\
3398    -Wall -Wstrict-prototypes -Werror=declaration-after-statement \
3399    -Werror=missing-prototypes -Werror=implicit-function-declaration \
3400    -Werror=pointer-arith -Werror=init-self -Werror=format-security \
3401    -Werror=format=2 -Werror=missing-include-dirs])
3403 AC_SUBST(GLIB_WARN_CFLAGS)
3406 # Define variables corresponding to the correct include paths to use for
3407 # in-tree building.
3410 # for config.h:
3411 config_h_INCLUDES='-I$(top_builddir)'
3412 AC_SUBST(config_h_INCLUDES)
3414 # glib:
3415 #   config.h
3416 #   $(top_builddir)/glib: for glibconfig.h
3417 #   $(top_srcdir)/glib:   for glib.h
3418 #   $(top_srcdir):        for everything
3419 glib_INCLUDES='$(config_h_INCLUDES) -I$(top_builddir)/glib -I$(top_srcdir)/glib -I$(top_srcdir)'
3420 AC_SUBST(glib_INCLUDES)
3422 # gobject:
3423 #   same as glib
3424 gobject_INCLUDES='$(glib_INCLUDES)'
3425 AC_SUBST(gobject_INCLUDES)
3427 # gmodule:
3428 #   glib includes
3429 #   $(top_srcdir)/gmodule: for gmodule.h
3430 gmodule_INCLUDES='$(glib_INCLUDES) -I$(top_srcdir)/gmodule'
3431 AC_SUBST(gmodule_INCLUDES)
3433 # gio:
3434 #   same as gmodule
3435 gio_INCLUDES='$(gmodule_INCLUDES)'
3436 AC_SUBST(gio_INCLUDES)
3439 AC_CONFIG_FILES([
3440 glib-2.0.pc
3441 gmodule-2.0.pc
3442 gmodule-export-2.0.pc
3443 gmodule-no-export-2.0.pc
3444 gthread-2.0.pc
3445 gobject-2.0.pc
3446 gio-2.0.pc
3447 gio-unix-2.0.pc
3448 gio-windows-2.0.pc
3449 glib-zip
3450 glib-gettextize
3451 Makefile
3452 build/Makefile
3453 build/win32/Makefile
3454 build/win32/dirent/Makefile
3455 win32/Makefile
3456 win32/vs9/Makefile
3457 win32/vs9/glib-version-paths.vsprops
3458 win32/vs10/Makefile
3459 win32/vs10/glib-version-paths.props
3460 win32/vs11/Makefile
3461 win32/vs12/Makefile
3462 win32/vs14/Makefile
3463 win32/vs15/Makefile
3464 glib/Makefile
3465 glib/libcharset/Makefile
3466 glib/gnulib/Makefile
3467 glib/pcre/Makefile
3468 glib/update-pcre/Makefile
3469 glib/tests/Makefile
3470 gmodule/Makefile
3471 gmodule/gmoduleconf.h
3472 gobject/Makefile
3473 gobject/glib-genmarshal
3474 gobject/glib-mkenums
3475 gobject/tests/Makefile
3476 gthread/Makefile
3477 gio/Makefile
3478 gio/gdbus-2.0/codegen/Makefile
3479 gio/gdbus-2.0/codegen/config.py
3480 gio/gnetworking.h
3481 gio/xdgmime/Makefile
3482 gio/inotify/Makefile
3483 gio/kqueue/Makefile
3484 gio/fam/Makefile
3485 gio/win32/Makefile
3486 gio/tests/Makefile
3487 gio/tests/gdbus-object-manager-example/Makefile
3488 gio/tests/services/Makefile
3489 gio/tests/services/org.gtk.GDBus.Examples.ObjectManager.service
3490 gio/tests/modules/Makefile
3491 po/Makefile.in
3492 docs/Makefile
3493 docs/reference/Makefile
3494 docs/reference/glib/Makefile
3495 docs/reference/glib/version.xml
3496 docs/reference/gobject/Makefile
3497 docs/reference/gobject/version.xml
3498 docs/reference/gio/Makefile
3499 docs/reference/gio/version.xml
3500 tests/Makefile
3501 tests/gobject/Makefile
3502 tests/refcount/Makefile
3503 m4macros/Makefile
3506 AC_CONFIG_COMMANDS([chmod-scripts],
3507 [chmod 0755 glib-zip
3508 chmod 0755 glib-gettextize
3509 chmod 0755 gobject/glib-genmarshal
3510 chmod 0755 gobject/glib-mkenums])
3512 # we want to invoke this macro solely so that the config.status script
3513 # and automake generated makefiles know about these generated files.
3514 # They are only needed to distcheck the package
3515 if false; then
3516   AC_CONFIG_FILES([
3517     INSTALL
3518     README
3519     config.h.win32
3520     glib/glibconfig.h.win32
3521     glib/glib.rc
3522     gmodule/gmodule.rc
3523     gobject/gobject.rc
3524     gthread/gthread.rc
3525     gio/gio.rc
3526   ])
3529 AC_OUTPUT