]> Pileus Git - ~andy/gtk/blob - configure.ac
introspection: Only use 0.9.3 API
[~andy/gtk] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 # require autoconf 2.54
3 AC_PREREQ([2.62])
4
5 # Making releases:
6 #   GTK_MICRO_VERSION += 1;
7 #   GTK_INTERFACE_AGE += 1;
8 #   GTK_BINARY_AGE += 1;
9 # if any functions have been added, set GTK_INTERFACE_AGE to 0.
10 # if backwards compatibility has been broken,
11 # set GTK_BINARY_AGE and GTK_INTERFACE_AGE to 0.
12
13 m4_define([gtk_major_version], [2])
14 m4_define([gtk_minor_version], [90])
15 m4_define([gtk_micro_version], [8])
16 m4_define([gtk_interface_age], [0])
17 m4_define([gtk_binary_age],
18           [m4_eval(100 * gtk_minor_version + gtk_micro_version)])
19 m4_define([gtk_version],
20           [gtk_major_version.gtk_minor_version.gtk_micro_version])
21 # This is the X.Y used in -lgtk-FOO-X.Y
22 m4_define([gtk_api_version], [3.0])
23
24 # Define a string for the earliest version that this release has
25 # backwards binary compatibility with for all interfaces a module
26 # might. Unless we add module-only API with lower stability
27 # guarantees, this should be unchanged until we break binary compat
28 # for GTK+.
29 #
30 #GTK_BINARY_VERSION=$GTK_MAJOR_VERSION.$GTK_MINOR_VERSION.$LT_CURRENT
31 m4_define([gtk_binary_version], [3.0.0])
32
33 # required versions of other packages
34 m4_define([glib_required_version], [2.25.15])
35 m4_define([pango_required_version], [1.20])
36 m4_define([atk_required_version], [1.29.2])
37 m4_define([cairo_required_version], [1.9.10])
38 m4_define([gdk_pixbuf_required_version], [2.21.0])
39
40
41 AC_INIT([gtk+], [gtk_version],
42         [http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B],
43         [gtk+])
44
45 AC_CONFIG_HEADER([config.h])
46 AC_CONFIG_SRCDIR([gdk/gdktypes.h])
47 AC_CONFIG_MACRO_DIR([m4])
48
49 # Save this value here, since automake will set cflags later
50 cflags_set=${CFLAGS+set}
51
52 AM_INIT_AUTOMAKE([1.10 no-define -Wno-portability dist-bzip2])
53 AM_MAINTAINER_MODE([enable])
54
55 # Support silent build rules, requires at least automake-1.11. Enable
56 # by either passing --enable-silent-rules to configure or passing V=0
57 # to make
58 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])])
59
60 #
61 # For each of the libraries we build, we define the following
62 # substituted variables:
63 #
64 # foo_PACKAGES:     pkg-config packages this library requires
65 # foo_EXTRA_LIBS:   Libraries this module requires not pulled in by pkg-config
66 # foo_EXTRA_CFLAGS: cflags this module requires not pulled in by pkg-config
67 # foo_DEP_LIBS:     All libraries this module requires
68 # foo_DEP_CFLAGS:   All cflags this module requires
69
70
71 GTK_MAJOR_VERSION=gtk_major_version
72 GTK_MINOR_VERSION=gtk_minor_version
73 GTK_MICRO_VERSION=gtk_micro_version
74 GTK_INTERFACE_AGE=gtk_interface_age
75 GTK_BINARY_AGE=gtk_binary_age
76 GTK_VERSION=gtk_version
77 GTK_API_VERSION=gtk_api_version
78 GTK_BINARY_VERSION=gtk_binary_version
79 AC_SUBST(GTK_MAJOR_VERSION)
80 AC_SUBST(GTK_MINOR_VERSION)
81 AC_SUBST(GTK_MICRO_VERSION)
82 AC_SUBST(GTK_INTERFACE_AGE)
83 AC_SUBST(GTK_BINARY_AGE)
84 AC_SUBST(GTK_API_VERSION)
85 AC_SUBST(GTK_VERSION)
86 AC_SUBST(GTK_BINARY_VERSION)
87
88 # libtool versioning
89 #LT_RELEASE=$GTK_MAJOR_VERSION.$GTK_MINOR_VERSION
90 #LT_CURRENT=`expr $GTK_MICRO_VERSION - $GTK_INTERFACE_AGE`
91 #LT_REVISION=$GTK_INTERFACE_AGE
92 #LT_AGE=`expr $GTK_BINARY_AGE - $GTK_INTERFACE_AGE`
93 #LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
94
95 m4_define([lt_current], [m4_eval(100 * gtk_minor_version + gtk_micro_version - gtk_interface_age)])
96 m4_define([lt_revision], [gtk_interface_age])
97 m4_define([lt_age], [m4_eval(gtk_binary_age - gtk_interface_age)])
98 LT_VERSION_INFO="lt_current:lt_revision:lt_age"
99 LT_CURRENT_MINUS_AGE=m4_eval(lt_current - lt_age)
100 AC_SUBST(LT_VERSION_INFO)
101 AC_SUBST(LT_CURRENT_MINUS_AGE)
102
103 m4_define([gail_lt_current],[0])
104 m4_define([gail_lt_revision],[0])
105 m4_define([gail_lt_age],[0])
106 m4_define([gail_lt_version_info],[gail_lt_current:gail_lt_revision:gail_lt_age])
107 m4_define([gail_lt_current_minus_age],[m4_eval(gail_lt_current - gail_lt_age)])
108 AC_SUBST([GAIL_LT_VERSION_INFO],[gail_lt_version_info])
109 AC_SUBST([GAIL_LT_CURRENT_MINUS_AGE],[gail_lt_current_minus_age])
110
111 # Checks for programs.
112 AC_PROG_CC
113 AC_PROG_CC_C_O
114 AC_PROG_CC_STDC
115 AC_PROG_INSTALL
116 AC_PROG_MAKE_SET
117
118
119 GETTEXT_PACKAGE=gtk30
120 AC_SUBST(GETTEXT_PACKAGE)
121 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
122                    [The prefix for our gettext translation domains.])
123
124 AC_CANONICAL_HOST
125
126 MATH_LIB=-lm
127 AC_MSG_CHECKING([for native Win32])
128 LIB_EXE_MACHINE_FLAG=X86
129 EXE_MANIFEST_ARCHITECTURE=X86
130 case "$host" in
131   *-*-mingw*)
132     os_win32=yes
133     gio_can_sniff=no
134     MATH_LIB=
135     case "$host" in
136     x86_64-*-*)
137       LIB_EXE_MACHINE_FLAG=X64
138       EXE_MANIFEST_ARCHITECTURE=AMD64
139       ;;
140     esac
141     ;;
142   *)
143     os_win32=no
144     ;;
145 esac
146 AC_MSG_RESULT([$os_win32])
147
148 AC_SUBST(LIB_EXE_MACHINE_FLAG)
149 AC_SUBST(EXE_MANIFEST_ARCHITECTURE)
150
151 case $host in
152   *-*-linux*)
153     os_linux=yes
154     ;;
155 esac
156
157 dnl
158 dnl Check for a working C++ compiler, but do not bail out, if none is found.
159 dnl We use this for an automated test for C++ header correctness.
160 dnl
161 AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc)
162 AC_LANG_PUSH([C++])
163
164 AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)
165 AM_CONDITIONAL(HAVE_CXX, test "$CXX" != "")
166
167 gtk_save_cxxflags="$CXXFLAGS"
168 CXXFLAGS="$CXXFLAGS -x objective-c++"
169 AC_TRY_COMPILE([@interface Foo @end],,OBJC=yes,OBJC=no)
170 AM_CONDITIONAL(HAVE_OBJC, test "$OBJC" = "yes")
171 CXXFLAGS="$gtk_save_cxxflags"
172 AC_LANG_POP([C++])
173
174 if test "$os_win32" = "yes"; then
175   if test x$enable_static = xyes -o x$enable_static = x; then
176     AC_MSG_WARN([Disabling static library build, must build as DLL on Windows.])
177     enable_static=no
178   fi
179   if test x$enable_shared = xno; then
180     AC_MSG_WARN([Enabling shared library build, must build as DLL on Windows.])
181   fi
182   enable_shared=yes
183 fi
184
185 dnl Initialize libtool
186 LT_PREREQ([2.2.6])
187 LT_INIT([disable-static win32-dll])
188 # Create libtool early, because it's used in configure
189 LT_OUTPUT
190
191 # Make sure we use 64-bit versions of various file stuff.
192 AC_SYS_LARGEFILE
193
194 AM_PROG_AS
195 AC_PATH_PROG(NM, nm, nm)
196
197 AC_MSG_CHECKING([for some Win32 platform])
198 case "$host" in
199   *-*-mingw*|*-*-cygwin*)
200     platform_win32=yes
201     ;;
202   *)
203     platform_win32=no
204     ;;
205 esac
206 AC_MSG_RESULT([$platform_win32])
207 AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
208
209 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
210 AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes")
211 AM_CONDITIONAL(OS_LINUX, test "$os_linux" = "yes")
212
213 if test "$os_win32" = "yes"; then
214   AC_CHECK_TOOL(WINDRES, windres, no)
215   if test "$WINDRES" = no; then
216     AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.])
217   fi
218   AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
219 fi
220 AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
221
222 m4_define([debug_default],
223           m4_if(m4_eval(gtk_minor_version % 2), [1], [yes], [minimum]))
224
225 dnl declare --enable-* args and collect ac_help strings
226 AC_ARG_ENABLE(debug,
227               AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
228                              [turn on debugging @<:@default=debug_default@:>@]),,
229               enable_debug=debug_default)
230 AC_ARG_ENABLE(shm,
231               [AC_HELP_STRING([--enable-shm],
232                               [support shared memory if available [default=yes]])],,
233               [enable_shm="yes"])
234 AC_ARG_ENABLE(xkb,
235               [AC_HELP_STRING([--enable-xkb],
236                               [support XKB [default=maybe]])],,
237               [enable_xkb="maybe"])
238 AC_ARG_ENABLE(xinerama,
239               [AC_HELP_STRING([--enable-xinerama],
240                               [support xinerama extension if available [default=yes]])],,
241               [enable_xinerama="yes"])
242 AC_ARG_ENABLE(rebuilds,
243               [AC_HELP_STRING([--disable-rebuilds],
244                               [disable all source autogeneration rules])],,
245               [enable_rebuilds=yes])
246
247 AC_ARG_WITH(xinput,
248             [AC_HELP_STRING([--with-xinput=@<:@no/yes@:>@], [support XInput])])
249
250 if test "$platform_win32" = yes; then
251   gdktarget=win32
252 else
253   gdktarget=x11
254 fi
255
256 AC_ARG_WITH(gdktarget, [  --with-gdktarget=[[x11/win32/quartz]] select non-default GDK target],
257         gdktarget=$with_gdktarget)
258
259 AC_SUBST(gdktarget)
260 case $gdktarget in
261   x11|win32|quartz) ;;
262   *) AC_MSG_ERROR([Invalid target for GDK: use x11, quartz or win32.]);;
263 esac
264
265 gdktargetlib=libgdk-$gdktarget-$GTK_API_VERSION.la
266 gtktargetlib=libgtk-$gdktarget-$GTK_API_VERSION.la
267
268 AC_SUBST(gdktargetlib)
269 AC_SUBST(gtktargetlib)
270
271 if test "x$enable_debug" = "xyes"; then
272   test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
273   GTK_DEBUG_FLAGS="-DG_ENABLE_DEBUG -DG_ERRORCHECK_MUTEXES"
274 else
275   if test "x$enable_debug" = "xno"; then
276     GTK_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS"
277   else
278     GTK_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS"
279   fi
280 fi
281
282
283 AC_DEFINE_UNQUOTED(GTK_COMPILED_WITH_DEBUGGING, "${enable_debug}",
284                    [Define if debugging is enabled])
285
286
287 # Build time sanity check...
288 AM_SANITY_CHECK
289
290 changequote(,)dnl
291 if test "x$GCC" = "xyes"; then
292   case " $CFLAGS " in
293   *[\ \ ]-Wall[\ \      ]*) ;;
294   *) CFLAGS="$CFLAGS -Wall" ;;
295   esac
296
297   if test "x$enable_ansi" = "xyes"; then
298     case " $CFLAGS " in
299     *[\ \       ]-ansi[\ \      ]*) ;;
300     *) CFLAGS="$CFLAGS -ansi" ;;
301     esac
302
303     case " $CFLAGS " in
304     *[\ \       ]-pedantic[\ \  ]*) ;;
305     *) CFLAGS="$CFLAGS -pedantic" ;;
306     esac
307   fi
308 fi
309 changequote([,])dnl
310
311 CPPFLAGS="$CPPFLAGS -DG_DISABLE_SINGLE_INCLUDES -DATK_DISABLE_SINGLE_INCLUDES"
312
313 # Ensure MSVC-compatible struct packing convention is used when
314 # compiling for Win32 with gcc.
315 # What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while
316 # gcc2 uses "-fnative-struct".
317 if test x"$os_win32" = xyes; then
318   if test x"$GCC" = xyes; then
319     msnative_struct=''
320     AC_MSG_CHECKING([how to get MSVC-compatible struct packing])
321     if test -z "$ac_cv_prog_CC"; then
322       our_gcc="$CC"
323     else
324       our_gcc="$ac_cv_prog_CC"
325     fi
326     case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in
327       2.)
328         if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then
329           msnative_struct='-fnative-struct'
330         fi
331         ;;
332       *)
333         if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then
334           msnative_struct='-mms-bitfields'
335         fi
336         ;;
337     esac
338     if test x"$msnative_struct" = x ; then
339       AC_MSG_RESULT([no way])
340       AC_MSG_WARN([produced libraries might be incompatible with MSVC-compiled code])
341     else
342       CFLAGS="$CFLAGS $msnative_struct"
343       AC_MSG_RESULT([${msnative_struct}])
344     fi
345   fi
346 fi
347
348 ## Initial sanity check, done here so that users get told they
349 ## have the wrong dependencies as early in the process as possible.
350 ## Later on we actually use the cflags/libs from separate pkg-config
351 ## calls. Oh, also the later pkg-config calls don't include
352 ## the version requirements since those make the module lists
353 ## annoying to construct
354 PKG_CHECK_MODULES(BASE_DEPENDENCIES,
355   [glib-2.0 >= glib_required_version dnl
356    atk >= atk_required_version dnl
357    pango >= pango_required_version dnl
358    cairo >= cairo_required_version dnl
359    gdk-pixbuf-2.0 >= gdk_pixbuf_required_version])
360
361 ## In addition to checking that cairo is present, we also need to
362 ## check that the correct cairo backend is there. E.g. if the GDK
363 ## target is win32 we need the cairo-win32 backend and so on.
364 cairo_backend=$gdktarget
365
366 # GDK calls the xlib backend "x11," cairo calls it "xlib." Other
367 # backend names are identical.
368 if test "x$cairo_backend" = "xx11"; then
369    cairo_backend=xlib
370 fi
371 PKG_CHECK_MODULES(CAIRO_BACKEND,
372   [cairo-$cairo_backend >= cairo_required_version])
373
374 if test "$os_win32" != yes; then
375     # libtool option to control which symbols are exported
376     # right now, symbols starting with _ are not exported
377     LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[[^_]].*"'
378 else
379     # We currently use .def files on Windows (for gdk and gtk)
380     LIBTOOL_EXPORT_OPTIONS=
381 fi
382 AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
383
384 dnl ******************************************************
385 dnl * See whether to include shared library dependencies *
386 dnl ******************************************************
387
388 AC_ARG_ENABLE(explicit-deps,
389               [AC_HELP_STRING([--enable-explicit-deps=@<:@yes/no/auto@:>@],
390                               [use explicit dependencies in .pc files [default=auto]])],,
391               [enable_explicit_deps=auto])
392
393 AC_MSG_CHECKING([Whether to write dependencies into .pc files])
394 case $enable_explicit_deps in
395   auto)
396     export SED
397     deplibs_check_method=`(./libtool --config; echo 'eval echo \"$deplibs_check_method\"') | sh`
398     if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then
399       enable_explicit_deps=yes
400     else
401       enable_explicit_deps=no
402     fi
403   ;;
404   yes|no)
405   ;;
406   *) AC_MSG_ERROR([Value given to --enable-explicit-deps must be one of yes, no or auto])
407   ;;
408 esac
409 AC_MSG_RESULT($enable_explicit_deps)
410
411 AM_CONDITIONAL(DISABLE_EXPLICIT_DEPS, test $enable_explicit_deps = no)
412
413 # define a MAINT-like variable REBUILD which is set if Perl
414 # and awk are found, so autogenerated sources can be rebuilt
415
416 AC_PATH_PROGS(PERL, perl5 perl)
417
418 # We would like indent, but don't require it.
419 AC_CHECK_PROG(INDENT, indent, indent)
420
421 REBUILD=\#
422 if test "x$enable_rebuilds" = "xyes" && \
423      test -n "$PERL" && \
424      $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 ; then
425   REBUILD=
426 fi
427 AC_SUBST(REBUILD)
428
429 AC_CHECK_FUNCS(lstat mkstemp flockfile getc_unlocked)
430 AC_CHECK_FUNCS(localtime_r)
431
432 # _NL_TIME_FIRST_WEEKDAY is an enum and not a define
433 AC_MSG_CHECKING([for _NL_TIME_FIRST_WEEKDAY])
434 AC_TRY_LINK([#include <langinfo.h>], [
435 char c;
436 c = *((unsigned char *)  nl_langinfo(_NL_TIME_FIRST_WEEKDAY));
437 ], gtk_ok=yes, gtk_ok=no)
438 AC_MSG_RESULT($gtk_ok)
439 if test "$gtk_ok" = "yes"; then
440   AC_DEFINE([HAVE__NL_TIME_FIRST_WEEKDAY], [1],
441             [Define if _NL_TIME_FIRST_WEEKDAY is available])
442 fi
443
444 # _NL_MEASUREMENT_MEASUREMENT is an enum and not a define
445 AC_MSG_CHECKING([for _NL_MEASUREMENT_MEASUREMENT])
446 AC_TRY_LINK([#include <langinfo.h>], [
447 char c;
448 c = *((unsigned char *)  nl_langinfo(_NL_MEASUREMENT_MEASUREMENT));
449 ], gtk_ok=yes, gtk_ok=no)
450 AC_MSG_RESULT($gtk_ok)
451 if test "$gtk_ok" = "yes"; then
452   AC_DEFINE([HAVE__NL_MEASUREMENT_MEASUREMENT], [1],
453             [Define if _NL_MEASUREMENT_MEASUREMENT is available])
454 fi
455
456 # _NL_PAPER_HEIGHT is an enum and not a define
457 AC_MSG_CHECKING([for _NL_PAPER_HEIGHT])
458 AC_TRY_LINK([#include <langinfo.h>], [
459 char c;
460 c = *((unsigned char *)  nl_langinfo(_NL_PAPER_HEIGHT));
461 ], gtk_ok=yes, gtk_ok=no)
462 AC_MSG_RESULT($gtk_ok)
463 if test "$gtk_ok" = "yes"; then
464   AC_DEFINE([HAVE__NL_PAPER_HEIGHT], [1],
465             [Define if _NL_PAPER_HEIGHT is available])
466 fi
467
468 # _NL_PAPER_WIDTH is an enum and not a define
469 AC_MSG_CHECKING([for _NL_PAPER_WIDTH])
470 AC_TRY_LINK([#include <langinfo.h>], [
471 char c;
472 c = *((unsigned char *)  nl_langinfo(_NL_PAPER_WIDTH));
473 ], gtk_ok=yes, gtk_ok=no)
474 AC_MSG_RESULT($gtk_ok)
475 if test "$gtk_ok" = "yes"; then
476   AC_DEFINE([HAVE__NL_PAPER_WIDTH], [1],
477             [Define if _NL_PAPER_WIDTH is available])
478 fi
479
480 # sigsetjmp is a macro on some platforms, so AC_CHECK_FUNCS is not reliable
481 AC_MSG_CHECKING(for sigsetjmp)
482 AC_TRY_LINK([#include <setjmp.h>], [
483 sigjmp_buf env;
484 sigsetjmp(env, 0);
485 ], gtk_ok=yes, gtk_ok=no)
486 AC_MSG_RESULT($gtk_ok)
487 if test "$gtk_ok" = "yes"; then
488   AC_DEFINE(HAVE_SIGSETJMP, 1,
489             [Define to 1 if sigsetjmp is available])
490 fi
491
492 # i18n stuff
493 ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`"
494 AM_GLIB_GNU_GETTEXT
495 LIBS="$LIBS $INTLLIBS"
496 AC_OUTPUT_COMMANDS([case "$CONFIG_FILES" in *po-properties/Makefile.in*)
497         sed -e "/POTFILES =/r po-properties/POTFILES" po-properties/Makefile.in > po-properties/Makefile
498       esac])
499
500 dnl Snippet below is copied from AM_GLIB_GNU_GETTEXT to generate a first
501 dnl po-properties/POTFILES during configure; see GNOME #573515.
502 dnl
503 dnl Generate list of files to be processed by xgettext which will
504 dnl be included in po-properties/Makefile.
505 test -d po-properties || mkdir po-properties
506 if test "x$srcdir" != "x."; then
507   if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
508     popropsrcprefix="$srcdir/"
509   else
510     popropsrcprefix="../$srcdir/"
511   fi
512 else
513   popropsrcprefix="../"
514 fi
515 rm -f po-properties/POTFILES
516 sed -e "/^#/d" -e "/^\$/d" -e "s,.*,    $popropsrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
517 < $srcdir/po-properties/POTFILES.in > po-properties/POTFILES
518 dnl (End of adapted AM_GLIB_GNU_GETTEXT snippet.)
519
520 AM_GLIB_DEFINE_LOCALEDIR(GTK_LOCALEDIR)
521
522 dnl The DU4 header files don't provide library prototypes unless
523 dnl -std1 is given to the native cc.
524 AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
525
526 gtk_save_LIBS=$LIBS
527 LIBS="$LIBS -lm"
528 AC_TRY_RUN([#include <math.h>
529              int main (void) { return (log(1) != log(1.)); }],
530      AC_MSG_RESULT(none needed),
531      gtk_save_CFLAGS="$CFLAGS"
532      CFLAGS="$CFLAGS -std1"
533      AC_TRY_RUN([#include <math.h>
534                  int main (void) { return (log(1) != log(1.)); }],
535          AC_MSG_RESULT(-std1),
536          AC_MSG_RESULT()
537          CFLAGS="$gtk_save_CFLAGS"
538          AC_MSG_WARN(
539                 [No ANSI prototypes found in library. (-std1 didn't work.)]),
540          true
541      ),
542      AC_MSG_RESULT(none needed)
543 )
544 LIBS=$gtk_save_LIBS
545
546 AC_MSG_CHECKING(for the BeOS)
547 case $host in
548   *-*-beos*)
549     AC_MSG_RESULT(yes)
550     MATH_LIB=
551   ;;
552   *)
553     AC_MSG_RESULT(no)
554   ;;
555 esac
556
557 AC_SUBST(MATH_LIB)
558 #
559 # see bug 162979
560 #
561 AC_MSG_CHECKING(for HP-UX)
562 case $host_os in
563   hpux9* | hpux10* | hpux11*)
564     AC_MSG_RESULT(yes)
565     CFLAGS="$CFLAGS -DHPPEX -DSHMLINK"
566   ;;
567   *)
568     AC_MSG_RESULT(no)
569   ;;
570 esac
571
572 dnl NeXTStep cc seems to need this
573 AC_MSG_CHECKING([for extra flags for POSIX compliance])
574 AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
575   AC_MSG_RESULT(none needed),
576   gtk_save_CFLAGS="$CFLAGS"
577   CFLAGS="$CFLAGS -posix"
578   AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
579     AC_MSG_RESULT(-posix),
580     AC_MSG_RESULT()
581     CFLAGS="$gtk_save_CFLAGS"
582     AC_MSG_WARN([Could not determine POSIX flag. (-posix didn't work.)])))
583
584 #
585 # Run AM_PATH_GLIB_2_0 to make sure that GLib is installed and working
586 #
587
588 GLIB_PACKAGES="gobject-2.0 gio-2.0 gmodule-no-export-2.0"
589
590 AM_PATH_GLIB_2_0(glib_required_version, :,
591   AC_MSG_ERROR([
592 *** GLIB glib_required_version or better is required. The latest version of
593 *** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/.]),
594   gobject gmodule-no-export gthread)
595
596 # See if it's safe to turn G_DISABLE_DEPRECATED on.
597 GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.@<:@^.@:>@*\$//"`
598 GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo glib_required_version | sed "s/\.@<:@^.@:>@*\$//"`
599 if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then
600   CFLAGS="-DG_DISABLE_DEPRECATED $CFLAGS"
601 fi
602
603 CFLAGS="-DGDK_PIXBUF_DISABLE_DEPRECATED $CFLAGS"
604
605
606 dnl
607 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
608 dnl
609 gtk_save_LIBS=$LIBS
610 LIBS="$LIBS $GLIB_LIBS"
611 AC_CHECK_FUNCS(bind_textdomain_codeset)
612 LIBS=$gtk_save_LIBS
613
614 AC_CHECK_HEADERS(pwd.h,
615                  AC_DEFINE(HAVE_PWD_H, 1,
616                            [Define to 1 if pwd.h is available]))
617 AC_CHECK_HEADERS(sys/time.h,
618                  AC_DEFINE(HAVE_SYS_TIME_H, 1,
619                            [Define to 1 if time.h is available]))
620 AC_CHECK_HEADERS(unistd.h,
621                  AC_DEFINE(HAVE_UNISTD_H, 1,
622                            [Define to 1 if unistd.h is available]))
623 AC_CHECK_HEADERS(ftw.h,
624                  AC_DEFINE(HAVE_FTW_H, 1,
625                            [Define to 1 if ftw.h is available]))
626
627 AC_MSG_CHECKING([for GNU ftw extensions])
628 AC_TRY_COMPILE([#define _XOPEN_SOURCE 500
629 #define _GNU_SOURCE
630 #include <ftw.h>], [int flags = FTW_ACTIONRETVAL;], gtk_ok=yes, gtk_ok=no)
631 if test $gtk_ok = yes; then
632     AC_MSG_RESULT([yes])
633     AC_DEFINE(HAVE_GNU_FTW, 1, [Have GNU ftw])
634 else
635     AC_MSG_RESULT([no])
636 fi
637
638 saved_cflags="$CFLAGS"
639 saved_ldflags="$LDFLAGS"
640
641
642 # Checks for header files.
643 AC_HEADER_STDC
644
645 # Checks for typedefs, structures, and compiler characteristics.
646 AC_C_CONST
647
648 # Checks for library functions.
649 AC_TYPE_SIGNAL
650 AC_FUNC_MMAP
651
652 AC_CHECK_FUNCS(mallinfo)
653 AC_CHECK_FUNCS(getresuid)
654 AC_TYPE_UID_T
655
656 # Check if <sys/select.h> needs to be included for fd_set
657 AC_MSG_CHECKING([for fd_set])
658 AC_TRY_COMPILE([#include <sys/types.h>],
659         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
660 if test $gtk_ok = yes; then
661     AC_MSG_RESULT([yes, found in sys/types.h])
662 else
663     AC_HEADER_EGREP(fd_mask, sys/select.h, gtk_ok=yes)
664     if test $gtk_ok = yes; then
665         AC_DEFINE(HAVE_SYS_SELECT_H, 1,
666                   [Define to 1 if sys/select.h is available])
667         AC_MSG_RESULT([yes, found in sys/select.h])
668     else
669         AC_DEFINE(NO_FD_SET, 1,
670                   [Define to 1 if fd_set is not available])
671         AC_MSG_RESULT(no)
672     fi
673 fi
674
675 # `widechar' tests for gdki18n.h
676 AC_MSG_CHECKING(for wchar.h)
677 AC_TRY_CPP([#include <wchar.h>], gdk_wchar_h=yes, gdk_wchar_h=no)
678 if test $gdk_wchar_h = yes; then
679    AC_DEFINE(HAVE_WCHAR_H, 1, [Have wchar.h include file])
680 fi
681 AC_MSG_RESULT($gdk_wchar_h)
682
683 # Check for wctype.h (for iswalnum)
684 AC_MSG_CHECKING(for wctype.h)
685 AC_TRY_CPP([#include <wctype.h>], gdk_wctype_h=yes, gdk_wctype_h=no)
686 if test $gdk_wctype_h = yes; then
687    AC_DEFINE(HAVE_WCTYPE_H, 1, [Have wctype.h include file])
688 fi
689 AC_MSG_RESULT($gdk_wctype_h)
690
691 # in Solaris 2.5, `iswalnum' is in -lw
692 GDK_WLIBS=
693 AC_CHECK_FUNC(iswalnum,,[AC_CHECK_LIB(w,iswalnum,GDK_WLIBS=-lw)])
694
695 oLIBS="$LIBS"
696 LIBS="$LIBS $GDK_WLIBS"
697 # The following is necessary for Linux libc-5.4.38
698 AC_MSG_CHECKING(if iswalnum() and friends are properly defined)
699 AC_TRY_LINK([#include <stdlib.h>],[
700 #if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H))
701 #  ifdef HAVE_WCTYPE_H
702 #    include <wctype.h>
703 #  else
704 #    ifdef HAVE_WCHAR_H
705 #      include <wchar.h>
706 #    endif
707 #  endif
708 #else
709 #  define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c))
710 #endif
711 iswalnum((wchar_t) 0);
712 ], gdk_working_wctype=yes, gdk_working_wctype=no)
713 LIBS="$oLIBS"
714
715 if test $gdk_working_wctype = no; then
716    AC_DEFINE(HAVE_BROKEN_WCTYPE, 1, [Is the wctype implementation broken])
717    GDK_WLIBS=
718 fi
719 AC_MSG_RESULT($gdk_working_wctype)
720 AC_SUBST(GDK_WLIBS)
721
722 # Check for uxtheme.h (for MS-Windows Engine)
723 AC_MSG_CHECKING(for uxtheme.h)
724 AC_TRY_CPP([#include <uxtheme.h>], gtk_uxtheme_h=yes, gtk_uxtheme_h=no)
725 if test $gtk_uxtheme_h = yes; then
726    AC_DEFINE(HAVE_UXTHEME_H, 1, [Have uxtheme.h include file])
727 fi
728 AC_MSG_RESULT($gtk_uxtheme_h)
729
730 # Checks for gdkspawn
731 AC_CHECK_HEADERS(crt_externs.h)
732 AC_CHECK_FUNCS(_NSGetEnviron)
733
734 AC_MSG_CHECKING(whether to build dynamic modules)
735
736 AC_ARG_ENABLE(modules,
737               [AC_HELP_STRING([--disable-modules],
738                               [disable dynamic module loading])])
739
740 dynworks=false
741 deps=
742 if test x$enable_modules = xno; then
743     AC_MSG_RESULT(no)
744 else
745     AC_MSG_RESULT(yes)
746     AC_MSG_CHECKING(whether dynamic modules work)
747     ## for loop is to strip newline
748     tmp=`$PKG_CONFIG --variable=gmodule_supported gmodule-no-export-2.0`
749     for I in $tmp; do
750         dynworks=$I
751     done
752
753     dnl Now we check to see if our libtool supports shared lib deps
754     dnl (in a rather ugly way even)
755     if $dynworks; then
756         module_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config"
757         module_deplibs_check=`$module_libtool_config | \
758             grep '^[[a-z_]]*check[[a-z_]]*_method=[['\''"]]' | \
759             sed 's/.*[['\''"]]\(.*\)[['\''"]]$/\1/'`
760         if test "x$module_deplibs_check" = "xnone" || \
761            test "x$module_deplibs_check" = "xunknown" || \
762            test "x$module_deplibs_check" = "x"; then
763             dynworks=false
764         fi
765     fi
766
767     if $dynworks; then
768         AC_DEFINE(USE_GMODULE, 1,
769                   [Define to 1 if gmodule works and should be used])
770         AC_MSG_RESULT(yes)
771     else
772         AC_MSG_RESULT(no)
773     fi
774 fi
775
776 AM_CONDITIONAL(BUILD_DYNAMIC_MODULES, $dynworks)
777
778 #
779 # Allow building some or all immodules included
780 #
781 AC_MSG_CHECKING(immodules to build)
782
783 dnl due to an autoconf bug, commas in the first arg to
784 dnl AC_HELP_STRING cause problems.
785 dnl AC_HELP_STRING([--with-included-immodules=MODULE1 MODULE2 ...],
786 dnl                [build the specified input method modules into gtk])
787 AC_ARG_WITH(included_immodules,
788 [  --with-included-immodules=MODULE1,MODULE2,...
789                           build the specified input methods into gtk])
790
791 if $dynworks; then
792    :
793 else
794    ## if the option was specified, leave it; otherwise disable included immodules
795    if test x$with_included_immodules = xno; then
796            with_included_immodules=yes
797    fi
798 fi
799
800 all_immodules="am-et,cedilla,cyrillic-translit"
801 if test "$gdktarget" = "win32"; then
802    all_immodules="${all_immodules},ime"
803 fi
804 all_immodules="${all_immodules},inuktitut,ipa,multipress,thai,ti-er,ti-et,viqr"
805 if test "$gdktarget" = "x11"; then
806    all_immodules="${all_immodules},xim"
807 fi
808
809 included_immodules=""
810 # If the switch specified without listing any specific ones, include all
811 if test "x$with_included_immodules" = xyes ; then
812   included_immodules="$all_immodules"
813 else
814   included_immodules="$with_included_immodules"
815 fi
816
817 AC_MSG_RESULT($included_immodules)
818 AM_CONDITIONAL(HAVE_INCLUDED_IMMMODULES, test "x$included_immodules" != x)
819
820 INCLUDED_IMMODULE_OBJ=
821 INCLUDED_IMMODULE_DEFINE=
822
823 IFS="${IFS=     }"; gtk_save_ifs="$IFS"; IFS=","
824 for immodule in $included_immodules; do
825  immodule_underscores=`echo $immodule | sed -e 's/-/_/g'`
826  if echo "$all_immodules" | egrep "(^|,)$immodule(\$|,)" > /dev/null; then
827    :
828  else
829    AC_MSG_ERROR([the specified input method $immodule does not exist])
830  fi
831
832  INCLUDED_IMMODULE_OBJ="$INCLUDED_IMMODULE_OBJ ../modules/input/libstatic-im-$immodule.la"
833  INCLUDED_IMMODULE_DEFINE="$INCLUDED_IMMODULE_DEFINE -DINCLUDE_IM_$immodule_underscores"
834  eval INCLUDE_$immodule_underscores=yes
835 done
836 IFS="$gtk_save_ifs"
837 AC_SUBST(INCLUDED_IMMODULE_OBJ)
838 AC_SUBST(INCLUDED_IMMODULE_DEFINE)
839
840 AM_CONDITIONAL(INCLUDE_IM_AM_ET, [test x"$INCLUDE_am_et" = xyes])
841 AM_CONDITIONAL(INCLUDE_IM_CEDILLA, [test x"$INCLUDE_cedilla" = xyes])
842 AM_CONDITIONAL(INCLUDE_IM_CYRILLIC_TRANSLIT, [test x"$INCLUDE_cyrillic_translit" = xyes])
843 AM_CONDITIONAL(INCLUDE_IM_IME, [test x"$INCLUDE_ime" = xyes])
844 AM_CONDITIONAL(INCLUDE_IM_INUKTITUT, [test x"$INCLUDE_inuktitut" = xyes])
845 AM_CONDITIONAL(INCLUDE_IM_IPA, [test x"$INCLUDE_ipa" = xyes])
846 AM_CONDITIONAL(INCLUDE_IM_MULTIPRESS, [test x"$INCLUDE_multipress" = xyes])
847 AM_CONDITIONAL(INCLUDE_IM_THAI, [test x"$INCLUDE_thai" = xyes])
848 AM_CONDITIONAL(INCLUDE_IM_TI_ER, [test x"$INCLUDE_ti_er" = xyes])
849 AM_CONDITIONAL(INCLUDE_IM_TI_ET, [test x"$INCLUDE_ti_et" = xyes])
850 AM_CONDITIONAL(INCLUDE_IM_VIQR, [test x"$INCLUDE_viqr" = xyes])
851 AM_CONDITIONAL(INCLUDE_IM_XIM, [test x"$INCLUDE_xim" = xyes])
852
853 AC_HEADER_SYS_WAIT
854
855 AC_TYPE_SIGNAL
856
857 # Checks to see whether we should include mediaLib
858 # support.
859 #
860 AC_CHECK_HEADER(sys/systeminfo.h,
861                 AC_DEFINE(HAVE_SYS_SYSTEMINFO_H, 1,
862                           [Define to 1 if sys/systeminfo.h is available]))
863 AC_CHECK_HEADER(sys/sysinfo.h,
864                 AC_DEFINE(HAVE_SYS_SYSINFO_H, 1,
865                           [Define to 1 if sys/sysinfo.h is available]))
866
867 AC_MSG_CHECKING(for mediaLib 2.3)
868 use_mlib25=no
869 # Check for a mediaLib 2.3 function since that is what the GTK+ mediaLib
870 # patch requires.
871 AC_CHECK_LIB(mlib, mlib_ImageSetStruct, use_mlib=yes, use_mlib=no)
872 if test $use_mlib = yes; then
873     AC_DEFINE(USE_MEDIALIB, 1,
874               [Define to 1 if medialib is available and should be used])
875     MEDIA_LIB=-lmlib
876
877     AC_MSG_CHECKING(for mediaLib 2.5)
878     # Check for a mediaLib 2.5 function since that is what is needed for
879     # gdk_rgb_convert integration.
880     AC_CHECK_LIB(mlib, mlib_VideoColorRGBint_to_BGRAint, use_mlib25=yes, use_mlib25=no)
881     if test $use_mlib25 = yes; then
882         AC_DEFINE(USE_MEDIALIB25, 1,
883                   [Define to 1 if medialib 2.5 is available])
884     fi
885 fi
886 AM_CONDITIONAL(USE_MEDIALIB, test $use_mlib = yes)
887 AM_CONDITIONAL(USE_MEDIALIB25, test $use_mlib25 = yes)
888
889 dnl Look for a host system's gdk-pixbuf-csource if we are cross-compiling
890
891 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
892
893 if test $cross_compiling = yes; then
894   AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache, no)
895   if test x$GTK_UPDATE_ICON_CACHE = xno; then
896     REBUILD_PNGS=#
897   fi
898 fi
899
900 AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no)
901
902 if test ! -f $srcdir/gtk/gtkbuiltincache.h &&
903    test "x$REBUILD_PNGS" = "x#" ; then
904      AC_MSG_ERROR([
905 *** gtkbuiltincache.h is not in the tree, and cannot be built
906 *** because you don't have libpng, or (when cross-compiling) you
907 *** don't have a prebuilt gtk-update-icon-cache on the build system.])
908 fi
909
910 ########################################
911 # Windowing system checks
912 ########################################
913
914 GDK_EXTRA_LIBS="$GDK_WLIBS"
915 GDK_EXTRA_CFLAGS=
916
917 # GTK+ uses some X calls, so needs to link against X directly
918 GTK_DEP_PACKAGES_FOR_X=
919 GTK_DEP_LIBS_FOR_X=
920
921 if test "x$gdktarget" = "xx11"; then
922   X_PACKAGES=fontconfig
923
924   #
925   # We use fontconfig very peripherally when decoding the default
926   # settings.
927   #
928   if $PKG_CONFIG --exists fontconfig; then : ; else
929     AC_MSG_ERROR([
930 *** fontconfig (http://www.fontconfig.org) is required by the X11 backend.])
931   fi
932
933   #
934   # Check for basic X packages; we use pkg-config if available
935   #
936   if $PKG_CONFIG --exists x11 xext; then
937     have_base_x_pc=true
938     X_PACKAGES="$X_PACKAGES x11 xext"
939     x_libs="`$PKG_CONFIG --libs x11 xext`"
940     X_CFLAGS="`$PKG_CONFIG --cflags x11 xext`"
941
942     # Strip out any .la files that pkg-config might give us (this happens
943     # with -uninstalled.pc files)
944     x_libs_for_checks=
945     for I in $x_libs ; do
946       case $I in
947         *.la) ;;
948         *) x_libs_for_checks="$x_libs_for_checks $I" ;;
949       esac
950     done
951
952     GTK_PACKAGES_FOR_X="x11"
953   else
954     have_base_x_pc=false
955     AC_PATH_XTRA
956     if test x$no_x = xyes ; then
957       AC_MSG_ERROR([X development libraries not found])
958     fi
959
960     x_cflags="$X_CFLAGS"
961     x_libs_for_checks="$X_LIBS -lXext -lX11 $X_EXTRA_LIBS"
962
963     GTK_DEP_LIBS_FOR_X="$X_LIBS -lX11 $X_EXTRA_LIBS"
964   fi
965
966   # Extra libraries found during checks (-lXinerama, etc), not from pkg-config.
967   x_extra_libs=
968
969   gtk_save_cppflags="$CPPFLAGS"
970   CPPFLAGS="$CPPFLAGS $X_CFLAGS"
971
972   gtk_save_LIBS=$LIBS
973   LIBS="$x_libs_for_checks $LIBS"
974
975   # Sanity check for the X11 and Xext libraries. While everything we need from
976   # Xext is optional, the chances a system has *none* of these things is so
977   # small that we just unconditionally require it.
978   AC_CHECK_FUNC(XOpenDisplay, :,
979                 AC_MSG_ERROR([*** libX11 not found. Check 'config.log' for more details.]))
980   AC_CHECK_FUNC(XextFindDisplay, :,
981                 AC_MSG_ERROR([*** libXext not found. Check 'config.log' for more details.]))
982
983   # Check for xReply
984
985   AC_MSG_CHECKING([if <X11/extensions/XIproto.h> is needed for xReply])
986   AC_TRY_COMPILE([#include <X11/Xlibint.h>],
987       [xReply *rep;],
988       [AC_MSG_RESULT([no])],
989       [AC_TRY_COMPILE([#include <X11/extensions/XIproto.h>
990 #include <X11/Xlibint.h>],
991            [xReply *rep;],
992            [AC_MSG_RESULT([yes])
993             AC_DEFINE([NEED_XIPROTO_H_FOR_XREPLY], 1,
994                       [Define if <X11/extensions/XIproto.h> needed for xReply])],
995            [AC_MSG_RESULT([unknown])
996             AC_MSG_ERROR([xReply type unavailable. X11 is too old])])])
997
998   # Check for XConvertCase, XInternAtoms (X11R6 specific)
999
1000   AC_CHECK_FUNCS(XConvertCase XInternAtoms)
1001
1002   # Generic X11R6 check needed for XIM support; we could
1003   # probably use this to replace the above, but we'll
1004   # leave the separate checks for XConvertCase and XInternAtoms
1005   # for clarity
1006
1007   have_x11r6=false
1008   AC_CHECK_FUNC(XAddConnectionWatch,
1009       have_x11r6=true)
1010
1011   if $have_x11r6; then
1012     AC_DEFINE(HAVE_X11R6, 1, [Define if we have X11R6])
1013   fi
1014   AM_CONDITIONAL(HAVE_X11R6, $have_x11r6)
1015
1016   # Check for XKB support.
1017
1018   if test "x$enable_xkb" = "xyes"; then
1019         AC_MSG_WARN(XKB support explicitly enabled)
1020         AC_DEFINE(HAVE_XKB, 1, [Define to use XKB extension])
1021   elif test "x$enable_xkb" = "xmaybe"; then
1022         AC_CHECK_FUNC(XkbQueryExtension,
1023                       AC_DEFINE(HAVE_XKB, 1, [Define to use XKB extension]))
1024   else
1025         AC_MSG_WARN(XKB support explicitly disabled)
1026   fi
1027
1028   # Check for shaped window extension
1029
1030   AC_CHECK_FUNC(XShapeCombineMask, :,
1031      [AC_MSG_ERROR([Shape extension not found, check your development headers])])
1032
1033   # X SYNC check
1034   gtk_save_CFLAGS="$CFLAGS"
1035   CFLAGS="$CFLAGS $x_cflags"
1036
1037   AC_CHECK_FUNC(XSyncQueryExtension,
1038       [AC_CHECK_HEADER(X11/extensions/sync.h,
1039           AC_DEFINE(HAVE_XSYNC, 1, [Have the SYNC extension library]),
1040           :, [#include <X11/Xlib.h>])])
1041
1042   CFLAGS="$gtk_save_CFLAGS"
1043
1044   # Xshm checks
1045
1046   if test "x$enable_shm" = "xyes"; then
1047      # Check for the XShm extension, normally in Xext
1048      AC_CHECK_FUNC(XShmAttach,
1049         :,
1050         # On AIX, it is in XextSam instead
1051         [AC_CHECK_LIB(XextSam, XShmAttach,
1052             [GTK_ADD_LIB(x_extra_libs,XextSam)])])
1053   fi
1054
1055   if test "x$enable_shm" = "xyes"; then
1056     # Check for shared memory
1057     AC_CHECK_HEADER(sys/ipc.h,
1058                     AC_DEFINE(HAVE_IPC_H, 1,
1059                               [Define to 1 if ipc.h is available]),
1060                     no_sys_ipc=yes)
1061     AC_CHECK_HEADER(sys/shm.h,
1062                     AC_DEFINE(HAVE_SHM_H, 1,
1063                               [Define to 1 if shm.h is available]),
1064                     no_sys_shm=yes)
1065
1066     # Check for the X shared memory extension header file
1067     have_xshm=no
1068     AC_MSG_CHECKING(X11/extensions/XShm.h)
1069     if test "x$no_xext_lib" = "xyes"; then
1070       :
1071     else
1072       gtk_save_CFLAGS="$CFLAGS"
1073       CFLAGS="$CFLAGS $x_cflags"
1074       AC_TRY_COMPILE([
1075 #include <stdlib.h>
1076 #include <sys/types.h>
1077 #include <sys/ipc.h>
1078 #include <sys/shm.h>
1079 #include <X11/Xlib.h>
1080 #include <X11/Xutil.h>
1081 #include <X11/extensions/XShm.h>
1082 ], [XShmSegmentInfo *x_shm_info;], have_xshm=yes)
1083       CFLAGS="$gtk_save_CFLAGS"
1084     fi
1085     AC_MSG_RESULT($have_xshm)
1086     if test $have_xshm = yes ; then
1087       AC_DEFINE(HAVE_XSHM_H, 1,
1088                 [Define to 1 if xshm.h is available])
1089     fi
1090   fi
1091
1092   if test "x$enable_xinerama" = "xyes"; then
1093     # Check for Xinerama extension (Solaris impl or Xfree impl)
1094     gtk_save_cppflags="$CPPFLAGS"
1095     CPPFLAGS="$CPPFLAGS $x_cflags"
1096
1097     # Check for XFree
1098     AC_MSG_CHECKING(for Xinerama support on XFree86)
1099
1100     have_xfree_xinerama=false
1101     if $PKG_CONFIG --exists xinerama ; then
1102        have_xfree_xinerama=true
1103        X_PACKAGES="$X_PACKAGES xinerama"
1104     else
1105        AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
1106            [AC_CHECK_HEADER(X11/extensions/Xinerama.h,
1107            [GTK_ADD_LIB(x_extra_libs,Xinerama)
1108            have_xfree_xinerama=true], :,
1109            [#include <X11/Xlib.h>])])
1110     fi
1111
1112     if $have_xfree_xinerama ; then
1113       AC_DEFINE(HAVE_XFREE_XINERAMA, 1,
1114                 [Define to 1 if XFree Xinerama is available])
1115       AC_DEFINE(HAVE_XINERAMA, 1,
1116                 [Define to 1 is Xinerama is available])
1117       AC_MSG_RESULT(yes)
1118     else
1119       AC_MSG_RESULT(no)
1120
1121       case "$host" in
1122         *-*-solaris*)
1123             # Check for solaris
1124             AC_MSG_CHECKING(for Xinerama support on Solaris)
1125
1126             have_solaris_xinerama=false
1127             AC_CHECK_FUNC(XineramaGetInfo,
1128                 [AC_CHECK_HEADER(X11/extensions/xinerama.h,
1129                     [have_solaris_xinerama=true], :,
1130                     [#include <X11/Xlib.h>])])
1131
1132             if $have_solaris_xinerama ; then
1133               AC_DEFINE(HAVE_SOLARIS_XINERAMA, 1,
1134                         [Define to 1 if solaris xinerama is available])
1135               AC_DEFINE(HAVE_XINERAMA, 1,
1136                         [Define to 1 if xinerama is available])
1137               AC_MSG_RESULT(yes)
1138             else
1139               AC_MSG_RESULT(no)
1140             fi
1141             ;;
1142         *)
1143             ;;
1144       esac
1145     fi
1146   fi
1147
1148   # set up things for XInput
1149   if test "x$with_xinput" != "xno" && $PKG_CONFIG --exists "xi" ; then
1150     have_xinput=yes
1151
1152     AC_DEFINE(XINPUT_XFREE, 1,
1153               [Define to 1 if XFree XInput should be used])
1154
1155     X_PACKAGES="$X_PACKAGES xi"
1156
1157     AC_CHECK_HEADER(X11/extensions/XInput2.h,
1158                     have_xinput2=yes; AC_DEFINE(XINPUT_2, 1, [Define to 1 if XInput 2.0 is available]))
1159   else
1160     AC_DEFINE(XINPUT_NONE, 1,
1161               [Define to 1 if no XInput should be used])
1162   fi
1163
1164   AM_CONDITIONAL(XINPUT_XFREE, test "x$have_xinput" = "xyes")
1165   AM_CONDITIONAL(XINPUT_2,     test "x$have_xinput2" = "xyes")
1166
1167   # Check for the RANDR extension
1168   if $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then
1169      AC_DEFINE(HAVE_RANDR, 1, [Have the Xrandr extension library])
1170
1171      X_PACKAGES="$X_PACKAGES xrandr"
1172   fi
1173
1174   # Checks for Xcursor library
1175
1176   if $PKG_CONFIG --exists xcursor ; then
1177     AC_DEFINE(HAVE_XCURSOR, 1, [Have the Xcursor library])
1178
1179     X_PACKAGES="$X_PACKAGES xcursor"
1180   fi
1181
1182   # Checks for XFixes extension
1183
1184   if $PKG_CONFIG --exists xfixes ; then
1185     AC_DEFINE(HAVE_XFIXES, 1, [Have the XFIXES X extension])
1186
1187     X_PACKAGES="$X_PACKAGES xfixes"
1188     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xfixes"
1189   fi
1190
1191   # Checks for Xcomposite extension
1192
1193   if $PKG_CONFIG --exists xcomposite ; then
1194     AC_DEFINE(HAVE_XCOMPOSITE, 1, [Have the XCOMPOSITE X extension])
1195
1196     X_PACKAGES="$X_PACKAGES xcomposite"
1197     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xcomposite"
1198   fi
1199
1200   # Checks for Xdamage extension
1201
1202   if $PKG_CONFIG --exists xdamage ; then
1203     AC_DEFINE(HAVE_XDAMAGE, 1, [Have the XDAMAGE X extension])
1204
1205     X_PACKAGES="$X_PACKAGES xdamage"
1206     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xdamage"
1207   fi
1208
1209   if $have_base_x_pc ; then
1210     GDK_EXTRA_LIBS="$x_extra_libs"
1211   else
1212     GDK_EXTRA_LIBS="$X_LIBS $x_extra_libs -lXext -lX11 $GDK_EXTRA_LIBS"
1213   fi
1214
1215   CPPFLAGS="$gtk_save_cppflags"
1216   LIBS="$gtk_save_libs"
1217
1218   AM_CONDITIONAL(USE_X11, true)
1219 else
1220   XPACKAGES=
1221
1222   AM_CONDITIONAL(XINPUT_XFREE, false)
1223   AM_CONDITIONAL(XINPUT_2, false)
1224   AM_CONDITIONAL(USE_X11, false)
1225   AM_CONDITIONAL(HAVE_X11R6, false)
1226 fi
1227
1228 if test "x$gdktarget" = "xwin32"; then
1229   GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -lgdi32 -limm32 -lshell32 -lole32 -Wl,-luuid"
1230   AM_CONDITIONAL(USE_WIN32, true)
1231 else
1232   AM_CONDITIONAL(USE_WIN32, false)
1233 fi
1234
1235 if test "x$gdktarget" = "xquartz"; then
1236   GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -framework Cocoa"
1237   AM_CONDITIONAL(USE_QUARTZ, true)
1238 else
1239   AM_CONDITIONAL(USE_QUARTZ, false)
1240 fi
1241
1242 # Check for Pango flags
1243
1244 if test "x$gdktarget" = "xwin32"; then
1245         PANGO_PACKAGES="pangowin32 pangocairo"
1246 else
1247         PANGO_PACKAGES="pango pangocairo"
1248 fi
1249
1250 AC_MSG_CHECKING(Pango flags)
1251 if $PKG_CONFIG --exists $PANGO_PACKAGES ; then
1252         PANGO_CFLAGS=`$PKG_CONFIG --cflags $PANGO_PACKAGES`
1253         PANGO_LIBS=`$PKG_CONFIG --libs $PANGO_PACKAGES`
1254
1255         AC_MSG_RESULT($PANGO_CFLAGS $PANGO_LIBS)
1256 else
1257         AC_MSG_ERROR([
1258 *** Pango not found. Pango built with Cairo support is required
1259 *** to build GTK+. See http://www.pango.org for Pango information.
1260 ])
1261 fi
1262
1263 CFLAGS="$CFLAGS $PANGO_CFLAGS"
1264
1265 if $PKG_CONFIG --uninstalled $PANGO_PACKAGES; then
1266         :
1267 else
1268         gtk_save_LIBS="$LIBS"
1269         LIBS="$PANGO_LIBS $LIBS"
1270         AC_TRY_LINK_FUNC(pango_context_new, :, AC_MSG_ERROR([
1271 *** Can't link to Pango. Pango is required to build
1272 *** GTK+. For more information see http://www.pango.org]))
1273         LIBS="$gtk_save_LIBS"
1274 fi
1275
1276 CFLAGS="$saved_cflags"
1277 LDFLAGS="$saved_ldflags"
1278
1279 # Pull in gio-unix for GDesktopAppInfo usage, see at least gdkapplaunchcontext-x11.c
1280 if test "x$gdktarget" = "xx11"; then
1281   GDK_PACKAGES="$PANGO_PACKAGES gio-unix-2.0 $X_PACKAGES gdk-pixbuf-2.0 cairo-$cairo_backend"
1282 else
1283   GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 gdk-pixbuf-2.0 cairo-$cairo_backend"
1284 fi
1285
1286 GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES`"
1287 GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags  gthread-2.0 $GDK_PACKAGES` $GDK_EXTRA_CFLAGS"
1288 #
1289 # If we aren't writing explicit dependencies, then don't put the extra libraries we need
1290 # into the pkg-config files
1291 #
1292 if test $enable_explicit_deps != yes ; then
1293   GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0"
1294   GDK_EXTRA_LIBS=
1295 fi
1296
1297 AC_SUBST(GDK_PACKAGES)
1298 AC_SUBST(GDK_EXTRA_LIBS)
1299 AC_SUBST(GDK_EXTRA_CFLAGS)
1300 AC_SUBST(GDK_DEP_LIBS)
1301 AC_SUBST(GDK_DEP_CFLAGS)
1302
1303
1304 ########################################
1305 # Check for Accessibility Toolkit flags
1306 ########################################
1307
1308 ATK_PACKAGES=atk
1309 AC_MSG_CHECKING(ATK flags)
1310 if $PKG_CONFIG --exists $ATK_PACKAGES ; then
1311         ATK_CFLAGS=`$PKG_CONFIG --cflags $ATK_PACKAGES`
1312         ATK_LIBS=`$PKG_CONFIG --libs $ATK_PACKAGES`
1313
1314         AC_MSG_RESULT($ATK_CFLAGS $ATK_LIBS)
1315 else
1316         AC_MSG_ERROR([
1317 *** Accessibility Toolkit not found. Accessibility Toolkit is required
1318 *** to build GTK+.
1319 ])
1320 fi
1321
1322 if $PKG_CONFIG --uninstalled $ATK_PACKAGES; then
1323         :
1324 else
1325         gtk_save_LIBS="$LIBS"
1326         LIBS="$ATK_LIBS $LIBS"
1327         AC_TRY_LINK_FUNC(atk_object_get_type, : , AC_MSG_ERROR([
1328                 *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required
1329                 *** to build GTK+]))
1330         LIBS="$gtk_save_LIBS"
1331 fi
1332
1333 GTK_PACKAGES="atk cairo gdk-pixbuf-2.0 gio-2.0"
1334 if test "x$gdktarget" = "xx11"; then
1335   GTK_PACKAGES="$GTK_PACKAGES pangoft2"
1336 fi
1337 GTK_EXTRA_LIBS=
1338 GTK_EXTRA_CFLAGS=
1339 GTK_DEP_LIBS="$GDK_EXTRA_LIBS $GTK_DEP_LIBS_FOR_X `$PKG_CONFIG --libs $PANGO_PACKAGES $GTK_PACKAGES_FOR_X $GTK_PACKAGES` $GTK_EXTRA_LIBS"
1340 GTK_DEP_CFLAGS="`$PKG_CONFIG --cflags  gthread-2.0 $GDK_PACKAGES $GTK_PACKAGES` $GDK_EXTRA_CFLAGS $GTK_EXTRA_CFLAGS"
1341
1342 if test x"$os_win32" = xyes; then
1343   GTK_EXTRA_CFLAGS="$msnative_struct"
1344 fi
1345
1346 GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
1347 ATK_PREFIX="`$PKG_CONFIG --variable=prefix atk`"
1348 PANGO_PREFIX="`$PKG_CONFIG --variable=prefix pango`"
1349 CAIRO_PREFIX="`$PKG_CONFIG --variable=prefix cairo`"
1350
1351 AC_SUBST(GTK_PACKAGES)
1352 AC_SUBST(GTK_EXTRA_LIBS)
1353 AC_SUBST(GTK_EXTRA_CFLAGS)
1354 AC_SUBST(GTK_DEP_LIBS)
1355 AC_SUBST(GTK_DEP_CFLAGS)
1356
1357 AC_SUBST(GLIB_PREFIX)
1358 AC_SUBST(ATK_PREFIX)
1359 AC_SUBST(PANGO_PREFIX)
1360 AC_SUBST(CAIRO_PREFIX)
1361
1362 AC_SUBST(GTK_DEBUG_FLAGS)
1363 AC_SUBST(GTK_XIM_FLAGS)
1364
1365 GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs gdk-pixbuf-2.0`
1366 AC_SUBST(GDK_PIXBUF_LIBS)
1367
1368 ########################
1369 # Checks needed for gail
1370 ########################
1371
1372 old_LIBS="$LIBS"
1373 dnl Checks for inet libraries:
1374 AC_SEARCH_LIBS(gethostent, nsl)
1375 AC_SEARCH_LIBS(setsockopt, socket)
1376 AC_SEARCH_LIBS(connect, inet)
1377
1378 dnl check for the sockaddr_un.sun_len member
1379 AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
1380                 [struct_sockaddr_un_sun_len=true],
1381                 [struct_sockaddr_un_suin_len=false],
1382                 [#include <sys/types.h>
1383                  #include <sys/un.h>]
1384                 )
1385 case $struct_sockaddr_un_sun_len in
1386         true)
1387                 AC_DEFINE_UNQUOTED(HAVE_SOCKADDR_UN_SUN_LEN, 1,
1388                                    [Have the sockaddr_un.sun_len member])
1389                 ;;
1390         *)
1391                 ;;
1392 esac
1393
1394 GAIL_INET_LIBS="$LIBS"
1395 AC_SUBST([GAIL_INET_LIBS])
1396
1397 LIBS="$old_LIBS"
1398
1399 ################################################################
1400 # Printing system checks
1401 ################################################################
1402
1403 AC_ARG_ENABLE(cups,
1404               [AC_HELP_STRING([--disable-cups]
1405                               [disable cups print backend])],,
1406               [enable_cups=auto])
1407
1408 if test "x$enable_cups" = "xno"; then
1409   AM_CONDITIONAL(HAVE_CUPS, false)
1410 else
1411   AC_PATH_PROG(CUPS_CONFIG, cups-config, no)
1412   if test "x$CUPS_CONFIG" = "xno"; then
1413     if test "x$enable_cups" = "xauto"; then
1414       AM_CONDITIONAL(HAVE_CUPS, false)
1415     else
1416       AC_MSG_ERROR([
1417 *** cups not found.
1418 ])
1419     fi
1420   else
1421     CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O[0-9]*//' | sed 's/-m[^\t]*//g'`
1422     CUPS_LIBS=`$CUPS_CONFIG --libs`
1423
1424     CUPS_API_VERSION=`$CUPS_CONFIG --api-version`
1425     CUPS_API_MAJOR=`echo $ECHO_N $CUPS_API_VERSION | awk -F. '{print $1}'`
1426     CUPS_API_MINOR=`echo $ECHO_N $CUPS_API_VERSION | awk -F. '{print $2}'`
1427
1428     if test $CUPS_API_MAJOR -gt 1 -o \
1429             $CUPS_API_MAJOR -eq 1 -a $CUPS_API_MINOR -ge 2; then
1430       AC_DEFINE(HAVE_CUPS_API_1_2, 1,
1431                 [Define to 1 if CUPS 1.2 API is available])
1432     fi
1433
1434     AC_SUBST(CUPS_API_MAJOR)
1435     AC_SUBST(CUPS_API_MINOR)
1436     AC_SUBST(CUPS_CFLAGS)
1437     AC_SUBST(CUPS_LIBS)
1438
1439     AC_CHECK_HEADER(cups/cups.h,,AC_MSG_ERROR([[*** Sorry, cups-config present but cups/cups.h missing.]]))
1440
1441     AM_CONDITIONAL(HAVE_CUPS, true)
1442
1443     gtk_save_cflags="$CFLAGS"
1444     CFLAGS="$CUPS_CFLAGS"
1445     AC_TRY_COMPILE([#include <cups/http.h>],
1446                    [http_t http; char *s = http.authstring;],
1447                    [AC_DEFINE(HAVE_HTTP_AUTHSTRING, [],
1448                               [Define if cups http_t authstring field is accessible])],)
1449     CFLAGS="$gtk_save_cflags"
1450
1451     AC_SUBST(HAVE_HTTP_AUTHSTRING)
1452
1453     gtk_save_libs="$LIBS"
1454     LIBS="$CUPS_LIBS"
1455     AC_CHECK_FUNCS(httpGetAuthString)
1456     LIBS="$gtk_save_libs"
1457   fi
1458 fi
1459
1460 # Checks to see if we should compile with PAPI backend for GTK+
1461 #
1462
1463 AC_ARG_ENABLE(papi,
1464               [AC_HELP_STRING([--disable-papi]
1465                               [disable papi print backend])],,
1466              [enable_papi=auto])
1467
1468 if test "x$enable_papi" = "xno"; then
1469   AM_CONDITIONAL(HAVE_PAPI, false)
1470 else
1471   AC_MSG_CHECKING(libpapi)
1472   AC_CHECK_LIB(papi, papiServiceCreate, have_papi=yes, have_papi=no)
1473   if test $have_papi = yes; then
1474     AC_DEFINE([HAVE_PAPI], [], [Define to 1 if libpapi available])
1475   fi
1476   AM_CONDITIONAL(HAVE_PAPI, test $have_papi = yes)
1477   if test "x$enable_papi" = "xyes" -a "x$have_papi" = "xno"; then
1478     AC_MSG_ERROR([
1479 *** papi not found.
1480 ])
1481   fi
1482 fi
1483
1484 AM_CONDITIONAL(HAVE_PAPI_CUPS, test "x$have_papi" = "xyes" -a "x$CUPS_CONFIG" != "xno")
1485
1486 gtk_save_cppflags="$CPPFLAGS"
1487 CPPFLAGS="$CPPFLAGS $GTK_DEP_CFLAGS $GDK_DEP_CFLAGS"
1488
1489 AC_CHECK_HEADER(cairo-pdf.h,,AC_MSG_ERROR([
1490 *** Can't find cairo-pdf.h. You must build Cairo with the pdf
1491 *** backend enabled.]))
1492
1493 if test "$os_win32" != "yes"; then
1494   AC_CHECK_HEADER(cairo-ps.h,,AC_MSG_ERROR([
1495 *** Can't find cairo-ps.h. You must build Cairo with the
1496 *** postscript backend enabled.]))
1497
1498   AC_CHECK_HEADER(cairo-svg.h,,AC_MSG_ERROR([
1499 *** Can't find cairo-svg.h. You must build Cairo with the
1500 *** svg backend enabled.]))
1501 fi
1502
1503 CPPFLAGS="$gtk_save_cppflags"
1504
1505
1506 AC_ARG_ENABLE(test-print-backend,
1507               [AC_HELP_STRING([--enable-test-print-backend],
1508                               [build test print backend])],,
1509               [enable_test_print_backend=no])
1510 AM_CONDITIONAL(TEST_PRINT_BACKEND, test "x$enable_test_print_backend" != "xno")
1511
1512
1513 ################################################################
1514 # Strip -export-dynamic from the link lines of various libraries
1515 ################################################################
1516
1517 #
1518 # pkg-config --libs gmodule includes the "export_dynamic" flag,
1519 #  but this flag is only meaningful for executables. For libraries
1520 #  the effect is undefined; what it causes on Linux is that the
1521 #  export list from -export-symbols-regex is ignored and everything
1522 #  is exported
1523 #
1524 # We are using gmodule-no-export now, but I'm leaving the stripping
1525 # code in place for now, since pango and atk still require gmodule.
1526 export SED
1527 export_dynamic=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
1528 if test -n "$export_dynamic"; then
1529   GDK_DEP_LIBS=`echo $GDK_DEP_LIBS | sed -e "s/$export_dynamic//"`
1530   GTK_DEP_LIBS=`echo $GTK_DEP_LIBS | sed -e "s/$export_dynamic//"`
1531 fi
1532
1533 ##################################################
1534 # GObject introspection
1535 ##################################################
1536
1537 GOBJECT_INTROSPECTION_CHECK([0.9.3])
1538
1539 ##################################################
1540 # Checks for gtk-doc and docbook-tools
1541 ##################################################
1542
1543 GTK_DOC_CHECK([1.11])
1544
1545 AC_CHECK_PROG(DB2HTML, db2html, true, false)
1546 AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)
1547
1548 AC_ARG_ENABLE(man,
1549               [AC_HELP_STRING([--enable-man],
1550                               [regenerate man pages from Docbook [default=no]])],enable_man=yes,
1551               enable_man=no)
1552
1553 if test "${enable_man}" != no; then
1554   dnl
1555   dnl Check for xsltproc
1556   dnl
1557   AC_PATH_PROG([XSLTPROC], [xsltproc])
1558   if test -z "$XSLTPROC"; then
1559     enable_man=no
1560   fi
1561
1562   dnl check for DocBook DTD and stylesheets in the local catalog.
1563   JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
1564      [DocBook XML DTD V4.1.2],,enable_man=no)
1565   JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
1566      [DocBook XSL Stylesheets],,enable_man=no)
1567 fi
1568
1569 AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
1570
1571
1572 ##################################################
1573 # Output commands
1574 ##################################################
1575
1576 AC_CONFIG_COMMANDS([gdk/gdkconfig.h], [
1577         outfile=gdkconfig.h-tmp
1578         cat > $outfile <<\_______EOF
1579 /* gdkconfig.h
1580  *
1581  * This is a generated file.  Please modify `configure.ac'
1582  */
1583
1584 #ifndef GDKCONFIG_H
1585 #define GDKCONFIG_H
1586
1587 #ifdef __cplusplus
1588 extern "C" {
1589 #endif /* __cplusplus */
1590
1591 #ifndef GSEAL
1592 /* introduce GSEAL() here for all of Gdk and Gtk+ without the need to modify GLib */
1593 #  ifdef GSEAL_ENABLE
1594 #    define GSEAL(ident)      _g_sealed__ ## ident
1595 #  else
1596 #    define GSEAL(ident)      ident
1597 #  endif
1598 #endif /* !GSEAL */
1599
1600 _______EOF
1601
1602         cat >>$outfile <<_______EOF
1603 $gdk_windowing
1604 $gdk_wc
1605 _______EOF
1606
1607         cat >>$outfile <<_______EOF
1608
1609 #ifdef __cplusplus
1610 }
1611 #endif /* __cplusplus */
1612
1613 #endif /* GDKCONFIG_H */
1614 _______EOF
1615
1616
1617         if cmp -s $outfile gdk/gdkconfig.h; then
1618           AC_MSG_NOTICE([gdk/gdkconfig.h is unchanged])
1619           rm -f $outfile
1620         else
1621           mv $outfile gdk/gdkconfig.h
1622         fi
1623 ],[
1624 if test "x$gdktarget" = "xx11" ; then
1625   gdk_windowing='
1626 #define GDK_WINDOWING_X11'
1627 elif test "x$gdktarget" = "xwin32" ; then
1628   gdk_windowing='
1629 #define GDK_NATIVE_WINDOW_POINTER
1630
1631 #define GDK_WINDOWING_WIN32'
1632 elif test "x$gdktarget" = "xquartz" ; then
1633   gdk_windowing='
1634 #define GDK_WINDOWING_QUARTZ'
1635 fi
1636
1637 if test x$gdk_wchar_h = xyes; then
1638   gdk_wc='
1639 #define GDK_HAVE_WCHAR_H 1'
1640 fi
1641 if test x$gdk_wctype_h = xyes; then
1642   gdk_wc="\$gdk_wc
1643 #define GDK_HAVE_WCTYPE_H 1"
1644 fi
1645 if test x$gdk_working_wctype = xno; then
1646   gdk_wc="\$gdk_wc
1647 #define GDK_HAVE_BROKEN_WCTYPE 1"
1648 fi
1649 ])
1650
1651 dnl
1652 dnl Check for -Bsymbolic-functions linker flag used to avoid
1653 dnl intra-library PLT jumps, if available.
1654 dnl
1655 AC_ARG_ENABLE(Bsymbolic,
1656               [AC_HELP_STRING([--disable-Bsymbolic],
1657                               [avoid linking with -Bsymbolic])],,
1658               [SAVED_LDFLAGS="${LDFLAGS}"
1659                AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
1660                LDFLAGS=-Wl,-Bsymbolic-functions
1661                AC_TRY_LINK([], [int main (void) { return 0; }],
1662                            AC_MSG_RESULT(yes)
1663                            enable_Bsymbolic=yes,
1664                            AC_MSG_RESULT(no)
1665                            enable_Bsymbolic=no)
1666                LDFLAGS="${SAVED_LDFLAGS}"])
1667
1668 if test "x${enable_Bsymbolic}" == "xyes"; then
1669   GTK_LINK_FLAGS=-Wl,-Bsymbolic-functions
1670 fi
1671 AC_SUBST(GTK_LINK_FLAGS)
1672
1673 AC_CONFIG_FILES([
1674 config.h.win32
1675 gtk-zip.sh
1676 Makefile
1677 gdk-3.0.pc
1678 gtk+-3.0.pc
1679 gtk+-unix-print-3.0.pc
1680 gail-3.0.pc
1681 gdk-3.0-uninstalled.pc
1682 gtk+-3.0-uninstalled.pc
1683 gail-3.0-uninstalled.pc
1684 m4macros/Makefile
1685 po/Makefile.in
1686 po-properties/Makefile.in
1687 demos/Makefile
1688 demos/gtk-demo/Makefile
1689 demos/gtk-demo/geninclude.pl
1690 tests/Makefile
1691 docs/Makefile
1692 docs/reference/Makefile
1693 docs/reference/gdk/Makefile
1694 docs/reference/gdk/version.xml
1695 docs/reference/gtk/Makefile
1696 docs/reference/gtk/version.xml
1697 docs/reference/libgail-util/Makefile
1698 docs/faq/Makefile
1699 docs/tools/Makefile
1700 docs/tutorial/Makefile
1701 build/Makefile
1702 build/win32/Makefile
1703 build/win32/vs9/Makefile
1704 gdk/Makefile
1705 gdk/x11/Makefile
1706 gdk/win32/Makefile
1707 gdk/win32/rc/Makefile
1708 gdk/win32/rc/gdk.rc
1709 gdk/quartz/Makefile
1710 gdk/tests/Makefile
1711 gtk/Makefile
1712 gtk/makefile.msc
1713 gtk/gtkversion.h
1714 gtk/gtk-win32.rc
1715 gtk/theme-bits/Makefile
1716 gtk/tests/Makefile
1717 modules/Makefile
1718 modules/other/Makefile
1719 modules/other/gail/Makefile
1720 modules/other/gail/libgail-util/Makefile
1721 modules/other/gail/tests/Makefile
1722 modules/engines/Makefile
1723 modules/engines/pixbuf/Makefile
1724 modules/engines/ms-windows/Makefile
1725 modules/engines/ms-windows/Theme/Makefile
1726 modules/engines/ms-windows/Theme/gtk-3.0/Makefile
1727 modules/input/Makefile
1728 modules/printbackends/Makefile
1729 modules/printbackends/cups/Makefile
1730 modules/printbackends/lpr/Makefile
1731 modules/printbackends/file/Makefile
1732 modules/printbackends/papi/Makefile
1733 modules/printbackends/test/Makefile
1734 perf/Makefile
1735 ])
1736
1737 AC_OUTPUT
1738
1739 echo "configuration:
1740         target:             $gdktarget"