]> Pileus Git - ~andy/gtk/blob - configure.ac
Merge branch 'notebooks-without-mouse-scrolling'
[~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.27.0])
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 # i18n stuff
481 ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`"
482 AM_GLIB_GNU_GETTEXT
483 LIBS="$LIBS $INTLLIBS"
484 AC_OUTPUT_COMMANDS([case "$CONFIG_FILES" in *po-properties/Makefile.in*)
485         sed -e "/POTFILES =/r po-properties/POTFILES" po-properties/Makefile.in > po-properties/Makefile
486       esac])
487
488 dnl Snippet below is copied from AM_GLIB_GNU_GETTEXT to generate a first
489 dnl po-properties/POTFILES during configure; see GNOME #573515.
490 dnl
491 dnl Generate list of files to be processed by xgettext which will
492 dnl be included in po-properties/Makefile.
493 test -d po-properties || mkdir po-properties
494 if test "x$srcdir" != "x."; then
495   if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
496     popropsrcprefix="$srcdir/"
497   else
498     popropsrcprefix="../$srcdir/"
499   fi
500 else
501   popropsrcprefix="../"
502 fi
503 rm -f po-properties/POTFILES
504 sed -e "/^#/d" -e "/^\$/d" -e "s,.*,    $popropsrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
505 < $srcdir/po-properties/POTFILES.in > po-properties/POTFILES
506 dnl (End of adapted AM_GLIB_GNU_GETTEXT snippet.)
507
508 AM_GLIB_DEFINE_LOCALEDIR(GTK_LOCALEDIR)
509
510 dnl The DU4 header files don't provide library prototypes unless
511 dnl -std1 is given to the native cc.
512 AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
513
514 gtk_save_LIBS=$LIBS
515 LIBS="$LIBS -lm"
516 AC_TRY_RUN([#include <math.h>
517              int main (void) { return (log(1) != log(1.)); }],
518      AC_MSG_RESULT(none needed),
519      gtk_save_CFLAGS="$CFLAGS"
520      CFLAGS="$CFLAGS -std1"
521      AC_TRY_RUN([#include <math.h>
522                  int main (void) { return (log(1) != log(1.)); }],
523          AC_MSG_RESULT(-std1),
524          AC_MSG_RESULT()
525          CFLAGS="$gtk_save_CFLAGS"
526          AC_MSG_WARN(
527                 [No ANSI prototypes found in library. (-std1 didn't work.)]),
528          true
529      ),
530      AC_MSG_RESULT(none needed)
531 )
532 LIBS=$gtk_save_LIBS
533
534 AC_MSG_CHECKING(for the BeOS)
535 case $host in
536   *-*-beos*)
537     AC_MSG_RESULT(yes)
538     MATH_LIB=
539   ;;
540   *)
541     AC_MSG_RESULT(no)
542   ;;
543 esac
544
545 AC_SUBST(MATH_LIB)
546 #
547 # see bug 162979
548 #
549 AC_MSG_CHECKING(for HP-UX)
550 case $host_os in
551   hpux9* | hpux10* | hpux11*)
552     AC_MSG_RESULT(yes)
553     CFLAGS="$CFLAGS -DHPPEX -DSHMLINK"
554   ;;
555   *)
556     AC_MSG_RESULT(no)
557   ;;
558 esac
559
560 dnl NeXTStep cc seems to need this
561 AC_MSG_CHECKING([for extra flags for POSIX compliance])
562 AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
563   AC_MSG_RESULT(none needed),
564   gtk_save_CFLAGS="$CFLAGS"
565   CFLAGS="$CFLAGS -posix"
566   AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
567     AC_MSG_RESULT(-posix),
568     AC_MSG_RESULT()
569     CFLAGS="$gtk_save_CFLAGS"
570     AC_MSG_WARN([Could not determine POSIX flag. (-posix didn't work.)])))
571
572 #
573 # Run AM_PATH_GLIB_2_0 to make sure that GLib is installed and working
574 #
575
576 GLIB_PACKAGES="gobject-2.0 gio-2.0 gmodule-no-export-2.0"
577
578 AM_PATH_GLIB_2_0(glib_required_version, :,
579   AC_MSG_ERROR([
580 *** GLIB glib_required_version or better is required. The latest version of
581 *** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/.]),
582   gobject gmodule-no-export gthread)
583
584 # See if it's safe to turn G_DISABLE_DEPRECATED on.
585 GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.@<:@^.@:>@*\$//"`
586 GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo glib_required_version | sed "s/\.@<:@^.@:>@*\$//"`
587 if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then
588   CFLAGS="-DG_DISABLE_DEPRECATED $CFLAGS"
589 fi
590
591 CFLAGS="-DGDK_PIXBUF_DISABLE_DEPRECATED $CFLAGS"
592
593
594 dnl
595 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
596 dnl
597 gtk_save_LIBS=$LIBS
598 LIBS="$LIBS $GLIB_LIBS"
599 AC_CHECK_FUNCS(bind_textdomain_codeset)
600 LIBS=$gtk_save_LIBS
601
602 AC_CHECK_HEADERS(pwd.h,
603                  AC_DEFINE(HAVE_PWD_H, 1,
604                            [Define to 1 if pwd.h is available]))
605 AC_CHECK_HEADERS(sys/time.h,
606                  AC_DEFINE(HAVE_SYS_TIME_H, 1,
607                            [Define to 1 if time.h is available]))
608 AC_CHECK_HEADERS(unistd.h,
609                  AC_DEFINE(HAVE_UNISTD_H, 1,
610                            [Define to 1 if unistd.h is available]))
611 AC_CHECK_HEADERS(ftw.h,
612                  AC_DEFINE(HAVE_FTW_H, 1,
613                            [Define to 1 if ftw.h is available]))
614
615 AC_MSG_CHECKING([for GNU ftw extensions])
616 AC_TRY_COMPILE([#define _XOPEN_SOURCE 500
617 #define _GNU_SOURCE
618 #include <ftw.h>], [int flags = FTW_ACTIONRETVAL;], gtk_ok=yes, gtk_ok=no)
619 if test $gtk_ok = yes; then
620     AC_MSG_RESULT([yes])
621     AC_DEFINE(HAVE_GNU_FTW, 1, [Have GNU ftw])
622 else
623     AC_MSG_RESULT([no])
624 fi
625
626 saved_cflags="$CFLAGS"
627 saved_ldflags="$LDFLAGS"
628
629
630 # Checks for header files.
631 AC_HEADER_STDC
632
633 # Checks for typedefs, structures, and compiler characteristics.
634 AC_C_CONST
635
636 # Checks for library functions.
637 AC_TYPE_SIGNAL
638 AC_FUNC_MMAP
639
640 AC_CHECK_FUNCS(mallinfo)
641 AC_CHECK_FUNCS(getresuid)
642 AC_TYPE_UID_T
643
644 # Check if <sys/select.h> needs to be included for fd_set
645 AC_MSG_CHECKING([for fd_set])
646 AC_TRY_COMPILE([#include <sys/types.h>],
647         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
648 if test $gtk_ok = yes; then
649     AC_MSG_RESULT([yes, found in sys/types.h])
650 else
651     AC_HEADER_EGREP(fd_mask, sys/select.h, gtk_ok=yes)
652     if test $gtk_ok = yes; then
653         AC_DEFINE(HAVE_SYS_SELECT_H, 1,
654                   [Define to 1 if sys/select.h is available])
655         AC_MSG_RESULT([yes, found in sys/select.h])
656     else
657         AC_DEFINE(NO_FD_SET, 1,
658                   [Define to 1 if fd_set is not available])
659         AC_MSG_RESULT(no)
660     fi
661 fi
662
663 # `widechar' tests for gdki18n.h
664 AC_MSG_CHECKING(for wchar.h)
665 AC_TRY_CPP([#include <wchar.h>], gdk_wchar_h=yes, gdk_wchar_h=no)
666 if test $gdk_wchar_h = yes; then
667    AC_DEFINE(HAVE_WCHAR_H, 1, [Have wchar.h include file])
668 fi
669 AC_MSG_RESULT($gdk_wchar_h)
670
671 # Check for wctype.h (for iswalnum)
672 AC_MSG_CHECKING(for wctype.h)
673 AC_TRY_CPP([#include <wctype.h>], gdk_wctype_h=yes, gdk_wctype_h=no)
674 if test $gdk_wctype_h = yes; then
675    AC_DEFINE(HAVE_WCTYPE_H, 1, [Have wctype.h include file])
676 fi
677 AC_MSG_RESULT($gdk_wctype_h)
678
679 # in Solaris 2.5, `iswalnum' is in -lw
680 GDK_WLIBS=
681 AC_CHECK_FUNC(iswalnum,,[AC_CHECK_LIB(w,iswalnum,GDK_WLIBS=-lw)])
682
683 oLIBS="$LIBS"
684 LIBS="$LIBS $GDK_WLIBS"
685 # The following is necessary for Linux libc-5.4.38
686 AC_MSG_CHECKING(if iswalnum() and friends are properly defined)
687 AC_TRY_LINK([#include <stdlib.h>],[
688 #if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H))
689 #  ifdef HAVE_WCTYPE_H
690 #    include <wctype.h>
691 #  else
692 #    ifdef HAVE_WCHAR_H
693 #      include <wchar.h>
694 #    endif
695 #  endif
696 #else
697 #  define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c))
698 #endif
699 iswalnum((wchar_t) 0);
700 ], gdk_working_wctype=yes, gdk_working_wctype=no)
701 LIBS="$oLIBS"
702
703 if test $gdk_working_wctype = no; then
704    AC_DEFINE(HAVE_BROKEN_WCTYPE, 1, [Is the wctype implementation broken])
705    GDK_WLIBS=
706 fi
707 AC_MSG_RESULT($gdk_working_wctype)
708 AC_SUBST(GDK_WLIBS)
709
710 # Check for uxtheme.h (for MS-Windows Engine)
711 AC_MSG_CHECKING(for uxtheme.h)
712 AC_TRY_CPP([#include <uxtheme.h>], gtk_uxtheme_h=yes, gtk_uxtheme_h=no)
713 if test $gtk_uxtheme_h = yes; then
714    AC_DEFINE(HAVE_UXTHEME_H, 1, [Have uxtheme.h include file])
715 fi
716 AC_MSG_RESULT($gtk_uxtheme_h)
717
718 # Checks for gdkspawn
719 AC_CHECK_HEADERS(crt_externs.h)
720 AC_CHECK_FUNCS(_NSGetEnviron)
721
722 AC_MSG_CHECKING(whether to build dynamic modules)
723
724 AC_ARG_ENABLE(modules,
725               [AC_HELP_STRING([--disable-modules],
726                               [disable dynamic module loading])])
727
728 dynworks=false
729 deps=
730 if test x$enable_modules = xno; then
731     AC_MSG_RESULT(no)
732 else
733     AC_MSG_RESULT(yes)
734     AC_MSG_CHECKING(whether dynamic modules work)
735     ## for loop is to strip newline
736     tmp=`$PKG_CONFIG --variable=gmodule_supported gmodule-no-export-2.0`
737     for I in $tmp; do
738         dynworks=$I
739     done
740
741     dnl Now we check to see if our libtool supports shared lib deps
742     dnl (in a rather ugly way even)
743     if $dynworks; then
744         module_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config"
745         module_deplibs_check=`$module_libtool_config | \
746             grep '^[[a-z_]]*check[[a-z_]]*_method=[['\''"]]' | \
747             sed 's/.*[['\''"]]\(.*\)[['\''"]]$/\1/'`
748         if test "x$module_deplibs_check" = "xnone" || \
749            test "x$module_deplibs_check" = "xunknown" || \
750            test "x$module_deplibs_check" = "x"; then
751             dynworks=false
752         fi
753     fi
754
755     if $dynworks; then
756         AC_DEFINE(USE_GMODULE, 1,
757                   [Define to 1 if gmodule works and should be used])
758         AC_MSG_RESULT(yes)
759     else
760         AC_MSG_RESULT(no)
761     fi
762 fi
763
764 AM_CONDITIONAL(BUILD_DYNAMIC_MODULES, $dynworks)
765
766 #
767 # Allow building some or all immodules included
768 #
769 AC_MSG_CHECKING(immodules to build)
770
771 dnl due to an autoconf bug, commas in the first arg to
772 dnl AC_HELP_STRING cause problems.
773 dnl AC_HELP_STRING([--with-included-immodules=MODULE1 MODULE2 ...],
774 dnl                [build the specified input method modules into gtk])
775 AC_ARG_WITH(included_immodules,
776 [  --with-included-immodules=MODULE1,MODULE2,...
777                           build the specified input methods into gtk])
778
779 if $dynworks; then
780    :
781 else
782    ## if the option was specified, leave it; otherwise disable included immodules
783    if test x$with_included_immodules = xno; then
784            with_included_immodules=yes
785    fi
786 fi
787
788 all_immodules="am-et,cedilla,cyrillic-translit"
789 if test "$gdktarget" = "win32"; then
790    all_immodules="${all_immodules},ime"
791 fi
792 all_immodules="${all_immodules},inuktitut,ipa,multipress,thai,ti-er,ti-et,viqr"
793 if test "$gdktarget" = "x11"; then
794    all_immodules="${all_immodules},xim"
795 fi
796
797 included_immodules=""
798 # If the switch specified without listing any specific ones, include all
799 if test "x$with_included_immodules" = xyes ; then
800   included_immodules="$all_immodules"
801 else
802   included_immodules="$with_included_immodules"
803 fi
804
805 AC_MSG_RESULT($included_immodules)
806 AM_CONDITIONAL(HAVE_INCLUDED_IMMMODULES, test "x$included_immodules" != x)
807
808 INCLUDED_IMMODULE_OBJ=
809 INCLUDED_IMMODULE_DEFINE=
810
811 IFS="${IFS=     }"; gtk_save_ifs="$IFS"; IFS=","
812 for immodule in $included_immodules; do
813  immodule_underscores=`echo $immodule | sed -e 's/-/_/g'`
814  if echo "$all_immodules" | egrep "(^|,)$immodule(\$|,)" > /dev/null; then
815    :
816  else
817    AC_MSG_ERROR([the specified input method $immodule does not exist])
818  fi
819
820  INCLUDED_IMMODULE_OBJ="$INCLUDED_IMMODULE_OBJ ../modules/input/libstatic-im-$immodule.la"
821  INCLUDED_IMMODULE_DEFINE="$INCLUDED_IMMODULE_DEFINE -DINCLUDE_IM_$immodule_underscores"
822  eval INCLUDE_$immodule_underscores=yes
823 done
824 IFS="$gtk_save_ifs"
825 AC_SUBST(INCLUDED_IMMODULE_OBJ)
826 AC_SUBST(INCLUDED_IMMODULE_DEFINE)
827
828 AM_CONDITIONAL(INCLUDE_IM_AM_ET, [test x"$INCLUDE_am_et" = xyes])
829 AM_CONDITIONAL(INCLUDE_IM_CEDILLA, [test x"$INCLUDE_cedilla" = xyes])
830 AM_CONDITIONAL(INCLUDE_IM_CYRILLIC_TRANSLIT, [test x"$INCLUDE_cyrillic_translit" = xyes])
831 AM_CONDITIONAL(INCLUDE_IM_IME, [test x"$INCLUDE_ime" = xyes])
832 AM_CONDITIONAL(INCLUDE_IM_INUKTITUT, [test x"$INCLUDE_inuktitut" = xyes])
833 AM_CONDITIONAL(INCLUDE_IM_IPA, [test x"$INCLUDE_ipa" = xyes])
834 AM_CONDITIONAL(INCLUDE_IM_MULTIPRESS, [test x"$INCLUDE_multipress" = xyes])
835 AM_CONDITIONAL(INCLUDE_IM_THAI, [test x"$INCLUDE_thai" = xyes])
836 AM_CONDITIONAL(INCLUDE_IM_TI_ER, [test x"$INCLUDE_ti_er" = xyes])
837 AM_CONDITIONAL(INCLUDE_IM_TI_ET, [test x"$INCLUDE_ti_et" = xyes])
838 AM_CONDITIONAL(INCLUDE_IM_VIQR, [test x"$INCLUDE_viqr" = xyes])
839 AM_CONDITIONAL(INCLUDE_IM_XIM, [test x"$INCLUDE_xim" = xyes])
840
841 AC_HEADER_SYS_WAIT
842
843 AC_TYPE_SIGNAL
844
845 # Checks to see whether we should include mediaLib
846 # support.
847 #
848 AC_CHECK_HEADER(sys/systeminfo.h,
849                 AC_DEFINE(HAVE_SYS_SYSTEMINFO_H, 1,
850                           [Define to 1 if sys/systeminfo.h is available]))
851 AC_CHECK_HEADER(sys/sysinfo.h,
852                 AC_DEFINE(HAVE_SYS_SYSINFO_H, 1,
853                           [Define to 1 if sys/sysinfo.h is available]))
854
855 AC_MSG_CHECKING(for mediaLib 2.3)
856 use_mlib25=no
857 # Check for a mediaLib 2.3 function since that is what the GTK+ mediaLib
858 # patch requires.
859 AC_CHECK_LIB(mlib, mlib_ImageSetStruct, use_mlib=yes, use_mlib=no)
860 if test $use_mlib = yes; then
861     AC_DEFINE(USE_MEDIALIB, 1,
862               [Define to 1 if medialib is available and should be used])
863     MEDIA_LIB=-lmlib
864
865     AC_MSG_CHECKING(for mediaLib 2.5)
866     # Check for a mediaLib 2.5 function since that is what is needed for
867     # gdk_rgb_convert integration.
868     AC_CHECK_LIB(mlib, mlib_VideoColorRGBint_to_BGRAint, use_mlib25=yes, use_mlib25=no)
869     if test $use_mlib25 = yes; then
870         AC_DEFINE(USE_MEDIALIB25, 1,
871                   [Define to 1 if medialib 2.5 is available])
872     fi
873 fi
874 AM_CONDITIONAL(USE_MEDIALIB, test $use_mlib = yes)
875 AM_CONDITIONAL(USE_MEDIALIB25, test $use_mlib25 = yes)
876
877 dnl Look for a host system's gdk-pixbuf-csource if we are cross-compiling
878
879 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
880
881 if test $cross_compiling = yes; then
882   AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache, no)
883   if test x$GTK_UPDATE_ICON_CACHE = xno; then
884     REBUILD_PNGS=#
885   fi
886 fi
887
888 AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no)
889
890 if test ! -f $srcdir/gtk/gtkbuiltincache.h &&
891    test "x$REBUILD_PNGS" = "x#" ; then
892      AC_MSG_ERROR([
893 *** gtkbuiltincache.h is not in the tree, and cannot be built
894 *** because you don't have libpng, or (when cross-compiling) you
895 *** don't have a prebuilt gtk-update-icon-cache on the build system.])
896 fi
897
898 ########################################
899 # Windowing system checks
900 ########################################
901
902 GDK_EXTRA_LIBS="$GDK_WLIBS"
903 GDK_EXTRA_CFLAGS=
904
905 # GTK+ uses some X calls, so needs to link against X directly
906 GTK_DEP_PACKAGES_FOR_X=
907 GTK_DEP_LIBS_FOR_X=
908
909 if test "x$gdktarget" = "xx11"; then
910   X_PACKAGES=fontconfig
911
912   #
913   # We use fontconfig very peripherally when decoding the default
914   # settings.
915   #
916   if $PKG_CONFIG --exists fontconfig; then : ; else
917     AC_MSG_ERROR([
918 *** fontconfig (http://www.fontconfig.org) is required by the X11 backend.])
919   fi
920
921   #
922   # Check for basic X packages; we use pkg-config if available
923   #
924   if $PKG_CONFIG --exists x11 xext; then
925     have_base_x_pc=true
926     X_PACKAGES="$X_PACKAGES x11 xext"
927     x_libs="`$PKG_CONFIG --libs x11 xext`"
928     X_CFLAGS="`$PKG_CONFIG --cflags x11 xext`"
929
930     # Strip out any .la files that pkg-config might give us (this happens
931     # with -uninstalled.pc files)
932     x_libs_for_checks=
933     for I in $x_libs ; do
934       case $I in
935         *.la) ;;
936         *) x_libs_for_checks="$x_libs_for_checks $I" ;;
937       esac
938     done
939
940     GTK_PACKAGES_FOR_X="x11"
941   else
942     have_base_x_pc=false
943     AC_PATH_XTRA
944     if test x$no_x = xyes ; then
945       AC_MSG_ERROR([X development libraries not found])
946     fi
947
948     x_cflags="$X_CFLAGS"
949     x_libs_for_checks="$X_LIBS -lXext -lX11 $X_EXTRA_LIBS"
950
951     GTK_DEP_LIBS_FOR_X="$X_LIBS -lX11 $X_EXTRA_LIBS"
952   fi
953
954   # Extra libraries found during checks (-lXinerama, etc), not from pkg-config.
955   x_extra_libs=
956
957   gtk_save_cppflags="$CPPFLAGS"
958   CPPFLAGS="$CPPFLAGS $X_CFLAGS"
959
960   gtk_save_LIBS=$LIBS
961   LIBS="$x_libs_for_checks $LIBS"
962
963   # Sanity check for the X11 and Xext libraries. While everything we need from
964   # Xext is optional, the chances a system has *none* of these things is so
965   # small that we just unconditionally require it.
966   AC_CHECK_FUNC(XOpenDisplay, :,
967                 AC_MSG_ERROR([*** libX11 not found. Check 'config.log' for more details.]))
968   AC_CHECK_FUNC(XextFindDisplay, :,
969                 AC_MSG_ERROR([*** libXext not found. Check 'config.log' for more details.]))
970
971   # Check for xReply
972
973   AC_MSG_CHECKING([if <X11/extensions/XIproto.h> is needed for xReply])
974   AC_TRY_COMPILE([#include <X11/Xlibint.h>],
975       [xReply *rep;],
976       [AC_MSG_RESULT([no])],
977       [AC_TRY_COMPILE([#include <X11/extensions/XIproto.h>
978 #include <X11/Xlibint.h>],
979            [xReply *rep;],
980            [AC_MSG_RESULT([yes])
981             AC_DEFINE([NEED_XIPROTO_H_FOR_XREPLY], 1,
982                       [Define if <X11/extensions/XIproto.h> needed for xReply])],
983            [AC_MSG_RESULT([unknown])
984             AC_MSG_ERROR([xReply type unavailable. X11 is too old])])])
985
986   # Check for XConvertCase, XInternAtoms (X11R6 specific)
987
988   AC_CHECK_FUNCS(XConvertCase XInternAtoms)
989
990   # Generic X11R6 check needed for XIM support; we could
991   # probably use this to replace the above, but we'll
992   # leave the separate checks for XConvertCase and XInternAtoms
993   # for clarity
994
995   have_x11r6=false
996   AC_CHECK_FUNC(XAddConnectionWatch,
997       have_x11r6=true)
998
999   if $have_x11r6; then
1000     AC_DEFINE(HAVE_X11R6, 1, [Define if we have X11R6])
1001   fi
1002   AM_CONDITIONAL(HAVE_X11R6, $have_x11r6)
1003
1004   # Check for XKB support.
1005
1006   if test "x$enable_xkb" = "xyes"; then
1007         AC_MSG_WARN(XKB support explicitly enabled)
1008         AC_DEFINE(HAVE_XKB, 1, [Define to use XKB extension])
1009   elif test "x$enable_xkb" = "xmaybe"; then
1010         AC_CHECK_FUNC(XkbQueryExtension,
1011                       AC_DEFINE(HAVE_XKB, 1, [Define to use XKB extension]))
1012   else
1013         AC_MSG_WARN(XKB support explicitly disabled)
1014   fi
1015
1016   # Check for shaped window extension
1017
1018   AC_CHECK_FUNC(XShapeCombineMask, :,
1019      [AC_MSG_ERROR([Shape extension not found, check your development headers])])
1020
1021   # X SYNC check
1022   gtk_save_CFLAGS="$CFLAGS"
1023   CFLAGS="$CFLAGS $x_cflags"
1024
1025   AC_CHECK_FUNC(XSyncQueryExtension,
1026       [AC_CHECK_HEADER(X11/extensions/sync.h,
1027           AC_DEFINE(HAVE_XSYNC, 1, [Have the SYNC extension library]),
1028           :, [#include <X11/Xlib.h>])])
1029
1030   CFLAGS="$gtk_save_CFLAGS"
1031
1032   # Xshm checks
1033
1034   if test "x$enable_shm" = "xyes"; then
1035      # Check for the XShm extension, normally in Xext
1036      AC_CHECK_FUNC(XShmAttach,
1037         :,
1038         # On AIX, it is in XextSam instead
1039         [AC_CHECK_LIB(XextSam, XShmAttach,
1040             [GTK_ADD_LIB(x_extra_libs,XextSam)])])
1041   fi
1042
1043   if test "x$enable_shm" = "xyes"; then
1044     # Check for shared memory
1045     AC_CHECK_HEADER(sys/ipc.h,
1046                     AC_DEFINE(HAVE_IPC_H, 1,
1047                               [Define to 1 if ipc.h is available]),
1048                     no_sys_ipc=yes)
1049     AC_CHECK_HEADER(sys/shm.h,
1050                     AC_DEFINE(HAVE_SHM_H, 1,
1051                               [Define to 1 if shm.h is available]),
1052                     no_sys_shm=yes)
1053
1054     # Check for the X shared memory extension header file
1055     have_xshm=no
1056     AC_MSG_CHECKING(X11/extensions/XShm.h)
1057     if test "x$no_xext_lib" = "xyes"; then
1058       :
1059     else
1060       gtk_save_CFLAGS="$CFLAGS"
1061       CFLAGS="$CFLAGS $x_cflags"
1062       AC_TRY_COMPILE([
1063 #include <stdlib.h>
1064 #include <sys/types.h>
1065 #include <sys/ipc.h>
1066 #include <sys/shm.h>
1067 #include <X11/Xlib.h>
1068 #include <X11/Xutil.h>
1069 #include <X11/extensions/XShm.h>
1070 ], [XShmSegmentInfo *x_shm_info;], have_xshm=yes)
1071       CFLAGS="$gtk_save_CFLAGS"
1072     fi
1073     AC_MSG_RESULT($have_xshm)
1074     if test $have_xshm = yes ; then
1075       AC_DEFINE(HAVE_XSHM_H, 1,
1076                 [Define to 1 if xshm.h is available])
1077     fi
1078   fi
1079
1080   if test "x$enable_xinerama" = "xyes"; then
1081     # Check for Xinerama extension (Solaris impl or Xfree impl)
1082     gtk_save_cppflags="$CPPFLAGS"
1083     CPPFLAGS="$CPPFLAGS $x_cflags"
1084
1085     # Check for XFree
1086     AC_MSG_CHECKING(for Xinerama support on XFree86)
1087
1088     have_xfree_xinerama=false
1089     if $PKG_CONFIG --exists xinerama ; then
1090        have_xfree_xinerama=true
1091        X_PACKAGES="$X_PACKAGES xinerama"
1092     else
1093        AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
1094            [AC_CHECK_HEADER(X11/extensions/Xinerama.h,
1095            [GTK_ADD_LIB(x_extra_libs,Xinerama)
1096            have_xfree_xinerama=true], :,
1097            [#include <X11/Xlib.h>])])
1098     fi
1099
1100     if $have_xfree_xinerama ; then
1101       AC_DEFINE(HAVE_XFREE_XINERAMA, 1,
1102                 [Define to 1 if XFree Xinerama is available])
1103       AC_DEFINE(HAVE_XINERAMA, 1,
1104                 [Define to 1 is Xinerama is available])
1105       AC_MSG_RESULT(yes)
1106     else
1107       AC_MSG_RESULT(no)
1108
1109       case "$host" in
1110         *-*-solaris*)
1111             # Check for solaris
1112             AC_MSG_CHECKING(for Xinerama support on Solaris)
1113
1114             have_solaris_xinerama=false
1115             AC_CHECK_FUNC(XineramaGetInfo,
1116                 [AC_CHECK_HEADER(X11/extensions/xinerama.h,
1117                     [have_solaris_xinerama=true], :,
1118                     [#include <X11/Xlib.h>])])
1119
1120             if $have_solaris_xinerama ; then
1121               AC_DEFINE(HAVE_SOLARIS_XINERAMA, 1,
1122                         [Define to 1 if solaris xinerama is available])
1123               AC_DEFINE(HAVE_XINERAMA, 1,
1124                         [Define to 1 if xinerama is available])
1125               AC_MSG_RESULT(yes)
1126             else
1127               AC_MSG_RESULT(no)
1128             fi
1129             ;;
1130         *)
1131             ;;
1132       esac
1133     fi
1134   fi
1135
1136   # set up things for XInput
1137   if test "x$with_xinput" != "xno" && $PKG_CONFIG --exists "xi" ; then
1138     have_xinput=yes
1139
1140     AC_DEFINE(XINPUT_XFREE, 1,
1141               [Define to 1 if XFree XInput should be used])
1142
1143     X_PACKAGES="$X_PACKAGES xi"
1144
1145     AC_CHECK_HEADER(X11/extensions/XInput2.h,
1146                     have_xinput2=yes; AC_DEFINE(XINPUT_2, 1, [Define to 1 if XInput 2.0 is available]))
1147   else
1148     AC_DEFINE(XINPUT_NONE, 1,
1149               [Define to 1 if no XInput should be used])
1150   fi
1151
1152   AM_CONDITIONAL(XINPUT_XFREE, test "x$have_xinput" = "xyes")
1153   AM_CONDITIONAL(XINPUT_2,     test "x$have_xinput2" = "xyes")
1154
1155   # Check for the RANDR extension
1156   if $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then
1157      AC_DEFINE(HAVE_RANDR, 1, [Have the Xrandr extension library])
1158
1159      X_PACKAGES="$X_PACKAGES xrandr"
1160   fi
1161
1162   # Checks for Xcursor library
1163
1164   if $PKG_CONFIG --exists xcursor ; then
1165     AC_DEFINE(HAVE_XCURSOR, 1, [Have the Xcursor library])
1166
1167     X_PACKAGES="$X_PACKAGES xcursor"
1168   fi
1169
1170   # Checks for XFixes extension
1171
1172   if $PKG_CONFIG --exists xfixes ; then
1173     AC_DEFINE(HAVE_XFIXES, 1, [Have the XFIXES X extension])
1174
1175     X_PACKAGES="$X_PACKAGES xfixes"
1176     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xfixes"
1177   fi
1178
1179   # Checks for Xcomposite extension
1180
1181   if $PKG_CONFIG --exists xcomposite ; then
1182     AC_DEFINE(HAVE_XCOMPOSITE, 1, [Have the XCOMPOSITE X extension])
1183
1184     X_PACKAGES="$X_PACKAGES xcomposite"
1185     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xcomposite"
1186   fi
1187
1188   # Checks for Xdamage extension
1189
1190   if $PKG_CONFIG --exists xdamage ; then
1191     AC_DEFINE(HAVE_XDAMAGE, 1, [Have the XDAMAGE X extension])
1192
1193     X_PACKAGES="$X_PACKAGES xdamage"
1194     GTK_PACKAGES_FOR_X="$GTK_PACKAGES_FOR_X xdamage"
1195   fi
1196
1197   if $have_base_x_pc ; then
1198     GDK_EXTRA_LIBS="$x_extra_libs"
1199   else
1200     GDK_EXTRA_LIBS="$X_LIBS $x_extra_libs -lXext -lX11 $GDK_EXTRA_LIBS"
1201   fi
1202
1203   CPPFLAGS="$gtk_save_cppflags"
1204   LIBS="$gtk_save_libs"
1205
1206   AM_CONDITIONAL(USE_X11, true)
1207 else
1208   XPACKAGES=
1209
1210   AM_CONDITIONAL(XINPUT_XFREE, false)
1211   AM_CONDITIONAL(XINPUT_2, false)
1212   AM_CONDITIONAL(USE_X11, false)
1213   AM_CONDITIONAL(HAVE_X11R6, false)
1214 fi
1215
1216 if test "x$gdktarget" = "xwin32"; then
1217   GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -lgdi32 -limm32 -lshell32 -lole32 -Wl,-luuid"
1218   AM_CONDITIONAL(USE_WIN32, true)
1219 else
1220   AM_CONDITIONAL(USE_WIN32, false)
1221 fi
1222
1223 if test "x$gdktarget" = "xquartz"; then
1224   GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -framework Cocoa"
1225   AM_CONDITIONAL(USE_QUARTZ, true)
1226 else
1227   AM_CONDITIONAL(USE_QUARTZ, false)
1228 fi
1229
1230 # Check for Pango flags
1231
1232 if test "x$gdktarget" = "xwin32"; then
1233         PANGO_PACKAGES="pangowin32 pangocairo"
1234 else
1235         PANGO_PACKAGES="pango pangocairo"
1236 fi
1237
1238 AC_MSG_CHECKING(Pango flags)
1239 if $PKG_CONFIG --exists $PANGO_PACKAGES ; then
1240         PANGO_CFLAGS=`$PKG_CONFIG --cflags $PANGO_PACKAGES`
1241         PANGO_LIBS=`$PKG_CONFIG --libs $PANGO_PACKAGES`
1242
1243         AC_MSG_RESULT($PANGO_CFLAGS $PANGO_LIBS)
1244 else
1245         AC_MSG_ERROR([
1246 *** Pango not found. Pango built with Cairo support is required
1247 *** to build GTK+. See http://www.pango.org for Pango information.
1248 ])
1249 fi
1250
1251 CFLAGS="$CFLAGS $PANGO_CFLAGS"
1252
1253 if $PKG_CONFIG --uninstalled $PANGO_PACKAGES; then
1254         :
1255 else
1256         gtk_save_LIBS="$LIBS"
1257         LIBS="$PANGO_LIBS $LIBS"
1258         AC_TRY_LINK_FUNC(pango_context_new, :, AC_MSG_ERROR([
1259 *** Can't link to Pango. Pango is required to build
1260 *** GTK+. For more information see http://www.pango.org]))
1261         LIBS="$gtk_save_LIBS"
1262 fi
1263
1264 CFLAGS="$saved_cflags"
1265 LDFLAGS="$saved_ldflags"
1266
1267 # Pull in gio-unix for GDesktopAppInfo usage, see at least gdkapplaunchcontext-x11.c
1268 if test "x$gdktarget" = "xx11"; then
1269   GDK_PACKAGES="$PANGO_PACKAGES gio-unix-2.0 $X_PACKAGES gdk-pixbuf-2.0 cairo-$cairo_backend"
1270 else
1271   GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 gdk-pixbuf-2.0 cairo-$cairo_backend"
1272 fi
1273
1274 GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES`"
1275 GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags  gthread-2.0 $GDK_PACKAGES` $GDK_EXTRA_CFLAGS"
1276 #
1277 # If we aren't writing explicit dependencies, then don't put the extra libraries we need
1278 # into the pkg-config files
1279 #
1280 if test $enable_explicit_deps != yes ; then
1281   GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0"
1282   GDK_EXTRA_LIBS=
1283 fi
1284
1285 AC_SUBST(GDK_PACKAGES)
1286 AC_SUBST(GDK_EXTRA_LIBS)
1287 AC_SUBST(GDK_EXTRA_CFLAGS)
1288 AC_SUBST(GDK_DEP_LIBS)
1289 AC_SUBST(GDK_DEP_CFLAGS)
1290
1291
1292 ########################################
1293 # Check for Accessibility Toolkit flags
1294 ########################################
1295
1296 ATK_PACKAGES=atk
1297 AC_MSG_CHECKING(ATK flags)
1298 if $PKG_CONFIG --exists $ATK_PACKAGES ; then
1299         ATK_CFLAGS=`$PKG_CONFIG --cflags $ATK_PACKAGES`
1300         ATK_LIBS=`$PKG_CONFIG --libs $ATK_PACKAGES`
1301
1302         AC_MSG_RESULT($ATK_CFLAGS $ATK_LIBS)
1303 else
1304         AC_MSG_ERROR([
1305 *** Accessibility Toolkit not found. Accessibility Toolkit is required
1306 *** to build GTK+.
1307 ])
1308 fi
1309
1310 if $PKG_CONFIG --uninstalled $ATK_PACKAGES; then
1311         :
1312 else
1313         gtk_save_LIBS="$LIBS"
1314         LIBS="$ATK_LIBS $LIBS"
1315         AC_TRY_LINK_FUNC(atk_object_get_type, : , AC_MSG_ERROR([
1316                 *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required
1317                 *** to build GTK+]))
1318         LIBS="$gtk_save_LIBS"
1319 fi
1320
1321 GTK_PACKAGES="atk cairo gdk-pixbuf-2.0 gio-2.0"
1322 if test "x$gdktarget" = "xx11"; then
1323   GTK_PACKAGES="$GTK_PACKAGES pangoft2"
1324 fi
1325 GTK_EXTRA_LIBS=
1326 GTK_EXTRA_CFLAGS=
1327 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"
1328 GTK_DEP_CFLAGS="`$PKG_CONFIG --cflags  gthread-2.0 $GDK_PACKAGES $GTK_PACKAGES` $GDK_EXTRA_CFLAGS $GTK_EXTRA_CFLAGS"
1329
1330 if test x"$os_win32" = xyes; then
1331   GTK_EXTRA_CFLAGS="$msnative_struct"
1332 fi
1333
1334 GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
1335 ATK_PREFIX="`$PKG_CONFIG --variable=prefix atk`"
1336 PANGO_PREFIX="`$PKG_CONFIG --variable=prefix pango`"
1337 CAIRO_PREFIX="`$PKG_CONFIG --variable=prefix cairo`"
1338
1339 AC_SUBST(GTK_PACKAGES)
1340 AC_SUBST(GTK_EXTRA_LIBS)
1341 AC_SUBST(GTK_EXTRA_CFLAGS)
1342 AC_SUBST(GTK_DEP_LIBS)
1343 AC_SUBST(GTK_DEP_CFLAGS)
1344
1345 AC_SUBST(GLIB_PREFIX)
1346 AC_SUBST(ATK_PREFIX)
1347 AC_SUBST(PANGO_PREFIX)
1348 AC_SUBST(CAIRO_PREFIX)
1349
1350 AC_SUBST(GTK_DEBUG_FLAGS)
1351 AC_SUBST(GTK_XIM_FLAGS)
1352
1353 GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs gdk-pixbuf-2.0`
1354 AC_SUBST(GDK_PIXBUF_LIBS)
1355
1356 ########################
1357 # Checks needed for gail
1358 ########################
1359
1360 old_LIBS="$LIBS"
1361 dnl Checks for inet libraries:
1362 AC_SEARCH_LIBS(gethostent, nsl)
1363 AC_SEARCH_LIBS(setsockopt, socket)
1364 AC_SEARCH_LIBS(connect, inet)
1365
1366 dnl check for the sockaddr_un.sun_len member
1367 AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
1368                 [struct_sockaddr_un_sun_len=true],
1369                 [struct_sockaddr_un_suin_len=false],
1370                 [#include <sys/types.h>
1371                  #include <sys/un.h>]
1372                 )
1373 case $struct_sockaddr_un_sun_len in
1374         true)
1375                 AC_DEFINE_UNQUOTED(HAVE_SOCKADDR_UN_SUN_LEN, 1,
1376                                    [Have the sockaddr_un.sun_len member])
1377                 ;;
1378         *)
1379                 ;;
1380 esac
1381
1382 GAIL_INET_LIBS="$LIBS"
1383 AC_SUBST([GAIL_INET_LIBS])
1384
1385 LIBS="$old_LIBS"
1386
1387 ################################################################
1388 # Printing system checks
1389 ################################################################
1390
1391 AC_ARG_ENABLE(cups,
1392               [AC_HELP_STRING([--disable-cups]
1393                               [disable cups print backend])],,
1394               [enable_cups=auto])
1395
1396 if test "x$enable_cups" = "xno"; then
1397   AM_CONDITIONAL(HAVE_CUPS, false)
1398 else
1399   AC_PATH_PROG(CUPS_CONFIG, cups-config, no)
1400   if test "x$CUPS_CONFIG" = "xno"; then
1401     if test "x$enable_cups" = "xauto"; then
1402       AM_CONDITIONAL(HAVE_CUPS, false)
1403     else
1404       AC_MSG_ERROR([
1405 *** cups not found.
1406 ])
1407     fi
1408   else
1409     CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O[0-9]*//' | sed 's/-m[^\t]*//g'`
1410     CUPS_LIBS=`$CUPS_CONFIG --libs`
1411
1412     CUPS_API_VERSION=`$CUPS_CONFIG --api-version`
1413     CUPS_API_MAJOR=`echo $ECHO_N $CUPS_API_VERSION | awk -F. '{print $1}'`
1414     CUPS_API_MINOR=`echo $ECHO_N $CUPS_API_VERSION | awk -F. '{print $2}'`
1415
1416     if test $CUPS_API_MAJOR -gt 1 -o \
1417             $CUPS_API_MAJOR -eq 1 -a $CUPS_API_MINOR -ge 2; then
1418       AC_DEFINE(HAVE_CUPS_API_1_2, 1,
1419                 [Define to 1 if CUPS 1.2 API is available])
1420     fi
1421
1422     AC_SUBST(CUPS_API_MAJOR)
1423     AC_SUBST(CUPS_API_MINOR)
1424     AC_SUBST(CUPS_CFLAGS)
1425     AC_SUBST(CUPS_LIBS)
1426
1427     AC_CHECK_HEADER(cups/cups.h,,AC_MSG_ERROR([[*** Sorry, cups-config present but cups/cups.h missing.]]))
1428
1429     AM_CONDITIONAL(HAVE_CUPS, true)
1430
1431     gtk_save_cflags="$CFLAGS"
1432     CFLAGS="$CUPS_CFLAGS"
1433     AC_TRY_COMPILE([#include <cups/http.h>],
1434                    [http_t http; char *s = http.authstring;],
1435                    [AC_DEFINE(HAVE_HTTP_AUTHSTRING, [],
1436                               [Define if cups http_t authstring field is accessible])],)
1437     CFLAGS="$gtk_save_cflags"
1438
1439     AC_SUBST(HAVE_HTTP_AUTHSTRING)
1440
1441     gtk_save_libs="$LIBS"
1442     LIBS="$CUPS_LIBS"
1443     AC_CHECK_FUNCS(httpGetAuthString)
1444     LIBS="$gtk_save_libs"
1445   fi
1446 fi
1447
1448 # Checks to see if we should compile with PAPI backend for GTK+
1449 #
1450
1451 AC_ARG_ENABLE(papi,
1452               [AC_HELP_STRING([--disable-papi]
1453                               [disable papi print backend])],,
1454              [enable_papi=auto])
1455
1456 if test "x$enable_papi" = "xno"; then
1457   AM_CONDITIONAL(HAVE_PAPI, false)
1458 else
1459   AC_MSG_CHECKING(libpapi)
1460   AC_CHECK_LIB(papi, papiServiceCreate, have_papi=yes, have_papi=no)
1461   if test $have_papi = yes; then
1462     AC_DEFINE([HAVE_PAPI], [], [Define to 1 if libpapi available])
1463   fi
1464   AM_CONDITIONAL(HAVE_PAPI, test $have_papi = yes)
1465   if test "x$enable_papi" = "xyes" -a "x$have_papi" = "xno"; then
1466     AC_MSG_ERROR([
1467 *** papi not found.
1468 ])
1469   fi
1470 fi
1471
1472 AM_CONDITIONAL(HAVE_PAPI_CUPS, test "x$have_papi" = "xyes" -a "x$CUPS_CONFIG" != "xno")
1473
1474 gtk_save_cppflags="$CPPFLAGS"
1475 CPPFLAGS="$CPPFLAGS $GTK_DEP_CFLAGS $GDK_DEP_CFLAGS"
1476
1477 AC_CHECK_HEADER(cairo-pdf.h,,AC_MSG_ERROR([
1478 *** Can't find cairo-pdf.h. You must build Cairo with the pdf
1479 *** backend enabled.]))
1480
1481 if test "$os_win32" != "yes"; then
1482   AC_CHECK_HEADER(cairo-ps.h,,AC_MSG_ERROR([
1483 *** Can't find cairo-ps.h. You must build Cairo with the
1484 *** postscript backend enabled.]))
1485
1486   AC_CHECK_HEADER(cairo-svg.h,,AC_MSG_ERROR([
1487 *** Can't find cairo-svg.h. You must build Cairo with the
1488 *** svg backend enabled.]))
1489 fi
1490
1491 CPPFLAGS="$gtk_save_cppflags"
1492
1493
1494 AC_ARG_ENABLE(test-print-backend,
1495               [AC_HELP_STRING([--enable-test-print-backend],
1496                               [build test print backend])],,
1497               [enable_test_print_backend=no])
1498 AM_CONDITIONAL(TEST_PRINT_BACKEND, test "x$enable_test_print_backend" != "xno")
1499
1500
1501 ################################################################
1502 # Strip -export-dynamic from the link lines of various libraries
1503 ################################################################
1504
1505 #
1506 # pkg-config --libs gmodule includes the "export_dynamic" flag,
1507 #  but this flag is only meaningful for executables. For libraries
1508 #  the effect is undefined; what it causes on Linux is that the
1509 #  export list from -export-symbols-regex is ignored and everything
1510 #  is exported
1511 #
1512 # We are using gmodule-no-export now, but I'm leaving the stripping
1513 # code in place for now, since pango and atk still require gmodule.
1514 export SED
1515 export_dynamic=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
1516 if test -n "$export_dynamic"; then
1517   GDK_DEP_LIBS=`echo $GDK_DEP_LIBS | sed -e "s/$export_dynamic//"`
1518   GTK_DEP_LIBS=`echo $GTK_DEP_LIBS | sed -e "s/$export_dynamic//"`
1519 fi
1520
1521 ##################################################
1522 # GObject introspection
1523 ##################################################
1524
1525 GOBJECT_INTROSPECTION_CHECK([0.9.3])
1526
1527 ##################################################
1528 # Checks for gtk-doc and docbook-tools
1529 ##################################################
1530
1531 GTK_DOC_CHECK([1.11])
1532
1533 AC_CHECK_PROG(DB2HTML, db2html, true, false)
1534 AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)
1535
1536 AC_ARG_ENABLE(man,
1537               [AC_HELP_STRING([--enable-man],
1538                               [regenerate man pages from Docbook [default=no]])],enable_man=yes,
1539               enable_man=no)
1540
1541 if test "${enable_man}" != no; then
1542   dnl
1543   dnl Check for xsltproc
1544   dnl
1545   AC_PATH_PROG([XSLTPROC], [xsltproc])
1546   if test -z "$XSLTPROC"; then
1547     enable_man=no
1548   fi
1549
1550   dnl check for DocBook DTD and stylesheets in the local catalog.
1551   JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
1552      [DocBook XML DTD V4.1.2],,enable_man=no)
1553   JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
1554      [DocBook XSL Stylesheets],,enable_man=no)
1555 fi
1556
1557 AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
1558
1559
1560 ##################################################
1561 # Output commands
1562 ##################################################
1563
1564 AC_CONFIG_COMMANDS([gdk/gdkconfig.h], [
1565         outfile=gdkconfig.h-tmp
1566         cat > $outfile <<\_______EOF
1567 /* gdkconfig.h
1568  *
1569  * This is a generated file.  Please modify `configure.ac'
1570  */
1571
1572 #ifndef GDKCONFIG_H
1573 #define GDKCONFIG_H
1574
1575 #ifdef __cplusplus
1576 extern "C" {
1577 #endif /* __cplusplus */
1578
1579 #ifndef GSEAL
1580 /* introduce GSEAL() here for all of Gdk and Gtk+ without the need to modify GLib */
1581 #  ifdef GSEAL_ENABLE
1582 #    define GSEAL(ident)      _g_sealed__ ## ident
1583 #  else
1584 #    define GSEAL(ident)      ident
1585 #  endif
1586 #endif /* !GSEAL */
1587
1588 _______EOF
1589
1590         cat >>$outfile <<_______EOF
1591 $gdk_windowing
1592 $gdk_wc
1593 _______EOF
1594
1595         cat >>$outfile <<_______EOF
1596
1597 #ifdef __cplusplus
1598 }
1599 #endif /* __cplusplus */
1600
1601 #endif /* GDKCONFIG_H */
1602 _______EOF
1603
1604
1605         if cmp -s $outfile gdk/gdkconfig.h; then
1606           AC_MSG_NOTICE([gdk/gdkconfig.h is unchanged])
1607           rm -f $outfile
1608         else
1609           mv $outfile gdk/gdkconfig.h
1610         fi
1611 ],[
1612 if test "x$gdktarget" = "xx11" ; then
1613   gdk_windowing='
1614 #define GDK_WINDOWING_X11'
1615 elif test "x$gdktarget" = "xwin32" ; then
1616   gdk_windowing='
1617 #define GDK_NATIVE_WINDOW_POINTER
1618
1619 #define GDK_WINDOWING_WIN32'
1620 elif test "x$gdktarget" = "xquartz" ; then
1621   gdk_windowing='
1622 #define GDK_WINDOWING_QUARTZ'
1623 fi
1624
1625 if test x$gdk_wchar_h = xyes; then
1626   gdk_wc='
1627 #define GDK_HAVE_WCHAR_H 1'
1628 fi
1629 if test x$gdk_wctype_h = xyes; then
1630   gdk_wc="\$gdk_wc
1631 #define GDK_HAVE_WCTYPE_H 1"
1632 fi
1633 if test x$gdk_working_wctype = xno; then
1634   gdk_wc="\$gdk_wc
1635 #define GDK_HAVE_BROKEN_WCTYPE 1"
1636 fi
1637 ])
1638
1639 dnl
1640 dnl Check for -Bsymbolic-functions linker flag used to avoid
1641 dnl intra-library PLT jumps, if available.
1642 dnl
1643 AC_ARG_ENABLE(Bsymbolic,
1644               [AC_HELP_STRING([--disable-Bsymbolic],
1645                               [avoid linking with -Bsymbolic])],,
1646               [SAVED_LDFLAGS="${LDFLAGS}"
1647                AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
1648                LDFLAGS=-Wl,-Bsymbolic-functions
1649                AC_TRY_LINK([], [int main (void) { return 0; }],
1650                            AC_MSG_RESULT(yes)
1651                            enable_Bsymbolic=yes,
1652                            AC_MSG_RESULT(no)
1653                            enable_Bsymbolic=no)
1654                LDFLAGS="${SAVED_LDFLAGS}"])
1655
1656 if test "x${enable_Bsymbolic}" == "xyes"; then
1657   GTK_LINK_FLAGS=-Wl,-Bsymbolic-functions
1658 fi
1659 AC_SUBST(GTK_LINK_FLAGS)
1660
1661 AC_CONFIG_FILES([
1662 config.h.win32
1663 gtk-zip.sh
1664 Makefile
1665 gdk-3.0.pc
1666 gtk+-3.0.pc
1667 gtk+-unix-print-3.0.pc
1668 gail-3.0.pc
1669 gdk-3.0-uninstalled.pc
1670 gtk+-3.0-uninstalled.pc
1671 gail-3.0-uninstalled.pc
1672 m4macros/Makefile
1673 po/Makefile.in
1674 po-properties/Makefile.in
1675 demos/Makefile
1676 demos/gtk-demo/Makefile
1677 demos/gtk-demo/geninclude.pl
1678 tests/Makefile
1679 docs/Makefile
1680 docs/reference/Makefile
1681 docs/reference/gdk/Makefile
1682 docs/reference/gdk/version.xml
1683 docs/reference/gtk/Makefile
1684 docs/reference/gtk/version.xml
1685 docs/reference/libgail-util/Makefile
1686 docs/faq/Makefile
1687 docs/tools/Makefile
1688 docs/tutorial/Makefile
1689 build/Makefile
1690 build/win32/Makefile
1691 build/win32/vs9/Makefile
1692 gdk/Makefile
1693 gdk/x11/Makefile
1694 gdk/win32/Makefile
1695 gdk/win32/rc/Makefile
1696 gdk/win32/rc/gdk.rc
1697 gdk/quartz/Makefile
1698 gdk/tests/Makefile
1699 gtk/Makefile
1700 gtk/makefile.msc
1701 gtk/gtkversion.h
1702 gtk/gtk-win32.rc
1703 gtk/theme-bits/Makefile
1704 gtk/tests/Makefile
1705 modules/Makefile
1706 modules/other/Makefile
1707 modules/other/gail/Makefile
1708 modules/other/gail/libgail-util/Makefile
1709 modules/other/gail/tests/Makefile
1710 modules/engines/Makefile
1711 modules/engines/pixbuf/Makefile
1712 modules/engines/ms-windows/Makefile
1713 modules/engines/ms-windows/Theme/Makefile
1714 modules/engines/ms-windows/Theme/gtk-3.0/Makefile
1715 modules/input/Makefile
1716 modules/printbackends/Makefile
1717 modules/printbackends/cups/Makefile
1718 modules/printbackends/lpr/Makefile
1719 modules/printbackends/file/Makefile
1720 modules/printbackends/papi/Makefile
1721 modules/printbackends/test/Makefile
1722 perf/Makefile
1723 ])
1724
1725 AC_OUTPUT
1726
1727 echo "configuration:
1728         target:             $gdktarget"