Check for the sched.h header and include it on gthread/gthread-posix.c if
[platform/upstream/glib.git] / configure.in
1 dnl ***********************************
2 dnl *** include special GLib macros ***
3 dnl ***********************************
4 builtin(include, acglib.m4)dnl
5
6 # require autoconf 2.13
7 AC_PREREQ(2.13)
8
9 # Process this file with autoconf to produce a configure script.
10 AC_INIT(glist.c)
11
12 # Save this value here, since automake will set cflags later
13 cflags_set=${CFLAGS+set}
14
15 # we rewrite this file
16 rm -f glibconfig-sysdefs.h
17
18 GLIB_DIVERT_BEFORE_HELP([
19 #
20 # The following version number definitions apply to GLib, GModule, GObject and GThread
21 # as a whole, so if changes occoured in any of them, they are all
22 # treated with the same interface and binary age.
23 #
24 # Making releases:
25 #   GLIB_MICRO_VERSION += 1;
26 #   GLIB_INTERFACE_AGE += 1;
27 #   GLIB_BINARY_AGE += 1;
28 # if any functions have been added, set GLIB_INTERFACE_AGE to 0.
29 # if backwards compatibility has been broken,
30 # set GLIB_BINARY_AGE _and_ GLIB_INTERFACE_AGE to 0.
31 #
32 GLIB_MAJOR_VERSION=1
33 GLIB_MINOR_VERSION=3
34 GLIB_MICRO_VERSION=2
35 GLIB_INTERFACE_AGE=0
36 GLIB_BINARY_AGE=0
37 GLIB_VERSION=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION.$GLIB_MICRO_VERSION
38 ])dnl
39
40 AC_SUBST(GLIB_MAJOR_VERSION)
41 AC_SUBST(GLIB_MINOR_VERSION)
42 AC_SUBST(GLIB_MICRO_VERSION)
43 AC_SUBST(GLIB_VERSION)
44 AC_SUBST(GLIB_INTERFACE_AGE)
45 AC_SUBST(GLIB_BINARY_AGE)
46
47 # libtool versioning
48 LT_RELEASE=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION
49 LT_CURRENT=`expr $GLIB_MICRO_VERSION - $GLIB_INTERFACE_AGE`
50 LT_REVISION=$GLIB_INTERFACE_AGE
51 LT_AGE=`expr $GLIB_BINARY_AGE - $GLIB_INTERFACE_AGE`
52 AC_SUBST(LT_RELEASE)
53 AC_SUBST(LT_CURRENT)
54 AC_SUBST(LT_REVISION)
55 AC_SUBST(LT_AGE)
56
57 VERSION=$GLIB_VERSION
58 PACKAGE=glib
59
60 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
61
62 # Specify a configuration file
63 AM_CONFIG_HEADER(config.h)
64
65 AC_DEFINE_UNQUOTED(GLIB_MAJOR_VERSION, $GLIB_MAJOR_VERSION,
66                    [Define to the GLIB major version])
67 AC_DEFINE_UNQUOTED(GLIB_MINOR_VERSION, $GLIB_MINOR_VERSION,
68                    [Define to the GLIB minor version])
69 AC_DEFINE_UNQUOTED(GLIB_MICRO_VERSION, $GLIB_MICRO_VERSION,
70                    [Define to the GLIB micro version])
71 AC_DEFINE_UNQUOTED(GLIB_INTERFACE_AGE, $GLIB_INTERFACE_AGE,
72                    [Define to the GLIB interface age])
73 AC_DEFINE_UNQUOTED(GLIB_BINARY_AGE, $GLIB_BINARY_AGE,
74                    [Define to the GLIB binary age])
75
76 dnl Initialize maintainer mode
77 AM_MAINTAINER_MODE
78
79 AC_CANONICAL_HOST
80
81 AC_MSG_CHECKING(for the BeOS)
82 case $host in
83   *-*-beos*)
84     glib_native_beos="yes"
85     ;;
86   *)
87     glib_native_beos="no"
88     ;;
89 esac
90 AC_MSG_RESULT([$glib_native_beos])
91
92 dnl
93
94 GLIB_DIVERT_BEFORE_HELP([
95 # figure debugging default, prior to $ac_help setup
96 if test `expr $GLIB_MINOR_VERSION \% 2` = 1 ; then
97   debug_default=yes
98 else
99   debug_default=minimum
100 fi[]dnl
101 ])
102
103 dnl declare --enable-* args and collect ac_help strings
104 AC_ARG_ENABLE(debug, [  --enable-debug=[no/minimum/yes] turn on debugging [default=$debug_default]],,enable_debug=$debug_default)
105 AC_ARG_ENABLE(msg-prefix, [  --enable-msg-prefix     turn on program name and PID prefixing of messages and warnings],,enable_msg_prefix=no)
106 AC_ARG_ENABLE(mem_check, [  --enable-mem-check      turn on malloc/free sanity checking [default=no]],,enable_mem_check=no)
107 AC_ARG_ENABLE(mem_profile, [  --enable-mem-profile    turn on malloc profiling atexit [default=no]],,enable_mem_profile=no)
108 AC_ARG_ENABLE(gc_friendly, [  --enable-gc-friendly    turn on garbage collector friendliness [default=no]],,enable_gc_friendly=no)
109 AC_ARG_ENABLE(ansi, [  --enable-ansi           turn on strict ansi [default=no]],
110                     , enable_ansi=no)
111 AC_ARG_ENABLE(threads, [  --enable-threads        turn on basic thread support [default=yes]
112                           ([=no] will override --with-threads)],,enable_threads=yes)
113
114 if test "x$enable_threads" != "xyes"; then
115   enable_threads=no
116 fi
117
118 AC_MSG_CHECKING(whether to enable memory checking)
119 if test "x$enable_mem_check" = "xyes"; then
120   AC_DEFINE(ENABLE_MEM_CHECK, 1, [Whether to enable memory checking])
121   AC_SUBST(ENABLE_MEM_CHECK)
122   AC_MSG_RESULT(yes)
123 else
124   AC_MSG_RESULT(no)
125 fi
126
127 AC_MSG_CHECKING(whether to enable memory profiling)
128 if test "x$enable_mem_profile" = "xyes"; then
129   AC_DEFINE(ENABLE_MEM_PROFILE, 1, [Whether to enable memory profiling])
130   AC_SUBST(ENABLE_MEM_PROFILE)
131   AC_MSG_RESULT(yes)
132 else
133   AC_MSG_RESULT(no)
134 fi
135
136 AC_MSG_CHECKING(whether to enable garbage collector friendliness)
137 if test "x$enable_gc_friendly" = "xyes"; then
138   AC_DEFINE(ENABLE_GC_FRIENDLY, 1, [Whether to enable GC friendliness])
139   AC_SUBST(ENABLE_GC_FRIENDLY)
140   AC_MSG_RESULT(yes)
141 else
142   AC_MSG_RESULT(no)
143 fi
144
145 if test "x$enable_debug" = "xyes"; then
146   test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
147   GLIB_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
148 else
149   if test "x$enable_debug" = "xno"; then
150     GLIB_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
151   fi
152 fi
153
154 AC_DEFINE_UNQUOTED(G_COMPILED_WITH_DEBUGGING, "${enable_debug}",
155         [Whether glib was compiled with debugging enabled])
156
157 if test "x$enable_msg_prefix" = "xyes"; then
158   AC_DEFINE_UNQUOTED(G_ENABLE_MSG_PREFIX, 1, 
159                      [Enable prefixing of error messages with program names])
160 fi
161
162 # Checks for programs.
163 AC_PROG_CC
164 AM_PROG_CC_STDC
165 AC_PROG_INSTALL
166
167 dnl Initialize libtool
168 AM_PROG_LIBTOOL
169
170 if test "x$GCC" = "xyes"; then
171   case " $CFLAGS " in
172   *[[\ \        ]]-Wall[[\ \    ]]*) ;;
173   *) CFLAGS="$CFLAGS -Wall" ;;
174   esac
175
176   if test "x$enable_ansi" = "xyes"; then
177     case " $CFLAGS " in
178     *[[\ \      ]]-ansi[[\ \    ]]*) ;;
179     *) CFLAGS="$CFLAGS -ansi" ;;
180     esac
181
182     case " $CFLAGS " in
183     *[[\ \      ]]-pedantic[[\ \        ]]*) ;;
184     *) CFLAGS="$CFLAGS -pedantic" ;;
185     esac
186   fi
187 fi
188
189 dnl DU4 native cc currently needs -std1 for ANSI mode (instead of K&R)
190 AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
191 glib_save_LIBS=$LIBS
192 LIBS="$LIBS -lm"
193 AC_TRY_RUN([#include <math.h>
194              int main (void) { return (log(1) != log(1.)); }],
195      AC_MSG_RESULT(none needed),
196      glib_save_CFLAGS=$CFLAGS
197      CFLAGS="$CFLAGS -std1"
198      AC_TRY_RUN([#include <math.h>
199                  int main (void) { return (log(1) != log(1.)); }],
200          AC_MSG_RESULT(-std1),
201          AC_MSG_RESULT()
202          CFLAGS=$glib_save_CFLAGS
203          AC_MSG_WARN(
204                 [No ANSI prototypes found in library. (-std1 didn't work.)])
205      )
206 )
207 LIBS=$glib_save_LIBS
208
209 dnl NeXTStep cc seems to need this
210 AC_MSG_CHECKING([for extra flags for POSIX compliance])
211 AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
212   AC_MSG_RESULT(none needed),
213   glib_save_CFLAGS=$CFLAGS
214   CFLAGS="$CFLAGS -posix"
215   AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
216     AC_MSG_RESULT(-posix),
217     AC_MSG_RESULT()
218     CFLAGS=$glib_save_CFLAGS
219     AC_MSG_WARN([Could not determine POSIX flag. (-posix didn't work.)])))
220
221 # Checks for header files.
222 AC_HEADER_STDC
223
224 # Checks for library functions.
225 AC_FUNC_VPRINTF
226
227 AC_FUNC_ALLOCA
228
229 AC_CHECK_FUNCS(atexit on_exit)
230
231 AC_CHECK_SIZEOF(char)
232 AC_CHECK_SIZEOF(short)
233 AC_CHECK_SIZEOF(long)
234 AC_CHECK_SIZEOF(int)
235 AC_CHECK_SIZEOF(void *)
236 AC_CHECK_SIZEOF(long long)
237
238 if test x$ac_cv_sizeof_long_long = x8; then
239         # long long is a 64 bit integer.
240         AC_MSG_CHECKING(for format to printf and scanf a gint64)
241         AC_CACHE_VAL(glib_cv_long_long_format,[
242                 for format in ll q; do
243                   AC_TRY_RUN([#include <stdio.h>  
244                         int main()
245                         {
246                           long long b, a = -0x3AFAFAFAFAFAFAFALL;
247                           char buffer[1000];
248                           sprintf (buffer, "%${format}u", a);
249                           sscanf (buffer, "%${format}u", &b);
250                           exit (b!=a);
251                         }
252                         ],
253                         glib_cv_long_long_format=${format}
254                         break)
255                 done])
256         if test -n "$glib_cv_long_long_format"; then
257           AC_MSG_RESULT(%${glib_cv_long_long_format}i)
258         else
259           AC_MSG_RESULT(none)
260         fi
261 fi
262
263 dnl long doubles were not used, and a portability problem
264 dnl AC_C_LONG_DOUBLE
265 AC_C_CONST
266
267 dnl AC_C_INLINE is useless to us since it bails out too early, we need to
268 dnl truely know which ones of `inline', `__inline' and `__inline__' are
269 dnl actually supported.
270 AC_CACHE_CHECK([for __inline],glib_cv_has__inline,[
271         AC_TRY_RUN([
272         __inline int foo () { return 0; }
273         int main () { return foo (); }
274         ],
275         glib_cv_has__inline=yes
276         ,
277         glib_cv_has__inline=no
278         ,)
279 ])
280 case x$glib_cv_has__inline in
281 xyes) AC_DEFINE(G_HAVE___INLINE,1,[Have __inline keyword])
282 esac
283 AC_CACHE_CHECK([for __inline__],glib_cv_has__inline__,[
284         AC_TRY_RUN([
285         __inline__ int foo () { return 0; }
286         int main () { return foo (); }
287         ],
288         glib_cv_has__inline__=yes
289         ,
290         glib_cv_has__inline__=no
291         ,)
292 ])
293 case x$glib_cv_has__inline__ in
294 xyes) AC_DEFINE(G_HAVE___INLINE__,1,[Have __inline__ keyword])
295 esac
296 AC_CACHE_CHECK([for inline], glib_cv_hasinline,[
297         AC_TRY_RUN([
298         inline int foo () { return 0; }
299         int main () { return foo (); }
300         ],
301         glib_cv_hasinline=yes
302         ,
303         glib_cv_hasinline=no
304         ,)
305 ])
306 case x$glib_cv_hasinline in
307 xyes) AC_DEFINE(G_HAVE_INLINE,1,[Have inline keyword])
308 esac
309
310 # check for bytesex stuff
311 AC_C_BIGENDIAN
312
313 # check for header files
314 AC_CHECK_HEADERS([float.h limits.h pwd.h sys/param.h sys/poll.h sys/select.h])
315 AC_CHECK_HEADERS([sys/time.h sys/times.h unistd.h values.h stdint.h sched.h])
316
317 AC_MSG_CHECKING(whether make is GNU Make)
318 STRIP_BEGIN=
319 STRIP_END=
320 if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then
321         STRIP_BEGIN='$(strip $(STRIP_DUMMY)'
322         STRIP_END=')'
323         AC_MSG_RESULT(yes)
324 else
325         AC_MSG_RESULT(no)
326 fi
327 STRIP_DUMMY=
328 AC_SUBST(STRIP_DUMMY)
329 AC_SUBST(STRIP_BEGIN)
330 AC_SUBST(STRIP_END)
331
332 # check additional type sizes
333 size_includes=["
334 #include <stdarg.h>
335 #include <stdio.h>
336 #include <ctype.h>
337 #include <string.h>
338 "]
339 if test "x$ac_cv_header_stdint_h" = "xyes"; then
340   size_includes=["$size_includes
341 #include <stdint.h>
342 "]
343 fi
344 if test "x$ac_cv_header_unistd_h" = "xyes"; then
345   size_includes=["$size_includes
346 #include <unistd.h>
347 "]
348 fi
349 GLIB_SIZEOF([$size_includes], size_t, size_t)
350 GLIB_SIZEOF([$size_includes], ptrdiff_t, ptrdiff_t)
351 GLIB_SIZEOF([$size_includes], intmax_t, intmax_t)
352
353 # Check for some functions
354 AC_CHECK_FUNCS(lstat strerror strsignal memmove mkstemp vsnprintf strcasecmp strncasecmp poll getcwd)
355
356 # Check if bcopy can be used for overlapping copies, if memmove isn't found.
357 # The check is borrowed from the PERL Configure script.
358 if test "$ac_cv_func_memmove" != "yes"; then
359   AC_CACHE_CHECK(whether bcopy can handle overlapping copies,
360     glib_cv_working_bcopy,[AC_TRY_RUN([
361       int main() {
362         char buf[128], abc[128], *b;
363         int len, off, align;
364         bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
365         for (align = 7; align >= 0; align--) {
366           for (len = 36; len; len--) {
367             b = buf+align; bcopy(abc, b, len);
368             for (off = 1; off <= len; off++) {
369               bcopy(b, b+off, len); bcopy(b+off, b, len);
370                 if (bcmp(b, abc, len)) return(1);
371             }
372           }
373         }
374         return(0);
375       }],glib_cv_working_bcopy=yes,glib_cv_working_bcopy=no)])
376   if test "$glib_cv_working_bcopy" = "yes"; then
377     AC_DEFINE(HAVE_WORKING_BCOPY,1,[Have a working bcopy])
378   fi
379 fi
380
381 # Check for sys_errlist
382 AC_MSG_CHECKING(for sys_errlist)
383 AC_TRY_LINK(, [
384 extern char *sys_errlist[];
385 extern int sys_nerr;
386 sys_errlist[sys_nerr-1][0] = 0;
387 ], glib_ok=yes, glib_ok=no)
388 AC_MSG_RESULT($glib_ok)
389 if test $glib_ok = no; then
390     AC_DEFINE(NO_SYS_ERRLIST,1,[global 'sys_errlist' not found])
391 fi
392
393 # Check for sys_siglist
394 AC_MSG_CHECKING(for sys_siglist)
395 AC_TRY_LINK(, [
396 extern char *sys_siglist[];
397 exit (sys_siglist[0]);
398 ], glib_ok=yes, glib_ok=no)
399 AC_MSG_RESULT($glib_ok)
400 if test $glib_ok = no; then
401     AC_DEFINE(NO_SYS_SIGLIST,1,[global 'sys_siglist' not found])
402 fi
403
404 # Check for sys_siglist decl (see Tue Jan 19 00:44:24 1999 in changelog)
405 AC_MSG_CHECKING(for sys_siglist declaration)
406 AC_TRY_COMPILE([#include <signal.h>], [
407 strlen (sys_siglist[0]);
408 ], glib_ok=yes, glib_ok=no)
409 AC_MSG_RESULT($glib_ok)
410 if test $glib_ok = no; then
411     AC_DEFINE(NO_SYS_SIGLIST_DECL,1,[global 'sys_siglist' not declared])
412 fi
413
414 # Check if <sys/select.h> needs to be included for fd_set
415 AC_MSG_CHECKING([for fd_set])
416 AC_TRY_COMPILE([#include <sys/types.h>],
417         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
418 if test $gtk_ok = yes; then
419     AC_MSG_RESULT([yes, found in sys/types.h])
420 else
421     AC_HEADER_EGREP(fd_set, sys/select.h, gtk_ok=yes)
422     if test $gtk_ok = yes; then
423         # *** FIXME: give it a different name
424         AC_DEFINE(HAVE_SYS_SELECT_H,1,[found fd_set in sys/select.h])
425         AC_MSG_RESULT([yes, found in sys/select.h])
426     else
427         AC_DEFINE(NO_FD_SET,1,[didn't find fd_set])
428         AC_MSG_RESULT(no)
429     fi
430 fi
431
432 dnl *** check for sane realloc() ***
433 AC_CACHE_CHECK([whether realloc (NULL,) will work],glib_cv_sane_realloc,[
434         AC_TRY_RUN([
435         #include <stdlib.h>
436         int main() {
437           return realloc (0, sizeof (int)) == 0;
438         }],
439         [glib_cv_sane_realloc=yes],
440         [glib_cv_sane_realloc=no],
441         [])
442 ])
443 if test x$glib_cv_sane_realloc = xyes; then
444   AC_DEFINE(REALLOC_0_WORKS,1,[whether realloc (NULL,) works])
445 fi
446
447 dnl Check for nl_langinfo and CODESET
448
449 AC_MSG_CHECKING([for nl_langinfo (CODESET)])
450 AC_TRY_COMPILE([#include <langinfo.h>],
451         [char *codeset = nl_langinfo (CODESET);],
452    AC_DEFINE(HAVE_CODESET,1,[Have nl_langinfo (CODESET)])
453    have_codeset=yes,
454    have_codeset=no)
455 AC_MSG_RESULT($have_codeset)
456
457
458 dnl ****************************************
459 dnl *** strlcpy/strlcat                  ***
460 dnl ****************************************
461 # Check for strlcpy
462 AC_MSG_CHECKING(for strlcpy/strlcat)
463 AC_TRY_LINK([#include <stdlib.h>
464 #include <string.h>], [
465 char *p = malloc(10);
466 (void) strlcpy(p, "hi", 10);
467 (void) strlcat(p, "bye", 10);
468 ], glib_ok=yes, glib_ok=no)
469 AC_MSG_RESULT($glib_ok)
470 if test $glib_ok = yes; then
471     AC_DEFINE(HAVE_STRLCPY,1,[Have functions strlcpy and strlcat])
472 fi
473   
474
475 dnl **********************
476 dnl *** va_copy checks ***
477 dnl **********************
478 dnl we currently check for all three va_copy possibilities, so we get
479 dnl all results in config.log for bug reports.
480 AC_CACHE_CHECK([for an implementation of va_copy()],glib_cv_va_copy,[
481         AC_TRY_RUN([
482         #include <stdarg.h>
483         void f (int i, ...) {
484         va_list args1, args2;
485         va_start (args1, i);
486         va_copy (args2, args1);
487         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
488           exit (1);
489         va_end (args1); va_end (args2);
490         }
491         int main() {
492           f (0, 42);
493           return 0;
494         }],
495         [glib_cv_va_copy=yes],
496         [glib_cv_va_copy=no],
497         [])
498 ])
499 AC_CACHE_CHECK([for an implementation of __va_copy()],glib_cv___va_copy,[
500         AC_TRY_RUN([
501         #include <stdarg.h>
502         void f (int i, ...) {
503         va_list args1, args2;
504         va_start (args1, i);
505         __va_copy (args2, args1);
506         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
507           exit (1);
508         va_end (args1); va_end (args2);
509         }
510         int main() {
511           f (0, 42);
512           return 0;
513         }],
514         [glib_cv___va_copy=yes],
515         [glib_cv___va_copy=no],
516         [])
517 ])
518
519 if test "x$glib_cv_va_copy" = "xyes"; then
520   g_va_copy_func=va_copy
521 else if test "x$glib_cv___va_copy" = "xyes"; then
522   g_va_copy_func=__va_copy
523 fi
524 fi
525
526 if test -n "$g_va_copy_func"; then
527   AC_DEFINE_UNQUOTED(G_VA_COPY,$g_va_copy_func,[A 'va_copy' style function])
528 fi
529
530 AC_CACHE_CHECK([whether va_lists can be copied by value],glib_cv_va_val_copy,[
531         AC_TRY_RUN([
532         #include <stdarg.h>
533         void f (int i, ...) {
534         va_list args1, args2;
535         va_start (args1, i);
536         args2 = args1;
537         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
538           exit (1);
539         va_end (args1); va_end (args2);
540         }
541         int main() {
542           f (0, 42);
543           return 0;
544         }],
545         [glib_cv_va_val_copy=yes],
546         [glib_cv_va_val_copy=no],
547         [])
548 ])
549
550 if test "x$glib_cv_va_val_copy" = "xno"; then
551   AC_DEFINE(G_VA_COPY_AS_ARRAY,1, ['va_lists' cannot be copies as values])
552 fi
553
554 dnl ***********************
555 dnl *** g_module checks ***
556 dnl ***********************
557 G_MODULE_LIBS=
558 G_MODULE_LIBS_EXTRA=
559 G_MODULE_PLUGIN_LIBS=
560 G_MODULE_LDFLAGS=
561 dnl G_MODULE_IMPL= don't reset, so cmd-line can override
562 G_MODULE_NEED_USCORE=0
563 G_MODULE_HAVE_DLERROR=0
564 dnl *** dlopen() and dlsym() in system libraries
565 if test -z "$G_MODULE_IMPL"; then
566         AC_CHECK_FUNC(dlopen,
567                       [AC_CHECK_FUNC(dlsym,
568                                      [G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
569                       [])
570 fi
571 dnl *** load_image (BeOS)
572 if test -z "$G_MODULE_IMPL" -a "x$glib_native_beos" = "xyes"; then
573   AC_CHECK_LIB(root, load_image,
574       [G_MODULE_LIBS="-lbe -lroot -lglib"
575       G_MODULE_LIBS_EXTRA="-L\$(top_builddir_full)/.libs"
576       G_MODULE_PLUGIN_LIBS="-L\$(top_builddir_full)/gmodule/.libs -lgmodule"
577       G_MODULE_IMPL=G_MODULE_IMPL_BEOS],
578       [])
579 fi   
580 # *** dlopen() and dlsym() in libdl
581 if test -z "$G_MODULE_IMPL"; then
582         AC_CHECK_LIB(dl, dlopen,
583                      [AC_CHECK_LIB(dl, dlsym,
584                                    [G_MODULE_LIBS=-ldl
585                                    G_MODULE_IMPL=G_MODULE_IMPL_DL],[])],
586                      [])
587 fi
588 dnl *** shl_load() in libdld (HP-UX)
589 if test -z "$G_MODULE_IMPL"; then
590         AC_MSG_CHECKING(how to export all symbols)
591         SAVED_LDFLAGS=$LDFLAGS
592         LDFLAGS="$LDFLAGS -Wl,-E"
593         AC_TRY_LINK(,[ return 0; ],
594                 [ G_MODULE_LDFLAGS="-Wl,-E" ],[
595                 LDFLAGS="$SAVED_LDFLAGS -bexpall"
596                 AC_TRY_LINK(,[ return 0; ],
597                         [G_MODULE_LDFLAGS="-bexpall"],
598                         [G_MODULE_LDFLAGS="none"])
599         ])
600         LDFLAGS=$SAVED_LDFLAGS
601         AC_MSG_RESULT($G_MODULE_LDFLAGS)
602         if test "x$G_MODULE_LDFLAGS" = "xnone"; then
603                 G_MODULE_LDFLAGS=
604         fi
605         AC_CHECK_LIB(dld, shl_load,
606                 [G_MODULE_LIBS=-ldld
607                 G_MODULE_IMPL=G_MODULE_IMPL_DLD],
608                 [])
609 fi
610 dnl *** additional checks for G_MODULE_IMPL_DL
611 if test "$G_MODULE_IMPL" = "G_MODULE_IMPL_DL"; then
612         case "$host_os" in
613           linux*)
614             G_MODULE_LDFLAGS='-rdynamic'
615             ;;
616         esac
617         LIBS_orig="$LIBS"
618         LDFLAGS_orig="$LDFLAGS"
619         LIBS="$LIBS $G_MODULE_LIBS"
620         LDFLAGS="$LDFLAGS $G_MODULE_LDFLAGS"
621 dnl *** check whether we need preceeding underscores
622         AC_CACHE_CHECK([for preceeding underscore in symbols],
623                 glib_cv_uscore,[
624                 AC_TRY_RUN([
625                 #include <dlfcn.h>
626                 int glib_underscore_test (void) { return 42; }
627                 int main() {
628                   void *f1 = (void*)0, *f2 = (void*)0, *handle;
629                   handle = dlopen ((void*)0, 0);
630                   if (handle) {
631                     f1 = dlsym (handle, "glib_underscore_test");
632                     f2 = dlsym (handle, "_glib_underscore_test");
633                   } return (!f2 || f1);
634                 }],
635                         [glib_cv_uscore=yes],
636                         [glib_cv_uscore=no],
637                         [])
638                 rm -f plugin.c plugin.o plugin.lo
639         ])
640         if test "x$glib_cv_uscore" = "xyes"; then
641                 G_MODULE_NEED_USCORE=1
642         else
643                 G_MODULE_NEED_USCORE=0
644         fi
645
646         LDFLAGS="$LDFLAGS_orig"
647 dnl *** check for having dlerror()
648         AC_CHECK_FUNC(dlerror,
649                 [G_MODULE_HAVE_DLERROR=1],
650                 [G_MODULE_HAVE_DLERROR=0])
651         LIBS="$LIBS_orig"
652 fi
653 dnl *** done, have e got an implementation?
654 if test -z "$G_MODULE_IMPL"; then
655         G_MODULE_IMPL=0
656 fi
657 AC_SUBST(G_MODULE_IMPL)
658 AC_SUBST(G_MODULE_LIBS)
659 AC_SUBST(G_MODULE_LIBS_EXTRA)
660 AC_SUBST(G_MODULE_PLUGIN_LIBS)
661 AC_SUBST(G_MODULE_LDFLAGS)
662 AC_SUBST(G_MODULE_HAVE_DLERROR)
663 AC_SUBST(G_MODULE_NEED_USCORE)
664 AC_SUBST(GLIB_DEBUG_FLAGS)
665
666
667 dnl ***********************
668 dnl *** g_thread checks ***
669 dnl ***********************
670
671 AC_ARG_WITH(threads, [  --with-threads=[none/posix/dce/solaris] specify a thread implementation to use],
672         if test "x$with_threads" = x; then
673                 want_threads=yes
674         else
675                 want_threads=$with_threads
676         fi,
677         want_threads=yes)
678 if test "x$enable_threads" = "xno"; then
679         want_threads=no
680 fi
681 if test "x$want_threads" = "xnone"; then
682         want_threads=no
683 fi
684
685 dnl error and warning message
686 dnl *************************
687
688 THREAD_NO_IMPLEMENTATION="You do not have any known thread system on your
689                 computer. GLib will not have a default thread implementation."
690
691 FLAG_DOES_NOT_WORK="I can't find the MACRO to enable thread safety on your
692                 platform (normaly it's "_REENTRANT"). I'll not use any flag on
693                 compilation now, but then your programs might not work.
694                 Please provide information on how it is done on your system."
695
696 LIBS_NOT_FOUND_1="I can't find the libraries for the thread implementation
697                 "
698
699 LIBS_NOT_FOUND_2=". Please choose another thread implementation or
700                 provide information on your thread implementation.
701                 You can also run 'configure --disable-threads' 
702                 to compile without thread support."
703
704 FUNC_NO_GETPWUID_R="the 'g_get_(user_name|real_name|home_dir|tmp_dir)'
705                 functions will not be MT-safe during their first call because
706                 there is no working 'getpwuid_r' on your system."
707
708 FUNC_NO_LOCALTIME_R="the 'g_date_set_time' function will not be MT-safe
709                 because there is no 'localtime_r' on your system."
710
711 POSIX_NO_YIELD="I can not find a yield functions for your platform. A rather
712                 crude surrogate will be used. If you happen to know a 
713                 yield function for your system, please inform the GLib 
714                 developers."
715
716 POSIX_NO_PRIORITIES="I can not find the minimal and maximal priorities for 
717                 threads on your system. Thus threads can only have the default 
718                 priority. If you happen to know these main/max
719                 priorities, please inform the GLib developers."
720
721
722 dnl determination of thread implementation
723 dnl ***************************************
724
725 have_threads=none
726 if test "x$want_threads" = xyes || test "x$want_threads" = xsolaris; then
727         case $host in
728                 *-*-solaris*)
729                 AC_CHECK_LIB(thread, cond_init, have_threads=solaris)
730                 ;;
731         esac
732 fi
733 if test "x$want_threads" = xyes || test "x$want_threads" = xposix \
734                                 || test "x$want_threads" = xdce; then
735         # -D_POSIX4_DRAFT_SOURCE -D_POSIX4A_DRAFT10_SOURCE is for DG/UX
736         # -U_OSF_SOURCE is for Digital UNIX 4.0d
737         GTHREAD_COMPILE_IMPL_DEFINES="-D_POSIX4_DRAFT_SOURCE -D_POSIX4A_DRAFT10_SOURCE -U_OSF_SOURCE"
738         glib_save_CPPFLAGS="$CPPFLAGS"
739         CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
740         if test "x$have_threads" = xnone; then
741                 AC_TRY_COMPILE([#include <pthread.h>],
742                         [pthread_attr_t attr; pthread_attr_init(&attr);],
743                         have_threads=posix)
744         fi
745         if test "x$have_threads" = xnone; then
746                 AC_TRY_COMPILE([#include <pthread.h>],
747                         [pthread_attr_t attr; pthread_attr_create(&attr);],
748                         have_threads=posix)
749         fi
750         CPPFLAGS="$glib_save_CPPFLAGS"
751 fi
752
753 AC_MSG_CHECKING(for thread implementation)
754
755 if test "x$have_threads" = xnone && test "x$want_threads" != xno; then
756         AC_MSG_RESULT(none available)
757         AC_MSG_WARN($THREAD_NO_IMPLEMENTATION)
758 else
759         AC_MSG_RESULT($have_threads)
760 fi
761
762
763 dnl determination of G_THREAD_CFLAGS
764 dnl ********************************
765
766 G_THREAD_LIBS=
767 G_THREAD_LIBS_EXTRA=
768 G_THREAD_CFLAGS=
769
770 if test x"$have_threads" != xnone; then
771
772     G_THREAD_CFLAGS="-D_REENTRANT" # good default guess
773
774     case $host in
775         *-aix*)
776                 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE"
777                 if test x"$GCC" = xyes; then
778                         G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads"
779                 fi
780                 ;;
781         *-freebsd2.2*)
782                 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE"
783
784                 # FreeBSD 2.2.x shiped with gcc 2.7.2.x, which doesn't support
785                 # -mthreads flag.
786                 ;;      
787         *-sysv5uw7*)  # UnixWare 7 
788                 if test "$GCC" != "yes"; then
789                         G_THREAD_CFLAGS="$G_THREAD_CFLAGS -Kthread"
790                 else    
791                         G_THREAD_CFLAGS="$G_THREAD_CFLAGS -pthread"
792                 fi      
793                 ;;
794         *-dg-dgux*)  # DG/UX
795                 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_POSIX4A_DRAFT10_SOURCE"
796     esac
797
798     # if we are not finding the ctime_r function, then we probably are
799     # not using the proper multithread flag
800
801     glib_save_CPPFLAGS="$CPPFLAGS"
802     CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
803
804     AC_TRY_COMPILE([#include <time.h>],
805         [time_t t; char b[30]; ctime_r (&t, b);], ,
806             [AC_TRY_COMPILE([#include <time.h>],
807                 [time_t t; char b[30]; ctime_r (&t, b, 30);], ,
808                         AC_MSG_WARN($FLAG_DOES_NOT_WORK))])
809
810     CPPFLAGS="$glib_save_CPPFLAGS"
811
812     AC_MSG_CHECKING(thread related cflags)
813     AC_MSG_RESULT($G_THREAD_CFLAGS)
814     CFLAGS="$CFLAGS $G_THREAD_CFLAGS"
815 fi
816
817 dnl determination of G_THREAD_LIBS
818 dnl ******************************
819
820 mutex_has_default=no
821 case $have_threads in
822         posix|dce)
823            glib_save_CPPFLAGS="$CPPFLAGS"
824            CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
825            G_THREAD_LIBS=error
826            glib_save_LIBS="$LIBS"
827            case $host in
828              *-sysv5uw7*) # UnixWare 7 
829                 if test "$GCC" != "yes"; then
830                         G_THREAD_LIBS="-Kthread"
831                 else    
832                         G_THREAD_LIBS="-pthread"
833                 fi      
834                 ;;
835              *)
836                 for thread_lib in "" pthread pthreads c_r thread dce; do
837                         if test x"$thread_lib" = x; then
838                                 add_thread_lib=""
839                                 IN=""
840                         else
841                                 add_thread_lib="-l$thread_lib"
842                                 IN=" in -l$thread_lib"
843                         fi
844                         if test x"$have_threads" = xposix; then
845                                 defattr=0
846                         else
847                                 defattr=pthread_attr_default
848                         fi
849                         
850                         LIBS="$glib_save_LIBS $add_thread_lib"
851                         
852                         AC_MSG_CHECKING(for pthread_create/pthread_join$IN)
853                         AC_TRY_RUN([#include <pthread.h> 
854                                 int check_me = 0;
855                                 void* func(void* data) {check_me = 42;}
856                                 main()
857                                 { pthread_t t; 
858                                   void *ret;
859                                   pthread_create (&t, $defattr, func, 0);
860                                   pthread_join (t, &ret);
861                                   exit (check_me != 42);
862                                 }],
863                                 [AC_MSG_RESULT(yes)
864                                 G_THREAD_LIBS="$add_thread_lib"
865                                 break],
866                                 [AC_MSG_RESULT(no)])
867                 done
868                 if test "x$G_THREAD_LIBS" = xerror; then
869                   AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
870                 fi
871                 for thread_lib in "" rt rte; do
872                         if test x"$thread_lib" = x; then
873                                 add_thread_lib=""
874                                 IN=""
875                         else
876                                 add_thread_lib="-l$thread_lib"
877                                 IN=" in -l$thread_lib"
878                         fi
879                         LIBS="$glib_save_LIBS $add_thread_lib"
880                         
881                         AC_MSG_CHECKING(for sched_get_priority_min$IN)
882                         AC_TRY_RUN([#include <sched.h>
883                                 #include <errno.h>
884                                 int main() {
885                                 errno = 0;
886                                 return sched_get_priority_min(SCHED_OTHER)==-1
887                                         && errno != 0;
888                                 }],
889                                 [AC_MSG_RESULT(yes)
890                                 G_THREAD_LIBS="$G_THREAD_LIBS $add_thread_lib"
891                                 posix_priority_min="sched_get_priority_min(SCHED_OTHER)"
892                                 posix_priority_max="sched_get_priority_max(SCHED_OTHER)"
893                                 break],
894                                 [AC_MSG_RESULT(no)])
895                 done
896                 LIBS="$glib_save_LIBS"
897                 ;;
898            esac 
899            mutex_has_default=yes
900            mutex_default_type='pthread_mutex_t'
901            mutex_default_init='PTHREAD_MUTEX_INITIALIZER'
902            mutex_header_file='pthread.h'
903            if test "x$have_threads" = "xposix"; then
904              g_threads_impl="POSIX"
905            else
906              g_threads_impl="DCE"
907              have_threads="posix"
908            fi
909            AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
910            CPPFLAGS="$glib_save_CPPFLAGS"
911            ;;
912         solaris)
913            G_THREAD_LIBS=error
914            AC_CHECK_LIB(thread, cond_init, G_THREAD_LIBS="-lthread")
915            mutex_has_default=yes
916            mutex_default_type='mutex_t'
917            mutex_default_init="DEFAULTMUTEX"
918            mutex_header_file='thread.h'
919            g_threads_impl="SOLARIS"
920            ;;
921         none)
922            g_threads_impl="NONE"
923            ;;
924         *)
925            g_threads_impl="NONE"
926            G_THREAD_LIBS=error
927            ;;
928 esac
929
930 if test "x$G_THREAD_LIBS" = xerror; then
931         AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
932 fi
933
934 case $host in
935   *-*-beos*)
936     G_THREAD_LIBS="-lbe -lroot -lglib "
937     G_THREAD_LIBS_EXTRA="-L\$(top_builddir_full)/.libs"
938     ;;
939   *)
940     ;;
941 esac
942
943 AC_MSG_CHECKING(thread related libraries)
944 AC_MSG_RESULT($G_THREAD_LIBS)
945
946 dnl check for mt safe function variants and some posix functions
947 dnl ************************************************************
948
949 if test x"$have_threads" != xnone; then
950         glib_save_LIBS="$LIBS"
951         # we are not doing the following for now, as this might require glib 
952         # to always be linked with the thread libs on some platforms. 
953         # LIBS="$LIBS $G_THREAD_LIBS"
954         AC_CHECK_FUNCS(localtime_r)
955         if test "$ac_cv_header_pwd_h" = "yes"; then
956                 AC_CACHE_CHECK([for posix getpwuid_r],
957                         ac_cv_func_posix_getpwuid_r,
958                         [AC_TRY_RUN([#include <errno.h>
959                                 #include <pwd.h>
960                                 int main () { char buffer[10000];
961                                 struct passwd pwd, *pwptr = &pwd;
962                                 int error;
963                                 errno = 0;
964                                 error = getpwuid_r (0, &pwd, buffer, 
965                                         sizeof (buffer), &pwptr);
966                                 return (error < 0 && errno == ENOSYS) 
967                                         || error == ENOSYS; }],
968                                 [ac_cv_func_posix_getpwuid_r=yes],
969                                 [ac_cv_func_posix_getpwuid_r=no])])
970                 if test "$ac_cv_func_posix_getpwuid_r" = yes; then
971                         AC_DEFINE(HAVE_POSIX_GETPWUID_R,1,
972                                 [Have POSIX function getpwuid_r])
973                 else
974                         AC_CACHE_CHECK([for nonposix getpwuid_r],
975                                 ac_cv_func_nonposix_getpwuid_r,
976                                 [AC_TRY_COMPILE([#include <pwd.h>],
977                                         [char buffer[10000];
978                                         struct passwd pwd;
979                                         getpwuid_r (0, &pwd, buffer, 
980                                                         sizeof (buffer));],
981                                         [ac_cv_func_nonposix_getpwuid_r=yes],
982                                         [ac_cv_func_nonposix_getpwuid_r=no])])
983                         if test "$ac_cv_func_nonposix_getpwuid_r" = yes; then
984                                 AC_DEFINE(HAVE_NONPOSIX_GETPWUID_R,1,
985                                         [Have non-POSIX function getpwuid_r])
986                         fi
987                 fi
988         fi
989         LIBS="$LIBS $G_THREAD_LIBS"
990         if test x"$have_threads" = xposix; then
991                 glib_save_CPPFLAGS="$CPPFLAGS"
992                 CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
993                 GLIB_SIZEOF([#include <pthread.h>],
994                         pthread_t,
995                         system_thread)
996                 # This is not AC_CHECK_FUNC to also work with function
997                 # name mangling in header files.
998                 AC_MSG_CHECKING(for pthread_attr_setstacksize)
999                 AC_TRY_LINK([#include <pthread.h>],
1000                         [pthread_attr_t t; pthread_attr_setstacksize(&t,0)],
1001                         [AC_MSG_RESULT(yes)
1002                         AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE,1,
1003                                   [Have function pthread_attr_setstacksize])],
1004                         [AC_MSG_RESULT(no)])
1005                 AC_MSG_CHECKING(for minimal/maximal thread priority)
1006                 if test x"$posix_priority_min" = xnone; then
1007                         AC_EGREP_CPP(PX_PRIO_MIN,[#include <pthread.h>
1008                                 PX_PRIO_MIN],,[
1009                                 posix_priority_min=PX_PRIO_MIN
1010                                 posix_priority_max=PX_PRIO_MAX])
1011                 fi
1012                 if test x"$posix_priority_min" = xnone; then
1013                         AC_EGREP_CPP(PRI_OTHER_MIN,[#include <pthread.h>
1014                                 PRI_OTHER_MIN],,[
1015                                 posix_priority_min=PRI_OTHER_MIN        
1016                                 posix_priority_max=PRI_OTHER_MAX])
1017                 fi
1018                 if test x"$posix_priority_min" = x; then
1019                         AC_MSG_RESULT(none found)
1020                         AC_MSG_WARN($POSIX_NO_PRIORITIES)
1021                         posix_priority_min=-1
1022                         posix_priority_max=-1
1023                 else
1024                         AC_MSG_RESULT($posix_priority_min/$posix_priority_max)
1025                         AC_DEFINE_UNQUOTED(POSIX_MIN_PRIORITY,$posix_priority_min,[Minimum POSIX RT priority])
1026                         AC_DEFINE_UNQUOTED(POSIX_MAX_PRIORITY,$posix_priority_max,[Maximum POSIX RT priority])
1027                 fi
1028                 posix_yield_func=none
1029                 AC_MSG_CHECKING(for posix yield function)
1030                 for yield_func in sched_yield pthread_yield_np pthread_yield \
1031                                                         thr_yield; do
1032                         AC_TRY_LINK([#include <pthread.h>],
1033                                 [$yield_func()],
1034                                 [posix_yield_func="$yield_func"
1035                                 break])
1036                 done            
1037                 if test x"$posix_yield_func" = xnone; then
1038                         AC_MSG_RESULT(none found)
1039                         AC_MSG_WARN($POSIX_NO_YIELD)
1040                         posix_yield_func="g_usleep(1000)"
1041                 else
1042                         AC_MSG_RESULT($posix_yield_func)
1043                         posix_yield_func="$posix_yield_func()"
1044                 fi
1045                 AC_DEFINE_UNQUOTED(POSIX_YIELD_FUNC,$posix_yield_func,[The POSIX RT yield function])
1046                 CPPFLAGS="$glib_save_CPPFLAGS"
1047         else # solaris threads
1048                 GLIB_SIZEOF([#include <thread.h>],
1049                         thread_t,
1050                         system_thread)
1051         fi
1052
1053         LIBS="$glib_save_LIBS"
1054
1055         # now spit out all the warnings.
1056         if test "$ac_cv_func_posix_getpwuid_r" != "yes" && 
1057            test "$ac_cv_func_nonposix_getpwuid_r" != "yes"; then
1058                 AC_MSG_WARN($FUNC_NO_GETPWUID_R)
1059         fi
1060         if test "$ac_cv_func_localtime_r" != "yes"; then
1061                 AC_MSG_WARN($FUNC_NO_LOCALTIME_R)
1062         fi
1063 else 
1064         # If no thread implementation exists, we will provide enough
1065         # space for a pointer
1066         GLIB_SIZEOF(, void*, system_thread)
1067 fi      
1068
1069 AC_DEFINE_UNQUOTED(G_THREAD_SOURCE,"gthread-$have_threads.c",
1070                    [Source file containing theread implementation])
1071 AC_SUBST(G_THREAD_CFLAGS)
1072 AC_SUBST(G_THREAD_LIBS)
1073 AC_SUBST(G_THREAD_LIBS_EXTRA)
1074
1075 dnl **********************************************
1076 dnl *** GDefaultMutex setup and initialization ***
1077 dnl **********************************************
1078 dnl
1079 dnl if mutex_has_default = yes, we also got
1080 dnl mutex_default_type, mutex_default_init and mutex_header_file
1081 GLIB_IF_VAR_EQ(mutex_has_default, yes,
1082         glib_save_CPPFLAGS="$CPPFLAGS"
1083         glib_save_LIBS="$LIBS"
1084         LIBS="$LIBS $G_THREAD_LIBS"
1085         CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
1086         GLIB_SIZEOF([#include <$mutex_header_file>],
1087                     $mutex_default_type,
1088                     gmutex,
1089                     )
1090         GLIB_BYTE_CONTENTS([#include <$mutex_header_file>],
1091                            $mutex_default_type,
1092                            gmutex,
1093                            $glib_cv_sizeof_gmutex,
1094                            $mutex_default_init)
1095         if test x"$glib_cv_byte_contents_gmutex" = xno; then
1096                 mutex_has_default=no
1097         fi
1098         CPPFLAGS="$glib_save_CPPFLAGS"
1099         LIBS="$glib_save_LIBS"
1100         ,
1101 )
1102
1103
1104 dnl ****************************************
1105 dnl *** GLib POLL* compatibility defines ***
1106 dnl ****************************************
1107 GLIB_SYSDEFS(
1108 [#include <sys/types.h>
1109 #include <sys/poll.h>],
1110         POLLIN:1 POLLOUT:4 POLLPRI:2 POLLERR:8 POLLHUP:16 POLLNVAL:32,
1111         glibconfig-sysdefs.h,
1112         =)
1113
1114 dnl ***********************
1115 dnl *** Tests for iconv ***
1116 dnl ***********************
1117
1118 AC_ARG_WITH(libiconv, [ --with-libiconv     Use the libiconv library ],,with_libiconv=maybe)
1119
1120 found_iconv=no
1121
1122 if test "x$with_libiconv" != "xyes" ; then
1123    # 
1124    # Check in the C library 
1125    #
1126    AC_CHECK_FUNC(iconv_open, with_libiconv=no; found_iconv=yes)
1127 fi
1128
1129 if test "x$with_libiconv" != "xno" ; then
1130    #
1131    # Check for libiconv
1132    #
1133    AC_CHECK_LIB(iconv, libiconv_open, with_libiconv=yes; found_iconv=yes)
1134 fi
1135
1136 if test "x$found_iconv" = "xno" ; then
1137    AC_MSG_ERROR([*** No iconv() implementation found in C library or libiconv])
1138 fi
1139
1140 if test "x$with_libiconv" = "xyes" ; then
1141   ICONV_LIBS="-liconv"
1142   AC_DEFINE(USE_LIBICONV)
1143 fi
1144 AC_SUBST(ICONV_LIBS)
1145
1146 dnl If the system doesn't define EILSEQ, we should define EILSEQ ourselves
1147 dnl since we need it for g_iconv()
1148
1149 AC_MSG_CHECKING([for EILSEQ])
1150 AC_TRY_COMPILE([
1151 #include <errno.h>
1152 ],
1153 [
1154 int error = EILSEQ;
1155 ], have_eilseq=yes, have_eilseq=no);
1156 AC_MSG_RESULT($have_eilseq)
1157
1158 dnl **************************
1159 dnl *** Checks for gtk-doc ***
1160 dnl **************************
1161
1162 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH path to installed docs ])
1163
1164 if test "x$with_html_dir" = "x" ; then
1165   HTML_DIR='${datadir}/gtk-doc/html'
1166 else
1167   HTML_DIR=$with_html_dir
1168 fi
1169
1170 AC_SUBST(HTML_DIR)
1171
1172
1173 AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false)
1174 AM_CONDITIONAL(HAVE_GTK_DOC, $GTKDOC)
1175 AC_SUBST(HAVE_GTK_DOC)
1176
1177 AC_CHECK_PROG(DB2HTML, db2html, true, false)
1178 AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)
1179
1180 dnl Let people disable the gtk-doc stuff.
1181 AC_ARG_ENABLE(gtk-doc, [  --enable-gtk-doc  Use gtk-doc to build documentation [default=auto]], enable_gtk_doc="$enableval", enable_gtk_doc=auto)
1182
1183 if test x$enable_gtk_doc = xauto ; then
1184   if test x$GTKDOC = xtrue ; then
1185     enable_gtk_doc=yes
1186   else
1187     enable_gtk_doc=no 
1188   fi
1189 fi
1190
1191 dnl NOTE: We need to use a separate automake conditional for this
1192 dnl       to make this work with the tarballs.
1193 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
1194
1195 dnl ******************************
1196 dnl *** output the whole stuff ***
1197 dnl ******************************
1198
1199 AC_OUTPUT_COMMANDS([
1200
1201 ## Generate `glibconfig.h' in two cases
1202 ## 1. `config.status' is run either explicitly, or via configure.
1203 ##     Esp. not when it is run in `Makefile' to generate makefiles and
1204 ##     config.h
1205 ## 2. CONFIG_OTHER is set explicitly
1206 ##
1207 ## Case 1 is difficult.  We know that `automake' sets one of
1208 ## CONFIG_FILES or CONFIG_HEADERS to empty.  This heuristic works
1209 ## only when AM_CONFIG_HEADER is set, however.
1210
1211 if test -n "${CONFIG_FILES}" && test -n "${CONFIG_HEADERS}"; then
1212   # Both CONFIG_FILES and CONFIG_HEADERS are non-empty ==> Case 1
1213   CONFIG_OTHER=${CONFIG_OTHER:-glibconfig.h}
1214 fi
1215 case "$CONFIG_OTHER" in
1216 *glibconfig.h*)
1217         echo creating glibconfig.h
1218         outfile=glibconfig.h-tmp
1219         cat > $outfile <<\_______EOF
1220 /* glibconfig.h
1221  *
1222  * This is a generated file.  Please modify 'configure.in'
1223  */
1224
1225 #ifndef __G_LIBCONFIG_H__
1226 #define __G_LIBCONFIG_H__
1227
1228 #include <gmacros.h>
1229
1230 _______EOF
1231
1232         if test x$glib_limits_h = xyes; then
1233           echo '#include <limits.h>' >> $outfile
1234         fi
1235         if test x$glib_float_h = xyes; then
1236           echo '#include <float.h>' >> $outfile
1237         fi
1238         if test x$glib_values_h = xyes; then
1239           echo '#include <values.h>' >> $outfile
1240         fi
1241         if test "$glib_header_alloca_h" = "yes"; then
1242           echo '#define GLIB_HAVE_ALLOCA_H' >> $outfile
1243         fi
1244         if test x$glib_sys_poll_h = xyes; then
1245           echo '#define GLIB_HAVE_SYS_POLL_H' >> $outfile
1246         fi
1247
1248         cat >> $outfile <<_______EOF
1249
1250 G_BEGIN_DECLS
1251
1252 #define G_MINFLOAT      $glib_mf
1253 #define G_MAXFLOAT      $glib_Mf
1254 #define G_MINDOUBLE     $glib_md
1255 #define G_MAXDOUBLE     $glib_Md
1256 #define G_MINSHORT      $glib_ms
1257 #define G_MAXSHORT      $glib_Ms
1258 #define G_MAXUSHORT     $glib_Mus
1259 #define G_MININT        $glib_mi
1260 #define G_MAXINT        $glib_Mi
1261 #define G_MAXUINT       $glib_Mui
1262 #define G_MINLONG       $glib_ml
1263 #define G_MAXLONG       $glib_Ml
1264 #define G_MAXULONG      $glib_Mul
1265
1266 _______EOF
1267
1268
1269         ### this should always be true in a modern C/C++ compiler
1270         cat >>$outfile <<_______EOF
1271 typedef signed char gint8;
1272 typedef unsigned char guint8;
1273 _______EOF
1274
1275
1276         if test -n "$gint16"; then
1277           cat >>$outfile <<_______EOF
1278 typedef signed $gint16 gint16;
1279 typedef unsigned $gint16 guint16;
1280 #define G_GINT16_FORMAT $gint16_format
1281 #define G_GUINT16_FORMAT $guint16_format
1282 _______EOF
1283         fi
1284
1285
1286         if test -n "$gint32"; then
1287           cat >>$outfile <<_______EOF
1288 typedef signed $gint32 gint32;
1289 typedef unsigned $gint32 guint32;
1290 #define G_GINT32_FORMAT $gint32_format
1291 #define G_GUINT32_FORMAT $guint32_format
1292 _______EOF
1293         fi
1294
1295
1296         if test -n "$gint64"; then
1297           cat >>$outfile <<_______EOF
1298 #define G_HAVE_GINT64 1
1299
1300 ${glib_extension}typedef signed $gint64 gint64;
1301 ${glib_extension}typedef unsigned $gint64 guint64;
1302
1303 #define G_GINT64_CONSTANT(val)  $gint64_constant
1304 _______EOF
1305                 if test -n "$gint64_format"; then
1306           cat >>$outfile <<_______EOF
1307 #define G_GINT64_FORMAT $gint64_format
1308 #define G_GUINT64_FORMAT $guint64_format
1309 _______EOF
1310                 fi
1311         fi
1312
1313         case x$glib_size_t in
1314         x2) echo "typedef gint16  gssize;" >> $outfile
1315             echo "typedef guint16 gsize;"  >> $outfile
1316             ;;
1317         x4) echo "typedef gint32  gssize;" >> $outfile
1318             echo "typedef guint32 gsize;"  >> $outfile
1319             ;;
1320         x8) echo "typedef gint64  gssize;" >> $outfile
1321             echo "typedef guint64 gsize;"  >> $outfile
1322             ;;
1323         *)  echo "#error size of size_t is unknown" >> $outfile
1324             ;;
1325         esac
1326
1327         if test -z "$glib_unknown_void_p"; then
1328           cat >>$outfile <<_______EOF
1329
1330 #define GPOINTER_TO_INT(p)      ((gint)  ${glib_gpi_cast} (p))
1331 #define GPOINTER_TO_UINT(p)     ((guint) ${glib_gpui_cast} (p))
1332
1333 #define GINT_TO_POINTER(i)      ((gpointer) ${glib_gpi_cast} (i))
1334 #define GUINT_TO_POINTER(u)     ((gpointer) ${glib_gpui_cast} (u))
1335 _______EOF
1336         else
1337           echo '#error SIZEOF_VOID_P unknown - This should never happen' >>$outfile
1338         fi
1339
1340
1341
1342         cat >>$outfile <<_______EOF
1343 $glib_atexit
1344 $glib_memmove
1345 $glib_defines
1346 $glib_os
1347
1348 $glib_vacopy
1349
1350 #ifdef  __cplusplus
1351 #define G_HAVE_INLINE   1
1352 #else   /* !__cplusplus */
1353 $glib_inline
1354 #endif  /* !__cplusplus */
1355 _______EOF
1356
1357         echo >>$outfile
1358         if test x$g_have_eilseq = xno; then
1359                 cat >>$outfile <<_______EOF
1360 #ifndef EILSEQ
1361 /* On some systems, like SunOS and NetBSD, EILSEQ is not defined.
1362  * The correspondence between this and the corresponding definition
1363  * in libiconv is essential.
1364  */
1365 #  define EILSEQ ENOENT
1366 #endif
1367 _______EOF
1368
1369         fi
1370
1371         echo >>$outfile
1372         if test x$g_mutex_has_default = xyes; then
1373                 cat >>$outfile <<_______EOF
1374 $g_enable_threads_def G_THREADS_ENABLED
1375 #define G_THREADS_IMPL_$g_threads_impl_def
1376 typedef struct _GStaticMutex GStaticMutex;
1377 struct _GStaticMutex
1378 {
1379   struct _GMutex *runtime_mutex;
1380   struct {
1381     union {
1382       char   pad[$g_mutex_sizeof];
1383       double dummy_double;
1384       void  *dummy_pointer;
1385       long   dummy_long;
1386     } mutex;
1387     void *debug_info;
1388   } static_mutex;
1389 };
1390 #define G_STATIC_MUTEX_INIT     { NULL, { { { $g_mutex_contents} }, NULL } }
1391 #define g_static_mutex_get_mutex(mutex) \
1392   (g_thread_use_default_impl ? ((GMutex*) &((mutex)->static_mutex)) : \
1393    g_static_mutex_get_mutex_impl (&((mutex)->runtime_mutex)))
1394 _______EOF
1395         else
1396                 cat >>$outfile <<_______EOF
1397 $g_enable_threads_def G_THREADS_ENABLED
1398 #define G_THREADS_IMPL_$g_threads_impl_def
1399 typedef struct _GMutex* GStaticMutex;
1400 #define G_STATIC_MUTEX_INIT NULL
1401 #define g_static_mutex_get_mutex(mutex) (g_static_mutex_get_mutex_impl (mutex))
1402 _______EOF
1403         fi
1404
1405         cat >>$outfile <<_______EOF
1406 /* This represents a system thread as used by the implementation. An
1407  * alien implementaion, as loaded by g_thread_init can only count on
1408  * "sizeof (gpointer)" bytes to store their info. We however need more
1409  * for some of our native implementations. */
1410 typedef union _GSystemThread GSystemThread;
1411 union _GSystemThread
1412 {
1413   char   data[$g_system_thread_sizeof];
1414   double dummy_double;
1415   void  *dummy_pointer;
1416   long   dummy_long;
1417 };
1418 _______EOF
1419
1420         echo >>$outfile
1421         g_bit_sizes="16 32"
1422         if test -n "$gint64"; then
1423           g_bit_sizes="$g_bit_sizes 64"
1424         fi
1425         for bits in $g_bit_sizes; do
1426           cat >>$outfile <<_______EOF
1427 #define GINT${bits}_TO_${g_bs_native}(val)      ((gint${bits}) (val))
1428 #define GUINT${bits}_TO_${g_bs_native}(val)     ((guint${bits}) (val))
1429 #define GINT${bits}_TO_${g_bs_alien}(val)       ((gint${bits}) GUINT${bits}_SWAP_LE_BE (val))
1430 #define GUINT${bits}_TO_${g_bs_alien}(val)      (GUINT${bits}_SWAP_LE_BE (val))
1431 _______EOF
1432         done
1433
1434         cat >>$outfile <<_______EOF
1435 #define GLONG_TO_LE(val)        ((glong) GINT${glongbits}_TO_LE (val))
1436 #define GULONG_TO_LE(val)       ((gulong) GUINT${glongbits}_TO_LE (val))
1437 #define GLONG_TO_BE(val)        ((glong) GINT${glongbits}_TO_BE (val))
1438 #define GULONG_TO_BE(val)       ((gulong) GUINT${glongbits}_TO_BE (val))
1439 #define GINT_TO_LE(val)         ((gint) GINT${gintbits}_TO_LE (val))
1440 #define GUINT_TO_LE(val)        ((guint) GUINT${gintbits}_TO_LE (val))
1441 #define GINT_TO_BE(val)         ((gint) GINT${gintbits}_TO_BE (val))
1442 #define GUINT_TO_BE(val)        ((guint) GUINT${gintbits}_TO_BE (val))
1443 #define G_BYTE_ORDER $g_byte_order
1444
1445 _______EOF
1446
1447         if test -r glibconfig-sysdefs.h; then
1448           cat glibconfig-sysdefs.h >>$outfile
1449         fi
1450
1451         cat >>$outfile <<_______EOF
1452
1453 G_END_DECLS
1454
1455 #endif /* GLIBCONFIG_H */
1456 _______EOF
1457
1458
1459         if cmp -s $outfile glibconfig.h; then
1460           echo glibconfig.h is unchanged
1461           rm -f $outfile
1462         else
1463           mv $outfile glibconfig.h
1464         fi ;;
1465 esac
1466 ],[
1467
1468 # Note that if two cases are the same, case goes with the first one.
1469 # Note also that this is inside an AC_OUTPUT_COMMAND.  We do not depend
1470 # on variable expansion in case labels.  Look at the generated config.status
1471 # for a hint.
1472
1473 glib_header_alloca_h="$ac_cv_header_alloca_h"
1474
1475 case xyes in
1476 x$ac_cv_header_float_h)
1477   glib_float_h=yes
1478   glib_mf=FLT_MIN glib_Mf=FLT_MAX
1479   glib_md=DBL_MIN glib_Md=DBL_MAX
1480   ;;
1481 x$ac_cv_header_values_h)
1482   glib_values_h=yes
1483   glib_mf=MINFLOAT  glib_Mf=MAXFLOAT
1484   glib_md=MINDOUBLE glib_Md=MAXDOUBLE
1485   ;;
1486 esac
1487
1488 case xyes in
1489 x$ac_cv_header_limits_h)
1490   glib_limits_h=yes
1491   glib_ms=SHRT_MIN glib_Ms=SHRT_MAX glib_Mus=USHRT_MAX
1492   glib_mi=INT_MIN  glib_Mi=INT_MAX  glib_Mui=UINT_MAX
1493   glib_ml=LONG_MIN glib_Ml=LONG_MAX glib_Mul=ULONG_MAX
1494   ;;
1495 x$ac_cv_header_values_h)
1496   glib_values_h=yes
1497   glib_ms=MINSHORT glib_Ms=MAXSHORT glib_Mus="(((gushort)G_MAXSHORT)*2+1)"
1498   glib_mi=MININT   glib_Mi=MAXINT   glib_Mui="(((guint)G_MAXINT)*2+1)"
1499   glib_ml=MINLONG  glib_Ml=MAXLONG  glib_Mul="(((gulong)G_MAXLONG)*2+1)"
1500   ;;
1501 esac
1502
1503 if test x$ac_cv_header_sys_poll_h = xyes ; then
1504   glib_sys_poll_h=yes
1505 fi
1506
1507 case 2 in
1508 $ac_cv_sizeof_short)            
1509   gint16=short
1510   gint16_format='"hi"'
1511   guint16_format='"hu"'
1512   ;;
1513 $ac_cv_sizeof_int)              
1514   gint16=int
1515   gint16_format='"i"'
1516   guint16_format='"u"'
1517   ;;
1518 esac
1519 case 4 in
1520 $ac_cv_sizeof_short)            
1521   gint32=short
1522   gint32_format='"hi"'
1523   guint32_format='"hu"'
1524   ;;
1525 $ac_cv_sizeof_int)              
1526   gint32=int
1527   gint32_format='"i"'
1528   guint32_format='"u"'
1529   ;;
1530 $ac_cv_sizeof_long)             
1531   gint32=long
1532   gint32_format='"li"'
1533   guint32_format='"lu"'
1534   ;;
1535 esac
1536 case 8 in
1537 $ac_cv_sizeof_int)
1538   gint64=int
1539   gint64_format='"i"'
1540   guint64_format='"u"'
1541   glib_extension=
1542   gint64_constant='(val)'
1543   ;;
1544 $ac_cv_sizeof_long)
1545   gint64=long
1546   gint64_format='"li"'
1547   guint64_format='"lu"'
1548   glib_extension=
1549   gint64_constant='(val##L)'
1550   ;;
1551 $ac_cv_sizeof_long_long)
1552   gint64='long long'
1553   if test -n "$glib_cv_long_long_format"; then
1554     gint64_format='"'$glib_cv_long_long_format'i"'
1555     guint64_format='"'$glib_cv_long_long_format'u"'
1556   fi
1557   glib_extension='G_GNUC_EXTENSION '
1558   gint64_constant='(G_GNUC_EXTENSION (val##LL))'
1559   ;;
1560 esac
1561 glib_size_t=$glib_cv_sizeof_size_t
1562
1563 gintbits=`expr $ac_cv_sizeof_int \* 8`
1564 glongbits=`expr $ac_cv_sizeof_long \* 8`
1565
1566
1567 case $ac_cv_sizeof_void_p in
1568 $ac_cv_sizeof_int)      glib_gpi_cast=''        glib_gpui_cast=''         ;;
1569 $ac_cv_sizeof_long)     glib_gpi_cast='(glong)' glib_gpui_cast='(gulong)' ;;
1570 *)                      glib_unknown_void_p=yes ;;
1571 esac
1572
1573
1574 case xyes in
1575 x$ac_cv_func_atexit)
1576   glib_atexit="
1577 #ifdef NeXT /* @#%@! NeXTStep */
1578 # define g_ATEXIT(proc) (!atexit (proc))
1579 #else
1580 # define g_ATEXIT(proc) (atexit (proc))
1581 #endif"
1582   ;;
1583 x$ac_cv_func_on_exit)
1584   glib_atexit="
1585 #define g_ATEXIT(proc)  (on_exit ((void (*)(int, void*))(proc), NULL))"
1586   ;;
1587 esac
1588
1589 case xyes in
1590 x$ac_cv_func_memmove)
1591   glib_memmove='
1592 #define g_memmove(d,s,n) G_STMT_START { memmove ((d), (s), (n)); } G_STMT_END'
1593   ;;
1594 x$glib_cv_working_bcopy)
1595   glib_memmove="
1596 /* memmove isn't available, but bcopy can copy overlapping memory regions */
1597 #define g_memmove(d,s,n) G_STMT_START { bcopy ((s), (d), (n)); } G_STMT_END"
1598   ;;
1599 *)  
1600   glib_memmove="
1601 /* memmove isn't found and bcopy can't copy overlapping memory regions, 
1602  * so we have to roll our own copy routine. */
1603 void g_memmove (void* dest, const void * src, unsigned long len);"
1604   ;;
1605 esac
1606
1607 glib_defines="
1608 #define GLIB_MAJOR_VERSION $GLIB_MAJOR_VERSION
1609 #define GLIB_MINOR_VERSION $GLIB_MINOR_VERSION
1610 #define GLIB_MICRO_VERSION $GLIB_MICRO_VERSION
1611 "
1612
1613 case xyes in
1614 x$glib_cv_va_copy)      glib_vacopy='#define G_VA_COPY  va_copy' ;;
1615 x$glib_cv___va_copy)    glib_vacopy='#define G_VA_COPY  __va_copy' ;;
1616 *)                      glib_vacopy=''
1617 esac
1618
1619 if test x$glib_cv_va_val_copy = xno; then
1620   glib_vacopy="\$glib_vacopy
1621 #define G_VA_COPY_AS_ARRAY 1"
1622 fi
1623
1624 if test x$glib_cv_hasinline = xyes; then
1625     glib_inline='#define G_HAVE_INLINE 1'
1626 fi
1627 if test x$glib_cv_has__inline = xyes; then
1628     glib_inline="\$glib_inline
1629 #define G_HAVE___INLINE 1"
1630 fi
1631 if test x$glib_cv_has__inline__ = xyes; then
1632     glib_inline="\$glib_inline
1633 #define G_HAVE___INLINE__ 1"
1634 fi
1635
1636 case xyes in
1637 x$ac_cv_c_bigendian)
1638   g_byte_order=G_BIG_ENDIAN
1639   g_bs_native=BE
1640   g_bs_alien=LE
1641   ;;
1642 *)
1643   g_byte_order=G_LITTLE_ENDIAN
1644   g_bs_native=LE
1645   g_bs_alien=BE
1646   ;;
1647 esac
1648
1649 g_have_eilseq=$have_eilseq
1650
1651 case x$have_threads in
1652 xnone)  g_enable_threads_def="#undef";;
1653 *)      g_enable_threads_def="#define";;
1654 esac
1655
1656 g_threads_impl_def=$g_threads_impl
1657
1658 g_mutex_has_default="$mutex_has_default"
1659 g_mutex_sizeof="$glib_cv_sizeof_gmutex"
1660 g_system_thread_sizeof="$glib_cv_sizeof_system_thread"
1661 g_mutex_contents="$glib_cv_byte_contents_gmutex"
1662
1663 case $host in
1664   *-*-beos*)
1665     glib_os="#define G_OS_BEOS"
1666     ;;
1667   *-*-cygwin*)
1668     glib_os="#define G_OS_UNIX
1669 #define G_WITH_CYGWIN"
1670 v    ;;
1671   *)
1672     glib_os="#define G_OS_UNIX"
1673     ;;
1674 esac
1675 ])
1676
1677 AC_OUTPUT([
1678 glib-2.0.pc
1679 gmodule-2.0.pc
1680 gthread-2.0.pc
1681 gobject-2.0.pc
1682 glib.spec
1683 Makefile
1684 glib-config-2.0
1685 build/Makefile
1686 build/win32/Makefile
1687 gmodule/gmoduleconf.h
1688 gmodule/Makefile
1689 gobject/Makefile
1690 gthread/Makefile
1691 docs/Makefile
1692 docs/glib-config.1
1693 docs/reference/Makefile
1694 docs/reference/glib/Makefile
1695 docs/reference/gobject/Makefile
1696 tests/Makefile
1697 ],[case "$CONFIG_FILES" in
1698 *glib-config-2.0*)chmod +x glib-config-2.0;;
1699 esac
1700 echo ""
1701 echo " *** IMPORTANT *** "
1702 echo ""
1703 echo "This is a development version of GLib.  You should be using a stable"
1704 echo "version, which is available at ftp://ftp.gtk.org/pub/gtk/v1.2/.  The"
1705 echo "version you just configured is meant for developers of GLib only:"
1706 echo ""
1707 echo "  * You should not base stable software on this version of GLib."
1708 echo "  * GNOME developers should use a stable version of GLib."
1709 echo ""
1710 echo "If you install this version of GLib, we strongly recommend that you"
1711 echo "install it in a different prefix than GLib 1.2.  Use --prefix as an"
1712 echo "argument to configure to do this.  Otherwise, you will not be able to"
1713 echo "do development with GLib 1.2 any longer."
1714 echo ""
1715 echo " *** You should be using GLib 1.2 instead. ***"
1716 ])