]> Pileus Git - ~andy/gtk/blob - configure.in
c393dcd4e53261a2ca4d0893f6315eb710fc6507
[~andy/gtk] / configure.in
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT(gdk/gdktypes.h)
3
4 # In the following, there are a the following variants
5 # of GLib cflags and libs variables
6 #
7 # GLIB_CFLAGS:  cflags for compiling libraries and example progs
8 # GLIB_LIBS:    libraries for linking example programs
9 # GLIB_DEPLIBS: libraries for linking libraries against
10 # glib_cflags:  cflags to store in gtk-config
11 # glib_libs:    libs to store in gtk-config
12 # glib_thread_cflags: cflags to store in gtk-config for gtk-config gthread
13 # glib_thread_libs:   libs to store in gtk-config for gtk-config gthread
14
15 # Save this value here, since automake will set cflags later
16 cflags_set=${CFLAGS+set}
17
18 dnl we to AC_DIVERT_PUSH/AC_DIVERT_POP these variable definitions so they
19 dnl are available for $ac_help expansion (don't we all *love* autoconf?)
20 AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
21 #
22 # Making releases:
23 #   GTK_MICRO_VERSION += 1;
24 #   GTK_INTERFACE_AGE += 1;
25 #   GTK_BINARY_AGE += 1;
26 # if any functions have been added, set GTK_INTERFACE_AGE to 0.
27 # if backwards compatibility has been broken,
28 # set GTK_BINARY_AGE and GTK_INTERFACE_AGE to 0.
29 #
30 GTK_MAJOR_VERSION=1
31 GTK_MINOR_VERSION=3
32 GTK_MICRO_VERSION=0
33 GTK_INTERFACE_AGE=0
34 GTK_BINARY_AGE=0
35 GTK_VERSION=$GTK_MAJOR_VERSION.$GTK_MINOR_VERSION.$GTK_MICRO_VERSION
36 dnl
37 AC_DIVERT_POP()dnl
38
39 AC_SUBST(GTK_MAJOR_VERSION)
40 AC_SUBST(GTK_MINOR_VERSION)
41 AC_SUBST(GTK_MICRO_VERSION)
42 AC_SUBST(GTK_INTERFACE_AGE)
43 AC_SUBST(GTK_BINARY_AGE)
44 AC_SUBST(GTK_VERSION)
45
46 # libtool versioning
47 LT_RELEASE=$GTK_MAJOR_VERSION.$GTK_MINOR_VERSION
48 LT_CURRENT=`expr $GTK_MICRO_VERSION - $GTK_INTERFACE_AGE`
49 LT_REVISION=$GTK_INTERFACE_AGE
50 LT_AGE=`expr $GTK_BINARY_AGE - $GTK_INTERFACE_AGE`
51 AC_SUBST(LT_RELEASE)
52 AC_SUBST(LT_CURRENT)
53 AC_SUBST(LT_REVISION)
54 AC_SUBST(LT_AGE)
55
56 # For automake.
57 VERSION=$GTK_VERSION
58 PACKAGE=gtk+
59
60 # Save this value here, since automake will set cflags later
61 cflags_set=${CFLAGS+set}
62
63 dnl Initialize automake stuff
64 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
65
66 # Specify a configuration file
67 AM_CONFIG_HEADER(config.h)
68
69 dnl Initialize libtool
70 AM_PROG_LIBTOOL
71
72 dnl Initialize maintainer mode
73 AM_MAINTAINER_MODE
74
75 AC_CANONICAL_HOST
76
77 dnl figure debugging default, prior to $ac_help setup
78 dnl
79 AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
80 if test `expr $GTK_MINOR_VERSION \% 2` = 1 ; then
81         debug_default=yes
82 else
83         debug_default=minimum
84 fi
85 AC_DIVERT_POP()dnl
86
87 dnl declare --enable-* args and collect ac_help strings
88 AC_ARG_ENABLE(debug, [  --enable-debug=[no/minimum/yes] turn on debugging [default=$debug_default]],,enable_debug=$debug_default)
89 AC_ARG_ENABLE(shm, [  --enable-shm            support shared memory if available [default=yes]],
90                    echo $enable_shm, enable_shm="yes")
91 AC_ARG_ENABLE(ansi, [  --enable-ansi           turn on strict ansi [default=no]],
92                     , enable_ansi=no)
93 AC_ARG_WITH(glib, [  --with-glib=DIR         Use uninstalled copy of glib])
94 AC_ARG_ENABLE(xim, [  --enable-xim            support XIM [default=yes]],
95                         , enable_xim="yes")
96 AC_ARG_ENABLE(xim_inst, [  --disable-xim-inst      does not use xim instantiate callback],
97                         , enable_xim_inst="maybe")
98 AC_ARG_ENABLE(rebuilds, [  --disable-rebuilds      disable all source autogeneration rules],,enable_rebuilds=yes)
99 AC_ARG_WITH(locale, [  --with-locale=LOCALE    locale name you want to use ])
100
101 AC_ARG_WITH(xinput, [  --with-xinput=[no/gxi/xfree] support XInput ])
102
103 if test "x$enable_debug" = "xyes"; then
104   test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
105   GTK_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
106 else
107   if test "x$enable_debug" = "xno"; then
108     GTK_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DGTK_NO_CHECK_CASTS"
109   else
110     GTK_DEBUG_FLAGS="-DGTK_NO_CHECK_CASTS"
111   fi
112 fi
113
114 AC_DEFINE_UNQUOTED(GTK_COMPILED_WITH_DEBUGGING, "${enable_debug}")
115
116 # Build time sanity check...
117 AM_SANITY_CHECK
118
119 # Checks for programs.
120 AC_PROG_CC
121 AC_ISC_POSIX
122 AM_PROG_CC_STDC
123 AC_PROG_INSTALL
124 AC_PROG_MAKE_SET
125
126 changequote(,)dnl
127 if test "x$GCC" = "xyes"; then
128   case " $CFLAGS " in
129   *[\ \ ]-Wall[\ \      ]*) ;;
130   *) CFLAGS="$CFLAGS -Wall" ;;
131   esac
132
133   if test "x$enable_ansi" = "xyes"; then
134     case " $CFLAGS " in
135     *[\ \       ]-ansi[\ \      ]*) ;;
136     *) CFLAGS="$CFLAGS -ansi" ;;
137     esac
138
139     case " $CFLAGS " in
140     *[\ \       ]-pedantic[\ \  ]*) ;;
141     *) CFLAGS="$CFLAGS -pedantic" ;;
142     esac
143   fi
144 fi
145 changequote([,])dnl
146
147 # Honor aclocal flags
148 ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
149
150  # define a MAINT-like variable REBUILD which is set if Perl
151 # and awk are found, so autogenerated sources can be rebuilt
152
153 AC_PROG_AWK
154 AC_CHECK_PROGS(PERL, perl5 perl)
155
156 # We would like indent, but don't require it.
157 AC_CHECK_PROG(INDENT, indent, indent)
158
159 REBUILD=\#
160 if test "x$enable_rebuilds" = "xyes" && \
161      test -n "$PERL" && \
162      $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \
163      test -n "$AWK" ; then
164   REBUILD=
165 fi
166 AC_SUBST(REBUILD)
167
168 AC_CHECK_FUNCS(lstat)
169
170 AC_MSG_CHECKING(whether make is GNU Make)
171 STRIP_BEGIN=
172 STRIP_END=
173 if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then
174         STRIP_BEGIN='$(strip'
175         STRIP_END=')'
176         AC_MSG_RESULT(yes)
177 else
178         AC_MSG_RESULT(no)
179 fi
180 AC_SUBST(STRIP_BEGIN)
181 AC_SUBST(STRIP_END)
182
183 # i18n stuff
184 ALL_LINGUAS="ca cs da de el es et eu fi fr ga hr hu it ja ko nl no pl pt pt_BR ru sk sl sv wa zh_TW.Big5"
185 AM_GTK_GNU_GETTEXT
186 LIBS="$LIBS $INTLLIBS"
187
188 # AM_GTK_GNU_GETTEXT above substs $DATADIRNAME
189 # this is the directory where the *.{mo,gmo} files are installed
190 gtklocaledir='${prefix}/${DATADIRNAME}/locale'
191 AC_SUBST(gtklocaledir)
192
193 dnl The DU4 header files don't provide library prototypes unless 
194 dnl -std1 is given to the native cc.
195 AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
196
197 gtk_save_LIBS=$LIBS
198 LIBS="$LIBS -lm"
199 AC_TRY_RUN([#include <math.h>
200              int main (void) { return (log(1) != log(1.)); }],
201      AC_MSG_RESULT(none needed),
202      gtk_save_CFLAGS=$CFLAGS
203      CFLAGS="$CFLAGS -std1"
204      AC_TRY_RUN([#include <math.h>
205                  int main (void) { return (log(1) != log(1.)); }],
206          AC_MSG_RESULT(-std1),
207          AC_MSG_RESULT()
208          CFLAGS=$gtk_save_CFLAGS
209          AC_MSG_WARN(
210                 [No ANSI prototypes found in library. (-std1 didn't work.)])
211      )
212 )
213 LIBS=$gtk_save_LIBS
214
215 MATH_LIB=-lm
216 GTK_LIBS_EXTRA=
217 AC_MSG_CHECKING(for the BeOS)
218 case $host in
219   *-*-beos*)
220     AC_MSG_RESULT(yes)
221     GTK_LIBS_EXTRA="-L\$(top_builddir_full)/gdk/.libs -lgdk"
222     MATH_LIB=
223   ;;
224   *)
225     AC_MSG_RESULT(no)
226   ;;
227 esac
228 AC_SUBST(MATH_LIB)
229 AC_SUBST(GTK_LIBS_EXTRA)
230
231 dnl NeXTStep cc seems to need this
232 AC_MSG_CHECKING([for extra flags for POSIX compliance])
233 AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
234   AC_MSG_RESULT(none needed),
235   gtk_save_CFLAGS=$CFLAGS
236   CFLAGS="$CFLAGS -posix"
237   AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
238     AC_MSG_RESULT(-posix),
239     AC_MSG_RESULT()
240     CFLAGS=$gtk_save_CFLAGS
241     AC_MSG_WARN([Could not determine POSIX flag. (-posix didn't work.)])))
242
243 if test x$with_glib = xyes ; then
244   AC_MSG_ERROR([
245 *** Directory must be specified for --with-glib])
246 fi
247
248 if test x$with_glib = x ; then 
249   # Look for separately installed glib
250
251   AM_PATH_GLIB(1.3.0,,
252     AC_MSG_ERROR([
253 *** GLIB 1.3.0 or better is required. The latest version of GLIB
254 *** is always available from ftp://ftp.gtk.org/.]),
255     gmodule gthread)
256
257   # we do not want to make all gtk progs to link to thread libraries.
258   glib_cflags=`$GLIB_CONFIG glib gmodule --cflags`
259   glib_thread_cflags="$GLIB_CFLAGS"
260   glib_libs=`$GLIB_CONFIG glib gmodule --libs`
261   glib_thread_libs="$GLIB_LIBS"
262   GLIB_LIBS="$glib_libs"
263   GLIB_DEPLIBS="$glib_libs"
264 else
265   # Use uninstalled glib (assume they got the version right)
266
267   GLIB_CONFIG=$with_glib/glib-config
268   if test -x $GLIB_CONFIG ; then 
269     :
270   else
271     AC_MSG_ERROR([GLIB directory ($with_glib) not present or not configured])
272   fi
273
274   # For use in gtk-config
275   glib_cflags=`$GLIB_CONFIG --cflags gmodule`
276   glib_thread_cflags=`$GLIB_CONFIG --cflags gmodule gthread`
277   glib_libs=`$GLIB_CONFIG --libs gmodule`
278   glib_thread_libs=`$GLIB_CONFIG --libs gmodule gthread`
279
280   glib_release=`$GLIB_CONFIG --version | sed 's%\\.[[0-9]]*$%%'`
281
282   # canonicalize relative paths
283   case $with_glib in 
284     /*)
285       glib_dir=$with_glib
286       ;;
287     *)
288       glib_dir="\$(top_builddir)/$with_glib"
289       ;;
290   esac
291
292   GLIB_CFLAGS="-I$glib_dir -I$glib_dir/gmodule"
293   GLIB_LIBS="$glib_dir/libglib.la $glib_dir/gmodule/libgmodule.la"
294   GLIB_DEPLIBS=
295
296   AC_SUBST(GLIB_CFLAGS)
297   AC_SUBST(GLIB_LIBS)
298 fi
299
300 AC_SUBST(glib_cflags)
301 AC_SUBST(glib_libs)
302 AC_SUBST(glib_thread_cflags)
303 AC_SUBST(glib_thread_libs)
304 AC_SUBST(GLIB_DEPLIBS)
305
306 AC_CHECK_HEADERS(dirent.h, AC_DEFINE(HAVE_DIRENT_H))
307 AC_CHECK_HEADERS(pwd.h, AC_DEFINE(HAVE_PWD_H))
308 AC_CHECK_HEADERS(sys/time.h, AC_DEFINE(HAVE_SYS_TIME_H))
309
310 # Find the X11 include and library directories
311 AC_PATH_X
312 AC_PATH_XTRA
313
314 if test "x$x_includes" = "x"; then
315   x_includes="/usr/include"
316 fi
317
318 saved_cflags="$CFLAGS"
319 saved_ldflags="$LDFLAGS"
320
321 CFLAGS="$CFLAGS $X_CFLAGS"
322 LDFLAGS="$LDFLAGS $X_LDFLAGS $X_LIBS"
323
324 if test "x$no_x" = "xyes"; then 
325   AC_MSG_ERROR([
326 *** X libraries or include files not found. Check 'config.log' for 
327 *** more details.])
328 fi
329
330 # Checks for libraries.
331 # Check for the X11 library
332 AC_CHECK_LIB(X11, XOpenDisplay, x_libs="-lX11 $X_EXTRA_LIBS", 
333   AC_MSG_ERROR([*** libX11 not found. Check 'config.log' for more details.]),
334   $X_EXTRA_LIBS)
335
336 if test "x$enable_shm" = "xyes"; then
337   # Check for the Xext library (needed for XShm extention)
338   AC_CHECK_LIB(Xext, XShmAttach, 
339       x_libs="-lXext $x_libs", 
340       # On AIX, it is in XextSam instead, but we still need -lXext
341       AC_CHECK_LIB(XextSam, XShmAttach, 
342           x_libs="-lXextSam -lXext $x_libs", 
343           no_xext_lib=yes, $x_libs),
344       $x_libs)
345 fi
346
347 # Check for shaped window extension
348
349 AC_CHECK_LIB(Xext, XShapeCombineMask,
350       if test -z "`echo $x_libs | grep "\-lXext" 2> /dev/null`"; then
351            x_libs="-lXext $x_libs"
352       fi
353       AC_DEFINE(HAVE_SHAPE_EXT),
354       ,
355       $x_libs)
356
357 # Check for XConvertCase (X11R6 specific)
358
359 AC_CHECK_LIB(X11, XConvertCase,
360       AC_DEFINE(HAVE_XCONVERTCASE),
361       ,
362       $x_libs)
363
364 # Check for XIM support.
365
366 AC_CHECK_LIB(X11, XUnregisterIMInstantiateCallback,
367             : ,
368             enable_xim_inst="no",
369             $x_libs)
370
371 # On Solaris, calling XRegisterIMInstantiateCallback seems to
372 # cause an immediate segfault, so we disable it, unless
373 # the user specifically forces it to be on.
374
375 if test x$enable_xim_inst = xmaybe ; then
376   case host in
377         *-*-solaris*)
378             enable_xim_inst="no"
379             ;;
380         *)
381             enable_xim_inst="yes"
382             ;;
383   esac
384 fi
385
386 if test "x$enable_xim" = "xyes"; then
387   GTK_XIM_FLAGS="-DUSE_XIM"
388   if test "x$enable_xim_inst" = "xyes"; then
389     AC_DEFINE(USE_X11R6_XIM)
390   fi
391 fi
392
393 x_cflags="$X_CFLAGS"
394 x_ldflags="$X_LDFLAGS $X_LIBS"
395
396 # set up things for XInput
397
398 if test "x$with_xinput" = "xgxi" || test "x$with_xinput" = "xyes"; then
399   AC_DEFINE(XINPUT_GXI)
400   xinput_progs=gxid
401   x_libs="-lXi $x_libs"
402 elif test "x$with_xinput" = "xxfree"; then
403   AC_DEFINE(XINPUT_XFREE)
404   x_libs="-lXi $x_libs"
405 else
406   AC_DEFINE(XINPUT_NONE)
407 fi
408
409 CFLAGS="$saved_cflags"
410 LDFLAGS="$saved_ldflags"
411
412 AC_SUBST(x_cflags)
413 AC_SUBST(x_includes)
414 AC_SUBST(x_ldflags)
415 AC_SUBST(x_libs)
416 AC_SUBST(xinput_progs)
417
418 if test "x$enable_shm" = "xyes"; then
419   # Check for shared memory
420   AC_CHECK_HEADER(sys/ipc.h, AC_DEFINE(HAVE_IPC_H), no_sys_ipc=yes)
421   AC_CHECK_HEADER(sys/shm.h, AC_DEFINE(HAVE_SHM_H), no_sys_shm=yes)
422
423   # Check for the X shared memory extension header file
424   AC_MSG_CHECKING(X11/extensions/XShm.h)
425   if test "x$no_xext_lib" = "xyes"; then
426     AC_MSG_RESULT(no)
427     no_xshm=yes
428   else
429     if test -f "$x_includes/X11/extensions/XShm.h"; then
430       AC_MSG_RESULT(yes)
431       AC_DEFINE(HAVE_XSHM_H)
432     else
433       AC_MSG_RESULT(no)
434       no_xshm=yes
435     fi
436   fi
437 fi
438
439 # Check if X_LOCALE definition is necessary
440
441 AC_MSG_CHECKING(need -DX_LOCALE)
442
443 AC_TRY_RUN([
444 #include <stdio.h>
445 #include <locale.h>
446
447 int
448 main ()
449 {
450   return setlocale (LC_ALL, "${with_locale}") == NULL;
451 }],
452 need_x_locale=no,
453 need_x_locale=yes)
454 AC_MSG_RESULT($need_x_locale)
455
456 if test $need_x_locale = yes; then
457   GTK_LOCALE_CFLAGS="-DX_LOCALE"
458 fi
459
460 # Checks for header files.
461 AC_HEADER_STDC
462
463 # Checks for typedefs, structures, and compiler characteristics.
464 AC_C_CONST
465
466 # Checks for library functions.
467 AC_TYPE_SIGNAL
468 AC_FUNC_MMAP
469
470 # Check if <sys/select.h> needs to be included for fd_set
471 AC_MSG_CHECKING([for fd_set])
472 AC_TRY_COMPILE([#include <sys/types.h>],
473         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
474 if test $gtk_ok = yes; then
475     AC_MSG_RESULT([yes, found in sys/types.h])
476 else
477     AC_HEADER_EGREP(fd_mask, sys/select.h, gtk_ok=yes)
478     if test $gtk_ok = yes; then
479         AC_DEFINE(HAVE_SYS_SELECT_H)
480         AC_MSG_RESULT([yes, found in sys/select.h])
481     else
482         AC_DEFINE(NO_FD_SET)
483         AC_MSG_RESULT(no)
484     fi
485 fi
486
487 # `widechar' tests for gdki18n.h
488 AC_MSG_CHECKING(for wchar.h)
489 AC_TRY_CPP([#include <wchar.h>], gdk_wchar_h=yes, gdk_wchar_h=no)
490 if test $gdk_wchar_h = yes; then
491    AC_DEFINE(HAVE_WCHAR_H,1,[Have wchar.h include file])
492 fi
493 AC_MSG_RESULT($gdk_wchar_h)
494
495 # Check for wctype.h (for iswalnum)
496 AC_MSG_CHECKING(for wctype.h)
497 AC_TRY_CPP([#include <wctype.h>], gdk_wctype_h=yes, gdk_wctype_h=no)
498 if test $gdk_wctype_h = yes; then
499    AC_DEFINE(HAVE_WCTYPE_H,1,[Have wctype.h include file])
500 fi
501 AC_MSG_RESULT($gdk_wctype_h)
502
503 # in Solaris 2.5, `iswalnum' is in -lw
504 GDK_WLIBS=
505 AC_CHECK_FUNC(iswalnum,,[AC_CHECK_LIB(w,iswalnum,GDK_WLIBS=-lw)])
506
507 oLIBS="$LIBS"
508 LIBS="$LIBS $GDK_WLIBS"
509 # The following is necessary for Linux libc-5.4.38
510 AC_MSG_CHECKING(if iswalnum() and friends are properly defined)
511 AC_TRY_LINK([#include <stdlib.h>],[
512 #if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H))
513 #  ifdef HAVE_WCTYPE_H
514 #    include <wctype.h>
515 #  else
516 #    ifdef HAVE_WCHAR_H
517 #      include <wchar.h>
518 #    endif
519 #  endif
520 #else
521 #  define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c))
522 #endif
523 iswalnum((wchar_t) 0);
524 ], gdk_working_wctype=yes, gdk_working_wctype=no)
525 LIBS="$oLIBS"
526
527 if test $gdk_working_wctype = no; then
528    AC_DEFINE(HAVE_BROKEN_WCTYPE,1,[Is the wctype implementation broken])
529    GDK_WLIBS=
530 fi
531 AC_MSG_RESULT($gdk_working_wctype)
532 AC_SUBST(GDK_WLIBS)
533
534 AC_SUBST(GTK_DEBUG_FLAGS)
535 AC_SUBST(GTK_XIM_FLAGS)
536 AC_SUBST(GTK_LOCALE_FLAGS)
537
538 AC_OUTPUT_COMMANDS([
539
540 ## Generate `gdk/gdkconfig.h' in two cases
541 ## 1. `config.status' is run either explicitly, or via configure.
542 ##     Esp. not when it is run in `Makefile' to generate makefiles and
543 ##     config.h
544 ## 2. CONFIG_OTHER is set explicitly
545 ##
546 ## Case 1 is difficult.  We know that `automake' sets one of
547 ## CONFIG_FILES or CONFIG_HEADERS to empty.  This heuristic works
548 ## only when AM_CONFIG_HEADER is set, however.
549
550 if test -n "${CONFIG_FILES}" && test -n "${CONFIG_HEADERS}"; then
551   # Both CONFIG_FILES and CONFIG_HEADERS are non-empty ==> Case 1
552   CONFIG_OTHER=${CONFIG_OTHER:-gdk/gdkconfig.h}
553 fi
554 case "$CONFIG_OTHER" in
555 *gdk/gdkconfig.h*)
556         echo creating gdk/gdkconfig.h
557         outfile=gdkconfig.h-tmp
558         cat > $outfile <<\_______EOF
559 /* gdkconfig.h
560  *
561  * This is a generated file.  Please modify `configure.in'
562  */
563
564 #ifndef GDKCONFIG_H
565 #define GDKCONFIG_H
566
567 #ifdef __cplusplus
568 extern "C" {
569 #endif /* __cplusplus */
570
571 _______EOF
572
573         cat >>$outfile <<_______EOF
574 $gdk_windowing
575 $gdk_wc
576 _______EOF
577
578         cat >>$outfile <<_______EOF
579
580 #ifdef __cplusplus
581 }
582 #endif /* __cplusplus */
583
584 #endif /* GDKCONFIG_H */
585 _______EOF
586
587
588         if cmp -s $outfile gdk/gdkconfig.h; then
589           echo gdk/gdkconfig.h is unchanged
590           rm -f $outfile
591         else
592           mv $outfile gdk/gdkconfig.h
593         fi ;;
594 esac
595 ],[
596 # Currently we always use X11 on those systems where we run configure...
597 gdk_windowing='
598 #define GDK_WINDOWING_X11'
599 if test x$gdk_wchar_h = xyes; then
600   gdk_wc='
601 #define GDK_HAVE_WCHAR_H 1'
602 fi
603 if test x$gdk_wctype_h = xyes; then
604   gdk_wc="\$gdk_wc
605 #define GDK_HAVE_WCTYPE_H 1"
606 fi
607 if test x$gdk_working_wctype = xno; then
608   gdk_wc="\$gdk_wc
609 #define GDK_HAVE_BROKEN_WCTYPE 1"
610 fi
611
612
613 ])
614
615 AC_OUTPUT([
616 gtk+.spec
617 docs/gtk-config.1
618 Makefile
619 gtk-config
620 po/Makefile.in
621 docs/Makefile
622 gdk/Makefile
623 gdk/x11/Makefile
624 gtk/Makefile
625 gtk/gtkfeatures.h
626 gtk/gtkcompat.h
627 ], [chmod +x gtk-config])