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