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