]> git.saurik.com Git - wxWidgets.git/blame - aclocal.m4
removed flags for wxOK etc that interfere with miniframe style
[wxWidgets.git] / aclocal.m4
CommitLineData
2a879853 1# aclocal.m4 generated automatically by aclocal 1.6.3 -*- Autoconf -*-
8168de4c 2
2a879853 3# Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002
fe0895cf
VS
4# Free Software Foundation, Inc.
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8168de4c 8
fe0895cf
VS
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12# PARTICULAR PURPOSE.
8168de4c 13
b040e242
VS
14dnl ---------------------------------------------------------------------------
15dnl
16dnl Macros for configure.in for wxWindows by Robert Roebling, Phil Blecker,
17dnl Vadim Zeitlin and Ron Lee
18dnl
19dnl This script is under the wxWindows licence.
20dnl
21dnl Version: $Id$
22dnl ---------------------------------------------------------------------------
23
24dnl ===========================================================================
25dnl macros to find the a file in the list of include/lib paths
26dnl ===========================================================================
27
28dnl ---------------------------------------------------------------------------
29dnl call WX_PATH_FIND_INCLUDES(search path, header name), sets ac_find_includes
30dnl to the full name of the file that was found or leaves it empty if not found
31dnl ---------------------------------------------------------------------------
32AC_DEFUN([WX_PATH_FIND_INCLUDES],
33[
34ac_find_includes=
2b5f62a0 35for ac_dir in $1 /usr/include;
b040e242
VS
36 do
37 if test -f "$ac_dir/$2"; then
38 ac_find_includes=$ac_dir
39 break
40 fi
41 done
42])
43
44dnl ---------------------------------------------------------------------------
45dnl call WX_PATH_FIND_LIBRARIES(search path, header name), sets ac_find_libraries
46dnl to the full name of the file that was found or leaves it empty if not found
47dnl ---------------------------------------------------------------------------
48AC_DEFUN([WX_PATH_FIND_LIBRARIES],
49[
50ac_find_libraries=
2b5f62a0 51for ac_dir in $1 /usr/lib;
b040e242
VS
52 do
53 for ac_extension in a so sl dylib; do
54 if test -f "$ac_dir/lib$2.$ac_extension"; then
55 ac_find_libraries=$ac_dir
56 break 2
57 fi
58 done
59 done
60])
61
62dnl ---------------------------------------------------------------------------
63dnl Path to include, already defined
64dnl ---------------------------------------------------------------------------
65AC_DEFUN([WX_INCLUDE_PATH_EXIST],
66[
2b5f62a0
VZ
67 dnl never add -I/usr/include to the CPPFLAGS
68 if test "x$1" = "x/usr/include"; then
b040e242
VS
69 ac_path_to_include=""
70 else
2b5f62a0
VZ
71 echo "$2" | grep "\-I$1" > /dev/null
72 result=$?
73 if test $result = 0; then
74 ac_path_to_include=""
75 else
76 ac_path_to_include=" -I$1"
77 fi
b040e242
VS
78 fi
79])
80
81dnl ---------------------------------------------------------------------------
82dnl Path to link, already defined
83dnl ---------------------------------------------------------------------------
84AC_DEFUN([WX_LINK_PATH_EXIST],
85[
86 echo "$2" | grep "\-L$1" > /dev/null
87 result=$?
88 if test $result = 0; then
89 ac_path_to_link=""
90 else
91 ac_path_to_link=" -L$1"
92 fi
93])
94
95dnl ===========================================================================
96dnl C++ features test
97dnl ===========================================================================
98
99dnl ---------------------------------------------------------------------------
100dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
101dnl or only the old <iostream.h> one - it may be generally assumed that if
102dnl <iostream> exists, the other "new" headers (without .h) exist too.
103dnl
104dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false-or-cross-compiling)
105dnl ---------------------------------------------------------------------------
106
107AC_DEFUN([WX_CPP_NEW_HEADERS],
108[
109 if test "$cross_compiling" = "yes"; then
110 ifelse([$2], , :, [$2])
111 else
112 AC_LANG_SAVE
113 AC_LANG_CPLUSPLUS
114
115 AC_CHECK_HEADERS(iostream)
116
117 if test "$ac_cv_header_iostream" = "yes" ; then
118 ifelse([$1], , :, [$1])
119 else
120 ifelse([$2], , :, [$2])
121 fi
122
123 AC_LANG_RESTORE
124 fi
125])
126
127dnl ---------------------------------------------------------------------------
128dnl WX_CPP_BOOL checks whether the C++ compiler has a built in bool type
129dnl
130dnl call WX_CPP_BOOL - will define HAVE_BOOL if the compiler supports bool
131dnl ---------------------------------------------------------------------------
132
133AC_DEFUN([WX_CPP_BOOL],
134[
135 AC_CACHE_CHECK([if C++ compiler supports bool], wx_cv_cpp_bool,
136 [
137 AC_LANG_SAVE
138 AC_LANG_CPLUSPLUS
139
140 AC_TRY_COMPILE(
141 [
142 ],
143 [
144 bool b = true;
145
146 return 0;
147 ],
148 [
149 wx_cv_cpp_bool=yes
150 ],
151 [
152 wx_cv_cpp_bool=no
153 ]
154 )
155
156 AC_LANG_RESTORE
157 ])
158
159 if test "$wx_cv_cpp_bool" = "yes"; then
160 AC_DEFINE(HAVE_BOOL)
161 fi
162])
163
986ecc86
VZ
164dnl ---------------------------------------------------------------------------
165dnl WX_CPP_EXPLICIT checks whether the C++ compiler support the explicit
166dnl keyword and defines HAVE_EXPLICIT if this is the case
167dnl ---------------------------------------------------------------------------
168
169AC_DEFUN([WX_CPP_EXPLICIT],
170[
171 AC_CACHE_CHECK([if C++ compiler supports the explicit keyword],
172 wx_cv_explicit,
173 [
174 AC_LANG_SAVE
175 AC_LANG_CPLUSPLUS
176
177 dnl do the test in 2 steps: first check that the compiler knows about the
178 dnl explicit keyword at all and then verify that it really honours it
179 AC_TRY_COMPILE(
180 [
181 class Foo { public: explicit Foo(int) {} };
182 ],
183 [
184 return 0;
185 ],
186 [
187 AC_TRY_COMPILE(
188 [
189 class Foo { public: explicit Foo(int) {} };
190 static void TakeFoo(const Foo& foo) { }
191 ],
192 [
193 TakeFoo(17);
194 return 0;
195 ],
196 wx_cv_explicit=no,
197 wx_cv_explicit=yes
198 )
199 ],
200 wx_cv_explicit=no
201 )
202
203 AC_LANG_RESTORE
204 ])
205
206 if test "$wx_cv_explicit" = "yes"; then
207 AC_DEFINE(HAVE_EXPLICIT)
208 fi
209])
210
b040e242
VS
211dnl ---------------------------------------------------------------------------
212dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
213dnl ---------------------------------------------------------------------------
214
215AC_DEFUN([WX_C_BIGENDIAN],
216[AC_CACHE_CHECK([whether byte ordering is bigendian], ac_cv_c_bigendian,
217[ac_cv_c_bigendian=unknown
218# See if sys/param.h defines the BYTE_ORDER macro.
219AC_TRY_COMPILE([#include <sys/types.h>
220#include <sys/param.h>], [
221#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
222 bogus endian macros
223#endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
224AC_TRY_COMPILE([#include <sys/types.h>
225#include <sys/param.h>], [
226#if BYTE_ORDER != BIG_ENDIAN
227 not big endian
228#endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
229if test $ac_cv_c_bigendian = unknown; then
230AC_TRY_RUN([main () {
231 /* Are we little or big endian? From Harbison&Steele. */
232 union
233 {
234 long l;
235 char c[sizeof (long)];
236 } u;
237 u.l = 1;
238 exit (u.c[sizeof (long) - 1] == 1);
239}], [ac_cv_c_bigendian=no], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=unknown])
240fi])
241if test $ac_cv_c_bigendian = unknown; then
242 AC_MSG_WARN([Assuming little-endian target machine - this may be overriden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" to config.cache file])
243fi
244if test $ac_cv_c_bigendian = yes; then
245 AC_DEFINE(WORDS_BIGENDIAN)
246fi
247])
248
249dnl ---------------------------------------------------------------------------
250dnl override AC_ARG_ENABLE/WITH to cache the results in .cache file
251dnl ---------------------------------------------------------------------------
252
253AC_DEFUN([WX_ARG_CACHE_INIT],
254 [
255 wx_arg_cache_file="configarg.cache"
256 echo "loading argument cache $wx_arg_cache_file"
257 rm -f ${wx_arg_cache_file}.tmp
258 touch ${wx_arg_cache_file}.tmp
259 touch ${wx_arg_cache_file}
260 ])
261
262AC_DEFUN([WX_ARG_CACHE_FLUSH],
263 [
264 echo "saving argument cache $wx_arg_cache_file"
265 mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
266 ])
267
268dnl this macro checks for a three-valued command line --with argument:
269dnl possible arguments are 'yes', 'no', 'sys', or 'builtin'
270dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
271AC_DEFUN([WX_ARG_SYS_WITH],
272 [
273 AC_MSG_CHECKING([for --with-$1])
274 no_cache=0
275 AC_ARG_WITH($1, [$2],
276 [
277 if test "$withval" = yes; then
278 ac_cv_use_$1='$3=yes'
279 elif test "$withval" = no; then
280 ac_cv_use_$1='$3=no'
281 elif test "$withval" = sys; then
282 ac_cv_use_$1='$3=sys'
283 elif test "$withval" = builtin; then
284 ac_cv_use_$1='$3=builtin'
285 else
286 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
287 fi
288 ],
289 [
290 LINE=`grep "$3" ${wx_arg_cache_file}`
291 if test "x$LINE" != x ; then
292 eval "DEFAULT_$LINE"
293 else
294 no_cache=1
295 fi
296
297 ac_cv_use_$1='$3='$DEFAULT_$3
298 ])
299
300 eval "$ac_cv_use_$1"
301 if test "$no_cache" != 1; then
302 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
303 fi
304
305 if test "$$3" = yes; then
306 AC_MSG_RESULT(yes)
307 elif test "$$3" = no; then
308 AC_MSG_RESULT(no)
309 elif test "$$3" = sys; then
310 AC_MSG_RESULT([system version])
311 elif test "$$3" = builtin; then
312 AC_MSG_RESULT([builtin version])
313 else
314 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
315 fi
316 ])
317
318dnl this macro checks for a command line argument and caches the result
319dnl usage: WX_ARG_WITH(option, helpmessage, variable-name)
320AC_DEFUN([WX_ARG_WITH],
321 [
322 AC_MSG_CHECKING([for --with-$1])
323 no_cache=0
324 AC_ARG_WITH($1, [$2],
325 [
326 if test "$withval" = yes; then
327 ac_cv_use_$1='$3=yes'
328 else
329 ac_cv_use_$1='$3=no'
330 fi
331 ],
332 [
333 LINE=`grep "$3" ${wx_arg_cache_file}`
334 if test "x$LINE" != x ; then
335 eval "DEFAULT_$LINE"
336 else
337 no_cache=1
338 fi
339
340 ac_cv_use_$1='$3='$DEFAULT_$3
341 ])
342
343 eval "$ac_cv_use_$1"
344 if test "$no_cache" != 1; then
345 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
346 fi
347
348 if test "$$3" = yes; then
349 AC_MSG_RESULT(yes)
350 else
351 AC_MSG_RESULT(no)
352 fi
353 ])
354
355dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
5005acfe 356dnl usage: WX_ARG_ENABLE(option, helpmessage, variable-name, enablestring)
2b5f62a0
VZ
357dnl
358dnl enablestring is a hack and allows to show "checking for --disable-foo"
359dnl message when running configure instead of the default "checking for
360dnl --enable-foo" one whih is useful for the options enabled by default
b040e242
VS
361AC_DEFUN([WX_ARG_ENABLE],
362 [
5005acfe
VZ
363 enablestring=$4
364 AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
b040e242
VS
365 no_cache=0
366 AC_ARG_ENABLE($1, [$2],
367 [
368 if test "$enableval" = yes; then
369 ac_cv_use_$1='$3=yes'
370 else
371 ac_cv_use_$1='$3=no'
372 fi
373 ],
374 [
375 LINE=`grep "$3" ${wx_arg_cache_file}`
376 if test "x$LINE" != x ; then
377 eval "DEFAULT_$LINE"
378 else
379 no_cache=1
380 fi
381
382 ac_cv_use_$1='$3='$DEFAULT_$3
383 ])
384
385 eval "$ac_cv_use_$1"
386 if test "$no_cache" != 1; then
387 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
388 fi
389
390 if test "$$3" = yes; then
391 AC_MSG_RESULT(yes)
392 else
393 AC_MSG_RESULT(no)
394 fi
395 ])
396
397
2b5f62a0
VZ
398dnl ===========================================================================
399dnl Linker features test
400dnl ===========================================================================
401
402dnl ---------------------------------------------------------------------------
403dnl WX_VERSIONED_SYMBOLS checks whether the linker can create versioned
404dnl symbols. If it can, sets LDFLAGS_VERSIONING to $CXX flags needed to use
405dnl version script file named versionfile
406dnl
407dnl call WX_VERSIONED_SYMBOLS(versionfile)
408dnl ---------------------------------------------------------------------------
409AC_DEFUN([WX_VERSIONED_SYMBOLS],
410[
411 found_versioning=no
412
b4eecb7e
VS
413 dnl FIXME - doesn't work, Solaris linker doesn't accept wildcards
414 dnl in the script.
415 dnl dnl Check for known non-gcc cases:
416 dnl case "${host}" in
417 dnl *-*-solaris2* )
418 dnl if test "x$GCC" != "xyes" ; then
419 dnl LDFLAGS_VERSIONING="-M $1"
420 dnl found_versioning=yes
421 dnl fi
422 dnl ;;
423 dnl esac
2b5f62a0
VZ
424
425 dnl Generic check for GCC or GCC-like behaviour (Intel C++, GCC):
426 if test $found_versioning = no ; then
427 AC_CACHE_CHECK([if the linker accepts --version-script], wx_cv_version_script,
428 [
429 echo "VER_1 { *; };" >conftest.sym
430 echo "int main() { return 0; }" >conftest.cpp
431
432 if AC_TRY_COMMAND([
433 $CXX -o conftest.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
434 -Wl,--version-script,conftest.sym >/dev/null 2>conftest.stderr]) ; then
435 if test -s conftest.stderr ; then
436 wx_cv_version_script=no
437 else
438 wx_cv_version_script=yes
439 fi
440 else
441 wx_cv_version_script=no
442 fi
443 rm -f conftest.output conftest.stderr conftest.sym conftest.cpp
444 ])
445 if test $wx_cv_version_script = yes ; then
446 LDFLAGS_VERSIONING="-Wl,--version-script,$1"
447 fi
448 fi
449])
450
b040e242
VS
451
452dnl ===========================================================================
453dnl "3rd party" macros included here because they are not widely available
454dnl ===========================================================================
455
b040e242
VS
456dnl ---------------------------------------------------------------------------
457dnl test for availability of iconv()
458dnl ---------------------------------------------------------------------------
459
b040e242
VS
460dnl From Bruno Haible.
461
462AC_DEFUN([AM_ICONV],
463[
464 dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
465 dnl those with the standalone portable GNU libiconv installed).
466
467 AC_ARG_WITH([libiconv-prefix],
468[ --with-libiconv-prefix=DIR search for libiconv in DIR/include and DIR/lib], [
469 for dir in `echo "$withval" | tr : ' '`; do
470 if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
471 if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi
472 done
473 ])
474
475 AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
476 am_cv_func_iconv="no, consider installing GNU libiconv"
477 am_cv_lib_iconv=no
478 AC_TRY_LINK([#include <stdlib.h>
479#include <iconv.h>],
480 [iconv_t cd = iconv_open("","");
481 iconv(cd,NULL,NULL,NULL,NULL);
482 iconv_close(cd);],
483 am_cv_func_iconv=yes)
484 if test "$am_cv_func_iconv" != yes; then
485 am_save_LIBS="$LIBS"
486 LIBS="$LIBS -liconv"
487 AC_TRY_LINK([#include <stdlib.h>
488#include <iconv.h>],
489 [iconv_t cd = iconv_open("","");
490 iconv(cd,NULL,NULL,NULL,NULL);
491 iconv_close(cd);],
492 am_cv_lib_iconv=yes
493 am_cv_func_iconv=yes)
494 LIBS="$am_save_LIBS"
495 fi
496 ])
497 if test "$am_cv_func_iconv" = yes; then
498 AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
b7043674 499 AC_CACHE_CHECK([if iconv needs const], wx_cv_func_iconv_const,
b040e242
VS
500 AC_TRY_COMPILE([
501#include <stdlib.h>
502#include <iconv.h>
503extern
504#ifdef __cplusplus
505"C"
506#endif
507#if defined(__STDC__) || defined(__cplusplus)
508size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
509#else
510size_t iconv();
511#endif
b7043674
VZ
512 ],
513 [],
514 wx_cv_func_iconv_const="no",
515 wx_cv_func_iconv_const="yes"
516 )
517 )
518
519 iconv_const=
1c405bb5 520 if test "x$wx_cv_func_iconv_const" = "xyes"; then
b7043674
VZ
521 iconv_const="const"
522 fi
523
524 AC_DEFINE_UNQUOTED(ICONV_CONST, $iconv_const,
b040e242
VS
525 [Define as const if the declaration of iconv() needs const.])
526 fi
527 LIBICONV=
528 if test "$am_cv_lib_iconv" = yes; then
529 LIBICONV="-liconv"
530 fi
531 AC_SUBST(LIBICONV)
532])
533
90dd450c
VZ
534dnl ---------------------------------------------------------------------------
535dnl AC_SYS_LARGEFILE (partly based on the code from autoconf 2.5x)
536dnl ---------------------------------------------------------------------------
537
538dnl WX_SYS_LARGEFILE_TEST
539dnl
540dnl NB: original autoconf test was checking if compiler supported 6 bit off_t
541dnl arithmetic properly but this failed miserably with gcc under Linux
542dnl whereas the system still supports 64 bit files, so now simply check
543dnl that off_t is big enough
544define(WX_SYS_LARGEFILE_TEST,
545[typedef struct {
546 unsigned int field: sizeof(off_t) == 8;
547} wxlf;
548])
549
550
551dnl WX_SYS_LARGEFILE_MACRO_VALUE(C-MACRO, VALUE, CACHE-VAR)
552define(WX_SYS_LARGEFILE_MACRO_VALUE,
553[
554 AC_CACHE_CHECK([for $1 value needed for large files], [$3],
555 [
556 AC_TRY_COMPILE([#define $1 $2
557 #include <sys/types.h>],
558 WX_SYS_LARGEFILE_TEST,
559 [$3=$2],
560 [$3=no])
561 ]
562 )
563
564 if test "$$3" != no; then
5a5d3c08 565 wx_largefile=yes
90dd450c
VZ
566 AC_DEFINE_UNQUOTED([$1], [$$3])
567 fi
568])
569
570
571dnl AC_SYS_LARGEFILE
572dnl ----------------
573dnl By default, many hosts won't let programs access large files;
574dnl one must use special compiler options to get large-file access to work.
575dnl For more details about this brain damage please see:
576dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html
577AC_DEFUN([AC_SYS_LARGEFILE],
578[AC_ARG_ENABLE(largefile,
579 [ --disable-largefile omit support for large files])
580if test "$enable_largefile" != no; then
581 dnl _FILE_OFFSET_BITS==64 is needed for Linux, Solaris, ...
582 dnl _LARGE_FILES -- for AIX
5a5d3c08 583 wx_largefile=no
90dd450c
VZ
584 WX_SYS_LARGEFILE_MACRO_VALUE(_FILE_OFFSET_BITS, 64, ac_cv_sys_file_offset_bits)
585 if test "x$wx_largefile" != "xyes"; then
586 WX_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES, 1, ac_cv_sys_large_files)
587 fi
588
5a5d3c08 589 AC_MSG_CHECKING(if large file support is available)
90dd450c
VZ
590 if test "x$wx_largefile" = "xyes"; then
591 AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
592 fi
5a5d3c08 593 AC_MSG_RESULT($wx_largefile)
90dd450c
VZ
594fi
595])
b040e242 596
521196a2
MB
597
598dnl Available from the GNU Autoconf Macro Archive at:
599dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_const_cast.html
600dnl
601AC_DEFUN([AC_CXX_CONST_CAST],
602[AC_CACHE_CHECK(whether the compiler supports const_cast<>,
603ac_cv_cxx_const_cast,
604[AC_LANG_SAVE
605 AC_LANG_CPLUSPLUS
606 AC_TRY_COMPILE(,[int x = 0;const int& y = x;int& z = const_cast<int&>(y);return z;],
607 ac_cv_cxx_const_cast=yes, ac_cv_cxx_const_cast=no)
608 AC_LANG_RESTORE
609])
610if test "$ac_cv_cxx_const_cast" = yes; then
611 AC_DEFINE(HAVE_CONST_CAST,,[define if the compiler supports const_cast<>])
612fi
613])
614
ecfd48ca
VZ
615dnl and http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_static_cast.html
616AC_DEFUN([AC_CXX_STATIC_CAST],
617[AC_CACHE_CHECK(whether the compiler supports static_cast<>,
618ac_cv_cxx_static_cast,
619[AC_LANG_SAVE
620 AC_LANG_CPLUSPLUS
621 AC_TRY_COMPILE([#include <typeinfo>
622class Base { public : Base () {} virtual void f () = 0; };
623class Derived : public Base { public : Derived () {} virtual void f () {} };
624int g (Derived&) { return 0; }],[
625Derived d; Base& b = d; Derived& s = static_cast<Derived&> (b); return g (s);],
626 ac_cv_cxx_static_cast=yes, ac_cv_cxx_static_cast=no)
627 AC_LANG_RESTORE
628])
629if test "$ac_cv_cxx_static_cast" = yes; then
630 AC_DEFINE(HAVE_STATIC_CAST,, [define if the compiler supports static_cast<>])
631fi
632])
633
9e691f46
VZ
634# Configure paths for GTK+
635# Owen Taylor 1997-2001
b040e242
VS
636
637dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
9e691f46
VZ
638dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES,
639dnl pass to pkg-config
3f345b47 640dnl
b040e242 641AC_DEFUN(AM_PATH_GTK_2_0,
9e691f46
VZ
642[dnl
643dnl Get the cflags and libraries from pkg-config
3f345b47 644dnl
9e691f46
VZ
645AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run a test GTK+ program],
646 , enable_gtktest=yes)
3f345b47 647
9e691f46 648 pkg_config_args=gtk+-2.0
3f345b47
VZ
649 for module in . $4
650 do
651 case "$module" in
9e691f46
VZ
652 gthread)
653 pkg_config_args="$pkg_config_args gthread-2.0"
3f345b47
VZ
654 ;;
655 esac
656 done
657
9e691f46
VZ
658 no_gtk=""
659
660 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
661
662 if test x$PKG_CONFIG != xno ; then
663 if pkg-config --atleast-pkgconfig-version 0.7 ; then
664 :
665 else
666 echo *** pkg-config too old; version 0.7 or better required.
667 no_gtk=yes
668 PKG_CONFIG=no
669 fi
670 else
671 no_gtk=yes
8168de4c 672 fi
9e691f46
VZ
673
674 min_gtk_version=ifelse([$1], ,2.0.0,$1)
675 AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version)
676
677 if test x$PKG_CONFIG != xno ; then
678 ## don't try to run the test against uninstalled libtool libs
679 if $PKG_CONFIG --uninstalled $pkg_config_args; then
680 echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH"
681 enable_gtktest=no
682 fi
683
684 if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then
685 :
686 else
687 no_gtk=yes
688 fi
8168de4c
VZ
689 fi
690
9e691f46
VZ
691 if test x"$no_gtk" = x ; then
692 GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags`
693 GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs`
694 gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
3f345b47 695 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
9e691f46 696 gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
3f345b47 697 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
9e691f46 698 gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
3f345b47
VZ
699 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
700 if test "x$enable_gtktest" = "xyes" ; then
701 ac_save_CFLAGS="$CFLAGS"
702 ac_save_LIBS="$LIBS"
703 CFLAGS="$CFLAGS $GTK_CFLAGS"
704 LIBS="$GTK_LIBS $LIBS"
8168de4c 705dnl
9e691f46
VZ
706dnl Now check if the installed GTK+ is sufficiently new. (Also sanity
707dnl checks the results of pkg-config to some extent)
8168de4c 708dnl
3f345b47
VZ
709 rm -f conf.gtktest
710 AC_TRY_RUN([
8168de4c 711#include <gtk/gtk.h>
8168de4c
VZ
712#include <stdio.h>
713#include <stdlib.h>
714
9e691f46 715int
8168de4c
VZ
716main ()
717{
718 int major, minor, micro;
3f345b47 719 char *tmp_version;
8168de4c 720
3f345b47 721 system ("touch conf.gtktest");
8168de4c 722
3f345b47
VZ
723 /* HP/UX 9 (%@#!) writes to sscanf strings */
724 tmp_version = g_strdup("$min_gtk_version");
725 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
726 printf("%s, bad version string\n", "$min_gtk_version");
8168de4c
VZ
727 exit(1);
728 }
729
3f345b47
VZ
730 if ((gtk_major_version != $gtk_config_major_version) ||
731 (gtk_minor_version != $gtk_config_minor_version) ||
732 (gtk_micro_version != $gtk_config_micro_version))
733 {
9e691f46 734 printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
3f345b47
VZ
735 $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
736 gtk_major_version, gtk_minor_version, gtk_micro_version);
9e691f46 737 printf ("*** was found! If pkg-config was correct, then it is best\n");
3f345b47
VZ
738 printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
739 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
740 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
741 printf("*** required on your system.\n");
9e691f46
VZ
742 printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
743 printf("*** to point to the correct configuration files\n");
744 }
3f345b47 745 else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
9e691f46 746 (gtk_minor_version != GTK_MINOR_VERSION) ||
3f345b47
VZ
747 (gtk_micro_version != GTK_MICRO_VERSION))
748 {
749 printf("*** GTK+ header files (version %d.%d.%d) do not match\n",
9e691f46 750 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
3f345b47 751 printf("*** library (version %d.%d.%d)\n",
9e691f46 752 gtk_major_version, gtk_minor_version, gtk_micro_version);
3f345b47 753 }
3f345b47
VZ
754 else
755 {
756 if ((gtk_major_version > major) ||
757 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
758 ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))
759 {
760 return 0;
761 }
762 else
763 {
764 printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",
765 gtk_major_version, gtk_minor_version, gtk_micro_version);
766 printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",
9e691f46 767 major, minor, micro);
3f345b47
VZ
768 printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
769 printf("***\n");
770 printf("*** If you have already installed a sufficiently new version, this error\n");
9e691f46 771 printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
3f345b47 772 printf("*** being found. The easiest way to fix this is to remove the old version\n");
9e691f46
VZ
773 printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n");
774 printf("*** correct copy of pkg-config. (In this case, you will have to\n");
3f345b47
VZ
775 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
776 printf("*** so that the correct libraries are found at run-time))\n");
777 }
778 }
779 return 1;
8168de4c
VZ
780}
781],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
3f345b47
VZ
782 CFLAGS="$ac_save_CFLAGS"
783 LIBS="$ac_save_LIBS"
784 fi
8168de4c
VZ
785 fi
786 if test "x$no_gtk" = x ; then
b040e242 787 AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version))
9e691f46 788 ifelse([$2], , :, [$2])
8168de4c
VZ
789 else
790 AC_MSG_RESULT(no)
9e691f46
VZ
791 if test "$PKG_CONFIG" = "no" ; then
792 echo "*** A new enough version of pkg-config was not found."
793 echo "*** See http://pkgconfig.sourceforge.net"
3f345b47
VZ
794 else
795 if test -f conf.gtktest ; then
796 :
797 else
9e691f46 798 echo "*** Could not run GTK+ test program, checking why..."
579d8138
VS
799 ac_save_CFLAGS="$CFLAGS"
800 ac_save_LIBS="$LIBS"
3f345b47
VZ
801 CFLAGS="$CFLAGS $GTK_CFLAGS"
802 LIBS="$LIBS $GTK_LIBS"
803 AC_TRY_LINK([
804#include <gtk/gtk.h>
805#include <stdio.h>
806], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
807 [ echo "*** The test program compiled, but did not run. This usually means"
9e691f46
VZ
808 echo "*** that the run-time linker is not finding GTK+ or finding the wrong"
809 echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your"
3f345b47
VZ
810 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
811 echo "*** to the installed location Also, make sure you have run ldconfig if that"
812 echo "*** is required on your system"
9e691f46 813 echo "***"
3f345b47 814 echo "*** If you have an old version installed, it is best to remove it, although"
9e691f46 815 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
3f345b47 816 [ echo "*** The test program failed to compile or link. See the file config.log for the"
579d8138 817 echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."])
3f345b47
VZ
818 CFLAGS="$ac_save_CFLAGS"
819 LIBS="$ac_save_LIBS"
820 fi
821 fi
8168de4c
VZ
822 GTK_CFLAGS=""
823 GTK_LIBS=""
824 ifelse([$3], , :, [$3])
825 fi
826 AC_SUBST(GTK_CFLAGS)
827 AC_SUBST(GTK_LIBS)
3f345b47 828 rm -f conf.gtktest
8168de4c
VZ
829])
830
b040e242
VS
831# Configure paths for GTK+
832# Owen Taylor 97-11-3
833
834dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
ecc7ceee
OK
835dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
836dnl
b040e242
VS
837AC_DEFUN(AM_PATH_GTK,
838[dnl
839dnl Get the cflags and libraries from the gtk-config script
ecc7ceee
OK
840dnl
841AC_ARG_WITH(gtk-prefix,[ --with-gtk-prefix=PFX Prefix where GTK is installed (optional)],
842 gtk_config_prefix="$withval", gtk_config_prefix="")
843AC_ARG_WITH(gtk-exec-prefix,[ --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)],
844 gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="")
845AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program],
b040e242 846 , enable_gtktest=yes)
ecc7ceee
OK
847
848 for module in . $4
849 do
850 case "$module" in
b040e242 851 gthread)
ecc7ceee
OK
852 gtk_config_args="$gtk_config_args gthread"
853 ;;
854 esac
855 done
856
857 if test x$gtk_config_exec_prefix != x ; then
858 gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
b040e242
VS
859 if test x${GTK_CONFIG+set} != xset ; then
860 GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
ecc7ceee
OK
861 fi
862 fi
863 if test x$gtk_config_prefix != x ; then
864 gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
b040e242
VS
865 if test x${GTK_CONFIG+set} != xset ; then
866 GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
ecc7ceee
OK
867 fi
868 fi
869
b040e242
VS
870 AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
871 min_gtk_version=ifelse([$1], ,0.99.7,$1)
ecc7ceee
OK
872 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
873 no_gtk=""
b040e242 874 if test "$GTK_CONFIG" = "no" ; then
ecc7ceee
OK
875 no_gtk=yes
876 else
b040e242
VS
877 GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
878 GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
879 gtk_config_major_version=`$GTK_CONFIG $gtk_config_args --version | \
ecc7ceee 880 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
b040e242 881 gtk_config_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
ecc7ceee 882 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
b040e242 883 gtk_config_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
ecc7ceee
OK
884 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
885 if test "x$enable_gtktest" = "xyes" ; then
886 ac_save_CFLAGS="$CFLAGS"
887 ac_save_LIBS="$LIBS"
888 CFLAGS="$CFLAGS $GTK_CFLAGS"
889 LIBS="$GTK_LIBS $LIBS"
890dnl
891dnl Now check if the installed GTK is sufficiently new. (Also sanity
b040e242 892dnl checks the results of gtk-config to some extent
ecc7ceee
OK
893dnl
894 rm -f conf.gtktest
895 AC_TRY_RUN([
896#include <gtk/gtk.h>
897#include <stdio.h>
898#include <stdlib.h>
899
b040e242 900int
ecc7ceee
OK
901main ()
902{
903 int major, minor, micro;
904 char *tmp_version;
905
906 system ("touch conf.gtktest");
907
908 /* HP/UX 9 (%@#!) writes to sscanf strings */
909 tmp_version = g_strdup("$min_gtk_version");
910 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
911 printf("%s, bad version string\n", "$min_gtk_version");
912 exit(1);
913 }
914
915 if ((gtk_major_version != $gtk_config_major_version) ||
916 (gtk_minor_version != $gtk_config_minor_version) ||
917 (gtk_micro_version != $gtk_config_micro_version))
918 {
b040e242 919 printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
ecc7ceee
OK
920 $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
921 gtk_major_version, gtk_minor_version, gtk_micro_version);
b040e242 922 printf ("*** was found! If gtk-config was correct, then it is best\n");
ecc7ceee
OK
923 printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
924 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
925 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
926 printf("*** required on your system.\n");
b040e242
VS
927 printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n");
928 printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
ecc7ceee 929 printf("*** before re-running configure\n");
b040e242 930 }
ecc7ceee
OK
931#if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION)
932 else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
b040e242 933 (gtk_minor_version != GTK_MINOR_VERSION) ||
ecc7ceee
OK
934 (gtk_micro_version != GTK_MICRO_VERSION))
935 {
936 printf("*** GTK+ header files (version %d.%d.%d) do not match\n",
b040e242 937 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
ecc7ceee 938 printf("*** library (version %d.%d.%d)\n",
b040e242 939 gtk_major_version, gtk_minor_version, gtk_micro_version);
ecc7ceee
OK
940 }
941#endif /* defined (GTK_MAJOR_VERSION) ... */
942 else
943 {
944 if ((gtk_major_version > major) ||
945 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
946 ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))
947 {
948 return 0;
949 }
950 else
951 {
952 printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",
953 gtk_major_version, gtk_minor_version, gtk_micro_version);
954 printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",
b040e242 955 major, minor, micro);
ecc7ceee
OK
956 printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
957 printf("***\n");
958 printf("*** If you have already installed a sufficiently new version, this error\n");
b040e242 959 printf("*** probably means that the wrong copy of the gtk-config shell script is\n");
ecc7ceee 960 printf("*** being found. The easiest way to fix this is to remove the old version\n");
b040e242
VS
961 printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n");
962 printf("*** correct copy of gtk-config. (In this case, you will have to\n");
ecc7ceee
OK
963 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
964 printf("*** so that the correct libraries are found at run-time))\n");
965 }
966 }
967 return 1;
968}
969],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
970 CFLAGS="$ac_save_CFLAGS"
971 LIBS="$ac_save_LIBS"
972 fi
973 fi
974 if test "x$no_gtk" = x ; then
b040e242
VS
975 AC_MSG_RESULT(yes)
976 ifelse([$2], , :, [$2])
ecc7ceee
OK
977 else
978 AC_MSG_RESULT(no)
b040e242
VS
979 if test "$GTK_CONFIG" = "no" ; then
980 echo "*** The gtk-config script installed by GTK could not be found"
ecc7ceee 981 echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
b040e242
VS
982 echo "*** your path, or set the GTK_CONFIG environment variable to the"
983 echo "*** full path to gtk-config."
ecc7ceee
OK
984 else
985 if test -f conf.gtktest ; then
986 :
987 else
988 echo "*** Could not run GTK test program, checking why..."
989 CFLAGS="$CFLAGS $GTK_CFLAGS"
990 LIBS="$LIBS $GTK_LIBS"
991 AC_TRY_LINK([
992#include <gtk/gtk.h>
993#include <stdio.h>
994], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
995 [ echo "*** The test program compiled, but did not run. This usually means"
996 echo "*** that the run-time linker is not finding GTK or finding the wrong"
997 echo "*** version of GTK. If it is not finding GTK, you'll need to set your"
998 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
999 echo "*** to the installed location Also, make sure you have run ldconfig if that"
1000 echo "*** is required on your system"
b040e242 1001 echo "***"
ecc7ceee
OK
1002 echo "*** If you have an old version installed, it is best to remove it, although"
1003 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
1004 echo "***"
1005 echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
1006 echo "*** came with the system with the command"
1007 echo "***"
1008 echo "*** rpm --erase --nodeps gtk gtk-devel" ],
1009 [ echo "*** The test program failed to compile or link. See the file config.log for the"
1010 echo "*** exact error that occured. This usually means GTK was incorrectly installed"
1011 echo "*** or that you have moved GTK since it was installed. In the latter case, you"
b040e242 1012 echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])
ecc7ceee
OK
1013 CFLAGS="$ac_save_CFLAGS"
1014 LIBS="$ac_save_LIBS"
1015 fi
1016 fi
1017 GTK_CFLAGS=""
1018 GTK_LIBS=""
1019 ifelse([$3], , :, [$3])
1020 fi
1021 AC_SUBST(GTK_CFLAGS)
1022 AC_SUBST(GTK_LIBS)
1023 rm -f conf.gtktest
1024])
8168de4c 1025
2b5f62a0
VZ
1026
1027dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1028dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1029dnl also defines GSTUFF_PKG_ERRORS on error
1030AC_DEFUN(PKG_CHECK_MODULES, [
1031 succeeded=no
1032
1033 if test -z "$PKG_CONFIG"; then
1034 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1035 fi
1036
1037 if test "$PKG_CONFIG" = "no" ; then
1038 echo "*** The pkg-config script could not be found. Make sure it is"
1039 echo "*** in your path, or set the PKG_CONFIG environment variable"
1040 echo "*** to the full path to pkg-config."
1041 echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
1042 else
1043 PKG_CONFIG_MIN_VERSION=0.9.0
1044 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1045 AC_MSG_CHECKING(for $2)
1046
1047 if $PKG_CONFIG --exists "$2" ; then
1048 AC_MSG_RESULT(yes)
1049 succeeded=yes
1050
1051 AC_MSG_CHECKING($1_CFLAGS)
1052 $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
1053 AC_MSG_RESULT($$1_CFLAGS)
1054
1055 AC_MSG_CHECKING($1_LIBS)
1056 $1_LIBS=`$PKG_CONFIG --libs "$2"`
1057 AC_MSG_RESULT($$1_LIBS)
1058 else
1059 $1_CFLAGS=""
1060 $1_LIBS=""
1061 ## If we have a custom action on failure, don't print errors, but
1062 ## do set a variable so people can do so.
1063 $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
1064 ifelse([$4], ,echo $$1_PKG_ERRORS,)
1065 fi
1066
1067 AC_SUBST($1_CFLAGS)
1068 AC_SUBST($1_LIBS)
1069 else
1070 echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1071 echo "*** See http://www.freedesktop.org/software/pkgconfig"
1072 fi
1073 fi
1074
1075 if test $succeeded = yes; then
1076 ifelse([$3], , :, [$3])
1077 else
1078 ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
1079 fi
1080])
1081
1082
1083
f93ca9fd
VS
1084# Configure paths for SDL
1085# Sam Lantinga 9/21/99
1086# stolen from Manish Singh
1087# stolen back from Frank Belew
1088# stolen from Manish Singh
1089# Shamelessly stolen from Owen Taylor
1090
1091dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
1092dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
1093dnl
670ec357 1094AC_DEFUN([AM_PATH_SDL],
f93ca9fd
VS
1095[dnl
1096dnl Get the cflags and libraries from the sdl-config script
1097dnl
1098AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
1099 sdl_prefix="$withval", sdl_prefix="")
1100AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
1101 sdl_exec_prefix="$withval", sdl_exec_prefix="")
1102AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
1103 , enable_sdltest=yes)
1104
1105 if test x$sdl_exec_prefix != x ; then
1106 sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"
1107 if test x${SDL_CONFIG+set} != xset ; then
1108 SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config
1109 fi
1110 fi
1111 if test x$sdl_prefix != x ; then
1112 sdl_args="$sdl_args --prefix=$sdl_prefix"
1113 if test x${SDL_CONFIG+set} != xset ; then
1114 SDL_CONFIG=$sdl_prefix/bin/sdl-config
1115 fi
1116 fi
1117
1118 AC_REQUIRE([AC_CANONICAL_TARGET])
1119 PATH="$prefix/bin:$prefix/usr/bin:$PATH"
1120 AC_PATH_PROG(SDL_CONFIG, sdl-config, no, [$PATH])
1121 min_sdl_version=ifelse([$1], ,0.11.0,$1)
1122 AC_MSG_CHECKING(for SDL - version >= $min_sdl_version)
1123 no_sdl=""
1124 if test "$SDL_CONFIG" = "no" ; then
1125 no_sdl=yes
1126 else
1127 SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
1128 SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
1129
1130 sdl_major_version=`$SDL_CONFIG $sdl_args --version | \
1131 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
1132 sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \
1133 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
1134 sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \
1135 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
1136 if test "x$enable_sdltest" = "xyes" ; then
1137 ac_save_CFLAGS="$CFLAGS"
1138 ac_save_LIBS="$LIBS"
1139 CFLAGS="$CFLAGS $SDL_CFLAGS"
1140 LIBS="$LIBS $SDL_LIBS"
1141dnl
1142dnl Now check if the installed SDL is sufficiently new. (Also sanity
1143dnl checks the results of sdl-config to some extent
1144dnl
1145 rm -f conf.sdltest
1146 AC_TRY_RUN([
1147#include <stdio.h>
1148#include <stdlib.h>
1149#include <string.h>
1150#include "SDL.h"
1151
1152char*
1153my_strdup (char *str)
1154{
1155 char *new_str;
1156
1157 if (str)
1158 {
1159 new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
1160 strcpy (new_str, str);
1161 }
1162 else
1163 new_str = NULL;
1164
1165 return new_str;
1166}
1167
1168int main (int argc, char *argv[])
1169{
1170 int major, minor, micro;
1171 char *tmp_version;
1172
1173 /* This hangs on some systems (?)
1174 system ("touch conf.sdltest");
1175 */
1176 { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
1177
1178 /* HP/UX 9 (%@#!) writes to sscanf strings */
1179 tmp_version = my_strdup("$min_sdl_version");
1180 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
1181 printf("%s, bad version string\n", "$min_sdl_version");
1182 exit(1);
1183 }
1184
1185 if (($sdl_major_version > major) ||
1186 (($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
1187 (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
1188 {
1189 return 0;
1190 }
1191 else
1192 {
1193 printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
1194 printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro);
1195 printf("*** best to upgrade to the required version.\n");
1196 printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n");
1197 printf("*** to point to the correct copy of sdl-config, and remove the file\n");
1198 printf("*** config.cache before re-running configure\n");
1199 return 1;
1200 }
1201}
1202
1203],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1204 CFLAGS="$ac_save_CFLAGS"
1205 LIBS="$ac_save_LIBS"
1206 fi
1207 fi
1208 if test "x$no_sdl" = x ; then
1209 AC_MSG_RESULT(yes)
1210 ifelse([$2], , :, [$2])
1211 else
1212 AC_MSG_RESULT(no)
1213 if test "$SDL_CONFIG" = "no" ; then
1214 echo "*** The sdl-config script installed by SDL could not be found"
1215 echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
1216 echo "*** your path, or set the SDL_CONFIG environment variable to the"
1217 echo "*** full path to sdl-config."
1218 else
1219 if test -f conf.sdltest ; then
1220 :
1221 else
1222 echo "*** Could not run SDL test program, checking why..."
1223 CFLAGS="$CFLAGS $SDL_CFLAGS"
1224 LIBS="$LIBS $SDL_LIBS"
1225 AC_TRY_LINK([
1226#include <stdio.h>
1227#include "SDL.h"
1228
1229int main(int argc, char *argv[])
1230{ return 0; }
1231#undef main
1232#define main K_and_R_C_main
1233], [ return 0; ],
1234 [ echo "*** The test program compiled, but did not run. This usually means"
1235 echo "*** that the run-time linker is not finding SDL or finding the wrong"
1236 echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
1237 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1238 echo "*** to the installed location Also, make sure you have run ldconfig if that"
1239 echo "*** is required on your system"
1240 echo "***"
1241 echo "*** If you have an old version installed, it is best to remove it, although"
1242 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
1243 [ echo "*** The test program failed to compile or link. See the file config.log for the"
1244 echo "*** exact error that occured. This usually means SDL was incorrectly installed"
1245 echo "*** or that you have moved SDL since it was installed. In the latter case, you"
1246 echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
1247 CFLAGS="$ac_save_CFLAGS"
1248 LIBS="$ac_save_LIBS"
1249 fi
1250 fi
1251 SDL_CFLAGS=""
1252 SDL_LIBS=""
1253 ifelse([$3], , :, [$3])
1254 fi
1255 AC_SUBST(SDL_CFLAGS)
1256 AC_SUBST(SDL_LIBS)
1257 rm -f conf.sdltest
1258])
1259
fe0895cf
VS
1260dnl ---------------------------------------------------------------------------
1261dnl Support macros for makefiles generated by BAKEFILE.
1262dnl ---------------------------------------------------------------------------
1263
1264dnl Lots of compiler & linker detection code contained here was taken from
1265dnl wxWindows configure.in script (see http://www.wxwindows.org)
1266
1267
1268
1269dnl ---------------------------------------------------------------------------
1270dnl AC_BAKEFILE_GNUMAKE
1271dnl
1272dnl Detects GNU make
1273dnl ---------------------------------------------------------------------------
1274
1275AC_DEFUN(AC_BAKEFILE_GNUMAKE,
1276[
1277 dnl does make support "-include" (only GNU make does AFAIK)?
49b0a3aa 1278 AC_CACHE_CHECK([if make is GNU make], bakefile_cv_prog_makeisgnu,
fe0895cf
VS
1279 [
1280 if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
1281 egrep -s GNU > /dev/null); then
1282 bakefile_cv_prog_makeisgnu="yes"
1283 else
1284 bakefile_cv_prog_makeisgnu="no"
1285 fi
1286 ])
1287
1288 if test "x$bakefile_cv_prog_makeisgnu" = "xyes"; then
1289 IF_GNU_MAKE=""
1290 else
1291 IF_GNU_MAKE="#"
1292 fi
1293 AC_SUBST(IF_GNU_MAKE)
1294])
1295
1296dnl ---------------------------------------------------------------------------
1297dnl AC_BAKEFILE_PLATFORM
1298dnl
1299dnl Detects platform and sets PLATFORM_XXX variables accordingly
1300dnl ---------------------------------------------------------------------------
1301
1302AC_DEFUN(AC_BAKEFILE_PLATFORM,
1303[
1304 PLATFORM_UNIX=0
1305 PLATFORM_WIN32=0
1306 PLATFORM_MSDOS=0
1307 PLATFORM_MAC=0
1308 PLATFORM_MACOSX=0
96c1699d 1309 PLATFORM_OS2=0
f93ca9fd
VS
1310
1311 if test "x$BAKEFILE_FORCE_PLATFORM" = "x"; then
1312 case "${BAKEFILE_HOST}" in
1313 *-*-cygwin* | *-*-mingw32* )
1314 PLATFORM_WIN32=1
1315 ;;
1316 *-pc-msdosdjgpp )
1317 PLATFORM_MSDOS=1
1318 ;;
1319 *-pc-os2_emx | *-pc-os2-emx )
1320 PLATFORM_OS2=1
1321 ;;
1322 powerpc-*-darwin* )
1323 PLATFORM_MAC=1
1324 PLATFORM_MACOSX=1
1325 ;;
1326 * )
1327 PLATFORM_UNIX=1
1328 ;;
1329 esac
1330 else
1331 case "$BAKEFILE_FORCE_PLATFORM" in
1332 win32 )
1333 PLATFORM_WIN32=1
1334 ;;
1335 msdos )
1336 PLATFORM_MSDOS=1
1337 ;;
1338 os2 )
1339 PLATFORM_OS2=1
1340 ;;
1341 darwin )
1342 PLATFORM_MAC=1
1343 PLATFORM_MACOSX=1
1344 ;;
1345 unix )
1346 PLATFORM_UNIX=1
1347 ;;
1348 * )
1349 AC_MSG_ERROR([Unknown platform: $BAKEFILE_FORCE_PLATFORM])
1350 ;;
1351 esac
1352 fi
fe0895cf
VS
1353
1354 AC_SUBST(PLATFORM_UNIX)
1355 AC_SUBST(PLATFORM_WIN32)
1356 AC_SUBST(PLATFORM_MSDOS)
1357 AC_SUBST(PLATFORM_MAC)
1358 AC_SUBST(PLATFORM_MACOSX)
96c1699d 1359 AC_SUBST(PLATFORM_OS2)
fe0895cf
VS
1360])
1361
1362
1363
1364dnl ---------------------------------------------------------------------------
1365dnl AC_BAKEFILE_SUFFIXES
1366dnl
1367dnl Detects shared various suffixes for shared libraries, libraries, programs,
1368dnl plugins etc.
1369dnl ---------------------------------------------------------------------------
1370
1371AC_DEFUN(AC_BAKEFILE_SUFFIXES,
1372[
1373 SO_SUFFIX="so"
131f235d 1374 SO_SUFFIX_MODULE="so"
fe0895cf 1375 EXEEXT=""
4b1f6360 1376 LIBPREFIX=lib
fe0895cf 1377 DLLPREFIX=lib
131f235d 1378 DLLPREFIX_MODULE=
fe0895cf 1379
f93ca9fd 1380 case "${BAKEFILE_HOST}" in
fe0895cf
VS
1381 *-hp-hpux* )
1382 SO_SUFFIX="sl"
131f235d 1383 SO_SUFFIX_MODULE="sl"
fe0895cf
VS
1384 ;;
1385 *-*-aix* )
1386 dnl quoting from
1387 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
1388 dnl Both archive libraries and shared libraries on AIX have an
1389 dnl .a extension. This will explain why you can't link with an
1390 dnl .so and why it works with the name changed to .a.
1391 SO_SUFFIX="a"
131f235d 1392 SO_SUFFIX_MODULE="a"
fe0895cf
VS
1393 ;;
1394 *-*-cygwin* | *-*-mingw32* )
1395 SO_SUFFIX="dll"
131f235d 1396 SO_SUFFIX_MODULE="dll"
fe0895cf
VS
1397 EXEEXT=".exe"
1398 DLLPREFIX=""
1399 ;;
4b1f6360
VS
1400 *-pc-msdosdjgpp )
1401 EXEEXT=".exe"
1402 DLLPREFIX=""
1403 ;;
1404 *-pc-os2_emx | *-pc-os2-emx )
11a20c3a
SN
1405 SO_SUFFIX="dll"
1406 SO_SUFFIX_MODULE="dll"
fe0895cf
VS
1407 EXEEXT=".exe"
1408 DLLPREFIX=""
4b1f6360 1409 LIBPREFIX=""
fe0895cf
VS
1410 ;;
1411 powerpc-*-darwin* )
1412 SO_SUFFIX="dylib"
131f235d 1413 SO_SUFFIX_MODULE="bundle"
fe0895cf
VS
1414 ;;
1415 esac
1416
1417 AC_SUBST(SO_SUFFIX)
131f235d 1418 AC_SUBST(SO_SUFFIX_MODULE)
fe0895cf 1419 AC_SUBST(EXEEXT)
4b1f6360 1420 AC_SUBST(LIBPREFIX)
fe0895cf 1421 AC_SUBST(DLLPREFIX)
131f235d 1422 AC_SUBST(DLLPREFIX_MODULE)
fe0895cf
VS
1423])
1424
1425
1426dnl ---------------------------------------------------------------------------
1427dnl AC_BAKEFILE_SHARED_LD
1428dnl
1429dnl Detects command for making shared libraries, substitutes SHARED_LD_CC
1430dnl and SHARED_LD_CXX.
1431dnl ---------------------------------------------------------------------------
1432
1433AC_DEFUN(AC_BAKEFILE_SHARED_LD,
1434[
1435 dnl Defaults for GCC and ELF .so shared libs:
1436 SHARED_LD_CC="\$(CC) -shared -o"
1437 SHARED_LD_CXX="\$(CXX) -shared -o"
1438
1439 dnl the extra compiler flags needed for compilation of shared library
1440 if test "x$GCC" = "xyes"; then
1441 dnl the switch for gcc is the same under all platforms
1442 PIC_FLAG="-fPIC"
1443 fi
1444
f93ca9fd 1445 case "${BAKEFILE_HOST}" in
fe0895cf
VS
1446 *-hp-hpux* )
1447 dnl default settings are good for gcc but not for the native HP-UX
1448 if test "x$GCC" = "xyes"; then
1449 dnl -o flag must be after PIC flag
1450 SHARED_LD_CC="${CC} -shared ${PIC_FLAG} -o"
1451 SHARED_LD_CXX="${CXX} -shared ${PIC_FLAG} -o"
1452 else
1453 dnl no idea why it wants it, but it does
1454 LDFLAGS="$LDFLAGS -L/usr/lib"
1455
1456 SHARED_LD_CC="${CC} -b -o"
1457 SHARED_LD_CXX="${CXX} -b -o"
1458 PIC_FLAG="+Z"
1459 fi
1460 ;;
1461
1462 *-*-linux* )
1463 if test "x$GCC" != "xyes"; then
1464 AC_CACHE_CHECK([for Intel compiler], bakefile_cv_prog_icc,
1465 [
1466 AC_TRY_COMPILE([],
1467 [
1468 #ifndef __INTEL_COMPILER
1469 #error Not icc
1470 #endif
1471 ],
1472 bakefile_cv_prog_icc=yes,
1473 bakefile_cv_prog_icc=no
1474 )
1475 ])
1476 if test "$bakefile_cv_prog_icc" = "yes"; then
1477 PIC_FLAG="-KPIC"
1478 fi
1479 fi
1480 ;;
1481
1482 *-*-solaris2* )
1483 if test "x$GCC" != xyes ; then
1484 SHARED_LD_CC="${CC} -G -o"
1485 SHARED_LD_CXX="${CXX} -G -o"
1486 PIC_FLAG="-KPIC"
1487 fi
1488 ;;
1489
1490 *-*-darwin* )
1491 dnl For Unix to MacOS X porting instructions, see:
1492 dnl http://fink.sourceforge.net/doc/porting/porting.html
1493 CFLAGS="$CFLAGS -fno-common"
1494 CXXFLAGS="$CXXFLAGS -fno-common"
1495
1496 dnl Most apps benefit from being fully binded (its faster and static
1497 dnl variables initialized at startup work).
1498 dnl This can be done either with the exe linker flag -Wl,-bind_at_load
1499 dnl or with a double stage link in order to create a single module
1500 dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
1501
2a879853
VS
1502 dnl If using newer dev tools then there is a -single_module flag that
1503 dnl we can use to do this, otherwise we'll need to use a helper
1504 dnl script. Check the version of gcc to see which way we can go:
1505 AC_CACHE_CHECK([for gcc 3.1 or later], wx_cv_gcc31, [
1506 AC_TRY_COMPILE([],
1507 [
1508 #if (__GNUC__ < 3) || \
1509 ((__GNUC__ == 3) && (__GNUC_MINOR__ < 1))
1510 #error old gcc
1511 #endif
1512 ],
1513 [
1514 wx_cv_gcc31=yes
1515 ],
1516 [
1517 wx_cv_gcc31=no
1518 ]
1519 )
1520 ])
1521 if test "$wx_cv_gcc31" = "no"; then
43948499 1522 cat <<EOF >shared-ld-sh
fe0895cf
VS
1523#!/bin/sh
1524#-----------------------------------------------------------------------------
1525#-- Name: distrib/mac/shared-ld-sh
1526#-- Purpose: Link a mach-o dynamic shared library for Darwin / Mac OS X
1527#-- Author: Gilles Depeyrot
1528#-- Copyright: (c) 2002 Gilles Depeyrot
1529#-- Licence: any use permitted
1530#-----------------------------------------------------------------------------
1531
1532verbose=0
1533args=""
1534objects=""
131f235d 1535linking_flag="-dynamiclib"
fe0895cf
VS
1536
1537while test \${#} -gt 0; do
1538 case \${1} in
1539
1540 -v)
1541 verbose=1
1542 ;;
1543
1544 -o|-compatibility_version|-current_version|-framework|-undefined|-install_name)
1545 # collect these options and values
1546 args="\${args} \${1} \${2}"
1547 shift
1548 ;;
1549
d3370310 1550 -l*|-L*|-flat_namespace|-headerpad_max_install_names)
fe0895cf
VS
1551 # collect these options
1552 args="\${args} \${1}"
1553 ;;
1554
131f235d
VS
1555 -dynamiclib|-bundle)
1556 linking_flag="\${1}"
fe0895cf
VS
1557 ;;
1558
1559 -*)
1560 echo "shared-ld: unhandled option '\${1}'"
1561 exit 1
1562 ;;
1563
4d264332 1564 *.o | *.a | *.dylib)
fe0895cf
VS
1565 # collect object files
1566 objects="\${objects} \${1}"
1567 ;;
1568
1569 *)
1570 echo "shared-ld: unhandled argument '\${1}'"
1571 exit 1
1572 ;;
1573
1574 esac
1575 shift
1576done
1577
1578#
1579# Link one module containing all the others
1580#
1581if test \${verbose} = 1; then
1582 echo "c++ -r -keep_private_externs -nostdlib \${objects} -o master.\$\$.o"
1583fi
1584c++ -r -keep_private_externs -nostdlib \${objects} -o master.\$\$.o
1585status=\$?
1586if test \${status} != 0; then
1587 exit \${status}
1588fi
1589
1590#
1591# Link the shared library from the single module created
1592#
1593if test \${verbose} = 1; then
2a879853 1594 echo "cc \${linking_flag} master.\$\$.o \${args}"
fe0895cf 1595fi
131f235d 1596c++ \${linking_flag} master.\$\$.o \${args}
fe0895cf
VS
1597status=\$?
1598if test \${status} != 0; then
1599 exit \${status}
1600fi
1601
1602#
1603# Remove intermediate module
1604#
1605rm -f master.\$\$.o
1606
1607exit 0
1608EOF
43948499
RD
1609 chmod +x shared-ld-sh
1610
2a879853 1611 dnl Use the shared-ld-sh helper script
7f523214
VS
1612 SHARED_LD_CC="`pwd`/shared-ld-sh -dynamiclib -headerpad_max_install_names -o"
1613 SHARED_LD_MODULE_CC="`pwd`/shared-ld-sh -bundle -headerpad_max_install_names -o"
2a879853
VS
1614 SHARED_LD_CXX="$SHARED_LD_CC"
1615 SHARED_LD_MODULE_CXX="$SHARED_LD_MODULE_CC"
1616 else
1617 dnl Use the -single_module flag and let the linker do it for us
7f523214
VS
1618 SHARED_LD_CC="\${CC} -dynamiclib -single_module -headerpad_max_install_names -o"
1619 SHARED_LD_MODULE_CC="\${CC} -bundle -single_module -headerpad_max_install_names -o"
1620 SHARED_LD_CXX="\${CXX} -dynamiclib -single_module -headerpad_max_install_names -o"
1621 SHARED_LD_MODULE_CXX="\${CXX} -bundle -single_module -headerpad_max_install_names -o"
2a879853
VS
1622 fi
1623
fe0895cf 1624 PIC_FLAG="-dynamic -fPIC"
fe0895cf
VS
1625 ;;
1626
1627 *-*-aix* )
1628 dnl default settings are ok for gcc
1629 if test "x$GCC" != "xyes"; then
1630 dnl the abs path below used to be hardcoded here so I guess it must
1631 dnl be some sort of standard location under AIX?
1632 AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
1633 makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
1634 dnl FIXME - what about makeCSharedLib?
1635 SHARED_LD_CC="$AIX_CC_LD -p 0 -o"
1636 SHARED_LD_CXX="$AIX_CXX_LD -p 0 -o"
1637 fi
1638 ;;
1639
1640 *-*-beos* )
1641 dnl can't use gcc under BeOS for shared library creation because it
1642 dnl complains about missing 'main'
1643 SHARED_LD_CC="${LD} -shared -o"
1644 SHARED_LD_CXX="${LD} -shared -o"
1645 ;;
1646
1647 *-*-irix* )
1648 dnl default settings are ok for gcc
1649 if test "x$GCC" != "xyes"; then
1650 PIC_FLAG="-KPIC"
1651 fi
1652 ;;
1653
1654 *-*-cygwin* | *-*-mingw32* )
1655 PIC_FLAG=""
1656 ;;
1657
11a20c3a
SN
1658 *-pc-os2_emx | *-pc-os2-emx )
1659 SHARED_LD_CC="dllar.sh -o"
1660 SHARED_LD_CXX="dllar.sh -o"
1661 PIC_FLAG=""
1662 ;;
1663
fe0895cf
VS
1664 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \
1665 *-*-sunos4* | \
1666 *-*-osf* | \
1667 *-*-dgux5* | \
d5fc095c 1668 *-*-sysv5* )
fe0895cf
VS
1669 dnl defaults are ok
1670 ;;
1671
1672 *)
f93ca9fd 1673 AC_MSG_ERROR(unknown system type $BAKEFILE_HOST.)
fe0895cf
VS
1674 esac
1675
131f235d
VS
1676 if test "x$SHARED_LD_MODULE_CC" = "x" ; then
1677 SHARED_LD_MODULE_CC="$SHARED_LD_CC"
1678 fi
1679 if test "x$SHARED_LD_MODULE_CXX" = "x" ; then
239394fb 1680 SHARED_LD_MODULE_CXX="$SHARED_LD_CXX"
131f235d
VS
1681 fi
1682
fe0895cf
VS
1683 AC_SUBST(SHARED_LD_CC)
1684 AC_SUBST(SHARED_LD_CXX)
131f235d
VS
1685 AC_SUBST(SHARED_LD_MODULE_CC)
1686 AC_SUBST(SHARED_LD_MODULE_CXX)
fe0895cf
VS
1687 AC_SUBST(PIC_FLAG)
1688])
1689
1690
1691dnl ---------------------------------------------------------------------------
1692dnl AC_BAKEFILE_SHARED_VERSIONS
1693dnl
1694dnl Detects linker options for attaching versions (sonames) to shared libs.
1695dnl ---------------------------------------------------------------------------
1696
1697AC_DEFUN(AC_BAKEFILE_SHARED_VERSIONS,
1698[
1699 USE_SOVERSION=0
1700 USE_SOVERLINUX=0
1701 USE_SOVERSOLARIS=0
1702 USE_SOSYMLINKS=0
1703 USE_MACVERSION=0
1704 SONAME_FLAG=
1705
f93ca9fd 1706 case "${BAKEFILE_HOST}" in
fe0895cf
VS
1707 *-*-linux* )
1708 SONAME_FLAG="-Wl,-soname,"
1709 USE_SOVERSION=1
1710 USE_SOVERLINUX=1
1711 USE_SOSYMLINKS=1
1712 ;;
1713
1714 *-*-solaris2* )
1715 SONAME_FLAG="-h "
1716 USE_SOVERSION=1
1717 USE_SOVERSOLARIS=1
1718 USE_SOSYMLINKS=1
1719 ;;
1720
1721 *-*-darwin* )
1722 USE_MACVERSION=1
1723 USE_SOVERSION=1
1724 USE_SOSYMLINKS=1
1725 ;;
1726 esac
1727
1728 AC_SUBST(USE_SOVERSION)
1729 AC_SUBST(USE_SOVERLINUX)
1730 AC_SUBST(USE_SOVERSOLARIS)
1731 AC_SUBST(USE_MACVERSION)
1732 AC_SUBST(USE_SOSYMLINKS)
1733 AC_SUBST(SONAME_FLAG)
1734])
1735
1736
1737dnl ---------------------------------------------------------------------------
1738dnl AC_BAKEFILE_DEPS
1739dnl
1740dnl Detects available C/C++ dependency tracking options
1741dnl ---------------------------------------------------------------------------
1742
1743AC_DEFUN(AC_BAKEFILE_DEPS,
1744[
49b0a3aa
VS
1745 AC_MSG_CHECKING([for dependency tracking method])
1746 DEPS_TRACKING=0
1747
fe0895cf 1748 if test "x$GCC" = "xyes"; then
49b0a3aa
VS
1749 DEPSMODE=gcc
1750 DEPS_TRACKING=1
f93ca9fd 1751 case "${BAKEFILE_HOST}" in
3e5c3c83
VS
1752 powerpc-*-darwin* )
1753 dnl -cpp-precomp (the default) conflicts with -MMD option
1754 dnl used by bk-deps (see also http://developer.apple.com/documentation/Darwin/Conceptual/PortingUnix/compiling/chapter_4_section_3.html)
1755 DEPSFLAG_GCC="-no-cpp-precomp -MMD"
1756 ;;
1757 * )
1758 DEPSFLAG_GCC="-MMD"
1759 ;;
1760 esac
49b0a3aa
VS
1761 AC_MSG_RESULT([gcc])
1762 else
1763 AC_MSG_RESULT([none])
1764 fi
1765
1766 if test $DEPS_TRACKING = 1 ; then
1767 cat <<EOF >bk-deps
1768#!/bin/sh
1769
45842500
VS
1770# This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
1771# script. It is used to track C/C++ files dependencies in portable way.
49b0a3aa
VS
1772#
1773# Permission is given to use this file in any way.
1774
1775DEPSMODE=$DEPSMODE
1776DEPSDIR=.deps
3e5c3c83 1777DEPSFLAG_GCC="$DEPSFLAG_GCC"
49b0a3aa
VS
1778
1779mkdir -p \$DEPSDIR
1780
1781if test \$DEPSMODE = gcc ; then
3e5c3c83 1782 \${*} \${DEPSFLAG_GCC}
49b0a3aa
VS
1783 status=\${?}
1784 if test \${status} != 0 ; then
1785 exit \${status}
1786 fi
1787 # move created file to the location we want it in:
1788 while test \${#} -gt 0; do
1789 case "\${1}" in
1790 -o )
1791 shift
1792 objfile=\${1}
1793 ;;
1794 -* )
1795 ;;
1796 * )
1797 srcfile=\${1}
1798 ;;
1799 esac
1800 shift
1801 done
1802 depfile=\`basename \$srcfile | sed -e 's/\..*$/.d/g'\`
1803 depobjname=\`echo \$depfile |sed -e 's/\.d/.o/g'\`
6b9d41a5
VS
1804 if test -f \$depfile ; then
1805 sed -e "s,\$depobjname:,\$objfile:,g" \$depfile >\${DEPSDIR}/\${objfile}.d
1806 rm -f \$depfile
1807 else
1808 depfile=\`basename \$objfile | sed -e 's/\..*$/.d/g'\`
1809 if test -f \$depfile ; then
9d0be83a 1810 sed -e "/^\$objfile/!s,\$depobjname:,\$objfile:,g" \$depfile >\${DEPSDIR}/\${objfile}.d
6b9d41a5
VS
1811 rm -f \$depfile
1812 fi
1813 fi
49b0a3aa
VS
1814 exit 0
1815else
1816 \${*}
1817 exit \${?}
1818fi
1819EOF
1820 chmod +x bk-deps
fe0895cf
VS
1821 fi
1822
49b0a3aa 1823 AC_SUBST(DEPS_TRACKING)
fe0895cf
VS
1824])
1825
1826dnl ---------------------------------------------------------------------------
1827dnl AC_BAKEFILE_CHECK_BASIC_STUFF
1828dnl
1829dnl Checks for presence of basic programs, such as C and C++ compiler, "ranlib"
1830dnl or "install"
1831dnl ---------------------------------------------------------------------------
1832
1833AC_DEFUN(AC_BAKEFILE_CHECK_BASIC_STUFF,
1834[
1835 AC_PROG_RANLIB
1836 AC_PROG_INSTALL
1837 AC_PROG_LN_S
1838
1839 AC_PROG_MAKE_SET
1840 AC_SUBST(MAKE_SET)
1841
874d12cf
VS
1842 AC_CHECK_TOOL(AR, ar, ar)
1843 AC_CHECK_TOOL(STRIP, strip, :)
1844 AC_CHECK_TOOL(NM, nm, :)
fe0895cf 1845
f93ca9fd 1846 case ${BAKEFILE_HOST} in
fe0895cf
VS
1847 *-hp-hpux* )
1848 INSTALL_DIR="mkdir"
1849 ;;
1850 *) INSTALL_DIR="$INSTALL -d"
1851 ;;
1852 esac
1853 AC_SUBST(INSTALL_DIR)
6b9d41a5
VS
1854
1855 LDFLAGS_GUI=
f93ca9fd 1856 case ${BAKEFILE_HOST} in
6b9d41a5
VS
1857 *-*-cygwin* | *-*-mingw32* )
1858 LDFLAGS_GUI="-Wl,--subsystem,windows -mwindows"
1859 esac
1860 AC_SUBST(LDFLAGS_GUI)
fe0895cf
VS
1861])
1862
1863
1864dnl ---------------------------------------------------------------------------
1865dnl AC_BAKEFILE_RES_COMPILERS
1866dnl
1867dnl Checks for presence of resource compilers for win32 or mac
1868dnl ---------------------------------------------------------------------------
1869
1870AC_DEFUN(AC_BAKEFILE_RES_COMPILERS,
1871[
1872 RESCOMP=
1873 SETFILE=
1874
f93ca9fd 1875 case ${BAKEFILE_HOST} in
fe0895cf
VS
1876 *-*-cygwin* | *-*-mingw32* )
1877 dnl Check for win32 resources compiler:
1878 if test "$build" != "$host" ; then
1879 RESCOMP=$host_alias-windres
1880 else
1881 AC_CHECK_PROG(RESCOMP, windres, windres, windres)
1882 fi
1883 ;;
1884
1885 *-*-darwin* )
1886 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
1887 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
1888 ;;
1889 esac
1890
1891 AC_SUBST(RESCOMP)
1892 AC_SUBST(SETFILE)
1893])
1894
45842500
VS
1895dnl ---------------------------------------------------------------------------
1896dnl AC_BAKEFILE_PRECOMP_HEADERS
1897dnl
1898dnl Check for precompiled headers support (GCC >= 3.4)
1899dnl ---------------------------------------------------------------------------
1900
1901AC_DEFUN(AC_BAKEFILE_PRECOMP_HEADERS,
1902[
1903
1904 AC_ARG_ENABLE([precomp-headers],
1905 [ --disable-precomp-headers don't use precompiled headers even if compiler can],
1906 [bk_use_pch="$enableval"])
1907
1908 GCC_PCH=0
1909
1910 if test "x$bk_use_pch" = "x" -o "x$bk_use_pch" = "xyes" ; then
1911 if test "x$GCC" = "xyes"; then
1912 dnl test if we have gcc-3.4:
1913 AC_MSG_CHECKING([if the compiler supports precompiled headers])
1914 AC_TRY_COMPILE([],
1915 [
e06468e8
VS
1916 #if !defined(__GNUC__) || !defined(__GNUC_MINOR__)
1917 #error "no pch support"
1918 #endif
1919 #if (__GNUC__ < 3)
1920 #error "no pch support"
1921 #endif
1922 #if (__GNUC__ == 3) && \
1923 ((!defined(__APPLE_CC__) && (__GNUC_MINOR__ < 4)) || \
1924 ( defined(__APPLE_CC__) && (__GNUC_MINOR__ < 3)))
1925 #error "no pch support"
45842500
VS
1926 #endif
1927 ],
1928 [
1929 AC_MSG_RESULT([yes])
1930 dnl FIXME - this is temporary, till .gch dependencies
1931 dnl are fixed in generated Makefiles
1932 CPPFLAGS="-fpch-deps $CPPFLAGS"
1933 GCC_PCH=1
1934 ],
1935 [
1936 AC_MSG_RESULT([no])
1937 ])
1938 if test $GCC_PCH = 1 ; then
1939 cat <<EOF >bk-make-pch
1940#!/bin/sh
1941
1942# This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
1943# script. It is used to generated precompiled headers.
1944#
1945# Permission is given to use this file in any way.
1946
1947outfile="\${1}"
1948header="\${2}"
1949shift
1950shift
1951
1952compiler=
1953headerfile=
1954while test \${#} -gt 0; do
1955 case "\${1}" in
1956 -I* )
1957 incdir=\`echo \${1} | sed -e 's/-I\(.*\)/\1/g'\`
1958 if test "x\${headerfile}" = "x" -a -f "\${incdir}/\${header}" ; then
1959 headerfile="\${incdir}/\${header}"
1960 fi
1961 ;;
1962 esac
1963 compiler="\${compiler} \${1}"
1964 shift
1965done
1966
1967if test "x\${headerfile}" = "x" ; then
1968 echo "error: can't find header \${header} in include paths" >2
1969else
1970 if test -f \${outfile} ; then
1971 rm -f \${outfile}
1972 else
1973 mkdir -p \`dirname \${outfile}\`
1974 fi
1975 depsfile=".deps/\`basename \${outfile}\`.d"
1976 mkdir -p .deps
1977 # can do this because gcc is >= 3.4:
1978 \${compiler} -o \${outfile} -MMD -MF "\${depsfile}" "\${headerfile}"
1979 exit \${?}
1980fi
1981EOF
1982 chmod +x bk-make-pch
1983 fi
1984 fi
1985 fi
1986
1987 AC_SUBST(GCC_PCH)
1988])
1989
1990
1991
fe0895cf
VS
1992dnl ---------------------------------------------------------------------------
1993dnl AC_BAKEFILE
1994dnl
1995dnl To be used in configure.in of any project using Bakefile-generated mks
f93ca9fd
VS
1996dnl
1997dnl Behaviour can be modified by setting following variables:
1998dnl BAKEFILE_CHECK_BASICS set to "no" if you don't want bakefile to
1999dnl to perform check for basic tools like ranlib
2000dnl BAKEFILE_HOST set this to override host detection, defaults
2001dnl to ${host}
2002dnl BAKEFILE_FORCE_PLATFORM set to override platform detection
fe0895cf
VS
2003dnl ---------------------------------------------------------------------------
2004
2005AC_DEFUN(AC_BAKEFILE,
2006[
f93ca9fd
VS
2007 if test "x$BAKEFILE_HOST" = "x"; then
2008 BAKEFILE_HOST="${host}"
2009 fi
2010
fe0895cf
VS
2011 if test "x$BAKEFILE_CHECK_BASICS" != "xno"; then
2012 AC_BAKEFILE_CHECK_BASIC_STUFF
2013 fi
2014 AC_BAKEFILE_GNUMAKE
2015 AC_BAKEFILE_PLATFORM
2016 AC_BAKEFILE_SUFFIXES
2017 AC_BAKEFILE_SHARED_LD
2018 AC_BAKEFILE_SHARED_VERSIONS
2019 AC_BAKEFILE_DEPS
2020 AC_BAKEFILE_RES_COMPILERS
2021
2022 builtin(include, autoconf_inc.m4)
2023])
2024
670ec357
VS
2025dnl
2026dnl AM_PATH_CPPUNIT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
2027dnl
2028AC_DEFUN(AM_PATH_CPPUNIT,
2029[
2030
2031AC_ARG_WITH(cppunit-prefix,[ --with-cppunit-prefix=PFX Prefix where CppUnit is installed (optional)],
2032 cppunit_config_prefix="$withval", cppunit_config_prefix="")
2033AC_ARG_WITH(cppunit-exec-prefix,[ --with-cppunit-exec-prefix=PFX Exec prefix where CppUnit is installed (optional)],
2034 cppunit_config_exec_prefix="$withval", cppunit_config_exec_prefix="")
2035
2036 if test x$cppunit_config_exec_prefix != x ; then
2037 cppunit_config_args="$cppunit_config_args --exec-prefix=$cppunit_config_exec_prefix"
2038 if test x${CPPUNIT_CONFIG+set} != xset ; then
2039 CPPUNIT_CONFIG=$cppunit_config_exec_prefix/bin/cppunit-config
2040 fi
2041 fi
2042 if test x$cppunit_config_prefix != x ; then
2043 cppunit_config_args="$cppunit_config_args --prefix=$cppunit_config_prefix"
2044 if test x${CPPUNIT_CONFIG+set} != xset ; then
2045 CPPUNIT_CONFIG=$cppunit_config_prefix/bin/cppunit-config
2046 fi
2047 fi
2048
2049 AC_PATH_PROG(CPPUNIT_CONFIG, cppunit-config, no)
2050 cppunit_version_min=$1
2051
2052 AC_MSG_CHECKING(for Cppunit - version >= $cppunit_version_min)
2053 no_cppunit=""
2054 if test "$CPPUNIT_CONFIG" = "no" ; then
2055 no_cppunit=yes
2056 else
2057 CPPUNIT_CFLAGS=`$CPPUNIT_CONFIG --cflags`
2058 CPPUNIT_LIBS=`$CPPUNIT_CONFIG --libs`
2059 cppunit_version=`$CPPUNIT_CONFIG --version`
2060
2061 cppunit_major_version=`echo $cppunit_version | \
2062 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
2063 cppunit_minor_version=`echo $cppunit_version | \
2064 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
2065 cppunit_micro_version=`echo $cppunit_version | \
2066 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
2067
2068 cppunit_major_min=`echo $cppunit_version_min | \
2069 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
2070 cppunit_minor_min=`echo $cppunit_version_min | \
2071 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
2072 cppunit_micro_min=`echo $cppunit_version_min | \
2073 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
2074
2075 cppunit_version_proper=`expr \
2076 $cppunit_major_version \> $cppunit_major_min \| \
2077 $cppunit_major_version \= $cppunit_major_min \& \
2078 $cppunit_minor_version \> $cppunit_minor_min \| \
2079 $cppunit_major_version \= $cppunit_major_min \& \
2080 $cppunit_minor_version \= $cppunit_minor_min \& \
2081 $cppunit_micro_version \>= $cppunit_micro_min `
2082
2083 if test "$cppunit_version_proper" = "1" ; then
2084 AC_MSG_RESULT([$cppunit_major_version.$cppunit_minor_version.$cppunit_micro_version])
2085 else
2086 AC_MSG_RESULT(no)
2087 no_cppunit=yes
2088 fi
2089 fi
2090
2091 if test "x$no_cppunit" = x ; then
2092 ifelse([$2], , :, [$2])
2093 else
2094 CPPUNIT_CFLAGS=""
2095 CPPUNIT_LIBS=""
2096 ifelse([$3], , :, [$3])
2097 fi
2098
2099 AC_SUBST(CPPUNIT_CFLAGS)
2100 AC_SUBST(CPPUNIT_LIBS)
2101])
2102
2103
2104
2105