Make the error message in case of a broken thread system a bit more
[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 # The following version number definitions apply to GLib and GModule
19 # as a whole, so if changes occoured in either of them, they are both
20 # treated with the same interface and binary age.
21 #
22 # Making releases:
23 #   GLIB_MICRO_VERSION += 1;
24 #   GLIB_INTERFACE_AGE += 1;
25 #   GLIB_BINARY_AGE += 1;
26 # if any functions have been added, set GLIB_INTERFACE_AGE to 0.
27 # if backwards compatibility has been broken,
28 # set GLIB_BINARY_AGE and GLIB_INTERFACE_AGE to 0.
29 #
30 GLIB_MAJOR_VERSION=1
31 GLIB_MINOR_VERSION=1
32 GLIB_MICRO_VERSION=15
33 GLIB_INTERFACE_AGE=2
34 GLIB_BINARY_AGE=2
35 GLIB_VERSION=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION.$GLIB_MICRO_VERSION
36 AC_SUBST(GLIB_VERSION)
37
38 # libtool versioning
39 LT_RELEASE=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION
40 LT_CURRENT=`expr $GLIB_MICRO_VERSION - $GLIB_INTERFACE_AGE`
41 LT_REVISION=$GLIB_INTERFACE_AGE
42 LT_AGE=`expr $GLIB_BINARY_AGE - $GLIB_INTERFACE_AGE`
43 AC_SUBST(LT_RELEASE)
44 AC_SUBST(LT_CURRENT)
45 AC_SUBST(LT_REVISION)
46 AC_SUBST(LT_AGE)
47
48 VERSION=$GLIB_VERSION
49 PACKAGE=glib
50
51 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
52
53 # Specify a configuration file
54 AM_CONFIG_HEADER(config.h)
55
56 AC_DEFINE_UNQUOTED(GLIB_MAJOR_VERSION, $GLIB_MAJOR_VERSION)
57 AC_DEFINE_UNQUOTED(GLIB_MINOR_VERSION, $GLIB_MINOR_VERSION)
58 AC_DEFINE_UNQUOTED(GLIB_MICRO_VERSION, $GLIB_MICRO_VERSION)
59 AC_DEFINE_UNQUOTED(GLIB_INTERFACE_AGE, $GLIB_INTERFACE_AGE)
60 AC_DEFINE_UNQUOTED(GLIB_BINARY_AGE, $GLIB_BINARY_AGE)
61
62 dnl Initialize libtool
63 AM_PROG_LIBTOOL
64
65 dnl Initialize maintainer mode
66 AM_MAINTAINER_MODE
67
68 AC_CANONICAL_HOST
69
70 AC_ARG_ENABLE(debug, [  --enable-debug=[no/minimum/yes] turn on debugging [default=minimum]],,enable_debug=minimum)
71 AC_ARG_ENABLE(mem_check, [  --enable-mem-check      turn on malloc/free sanity checking [default=no]],,enable_mem_check=no)
72 AC_ARG_ENABLE(mem_profile, [  --enable-mem-profile    turn on malloc profiling atexit [default=no]],,enable_mem_profile=no)
73 AC_ARG_ENABLE(ansi, [  --enable-ansi           turn on strict ansi [default=no]],
74                     , enable_ansi=no)
75 AC_ARG_ENABLE(threads, [  --enable-threads        turn on basic thread support [default=yes]
76                           ([=no] will override --with-threads)],,enable_threads=yes)
77
78 if test "x$enable_threads" != "xyes"; then
79   enable_threads=no
80 fi
81
82 AC_MSG_CHECKING(whether to enable memory checking)
83 if test "x$enable_mem_check" = "xyes"; then
84   AC_DEFINE(ENABLE_MEM_CHECK, 1)
85   AC_SUBST(ENABLE_MEM_CHECK)
86   AC_MSG_RESULT(yes)
87 else
88   AC_MSG_RESULT(no)
89 fi
90
91 AC_MSG_CHECKING(whether to enable memory profiling)
92 if test "x$enable_mem_profile" = "xyes"; then
93   AC_DEFINE(ENABLE_MEM_PROFILE, 1)
94   AC_SUBST(ENABLE_MEM_PROFILE)
95   AC_MSG_RESULT(yes)
96 else
97   AC_MSG_RESULT(no)
98 fi
99
100 if test "x$enable_debug" = "xyes"; then
101   test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
102   GLIB_DEBUG_FLAGS="-DG_ENABLE_DEBUG"
103 else
104   if test "x$enable_debug" = "xno"; then
105     GLIB_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
106   fi
107 fi
108
109 AC_DEFINE_UNQUOTED(G_COMPILED_WITH_DEBUGGING, "${enable_debug}")
110
111 # Checks for programs.
112 AC_PROG_CC
113 AM_PROG_CC_STDC
114 AC_PROG_INSTALL
115
116 changequote(,)dnl
117 if test "x$GCC" = "xyes"; then
118   case " $CFLAGS " in
119   *[\ \ ]-Wall[\ \      ]*) ;;
120   *) CFLAGS="$CFLAGS -Wall" ;;
121   esac
122
123   if test "x$enable_ansi" = "xyes"; then
124     case " $CFLAGS " in
125     *[\ \       ]-ansi[\ \      ]*) ;;
126     *) CFLAGS="$CFLAGS -ansi" ;;
127     esac
128
129     case " $CFLAGS " in
130     *[\ \       ]-pedantic[\ \  ]*) ;;
131     *) CFLAGS="$CFLAGS -pedantic" ;;
132     esac
133   fi
134 fi
135 changequote([,])dnl
136
137 dnl DU4 native cc currently needs -std1 for ANSI mode (instead of K&R)
138 AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
139 glib_save_LIBS=$LIBS
140 LIBS="$LIBS -lm"
141 AC_TRY_RUN([#include <math.h>
142              int main (void) { return (log(1) != log(1.)); }],
143      AC_MSG_RESULT(none needed),
144      glib_save_CFLAGS=$CFLAGS
145      CFLAGS="$CFLAGS -std1"
146      AC_TRY_RUN([#include <math.h>
147                  int main (void) { return (log(1) != log(1.)); }],
148          AC_MSG_RESULT(-std1),
149          AC_MSG_RESULT()
150          CFLAGS=$glib_save_CFLAGS
151          AC_MSG_WARN(
152                 [No ANSI prototypes found in library. (-std1 didn't work.)])
153      )
154 )
155 LIBS=$glib_save_LIBS
156
157 dnl NeXTStep cc seems to need this
158 AC_MSG_CHECKING([for extra flags for POSIX compliance])
159 AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
160   AC_MSG_RESULT(none needed),
161   glib_save_CFLAGS=$CFLAGS
162   CFLAGS="$CFLAGS -posix"
163   AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
164     AC_MSG_RESULT(-posix),
165     AC_MSG_RESULT()
166     CFLAGS=$glib_save_CFLAGS
167     AC_MSG_WARN([Could not determine POSIX flag. (-posix didn't work.)])))
168
169 # Checks for header files.
170 AC_HEADER_STDC
171
172 # Checks for library functions.
173 AC_FUNC_VPRINTF
174
175 AC_CHECK_FUNCS(atexit on_exit)
176
177 AC_CHECK_SIZEOF(char)
178 AC_CHECK_SIZEOF(short)
179 AC_CHECK_SIZEOF(long)
180 AC_CHECK_SIZEOF(int)
181 AC_CHECK_SIZEOF(void *)
182 AC_CHECK_SIZEOF(long long)
183
184 dnl long doubles were not used, and a portability problem
185 dnl AC_C_LONG_DOUBLE
186 AC_C_CONST
187
188 dnl AC_C_INLINE is useless to us since it bails out too early, we need to
189 dnl truely know which ones of `inline', `__inline' and `__inline__' are
190 dnl actually supported.
191 AC_MSG_CHECKING(for __inline)
192 AC_CACHE_VAL(glib_cv_has__inline,[
193         AC_TRY_RUN([
194         __inline int foo () { return 0; }
195         int main () { return foo (); }
196         ],
197         glib_cv_has__inline=yes
198         ,
199         glib_cv_has__inline=no
200         ,)
201 ])
202 AC_MSG_RESULT($glib_cv_has__inline)
203 case x$glib_cv_has__inline in
204 xyes) AC_DEFINE(G_HAVE___INLINE)
205 esac
206 AC_MSG_CHECKING(for __inline__)
207 AC_CACHE_VAL(glib_cv_has__inline__,[
208         AC_TRY_RUN([
209         __inline__ int foo () { return 0; }
210         int main () { return foo (); }
211         ],
212         glib_cv_has__inline__=yes
213         ,
214         glib_cv_has__inline__=no
215         ,)
216 ])
217 AC_MSG_RESULT($glib_cv_has__inline__)
218 case x$glib_cv_has__inline__ in
219 xyes) AC_DEFINE(G_HAVE___INLINE__)
220 esac
221 AC_MSG_CHECKING(for inline)
222 AC_CACHE_VAL(glib_cv_hasinline,[
223         AC_TRY_RUN([
224         inline int foo () { return 0; }
225         int main () { return foo (); }
226         ],
227         glib_cv_hasinline=yes
228         ,
229         glib_cv_hasinline=no
230         ,)
231 ])
232 AC_MSG_RESULT($glib_cv_hasinline)
233 case x$glib_cv_hasinline in
234 xyes) AC_DEFINE(G_HAVE_INLINE)
235 esac
236
237 dnl for bytesex stuff
238 AC_C_BIGENDIAN
239
240 dnl header file checks
241 AC_CHECK_HEADERS(float.h, AC_DEFINE(HAVE_FLOAT_H))
242 AC_CHECK_HEADERS(limits.h, AC_DEFINE(HAVE_LIMITS_H))
243 AC_CHECK_HEADERS(pwd.h, AC_DEFINE(HAVE_PWD_H))
244 AC_CHECK_HEADERS(sys/param.h, AC_DEFINE(HAVE_SYS_PARAM_H))
245 AC_CHECK_HEADERS(sys/poll.h, AC_DEFINE(HAVE_SYS_POLL_H))
246 AC_CHECK_HEADERS(sys/select.h, AC_DEFINE(HAVE_SYS_SELECT_H))
247 AC_CHECK_HEADERS(sys/time.h, AC_DEFINE(HAVE_SYS_TIME_H))
248 AC_CHECK_HEADERS(sys/times.h, AC_DEFINE(HAVE_SYS_TIMES_H))
249 AC_CHECK_HEADERS(unistd.h, AC_DEFINE(HAVE_UNISTD_H))
250 AC_CHECK_HEADERS(values.h, AC_DEFINE(HAVE_VALUES_H))
251
252 # Check for some functions
253 AC_CHECK_FUNCS(lstat strerror strsignal memmove vsnprintf strcasecmp strncasecmp poll)
254
255 # Check for sys_errlist
256 AC_MSG_CHECKING(for sys_errlist)
257 AC_TRY_LINK(, [
258 extern char *sys_errlist[];
259 extern int sys_nerr;
260 sys_errlist[sys_nerr-1][0] = 0;
261 ], glib_ok=yes, glib_ok=no)
262 AC_MSG_RESULT($glib_ok)
263 if test $glib_ok = no; then
264     AC_DEFINE(NO_SYS_ERRLIST)
265 fi
266
267 # Check for sys_siglist
268 AC_MSG_CHECKING(for sys_siglist)
269 AC_TRY_LINK(, [
270 extern char *sys_siglist[];
271 strlen (sys_siglist[0]);
272 ], glib_ok=yes, glib_ok=no)
273 AC_MSG_RESULT($glib_ok)
274 if test $glib_ok = no; then
275     AC_DEFINE(NO_SYS_SIGLIST)
276 fi
277
278 # Check for sys_siglist decl (see Tue Jan 19 00:44:24 1999 in changelog)
279 AC_MSG_CHECKING(for sys_siglist declaration)
280 AC_TRY_COMPILE([#include <signal.h>], [
281 strlen (sys_siglist[0]);
282 ], glib_ok=yes, glib_ok=no)
283 AC_MSG_RESULT($glib_ok)
284 if test $glib_ok = no; then
285     AC_DEFINE(NO_SYS_SIGLIST_DECL)
286 fi
287
288 # Check if <sys/select.h> needs to be included for fd_set
289 AC_MSG_CHECKING([for fd_set])
290 AC_TRY_COMPILE([#include <sys/types.h>],
291         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
292 if test $gtk_ok = yes; then
293     AC_MSG_RESULT([yes, found in sys/types.h])
294 else
295     AC_HEADER_EGREP(fd_mask, sys/select.h, gtk_ok=yes)
296     if test $gtk_ok = yes; then
297         AC_DEFINE(HAVE_SYS_SELECT_H)
298         AC_MSG_RESULT([yes, found in sys/select.h])
299     else
300         AC_DEFINE(NO_FD_SET)
301         AC_MSG_RESULT(no)
302     fi
303 fi
304
305 # These are used only in GDK (gdki18n.h)
306 # This stuff is here only so that we can define these
307 # things in glibconfig.h. If gtk+ started using an installed
308 # gdkconfig.h file, then the definitions would belong there.
309
310 # Check for wchar.h
311
312 AC_MSG_CHECKING(for wchar.h)
313 AC_TRY_CPP([#include <wchar.h>], glib_wchar_h=yes, glib_wchar_h=no)
314 if test $glib_wchar_h = yes; then
315    AC_DEFINE(HAVE_WCHAR_H)
316 fi
317 AC_MSG_RESULT($glib_wchar_h)
318
319 # Check for wctype.h (for iswalnum)
320
321 AC_MSG_CHECKING(for wctype.h)
322 AC_TRY_CPP([#include <wctype.h>], glib_wctype_h=yes, glib_wctype_h=no)
323 if test $glib_wctype_h = yes; then
324    AC_DEFINE(HAVE_WCTYPE_H)
325 fi
326 AC_MSG_RESULT($glib_wctype_h)
327
328 oLIBS="$LIBS"
329 # in Solaris 2.5, `iswalnum' is in -lw
330 AC_CHECK_FUNC(iswalnum,,[AC_CHECK_LIB(w,iswalnum)])
331
332 # The following is necessary for Linux libc-5.4.38
333 AC_MSG_CHECKING(if iswalnum() and friends are properly defined)
334 AC_TRY_LINK([#include <stdlib.h>],[
335 #if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H))
336 #  ifdef HAVE_WCTYPE_H
337 #    include <wctype.h>
338 #  else
339 #    ifdef HAVE_WCHAR_H
340 #      include <wchar.h>
341 #    endif
342 #  endif
343 #else
344 #  define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c))
345 #endif
346 iswalnum((wchar_t) 0);
347 ], glib_working_wctype=yes, glib_working_wctype=no)
348 LIBS="$oLIBS"
349
350 if test $glib_working_wctype = no; then
351    AC_DEFINE(HAVE_BROKEN_WCTYPE)
352 fi
353 AC_MSG_RESULT($glib_working_wctype)
354
355
356 dnl **********************
357 dnl *** va_copy checks ***
358 dnl **********************
359 dnl we currently check for all three va_copy possibilities, so we get
360 dnl all results in config.log for bug reports.
361 AC_MSG_CHECKING(for an implementation of va_copy())
362 AC_CACHE_VAL(glib_cv_va_copy,[
363         AC_TRY_RUN([
364         #include <stdarg.h>
365         void f (int i, ...) {
366         va_list args1, args2;
367         va_start (args1, i);
368         va_copy (args2, args1);
369         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
370           exit (1);
371         va_end (args1); va_end (args2);
372         }
373         int main() {
374           f (0, 42);
375           return 0;
376         }],
377         glib_cv_va_copy=yes
378         ,
379         glib_cv_va_copy=no
380         ,)
381 ])
382 AC_MSG_RESULT($glib_cv_va_copy)
383 AC_MSG_CHECKING(for an implementation of __va_copy())
384 AC_CACHE_VAL(glib_cv___va_copy,[
385         AC_TRY_RUN([
386         #include <stdarg.h>
387         void f (int i, ...) {
388         va_list args1, args2;
389         va_start (args1, i);
390         __va_copy (args2, args1);
391         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
392           exit (1);
393         va_end (args1); va_end (args2);
394         }
395         int main() {
396           f (0, 42);
397           return 0;
398         }],
399         glib_cv___va_copy=yes
400         ,
401         glib_cv___va_copy=no
402         ,)
403 ])
404 AC_MSG_RESULT($glib_cv___va_copy)
405 AC_MSG_CHECKING(whether va_lists can be copied by value)
406 AC_CACHE_VAL(glib_cv_va_val_copy,[
407         AC_TRY_RUN([
408         #include <stdarg.h>
409         void f (int i, ...) {
410         va_list args1, args2;
411         va_start (args1, i);
412         args2 = args1;
413         if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
414           exit (1);
415         va_end (args1); va_end (args2);
416         }
417         int main() {
418           f (0, 42);
419           return 0;
420         }],
421         glib_cv_va_val_copy=yes
422         ,
423         glib_cv_va_val_copy=no
424         ,)
425 ])
426 if test "x$glib_cv_va_copy" = "xyes"; then
427   AC_DEFINE(G_VA_COPY, va_copy)
428 else if test "x$glib_cv___va_copy" = "xyes"; then
429   AC_DEFINE(G_VA_COPY, __va_copy)
430 fi
431 fi
432 if test "x$glib_cv_va_val_copy" = "xno"; then
433   AC_DEFINE(G_VA_COPY_AS_ARRAY)
434 fi
435 AC_MSG_RESULT($glib_cv_va_val_copy)
436
437
438 dnl ***********************
439 dnl *** g_module checks ***
440 dnl ***********************
441 G_MODULE_LIBS=
442 G_MODULE_LDFLAGS=
443 G_MODULE_IMPL=
444 G_MODULE_NEED_USCORE=0
445 G_MODULE_HAVE_DLERROR=0
446 dnl *** dlopen() and dlsym() in system libraries
447 if test -z "$G_MODULE_IMPL"; then
448         AC_CHECK_FUNC(dlopen,
449                 AC_CHECK_FUNC(dlsym,
450                         G_MODULE_IMPL=G_MODULE_IMPL_DL
451                 ,)
452         ,)
453 fi
454 dnl *** dlopen() and dlsym() in libdl
455 if test -z "$G_MODULE_IMPL"; then
456         AC_CHECK_LIB(dl, dlopen,
457                 AC_CHECK_LIB(dl, dlsym,
458                         G_MODULE_LIBS=-ldl
459                         G_MODULE_IMPL=G_MODULE_IMPL_DL
460                 ,)
461         ,)
462 fi
463 dnl *** shl_load() in libdld (HP-UX)
464 if test -z "$G_MODULE_IMPL"; then
465         AC_MSG_CHECKING(how to export all symbols)
466         SAVED_LDFLAGS=$LDFLAGS
467         LDFLAGS="$LDFLAGS -Wl,-E"
468         AC_TRY_LINK(,[ return 0; ],
469                 [ G_MODULE_LDFLAGS="-Wl,-E" ],[
470                 LDFLAGS="$SAVED_LDFLAGS -bexpall"
471                 AC_TRY_LINK(,[ return 0; ],
472                         G_MODULE_LDFLAGS="-bexpall",
473                         G_MODULE_LDFLAGS="none"
474                 )
475         ])
476         LDFLAGS=$SAVED_LDFLAGS
477         AC_MSG_RESULT($G_MODULE_LDFLAGS)
478         if test "x$G_MODULE_LDFLAGS" = "xnone"; then
479                 G_MODULE_LDFLAGS=
480         fi
481         AC_CHECK_LIB(dld, shl_load,
482                 G_MODULE_LIBS=-ldld
483                 G_MODULE_IMPL=G_MODULE_IMPL_DLD
484         ,)
485 fi
486 dnl *** additional checks for G_MODULE_IMPL_DL
487 if test "$G_MODULE_IMPL" = "G_MODULE_IMPL_DL"; then
488         case "$host_os" in
489           linux*)
490             G_MODULE_LDFLAGS='-rdynamic'
491             ;;
492         esac
493         LIBS_orig="$LIBS"
494         LDFLAGS_orig="$LDFLAGS"
495         LIBS="$LIBS $G_MODULE_LIBS"
496         LDFLAGS="$LDFLAGS $G_MODULE_LDFLAGS"
497 dnl *** check whether we need preceeding underscores
498         AC_MSG_CHECKING(for preceeding underscore in symbols)
499         AC_CACHE_VAL(glib_cv_uscore,[
500                 AC_TRY_RUN([
501                 #include <dlfcn.h>
502                 int glib_underscore_test (void) { return 42; }
503                 int main() {
504                   void *f1 = (void*)0, *f2 = (void*)0, *handle;
505                   handle = dlopen ((void*)0, 0);
506                   if (handle) {
507                     f1 = dlsym (handle, "glib_underscore_test");
508                     f2 = dlsym (handle, "_glib_underscore_test");
509                   } return (!f2 || f1);
510                 }],
511                         glib_cv_uscore=yes,
512                         glib_cv_uscore=no,
513                 )
514                 rm -f plugin.c plugin.o plugin.lo
515         ])
516         AC_MSG_RESULT($glib_cv_uscore)
517         if test "x$glib_cv_uscore" = "xyes"; then
518                 G_MODULE_NEED_USCORE=1
519         else
520                 G_MODULE_NEED_USCORE=0
521         fi
522
523         LDFLAGS="$LDFLAGS_orig"
524 dnl *** check for having dlerror()
525         AC_CHECK_FUNC(dlerror,
526                 G_MODULE_HAVE_DLERROR=1,
527                 G_MODULE_HAVE_DLERROR=0)
528         LIBS="$LIBS_orig"
529 fi
530 dnl *** done, have e got an implementation?
531 if test -z "$G_MODULE_IMPL"; then
532         G_MODULE_IMPL=0
533 fi
534 AC_SUBST(G_MODULE_IMPL)
535 AC_SUBST(G_MODULE_LIBS)
536 AC_SUBST(G_MODULE_LDFLAGS)
537 AC_SUBST(G_MODULE_HAVE_DLERROR)
538 AC_SUBST(G_MODULE_NEED_USCORE)
539 AC_SUBST(GLIB_DEBUG_FLAGS)
540
541
542 dnl ***********************
543 dnl *** g_thread checks ***
544 dnl ***********************
545
546 AC_ARG_WITH(threads, [  --with-threads=[none/posix/solaris/nspr] specify a thread implementation to use],
547         if test "x$with_threads" = x; then
548                 want_threads=yes
549         else
550                 want_threads=$with_threads
551         fi,
552         want_threads=yes)
553 if test "x$enable_threads" = "xno"; then
554         want_threads=no
555 fi
556 if test "x$want_threads" = "xnone"; then
557         want_threads=no
558 fi
559
560 dnl error and warning message
561 dnl *************************
562
563 THREAD_NO_IMPLEMENTATION="You do not have any known thread system on your
564                 computer. glib will not be thread safe on your computer."
565
566 FLAG_DOES_NOT_WORK="I can't find the MACRO, that enables thread safety on your
567                 platform (normaly it's "_REENTRANT"). I'll not use any flag on
568                 compilation now, but then your programs might not work.
569                 Please provide information on how it is done on your system."
570
571 LIBS_NOT_FOUND_1="I can't find the libraries for the thread implementation
572                 "
573
574 LIBS_NOT_FOUND_2=". Please choose another thread implementation or
575                 provide information on your thread implementation.
576                 You can also use the '--disable-threads' flag for configure 
577                 to compile without thread support."
578
579 FUNC_NO_GETPWUID_R="the 'g_get_(user_name|real_name|home_dir|tmp_dir)'
580                 functions will not be MT-safe during their first call because
581                 there is no 'getpwuid_r' on your system."
582
583 FUNC_NO_LOCALTIME_R="the 'g_date_set_time' function will not be MT-safe
584                 because there is no 'localtime_r' on your system."
585
586 dnl determination of thread implementation
587 dnl ***************************************
588
589 have_threads=none
590 if test "x$want_threads" = xyes || test "x$want_threads" = xsolaris; then
591         case $host in
592                 *-*-solaris*)
593                 AC_CHECK_LIB(thread, cond_init, have_threads=solaris)
594                 ;;
595         esac
596 fi
597 if test "x$want_threads" = xyes || test "x$want_threads" = xposix; then
598         if test "x$have_threads" = xnone; then
599                 AC_CHECK_HEADER(pthread.h, have_threads=posix)
600         fi
601 fi
602 if test "x$want_threads" = xyes || test "x$want_threads" = xnspr; then
603         if test "x$have_threads" = xnone; then
604                 AC_CHECK_LIB(nspr21, PRP_NewNakedCondVar, have_threads=nspr)
605         fi
606 fi
607
608 AC_MSG_CHECKING(for thread implementation)
609
610 if test "x$have_threads" = xnone && test "x$want_threads" != xno; then
611         AC_MSG_RESULT(none available)
612         AC_MSG_WARN($THREAD_NO_IMPLEMENTATION)
613 else
614         AC_MSG_RESULT($have_threads)
615 fi
616
617
618 dnl determination of G_THREAD_LIBS
619 dnl ******************************
620
621 G_THREAD_LIBS=
622 G_THREAD_CFLAGS=
623
624 mutex_has_default=no
625 case $have_threads in
626         posix)
627                 G_THREAD_LIBS=error
628                 AC_CHECK_LIB(pthread, pthread_attr_init,
629                              G_THREAD_LIBS="-lpthread")
630                 if test "x$G_THREAD_LIBS" = xerror; then
631                         AC_CHECK_LIB(pthreads, pthread_attr_init,
632                                 G_THREAD_LIBS="-lpthreads")
633                 fi
634                 if test "x$G_THREAD_LIBS" = xerror; then
635                         AC_CHECK_LIB(c_r, pthread_attr_init,
636                                 G_THREAD_LIBS="-lc_r")
637                 fi
638                 if test "x$G_THREAD_LIBS" = xerror; then
639                         AC_CHECK_FUNC(pthread_attr_init, G_THREAD_LIBS="")
640                 fi
641                 dnl ********** DG/UX ************
642                 if test "x$G_THREAD_LIBS" = xerror; then
643                         AC_CHECK_LIB(thread, __d10_pthread_attr_init,
644                                 G_THREAD_LIBS="-lthread"
645                                 G_THREAD_CFLAGS="-D_POSIX4A_DRAFT10_SOURCE")
646                 fi
647                 dnl ********* HPUX 11 ***********
648                 if test "x$G_THREAD_LIBS" = xerror; then
649                         AC_CHECK_LIB(pthread, __pthread_attr_init_system,
650                                 G_THREAD_LIBS="-lpthread")
651                 fi
652                 mutex_has_default=yes
653                 mutex_default_type='pthread_mutex_t'
654                 mutex_default_init='PTHREAD_MUTEX_INITIALIZER'
655                 mutex_header_file='pthread.h'
656                 g_threads_impl="POSIX"
657                 ;;
658         solaris)
659                 G_THREAD_LIBS=error
660                 AC_CHECK_LIB(thread, cond_init, G_THREAD_LIBS="-lthread")
661                 mutex_has_default=yes
662                 mutex_default_type='mutex_t'
663                 mutex_default_init="DEFAULTMUTEX"
664                 mutex_header_file='thread.h'
665                 g_threads_impl="SOLARIS"
666                 ;;
667         nspr)
668                 AC_CHECK_LIB(nspr21, PRP_NewNakedCondVar,
669                              G_THREAD_LIBS="-lnspr21")
670                 g_threads_impl="NSPR"
671                 ;;
672         none)
673                 g_threads_impl="NONE"
674                 ;;
675         *)
676                 g_threads_impl="NONE"
677                 G_THREAD_LIBS=error
678                 ;;
679 esac
680
681 if test "x$G_THREAD_LIBS" = xerror; then
682         AC_MSG_ERROR($LIBS_NOT_FOUND_1$have_threads$LIBS_NOT_FOUND_2)
683 fi
684
685 AC_MSG_CHECKING(necessary linker options)
686 AC_MSG_RESULT($G_THREAD_LIBS)
687
688 dnl determination of G_THREAD_CFLAGS
689 dnl ********************************
690
691 if test x"$have_threads" != xnone; then
692 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_REENTRANT" # good default guess
693
694     case $host in
695         *-aix*)
696                 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE"
697                 if test x"$GCC" = xyes; then
698                         G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads"
699                 fi
700                 ;;
701         *-freebsd2.2*)
702                 G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE"
703
704                 # FreeBSD 2.2.x shiped with gcc 2.7.2.x, which doesn't support
705                 # -mthreads flag.
706                 ;;
707     esac
708
709     # if we are not finding the ctime_r function, then we probably are
710     # not using the proper multithread flag
711     old_CPPFLAGS=$CPPFLAGS
712     CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
713     AC_EGREP_HEADER([[^a-zA-Z_]ctime_r[^a-zA-Z_]], time.h, ,
714     G_THREAD_CFLAGS=
715     AC_MSG_WARN($FLAG_DOES_NOT_WORK))
716     CPPFLAGS=$old_CPPFLAGS
717
718     AC_MSG_CHECKING(necessary compiler options)
719
720     AC_MSG_RESULT($G_THREAD_CFLAGS)
721 else
722     G_THREAD_CFLAGS=
723 fi
724
725 dnl check for mt safe function variants
726 dnl ***********************************
727
728 if test x"$have_threads" != xnone; then
729         glib_save_LIBS="$LIBS"
730         glib_save_CFLAGS="$CFLAGS"
731         # we are not doing the following for now, as this might require glib 
732         # to always be linked with the thread libs on some platforms. 
733         # LIBS="$LIBS $G_THREAD_LIBS"
734         CFLAGS="$CFLAGS $G_THREAD_CFLAGS"
735         AC_CHECK_FUNCS(localtime_r rand_r)
736         if test "$ac_cv_header_pwd_h" = "yes"; then
737                 AC_CHECK_FUNCS(getpwuid_r)
738                 if test "$ac_cv_func_getpwuid_r" = "yes"; then
739                         AC_MSG_CHECKING(whether getpwuid_r is posix like)
740                         # getpwuid_r(0, NULL, NULL, 0) is the signature on
741                         # solaris, if that is not found, the prog below won't 
742                         # compile, then the posix signature is assumed as 
743                         # the default.
744                         AC_TRY_COMPILE([#include <pwd.h>],
745                                 [getpwuid_r(0, NULL, NULL, 0);],
746                                 [AC_MSG_RESULT(no)],
747                                 [AC_MSG_RESULT(yes)
748                                 AC_DEFINE(HAVE_GETPWUID_R_POSIX)])
749                 fi
750         fi
751         LIBS="$glib_save_LIBS"
752         CFLAGS="$glib_save_CFLAGS"
753 fi
754
755 if test "x$enable_threads" = "xyes"; then
756         if test "$ac_cv_func_getpwuid_r" != "yes"; then
757                 AC_MSG_WARN($FUNC_NO_GETPWUID_R)
758         fi
759         if test "$ac_cv_func_localtime_r" != "yes"; then
760                 AC_MSG_WARN($FUNC_NO_LOCALTIME_R)
761         fi
762 fi
763
764 AC_DEFINE_UNQUOTED(G_THREAD_SOURCE,"gthread-$have_threads.c")
765 AC_SUBST(G_THREAD_CFLAGS)
766 AC_SUBST(G_THREAD_LIBS)
767
768 CFLAGS="$CFLAGS $G_THREAD_CFLAGS"
769
770 dnl **********************************************
771 dnl *** GDefaultMutex setup and initialization ***
772 dnl **********************************************
773 dnl
774 dnl if mutex_has_default = yes, we also got
775 dnl mutex_default_type, mutex_default_init and mutex_header_file
776 GLIB_IF_VAR_EQ(mutex_has_default, yes,
777         GLIB_SIZEOF([#include <$mutex_header_file>],
778                     $mutex_default_type,
779                     gmutex,
780                     )
781         GLIB_BYTE_CONTENTS([#include <$mutex_header_file>],
782                            $mutex_default_type,
783                            gmutex,
784                            $glib_cv_sizeof_gmutex,
785                            $mutex_default_init)
786         ,
787 )
788
789
790 dnl ****************************************
791 dnl *** GLib POLL* compatibility defines ***
792 dnl ****************************************
793 GLIB_SYSDEFS(
794 [#include <sys/types.h>
795 #include <sys/poll.h>],
796         POLLIN:1 POLLOUT:4 POLLPRI:2 POLLERR:8 POLLHUP:16 POLLNVAL:32,
797         glibconfig-sysdefs.h,
798         =)
799
800
801 dnl ******************************
802 dnl *** output the whole stuff ***
803 dnl ******************************
804
805 AC_OUTPUT_COMMANDS([
806
807 ## Generate `glibconfig.h' in two cases
808 ## 1. `config.status' is run either explicitly, or via configure.
809 ##     Esp. not when it is run in `Makefile' to generate makefiles and
810 ##     config.h
811 ## 2. CONFIG_OTHER is set explicitly
812 ##
813 ## Case 1 is difficult.  We know that `automake' sets one of
814 ## CONFIG_FILES or CONFIG_HEADERS to empty.  This heuristic works
815 ## only when AM_CONFIG_HEADER is set, however.
816
817 if test -n "${CONFIG_FILES}" && test -n "${CONFIG_HEADERS}"; then
818   # Both CONFIG_FILES and CONFIG_HEADERS are non-empty ==> Case 1
819   CONFIG_OTHER=${CONFIG_OTHER:-glibconfig.h}
820 fi
821 case "$CONFIG_OTHER" in
822 *glibconfig.h*)
823         echo creating glibconfig.h
824         outfile=glibconfig.h-tmp
825         cat > $outfile <<\_______EOF
826 /* glibconfig.h
827  *
828  * This is a generated file.  Please modify `configure.in'
829  */
830
831 #ifndef GLIBCONFIG_H
832 #define GLIBCONFIG_H
833
834 #ifdef __cplusplus
835 extern "C" {
836 #endif /* __cplusplus */
837
838 _______EOF
839
840         if test x$glib_limits_h = xyes; then
841           echo '#include <limits.h>' >> $outfile
842         fi
843         if test x$glib_float_h = xyes; then
844           echo '#include <float.h>' >> $outfile
845         fi
846         if test x$glib_values_h = xyes; then
847           echo '#include <values.h>' >> $outfile
848         fi
849         if test x$g_mutex_header_file != x; then
850           echo '#include <'"$g_mutex_header_file"'>' >> $outfile
851         fi
852         if test x$glib_sys_poll_h = xyes; then
853           echo '#define GLIB_HAVE_SYS_POLL_H' >> $outfile
854         fi
855
856         cat >> $outfile <<_______EOF
857
858 #define G_MINFLOAT      $glib_mf
859 #define G_MAXFLOAT      $glib_Mf
860 #define G_MINDOUBLE     $glib_md
861 #define G_MAXDOUBLE     $glib_Md
862 #define G_MINSHORT      $glib_ms
863 #define G_MAXSHORT      $glib_Ms
864 #define G_MININT        $glib_mi
865 #define G_MAXINT        $glib_Mi
866 #define G_MINLONG       $glib_ml
867 #define G_MAXLONG       $glib_Ml
868
869 _______EOF
870
871
872         ### this should always be true in a modern C/C++ compiler
873         cat >>$outfile <<_______EOF
874 typedef signed char gint8;
875 typedef unsigned char guint8;
876 _______EOF
877
878
879         if test -n "$gint16"; then
880           cat >>$outfile <<_______EOF
881 typedef signed $gint16 gint16;
882 typedef unsigned $gint16 guint16;
883 _______EOF
884         fi
885
886
887         if test -n "$gint32"; then
888           cat >>$outfile <<_______EOF
889 typedef signed $gint32 gint32;
890 typedef unsigned $gint32 guint32;
891 _______EOF
892         fi
893
894
895         if test -n "$gint64"; then
896           cat >>$outfile <<_______EOF
897 ${glib_warning_guard}#define G_HAVE_GINT64 1
898
899 ${glib_extension}typedef signed $gint64 gint64;
900 ${glib_extension}typedef unsigned $gint64 guint64;
901
902 #define G_GINT64_CONSTANT(val)  $gint64_constant
903 _______EOF
904         fi
905
906
907         if test -z "$glib_unknown_void_p"; then
908           cat >>$outfile <<_______EOF
909
910 #define GPOINTER_TO_INT(p)      ((gint)  ${glib_gpi_cast} (p))
911 #define GPOINTER_TO_UINT(p)     ((guint) ${glib_gpui_cast} (p))
912
913 #define GINT_TO_POINTER(i)      ((gpointer) ${glib_gpi_cast} (i))
914 #define GUINT_TO_POINTER(u)     ((gpointer) ${glib_gpui_cast} (u))
915 _______EOF
916         else
917           echo '#error SIZEOF_VOID_P unknown - This should never happen' >>$outfile
918         fi
919
920
921
922         cat >>$outfile <<_______EOF
923 $glib_atexit
924 $glib_memmove
925 $glib_defines
926
927 $glib_vacopy
928
929 #ifdef  __cplusplus
930 #define G_HAVE_INLINE   1
931 #else   /* !__cplusplus */
932 $glib_inline
933 #endif  /* !__cplusplus */
934 _______EOF
935
936         echo >>$outfile
937         if test x$g_mutex_has_default = xyes; then
938                 cat >>$outfile <<_______EOF
939 $g_enable_threads_def G_THREADS_ENABLED
940 #define G_THREADS_IMPL_$g_threads_impl_def
941 typedef struct _GStaticMutex GStaticMutex;
942 struct _GStaticMutex
943 {
944   struct _GMutex *runtime_mutex;
945   union {
946     char   pad[$g_mutex_sizeof];
947     double dummy_double;
948     void  *dummy_pointer;
949     long   dummy_long;
950   } aligned_pad_u;
951 };
952 #define G_STATIC_MUTEX_INIT     { NULL, { { $g_mutex_contents} } }
953 #define g_static_mutex_get_mutex(mutex) \
954   (g_thread_use_default_impl ? ((GMutex*) &(mutex).aligned_pad_u) : \
955    g_static_mutex_get_mutex_impl (&(mutex).runtime_mutex))
956 _______EOF
957         else
958                 cat >>$outfile <<_______EOF
959 $g_enable_threads_def G_THREADS_ENABLED
960 #define G_THREADS_IMPL_$g_threads_impl_def
961 typedef struct _GMutex* GStaticMutex;
962 #define G_STATIC_MUTEX_INIT NULL
963 #define g_static_mutex_get_mutex(mutex) (g_static_mutex_get_mutex_impl (&(mutex)))
964 _______EOF
965         fi
966
967         echo >>$outfile
968         g_bit_sizes="16 32"
969         if test -n "$gint64"; then
970           g_bit_sizes="$g_bit_sizes 64"
971         fi
972         for bits in $g_bit_sizes; do
973           cat >>$outfile <<_______EOF
974 #define GINT${bits}_TO_${g_bs_native}(val)      ((gint${bits}) (val))
975 #define GUINT${bits}_TO_${g_bs_native}(val)     ((guint${bits}) (val))
976 #define GINT${bits}_TO_${g_bs_alien}(val)       ((gint${bits}) GUINT${bits}_SWAP_LE_BE (val))
977 #define GUINT${bits}_TO_${g_bs_alien}(val)      (GUINT${bits}_SWAP_LE_BE (val))
978 _______EOF
979         done
980
981         cat >>$outfile <<_______EOF
982 #define GLONG_TO_LE(val)        ((glong) GINT${glongbits}_TO_LE (val))
983 #define GULONG_TO_LE(val)       ((gulong) GUINT${glongbits}_TO_LE (val))
984 #define GLONG_TO_BE(val)        ((glong) GINT${glongbits}_TO_BE (val))
985 #define GULONG_TO_BE(val)       ((gulong) GUINT${glongbits}_TO_BE (val))
986 #define GINT_TO_LE(val)         ((gint) GINT${gintbits}_TO_LE (val))
987 #define GUINT_TO_LE(val)        ((guint) GUINT${gintbits}_TO_LE (val))
988 #define GINT_TO_BE(val)         ((gint) GINT${gintbits}_TO_BE (val))
989 #define GUINT_TO_BE(val)        ((guint) GUINT${gintbits}_TO_BE (val))
990 #define G_BYTE_ORDER $g_byte_order
991
992 _______EOF
993
994         if test -r glibconfig-sysdefs.h; then
995           cat glibconfig-sysdefs.h >>$outfile
996         fi
997
998
999         cat >>$outfile <<_______EOF
1000
1001 $glib_wc
1002
1003
1004 #ifdef __cplusplus
1005 }
1006 #endif /* __cplusplus */
1007
1008 #endif /* GLIBCONFIG_H */
1009 _______EOF
1010
1011
1012         if cmp -s $outfile glibconfig.h; then
1013           echo glibconfig.h is unchanged
1014           rm -f $outfile
1015         else
1016           mv $outfile glibconfig.h
1017         fi ;;
1018 esac
1019 ],[
1020
1021 # Note that if two cases are the same, case goes with the first one.
1022 # Note also that this is inside an AC_OUTPUT_COMMAND.  We do not depend
1023 # on variable expansion in case labels.  Look at the generated config.status
1024 # for a hint.
1025
1026 case xyes in
1027 x$ac_cv_header_float_h)
1028   glib_float_h=yes
1029   glib_mf=FLT_MIN glib_Mf=FLT_MAX
1030   glib_md=DBL_MIN glib_Md=DBL_MAX
1031   ;;
1032 x$ac_cv_header_values_h)
1033   glib_values_h=yes
1034   glib_mf=MINFLOAT  glib_Mf=MAXFLOAT
1035   glib_md=MINDOUBLE glib_Md=MAXDOUBLE
1036   ;;
1037 esac
1038
1039 case xyes in
1040 x$ac_cv_header_limits_h)
1041   glib_limits_h=yes
1042   glib_ms=SHRT_MIN glib_Ms=SHRT_MAX
1043   glib_mi=INT_MIN  glib_Mi=INT_MAX
1044   glib_ml=LONG_MIN glib_Ml=LONG_MAX
1045   ;;
1046 x$ac_cv_header_values_h)
1047   glib_values_h=yes
1048   glib_ms=MINSHORT glib_Ms=MAXSHORT
1049   glib_mi=MININT   glib_Mi=MAXINT
1050   glib_ml=MINLONG  glib_Ml=MAXLONG
1051   ;;
1052 esac
1053
1054 if test x$ac_cv_header_sys_poll_h = xyes ; then
1055   glib_sys_poll_h=yes
1056 fi
1057
1058 case 2 in
1059 $ac_cv_sizeof_short)            gint16=short;;
1060 $ac_cv_sizeof_int)              gint16=int;;
1061 esac
1062 case 4 in
1063 $ac_cv_sizeof_short)            gint32=short;;
1064 $ac_cv_sizeof_int)              gint32=int;;
1065 $ac_cv_sizeof_long)             gint32=long;;
1066 esac
1067 case 8 in
1068 $ac_cv_sizeof_int)
1069   gint64=int
1070   glib_extension=
1071   glib_warning_guard=
1072   gint64_constant='(val)'
1073   ;;
1074 $ac_cv_sizeof_long)
1075   gint64=long
1076   glib_extension=
1077   glib_warning_guard=
1078   gint64_constant='(val##L)'
1079   ;;
1080 $ac_cv_sizeof_long_long)
1081   gint64='long long'
1082   glib_extension='G_GNUC_EXTENSION '
1083   glib_warning_guard="
1084 #if defined (__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 8
1085 #  define G_GNUC_EXTENSION __extension__
1086 #else
1087 #  define G_GNUC_EXTENSION
1088 #endif
1089
1090 "
1091   gint64_constant='(G_GNUC_EXTENSION (val##LL))'
1092   ;;
1093 esac
1094
1095 gintbits=`expr $ac_cv_sizeof_int \* 8`
1096 glongbits=`expr $ac_cv_sizeof_long \* 8`
1097
1098
1099 case $ac_cv_sizeof_void_p in
1100 $ac_cv_sizeof_int)      glib_gpi_cast=''        glib_gpui_cast=''         ;;
1101 $ac_cv_sizeof_long)     glib_gpi_cast='(glong)' glib_gpui_cast='(gulong)' ;;
1102 *)                      glib_unknown_void_p=yes ;;
1103 esac
1104
1105
1106 case xyes in
1107 x$ac_cv_func_atexit)
1108   glib_atexit="
1109 #ifdef NeXT /* @#%@! NeXTStep */
1110 # define g_ATEXIT(proc) (!atexit (proc))
1111 #else
1112 # define g_ATEXIT(proc) (atexit (proc))
1113 #endif"
1114   ;;
1115 x$ac_cv_func_on_exit)
1116   glib_atexit="
1117 #define g_ATEXIT(proc)  (on_exit ((void (*)(int, void*))(proc), NULL))"
1118   ;;
1119 esac
1120
1121 case xyes in
1122 x$ac_cv_func_memmove)
1123   glib_memmove='
1124 #define g_memmove(d,s,n) G_STMT_START { memmove ((d), (s), (n)); } G_STMT_END'
1125   ;;
1126 *)
1127   glib_memmove="
1128 /* We make the assumption that if memmove isn't available, then
1129  * bcopy will do the job. This isn't safe everywhere. (bcopy can't
1130  * necessarily handle overlapping copies) */
1131 #define g_memmove(d,s,n) G_STMT_START { bcopy ((s), (d), (n)); } G_STMT_END"
1132   ;;
1133 esac
1134
1135 glib_defines="
1136 #define GLIB_MAJOR_VERSION $GLIB_MAJOR_VERSION
1137 #define GLIB_MINOR_VERSION $GLIB_MINOR_VERSION
1138 #define GLIB_MICRO_VERSION $GLIB_MICRO_VERSION
1139 "
1140
1141 case xyes in
1142 x$glib_cv_va_copy)      glib_vacopy='#define G_VA_COPY  va_copy' ;;
1143 x$glib_cv___va_copy)    glib_vacopy='#define G_VA_COPY  __va_copy' ;;
1144 *)                      glib_vacopy=''
1145 esac
1146
1147 if test x$glib_cv_va_val_copy = xno; then
1148   glib_vacopy="\$glib_vacopy
1149 #define G_VA_COPY_AS_ARRAY 1"
1150 fi
1151
1152 if test x$glib_cv_hasinline = xyes; then
1153     glib_inline='#define G_HAVE_INLINE 1'
1154 fi
1155 if test x$glib_cv_has__inline = xyes; then
1156     glib_inline="\$glib_inline
1157 #define G_HAVE___INLINE 1"
1158 fi
1159 if test x$glib_cv_has__inline__ = xyes; then
1160     glib_inline="\$glib_inline
1161 #define G_HAVE___INLINE__ 1"
1162 fi
1163
1164 case xyes in
1165 x$ac_cv_c_bigendian)
1166   g_byte_order=G_BIG_ENDIAN
1167   g_bs_native=BE
1168   g_bs_alien=LE
1169   ;;
1170 *)
1171   g_byte_order=G_LITTLE_ENDIAN
1172   g_bs_native=LE
1173   g_bs_alien=BE
1174   ;;
1175 esac
1176
1177 if test x$glib_wchar_h = xyes; then
1178   glib_wc='
1179 #define G_HAVE_WCHAR_H 1'
1180 fi
1181 if test x$glib_wctype_h = xyes; then
1182   glib_wc="\$glib_wc
1183 #define G_HAVE_WCTYPE_H 1"
1184 fi
1185 if test x$glib_working_wctype = xno; then
1186   glib_wc="\$glib_wc
1187 #define G_HAVE_BROKEN_WCTYPE 1"
1188 fi
1189
1190 case x$enable_threads in
1191 xyes)   g_enable_threads_def="#define";;
1192 *)      g_enable_threads_def="#undef ";;
1193 esac
1194
1195 g_threads_impl_def=$g_threads_impl
1196
1197 g_mutex_has_default="$mutex_has_default"
1198 g_mutex_sizeof="$glib_cv_sizeof_gmutex"
1199 g_mutex_contents="$glib_cv_byte_contents_gmutex"
1200 ])
1201
1202 AC_OUTPUT([
1203 Makefile
1204 glib-config
1205 gmodule/gmoduleconf.h
1206 gmodule/Makefile
1207 gthread/Makefile
1208 docs/Makefile
1209 tests/Makefile
1210 ],[case "$CONFIG_FILES" in
1211 *glib-config*)chmod +x glib-config;;
1212 esac])