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