1 # aclocal.m4 generated automatically by aclocal 1.6.3 -*- Autoconf -*-
3 # Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002
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.
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
14 dnl ---------------------------------------------------------------------------
16 dnl Macros for configure.in for wxWindows by Robert Roebling, Phil Blecker,
17 dnl Vadim Zeitlin and Ron Lee
19 dnl This script is under the wxWindows licence.
22 dnl ---------------------------------------------------------------------------
25 dnl ===========================================================================
26 dnl Objective-C(++) related macros
27 dnl ===========================================================================
28 m4_define([AC_WX_LANG_OBJECTIVEC],
33 m4_define([AC_WX_LANG_OBJECTIVECPLUSPLUS],
38 dnl ===========================================================================
39 dnl macros to find the a file in the list of include/lib paths
40 dnl ===========================================================================
42 dnl ---------------------------------------------------------------------------
43 dnl call WX_PATH_FIND_INCLUDES(search path, header name), sets ac_find_includes
44 dnl to the full name of the file that was found or leaves it empty if not found
45 dnl ---------------------------------------------------------------------------
46 AC_DEFUN([WX_PATH_FIND_INCLUDES],
49 for ac_dir in $1 /usr/include;
51 if test -f "$ac_dir/$2"; then
52 ac_find_includes=$ac_dir
58 dnl ---------------------------------------------------------------------------
59 dnl call WX_PATH_FIND_LIBRARIES(search path, header name), sets ac_find_libraries
60 dnl to the full name of the file that was found or leaves it empty if not found
61 dnl ---------------------------------------------------------------------------
62 AC_DEFUN([WX_PATH_FIND_LIBRARIES],
65 for ac_dir in $1 /usr/lib;
67 for ac_extension in a so sl dylib; do
68 if test -f "$ac_dir/lib$2.$ac_extension"; then
69 ac_find_libraries=$ac_dir
76 dnl ---------------------------------------------------------------------------
77 dnl Path to include, already defined
78 dnl ---------------------------------------------------------------------------
79 AC_DEFUN([WX_INCLUDE_PATH_EXIST],
81 dnl never add -I/usr/include to the CPPFLAGS
82 if test "x$1" = "x/usr/include"; then
85 echo "$2" | grep "\-I$1" > /dev/null
87 if test $result = 0; then
90 ac_path_to_include=" -I$1"
95 dnl ---------------------------------------------------------------------------
96 dnl Path to link, already defined
97 dnl ---------------------------------------------------------------------------
98 AC_DEFUN([WX_LINK_PATH_EXIST],
100 echo "$2" | grep "\-L$1" > /dev/null
102 if test $result = 0; then
105 ac_path_to_link=" -L$1"
109 dnl ===========================================================================
110 dnl C++ features test
111 dnl ===========================================================================
113 dnl ---------------------------------------------------------------------------
114 dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
115 dnl or only the old <iostream.h> one - it may be generally assumed that if
116 dnl <iostream> exists, the other "new" headers (without .h) exist too.
118 dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false)
119 dnl ---------------------------------------------------------------------------
121 AC_DEFUN([WX_CPP_NEW_HEADERS],
126 AC_CHECK_HEADERS(iostream)
128 if test "$ac_cv_header_iostream" = "yes" ; then
129 ifelse([$1], , :, [$1])
131 ifelse([$2], , :, [$2])
137 dnl ---------------------------------------------------------------------------
138 dnl WX_CPP_BOOL checks whether the C++ compiler has a built in bool type
140 dnl call WX_CPP_BOOL - will define HAVE_BOOL if the compiler supports bool
141 dnl ---------------------------------------------------------------------------
143 AC_DEFUN([WX_CPP_BOOL],
145 AC_CACHE_CHECK([if C++ compiler supports bool], wx_cv_cpp_bool,
169 if test "$wx_cv_cpp_bool" = "yes"; then
174 dnl ---------------------------------------------------------------------------
175 dnl WX_CPP_EXPLICIT checks whether the C++ compiler support the explicit
176 dnl keyword and defines HAVE_EXPLICIT if this is the case
177 dnl ---------------------------------------------------------------------------
179 AC_DEFUN([WX_CPP_EXPLICIT],
181 AC_CACHE_CHECK([if C++ compiler supports the explicit keyword],
187 dnl do the test in 2 steps: first check that the compiler knows about the
188 dnl explicit keyword at all and then verify that it really honours it
191 class Foo { public: explicit Foo(int) {} };
199 class Foo { public: explicit Foo(int) {} };
200 static void TakeFoo(const Foo& foo) { }
216 if test "$wx_cv_explicit" = "yes"; then
217 AC_DEFINE(HAVE_EXPLICIT)
221 dnl ---------------------------------------------------------------------------
222 dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
223 dnl ---------------------------------------------------------------------------
225 AC_DEFUN([WX_C_BIGENDIAN],
226 [AC_CACHE_CHECK([whether byte ordering is bigendian], ac_cv_c_bigendian,
227 [ac_cv_c_bigendian=unknown
228 # See if sys/param.h defines the BYTE_ORDER macro.
229 AC_TRY_COMPILE([#include <sys/types.h>
230 #include <sys/param.h>], [
231 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
233 #endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
234 AC_TRY_COMPILE([#include <sys/types.h>
235 #include <sys/param.h>], [
236 #if BYTE_ORDER != BIG_ENDIAN
238 #endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
239 if test $ac_cv_c_bigendian = unknown; then
240 AC_TRY_RUN([main () {
241 /* Are we little or big endian? From Harbison&Steele. */
245 char c[sizeof (long)];
248 exit (u.c[sizeof (long) - 1] == 1);
249 }], [ac_cv_c_bigendian=no], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=unknown])
251 if test $ac_cv_c_bigendian = unknown; then
252 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])
254 if test $ac_cv_c_bigendian = yes; then
255 AC_DEFINE(WORDS_BIGENDIAN)
259 dnl ---------------------------------------------------------------------------
260 dnl override AC_ARG_ENABLE/WITH to cache the results in .cache file
261 dnl ---------------------------------------------------------------------------
263 AC_DEFUN([WX_ARG_CACHE_INIT],
265 wx_arg_cache_file="configarg.cache"
266 echo "loading argument cache $wx_arg_cache_file"
267 rm -f ${wx_arg_cache_file}.tmp
268 touch ${wx_arg_cache_file}.tmp
269 touch ${wx_arg_cache_file}
272 AC_DEFUN([WX_ARG_CACHE_FLUSH],
274 echo "saving argument cache $wx_arg_cache_file"
275 mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
278 dnl this macro checks for a three-valued command line --with argument:
279 dnl possible arguments are 'yes', 'no', 'sys', or 'builtin'
280 dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
281 AC_DEFUN([WX_ARG_SYS_WITH],
283 AC_MSG_CHECKING([for --with-$1])
285 AC_ARG_WITH($1, [$2],
287 if test "$withval" = yes; then
288 ac_cv_use_$1='$3=yes'
289 elif test "$withval" = no; then
291 elif test "$withval" = sys; then
292 ac_cv_use_$1='$3=sys'
293 elif test "$withval" = builtin; then
294 ac_cv_use_$1='$3=builtin'
296 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
300 LINE=`grep "$3" ${wx_arg_cache_file}`
301 if test "x$LINE" != x ; then
307 ac_cv_use_$1='$3='$DEFAULT_$3
311 if test "$no_cache" != 1; then
312 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
315 if test "$$3" = yes; then
317 elif test "$$3" = no; then
319 elif test "$$3" = sys; then
320 AC_MSG_RESULT([system version])
321 elif test "$$3" = builtin; then
322 AC_MSG_RESULT([builtin version])
324 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
328 dnl this macro checks for a command line argument and caches the result
329 dnl usage: WX_ARG_WITH(option, helpmessage, variable-name)
330 AC_DEFUN([WX_ARG_WITH],
332 AC_MSG_CHECKING([for --with-$1])
334 AC_ARG_WITH($1, [$2],
336 if test "$withval" = yes; then
337 ac_cv_use_$1='$3=yes'
343 LINE=`grep "$3" ${wx_arg_cache_file}`
344 if test "x$LINE" != x ; then
350 ac_cv_use_$1='$3='$DEFAULT_$3
354 if test "$no_cache" != 1; then
355 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
358 if test "$$3" = yes; then
365 dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
366 dnl usage: WX_ARG_ENABLE(option, helpmessage, variable-name, enablestring)
368 dnl enablestring is a hack and allows to show "checking for --disable-foo"
369 dnl message when running configure instead of the default "checking for
370 dnl --enable-foo" one whih is useful for the options enabled by default
371 AC_DEFUN([WX_ARG_ENABLE],
374 AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
376 AC_ARG_ENABLE($1, [$2],
378 if test "$enableval" = yes; then
379 ac_cv_use_$1='$3=yes'
385 LINE=`grep "$3" ${wx_arg_cache_file}`
386 if test "x$LINE" != x ; then
392 ac_cv_use_$1='$3='$DEFAULT_$3
396 if test "$no_cache" != 1; then
397 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
400 if test "$$3" = yes; then
408 dnl ===========================================================================
409 dnl Linker features test
410 dnl ===========================================================================
412 dnl ---------------------------------------------------------------------------
413 dnl WX_VERSIONED_SYMBOLS checks whether the linker can create versioned
414 dnl symbols. If it can, sets LDFLAGS_VERSIONING to $CXX flags needed to use
415 dnl version script file named versionfile
417 dnl call WX_VERSIONED_SYMBOLS(versionfile)
418 dnl ---------------------------------------------------------------------------
419 AC_DEFUN([WX_VERSIONED_SYMBOLS],
423 dnl FIXME - doesn't work, Solaris linker doesn't accept wildcards
425 dnl dnl Check for known non-gcc cases:
426 dnl case "${host}" in
428 dnl if test "x$GCC" != "xyes" ; then
429 dnl LDFLAGS_VERSIONING="-M $1"
430 dnl found_versioning=yes
435 dnl Generic check for GCC or GCC-like behaviour (Intel C++, GCC):
436 if test $found_versioning = no ; then
437 AC_CACHE_CHECK([if the linker accepts --version-script], wx_cv_version_script,
439 echo "VER_1 { *; };" >conftest.sym
440 echo "int main() { return 0; }" >conftest.cpp
443 $CXX -o conftest.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
444 -Wl,--version-script,conftest.sym >/dev/null 2>conftest.stderr]) ; then
445 if test -s conftest.stderr ; then
446 wx_cv_version_script=no
448 wx_cv_version_script=yes
451 wx_cv_version_script=no
453 rm -f conftest.output conftest.stderr conftest.sym conftest.cpp
455 if test $wx_cv_version_script = yes ; then
456 LDFLAGS_VERSIONING="-Wl,--version-script,$1"
462 dnl ===========================================================================
463 dnl "3rd party" macros included here because they are not widely available
464 dnl ===========================================================================
466 dnl ---------------------------------------------------------------------------
467 dnl test for availability of iconv()
468 dnl ---------------------------------------------------------------------------
470 dnl From Bruno Haible.
474 dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
475 dnl those with the standalone portable GNU libiconv installed).
477 AC_ARG_WITH([libiconv-prefix],
478 [ --with-libiconv-prefix=DIR search for libiconv in DIR/include and DIR/lib], [
479 for dir in `echo "$withval" | tr : ' '`; do
480 if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
481 if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi
485 AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
486 am_cv_func_iconv="no, consider installing GNU libiconv"
488 AC_TRY_LINK([#include <stdlib.h>
490 [iconv_t cd = iconv_open("","");
491 iconv(cd,NULL,NULL,NULL,NULL);
493 am_cv_func_iconv=yes)
494 if test "$am_cv_func_iconv" != yes; then
497 AC_TRY_LINK([#include <stdlib.h>
499 [iconv_t cd = iconv_open("","");
500 iconv(cd,NULL,NULL,NULL,NULL);
503 am_cv_func_iconv=yes)
507 if test "$am_cv_func_iconv" = yes; then
508 AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
509 AC_CACHE_CHECK([if iconv needs const], wx_cv_func_iconv_const,
517 #if defined(__STDC__) || defined(__cplusplus)
518 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
524 wx_cv_func_iconv_const="no",
525 wx_cv_func_iconv_const="yes"
530 if test "x$wx_cv_func_iconv_const" = "xyes"; then
534 AC_DEFINE_UNQUOTED(ICONV_CONST, $iconv_const,
535 [Define as const if the declaration of iconv() needs const.])
538 if test "$am_cv_lib_iconv" = yes; then
544 dnl ---------------------------------------------------------------------------
545 dnl AC_SYS_LARGEFILE (partly based on the code from autoconf 2.5x)
546 dnl ---------------------------------------------------------------------------
548 dnl WX_SYS_LARGEFILE_TEST
550 dnl NB: original autoconf test was checking if compiler supported 6 bit off_t
551 dnl arithmetic properly but this failed miserably with gcc under Linux
552 dnl whereas the system still supports 64 bit files, so now simply check
553 dnl that off_t is big enough
554 define(WX_SYS_LARGEFILE_TEST,
556 unsigned int field: sizeof(off_t) == 8;
561 dnl WX_SYS_LARGEFILE_MACRO_VALUE(C-MACRO, VALUE, CACHE-VAR)
562 define(WX_SYS_LARGEFILE_MACRO_VALUE,
564 AC_CACHE_CHECK([for $1 value needed for large files], [$3],
566 AC_TRY_COMPILE([#define $1 $2
567 #include <sys/types.h>],
568 WX_SYS_LARGEFILE_TEST,
574 if test "$$3" != no; then
576 AC_DEFINE_UNQUOTED([$1], [$$3])
583 dnl By default, many hosts won't let programs access large files;
584 dnl one must use special compiler options to get large-file access to work.
585 dnl For more details about this brain damage please see:
586 dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html
587 AC_DEFUN([AC_SYS_LARGEFILE],
588 [AC_ARG_ENABLE(largefile,
589 [ --disable-largefile omit support for large files])
590 if test "$enable_largefile" != no; then
591 dnl _FILE_OFFSET_BITS==64 is needed for Linux, Solaris, ...
592 dnl _LARGE_FILES -- for AIX
594 WX_SYS_LARGEFILE_MACRO_VALUE(_FILE_OFFSET_BITS, 64, ac_cv_sys_file_offset_bits)
595 if test "x$wx_largefile" != "xyes"; then
596 WX_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES, 1, ac_cv_sys_large_files)
599 AC_MSG_CHECKING(if large file support is available)
600 if test "x$wx_largefile" = "xyes"; then
601 AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
603 AC_MSG_RESULT($wx_largefile)
608 dnl Available from the GNU Autoconf Macro Archive at:
609 dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_const_cast.html
611 AC_DEFUN([AC_CXX_CONST_CAST],
612 [AC_CACHE_CHECK(whether the compiler supports const_cast<>,
613 ac_cv_cxx_const_cast,
616 AC_TRY_COMPILE(,[int x = 0;const int& y = x;int& z = const_cast<int&>(y);return z;],
617 ac_cv_cxx_const_cast=yes, ac_cv_cxx_const_cast=no)
620 if test "$ac_cv_cxx_const_cast" = yes; then
621 AC_DEFINE(HAVE_CONST_CAST,,[define if the compiler supports const_cast<>])
625 dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_reinterpret_cast.html
626 AC_DEFUN([AC_CXX_REINTERPRET_CAST],
627 [AC_CACHE_CHECK(whether the compiler supports reinterpret_cast<>,
628 ac_cv_cxx_reinterpret_cast,
631 AC_TRY_COMPILE([#include <typeinfo>
632 class Base { public : Base () {} virtual void f () = 0;};
633 class Derived : public Base { public : Derived () {} virtual void f () {} };
634 class Unrelated { public : Unrelated () {} };
635 int g (Unrelated&) { return 0; }],[
636 Derived d;Base& b=d;Unrelated& e=reinterpret_cast<Unrelated&>(b);return g(e);],
637 ac_cv_cxx_reinterpret_cast=yes, ac_cv_cxx_reinterpret_cast=no)
640 if test "$ac_cv_cxx_reinterpret_cast" = yes; then
641 AC_DEFINE(HAVE_REINTERPRET_CAST,,
642 [define if the compiler supports reinterpret_cast<>])
646 dnl and http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_static_cast.html
647 AC_DEFUN([AC_CXX_STATIC_CAST],
648 [AC_CACHE_CHECK(whether the compiler supports static_cast<>,
649 ac_cv_cxx_static_cast,
652 AC_TRY_COMPILE([#include <typeinfo>
653 class Base { public : Base () {} virtual void f () = 0; };
654 class Derived : public Base { public : Derived () {} virtual void f () {} };
655 int g (Derived&) { return 0; }],[
656 Derived d; Base& b = d; Derived& s = static_cast<Derived&> (b); return g (s);],
657 ac_cv_cxx_static_cast=yes, ac_cv_cxx_static_cast=no)
660 if test "$ac_cv_cxx_static_cast" = yes; then
661 AC_DEFINE(HAVE_STATIC_CAST,, [define if the compiler supports static_cast<>])
665 dnl http://autoconf-archive.cryp.to/ac_cxx_dynamic_cast.html
666 AC_DEFUN([AC_CXX_DYNAMIC_CAST],
667 [AC_CACHE_CHECK(whether the compiler supports dynamic_cast<>,
668 ac_cv_cxx_dynamic_cast,
671 AC_TRY_COMPILE([#include <typeinfo>
672 class Base { public : Base () {} virtual void f () = 0;};
673 class Derived : public Base { public : Derived () {} virtual void f () {} };],[
674 Derived d; Base& b=d; return dynamic_cast<Derived*>(&b) ? 0 : 1;],
675 ac_cv_cxx_dynamic_cast=yes, ac_cv_cxx_dynamic_cast=no)
678 if test "$ac_cv_cxx_dynamic_cast" = yes; then
679 AC_DEFINE(HAVE_DYNAMIC_CAST,,[define if the compiler supports dynamic_cast<>])
684 dnl ---------------------------------------------------------------------------
685 dnl Compiler detection macros by David Elliott
686 dnl ---------------------------------------------------------------------------
689 dnl ===========================================================================
690 dnl Macros to detect non-GNU compilers (MetroWerks, XLC)
691 dnl ===========================================================================
693 dnl Based on autoconf _AC_LANG_COMPILER_GNU
694 AC_DEFUN([_AC_BAKEFILE_LANG_COMPILER_MWERKS],
695 [AC_CACHE_CHECK([whether we are using the Metrowerks _AC_LANG compiler],
696 [bakefile_cv_[]_AC_LANG_ABBREV[]_compiler_mwerks],
697 [AC_TRY_COMPILE([],[#ifndef __MWERKS__
701 [bakefile_compiler_mwerks=yes],
702 [bakefile_compiler_mwerks=no])
703 bakefile_cv_[]_AC_LANG_ABBREV[]_compiler_mwerks=$bakefile_compiler_mwerks
707 dnl Loosely based on autoconf AC_PROG_CC
708 dnl TODO: Maybe this should wrap the call to AC_PROG_CC and be used instead.
709 AC_DEFUN([AC_BAKEFILE_PROG_MWCC],
711 _AC_BAKEFILE_LANG_COMPILER_MWERKS
712 MWCC=`test $bakefile_cv_c_compiler_mwerks = yes && echo yes`
716 dnl Loosely based on autoconf AC_PROG_CXX
717 dnl TODO: Maybe this should wrap the call to AC_PROG_CXX and be used instead.
718 AC_DEFUN([AC_BAKEFILE_PROG_MWCXX],
720 _AC_BAKEFILE_LANG_COMPILER_MWERKS
721 MWCXX=`test $bakefile_cv_cxx_compiler_mwerks = yes && echo yes`
725 dnl Based on autoconf _AC_LANG_COMPILER_GNU
726 AC_DEFUN([_AC_BAKEFILE_LANG_COMPILER_XLC],
727 [AC_CACHE_CHECK([whether we are using the IBM xlC _AC_LANG compiler],
728 [wx_cv_[]_AC_LANG_ABBREV[]_compiler_xlc],
729 [AC_TRY_COMPILE([],[#ifndef __xlC__
733 [wx_compiler_xlc=yes],
734 [wx_compiler_xlc=no])
735 wx_cv_[]_AC_LANG_ABBREV[]_compiler_xlc=$wx_compiler_xlc
739 dnl Loosely based on autoconf AC_PROG_CC
740 AC_DEFUN([AC_BAKEFILE_PROG_XLCC],
742 _AC_BAKEFILE_LANG_COMPILER_XLC
743 XLCC=`test $wx_cv_c_compiler_xlc = yes && echo yes`
747 dnl Loosely based on autoconf AC_PROG_CXX
748 AC_DEFUN([AC_BAKEFILE_PROG_XLCXX],
750 _AC_BAKEFILE_LANG_COMPILER_XLC
751 XLCXX=`test $wx_cv_cxx_compiler_xlc = yes && echo yes`
756 dnl ===========================================================================
757 dnl macros to detect specialty compiler options
758 dnl ===========================================================================
760 dnl Figure out if we need to pass -ext o to compiler (MetroWerks)
761 AC_DEFUN([AC_BAKEFILE_METROWERKS_EXTO],
762 [AC_CACHE_CHECK([if the _AC_LANG compiler requires -ext o], wx_cv_[]_AC_LANG_ABBREV[]_exto,
763 dnl First create an empty conf test
764 [AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
765 dnl Now remove .o and .c.o or .cc.o
766 rm -f conftest.$ac_objext conftest.$ac_ext.o
767 dnl Now compile the test
768 AS_IF([AC_TRY_EVAL(ac_compile)],
769 dnl If the test succeeded look for conftest.c.o or conftest.cc.o
770 [for ac_file in `(ls conftest.* 2>/dev/null)`; do
773 wx_cv_[]_AC_LANG_ABBREV[]_exto="-ext o"
779 [AC_MSG_FAILURE([cannot figure out if compiler needs -ext o: cannot compile])
782 rm -f conftest.$ac_ext.o conftest.$ac_objext conftest.$ac_ext
783 ]) dnl AC_CACHE_CHECK
785 if test "x$wx_cv_[]_AC_LANG_ABBREV[]_exto" '!=' "x"; then
786 if test "[]_AC_LANG_ABBREV[]" = "c"; then
787 CFLAGS="$wx_cv_[]_AC_LANG_ABBREV[]_exto $CFLAGS"
789 if test "[]_AC_LANG_ABBREV[]" = "cxx"; then
790 CXXFLAGS="$wx_cv_[]_AC_LANG_ABBREV[]_exto $CXXFLAGS"
796 dnl ===========================================================================
797 dnl Macros to do all of the compiler detections as one macro
798 dnl ===========================================================================
799 AC_DEFUN([AC_BAKEFILE_PROG_CC],
802 AC_BAKEFILE_METROWERKS_EXTO
803 dnl By the time we find out that we need -ext o some tests have failed.
804 if test "x$wx_cv_c_exto" '!=' "x"; then
805 unset ac_cv_prog_cc_g
808 AC_BAKEFILE_PROG_MWCC
809 AC_BAKEFILE_PROG_XLCC
812 AC_DEFUN([AC_BAKEFILE_PROG_CXX],
815 AC_BAKEFILE_METROWERKS_EXTO
816 dnl By the time we find out that we need -ext o some tests have failed.
817 if test "x$wx_cv_cxx_exto" '!=' "x"; then
818 unset ac_cv_prog_cxx_g
821 AC_BAKEFILE_PROG_MWCXX
822 AC_BAKEFILE_PROG_XLCXX
826 # Configure paths for GTK+
827 # Owen Taylor 1997-2001
829 dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
830 dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES,
831 dnl pass to pkg-config
833 AC_DEFUN([AM_PATH_GTK_2_0],
835 dnl Get the cflags and libraries from pkg-config
837 AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run a test GTK+ program],
838 , enable_gtktest=yes)
840 pkg_config_args=gtk+-2.0
845 pkg_config_args="$pkg_config_args gthread-2.0"
852 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
854 if test x$PKG_CONFIG != xno ; then
855 if pkg-config --atleast-pkgconfig-version 0.7 ; then
858 echo "*** pkg-config too old; version 0.7 or better required."
866 min_gtk_version=ifelse([$1], ,2.0.0,$1)
867 AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version)
869 if test x$PKG_CONFIG != xno ; then
870 ## don't try to run the test against uninstalled libtool libs
871 if $PKG_CONFIG --uninstalled $pkg_config_args; then
872 echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH"
876 if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then
883 if test x"$no_gtk" = x ; then
884 GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags`
885 GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs`
886 gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
887 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
888 gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
889 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
890 gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
891 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
892 if test "x$enable_gtktest" = "xyes" ; then
893 ac_save_CFLAGS="$CFLAGS"
895 CFLAGS="$CFLAGS $GTK_CFLAGS"
896 LIBS="$GTK_LIBS $LIBS"
898 dnl Now check if the installed GTK+ is sufficiently new. (Also sanity
899 dnl checks the results of pkg-config to some extent)
910 int major, minor, micro;
913 system ("touch conf.gtktest");
915 /* HP/UX 9 (%@#!) writes to sscanf strings */
916 tmp_version = g_strdup("$min_gtk_version");
917 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
918 printf("%s, bad version string\n", "$min_gtk_version");
922 if ((gtk_major_version != $gtk_config_major_version) ||
923 (gtk_minor_version != $gtk_config_minor_version) ||
924 (gtk_micro_version != $gtk_config_micro_version))
926 printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
927 $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
928 gtk_major_version, gtk_minor_version, gtk_micro_version);
929 printf ("*** was found! If pkg-config was correct, then it is best\n");
930 printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
931 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
932 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
933 printf("*** required on your system.\n");
934 printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
935 printf("*** to point to the correct configuration files\n");
937 else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
938 (gtk_minor_version != GTK_MINOR_VERSION) ||
939 (gtk_micro_version != GTK_MICRO_VERSION))
941 printf("*** GTK+ header files (version %d.%d.%d) do not match\n",
942 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
943 printf("*** library (version %d.%d.%d)\n",
944 gtk_major_version, gtk_minor_version, gtk_micro_version);
948 if ((gtk_major_version > major) ||
949 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
950 ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))
956 printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",
957 gtk_major_version, gtk_minor_version, gtk_micro_version);
958 printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",
959 major, minor, micro);
960 printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
962 printf("*** If you have already installed a sufficiently new version, this error\n");
963 printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
964 printf("*** being found. The easiest way to fix this is to remove the old version\n");
965 printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n");
966 printf("*** correct copy of pkg-config. (In this case, you will have to\n");
967 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
968 printf("*** so that the correct libraries are found at run-time))\n");
973 ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
974 CFLAGS="$ac_save_CFLAGS"
978 if test "x$no_gtk" = x ; then
979 AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version))
980 ifelse([$2], , :, [$2])
983 if test "$PKG_CONFIG" = "no" ; then
984 echo "*** A new enough version of pkg-config was not found."
985 echo "*** See http://pkgconfig.sourceforge.net"
987 if test -f conf.gtktest ; then
990 echo "*** Could not run GTK+ test program, checking why..."
991 ac_save_CFLAGS="$CFLAGS"
993 CFLAGS="$CFLAGS $GTK_CFLAGS"
994 LIBS="$LIBS $GTK_LIBS"
998 ], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
999 [ echo "*** The test program compiled, but did not run. This usually means"
1000 echo "*** that the run-time linker is not finding GTK+ or finding the wrong"
1001 echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your"
1002 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1003 echo "*** to the installed location Also, make sure you have run ldconfig if that"
1004 echo "*** is required on your system"
1006 echo "*** If you have an old version installed, it is best to remove it, although"
1007 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
1008 [ echo "*** The test program failed to compile or link. See the file config.log for the"
1009 echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."])
1010 CFLAGS="$ac_save_CFLAGS"
1011 LIBS="$ac_save_LIBS"
1016 ifelse([$3], , :, [$3])
1018 AC_SUBST(GTK_CFLAGS)
1023 # Configure paths for GTK+
1024 # Owen Taylor 97-11-3
1026 dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
1027 dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
1029 AC_DEFUN(AM_PATH_GTK,
1031 dnl Get the cflags and libraries from the gtk-config script
1033 AC_ARG_WITH(gtk-prefix,[ --with-gtk-prefix=PFX Prefix where GTK is installed (optional)],
1034 gtk_config_prefix="$withval", gtk_config_prefix="")
1035 AC_ARG_WITH(gtk-exec-prefix,[ --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)],
1036 gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="")
1037 AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program],
1038 , enable_gtktest=yes)
1044 gtk_config_args="$gtk_config_args gthread"
1049 if test x$gtk_config_exec_prefix != x ; then
1050 gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
1051 if test x${GTK_CONFIG+set} != xset ; then
1052 GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
1055 if test x$gtk_config_prefix != x ; then
1056 gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
1057 if test x${GTK_CONFIG+set} != xset ; then
1058 GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
1062 AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
1063 min_gtk_version=ifelse([$1], ,0.99.7,$1)
1064 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
1066 if test "$GTK_CONFIG" = "no" ; then
1069 GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
1070 GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
1071 gtk_config_major_version=`$GTK_CONFIG $gtk_config_args --version | \
1072 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
1073 gtk_config_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
1074 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
1075 gtk_config_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
1076 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
1077 if test "x$enable_gtktest" = "xyes" ; then
1078 ac_save_CFLAGS="$CFLAGS"
1079 ac_save_LIBS="$LIBS"
1080 CFLAGS="$CFLAGS $GTK_CFLAGS"
1081 LIBS="$GTK_LIBS $LIBS"
1083 dnl Now check if the installed GTK is sufficiently new. (Also sanity
1084 dnl checks the results of gtk-config to some extent
1088 #include <gtk/gtk.h>
1095 int major, minor, micro;
1098 system ("touch conf.gtktest");
1100 /* HP/UX 9 (%@#!) writes to sscanf strings */
1101 tmp_version = g_strdup("$min_gtk_version");
1102 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
1103 printf("%s, bad version string\n", "$min_gtk_version");
1107 if ((gtk_major_version != $gtk_config_major_version) ||
1108 (gtk_minor_version != $gtk_config_minor_version) ||
1109 (gtk_micro_version != $gtk_config_micro_version))
1111 printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
1112 $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
1113 gtk_major_version, gtk_minor_version, gtk_micro_version);
1114 printf ("*** was found! If gtk-config was correct, then it is best\n");
1115 printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
1116 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
1117 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
1118 printf("*** required on your system.\n");
1119 printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n");
1120 printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
1121 printf("*** before re-running configure\n");
1123 #if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION)
1124 else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
1125 (gtk_minor_version != GTK_MINOR_VERSION) ||
1126 (gtk_micro_version != GTK_MICRO_VERSION))
1128 printf("*** GTK+ header files (version %d.%d.%d) do not match\n",
1129 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
1130 printf("*** library (version %d.%d.%d)\n",
1131 gtk_major_version, gtk_minor_version, gtk_micro_version);
1133 #endif /* defined (GTK_MAJOR_VERSION) ... */
1136 if ((gtk_major_version > major) ||
1137 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
1138 ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))
1144 printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",
1145 gtk_major_version, gtk_minor_version, gtk_micro_version);
1146 printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",
1147 major, minor, micro);
1148 printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
1150 printf("*** If you have already installed a sufficiently new version, this error\n");
1151 printf("*** probably means that the wrong copy of the gtk-config shell script is\n");
1152 printf("*** being found. The easiest way to fix this is to remove the old version\n");
1153 printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n");
1154 printf("*** correct copy of gtk-config. (In this case, you will have to\n");
1155 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
1156 printf("*** so that the correct libraries are found at run-time))\n");
1161 ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1162 CFLAGS="$ac_save_CFLAGS"
1163 LIBS="$ac_save_LIBS"
1166 if test "x$no_gtk" = x ; then
1168 ifelse([$2], , :, [$2])
1171 if test "$GTK_CONFIG" = "no" ; then
1172 echo "*** The gtk-config script installed by GTK could not be found"
1173 echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
1174 echo "*** your path, or set the GTK_CONFIG environment variable to the"
1175 echo "*** full path to gtk-config."
1177 if test -f conf.gtktest ; then
1180 echo "*** Could not run GTK test program, checking why..."
1181 CFLAGS="$CFLAGS $GTK_CFLAGS"
1182 LIBS="$LIBS $GTK_LIBS"
1184 #include <gtk/gtk.h>
1186 ], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
1187 [ echo "*** The test program compiled, but did not run. This usually means"
1188 echo "*** that the run-time linker is not finding GTK or finding the wrong"
1189 echo "*** version of GTK. If it is not finding GTK, you'll need to set your"
1190 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1191 echo "*** to the installed location Also, make sure you have run ldconfig if that"
1192 echo "*** is required on your system"
1194 echo "*** If you have an old version installed, it is best to remove it, although"
1195 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
1197 echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
1198 echo "*** came with the system with the command"
1200 echo "*** rpm --erase --nodeps gtk gtk-devel" ],
1201 [ echo "*** The test program failed to compile or link. See the file config.log for the"
1202 echo "*** exact error that occured. This usually means GTK was incorrectly installed"
1203 echo "*** or that you have moved GTK since it was installed. In the latter case, you"
1204 echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])
1205 CFLAGS="$ac_save_CFLAGS"
1206 LIBS="$ac_save_LIBS"
1211 ifelse([$3], , :, [$3])
1213 AC_SUBST(GTK_CFLAGS)
1219 dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1220 dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1221 dnl also defines GSTUFF_PKG_ERRORS on error
1222 AC_DEFUN(PKG_CHECK_MODULES, [
1225 if test -z "$PKG_CONFIG"; then
1226 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1229 if test "$PKG_CONFIG" = "no" ; then
1230 echo "*** The pkg-config script could not be found. Make sure it is"
1231 echo "*** in your path, or set the PKG_CONFIG environment variable"
1232 echo "*** to the full path to pkg-config."
1233 echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
1235 PKG_CONFIG_MIN_VERSION=0.9.0
1236 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1237 AC_MSG_CHECKING(for $2)
1239 if $PKG_CONFIG --exists "$2" ; then
1243 AC_MSG_CHECKING($1_CFLAGS)
1244 $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
1245 AC_MSG_RESULT($$1_CFLAGS)
1247 AC_MSG_CHECKING($1_LIBS)
1248 $1_LIBS=`$PKG_CONFIG --libs "$2"`
1249 AC_MSG_RESULT($$1_LIBS)
1253 ## If we have a custom action on failure, don't print errors, but
1254 ## do set a variable so people can do so.
1255 $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
1256 ifelse([$4], ,echo $$1_PKG_ERRORS,)
1262 echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1263 echo "*** See http://www.freedesktop.org/software/pkgconfig"
1267 if test $succeeded = yes; then
1268 ifelse([$3], , :, [$3])
1270 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])
1276 # Configure paths for SDL
1277 # Sam Lantinga 9/21/99
1278 # stolen from Manish Singh
1279 # stolen back from Frank Belew
1280 # stolen from Manish Singh
1281 # Shamelessly stolen from Owen Taylor
1283 dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
1284 dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
1286 AC_DEFUN([AM_PATH_SDL],
1288 dnl Get the cflags and libraries from the sdl-config script
1290 AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
1291 sdl_prefix="$withval", sdl_prefix="")
1292 AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
1293 sdl_exec_prefix="$withval", sdl_exec_prefix="")
1294 AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
1295 , enable_sdltest=yes)
1297 if test x$sdl_exec_prefix != x ; then
1298 sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"
1299 if test x${SDL_CONFIG+set} != xset ; then
1300 SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config
1303 if test x$sdl_prefix != x ; then
1304 sdl_args="$sdl_args --prefix=$sdl_prefix"
1305 if test x${SDL_CONFIG+set} != xset ; then
1306 SDL_CONFIG=$sdl_prefix/bin/sdl-config
1310 AC_REQUIRE([AC_CANONICAL_TARGET])
1311 PATH="$prefix/bin:$prefix/usr/bin:$PATH"
1312 AC_PATH_PROG(SDL_CONFIG, sdl-config, no, [$PATH])
1313 min_sdl_version=ifelse([$1], ,0.11.0,$1)
1314 AC_MSG_CHECKING(for SDL - version >= $min_sdl_version)
1316 if test "$SDL_CONFIG" = "no" ; then
1319 SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
1320 SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
1322 sdl_major_version=`$SDL_CONFIG $sdl_args --version | \
1323 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
1324 sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \
1325 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
1326 sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \
1327 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
1328 if test "x$enable_sdltest" = "xyes" ; then
1329 ac_save_CFLAGS="$CFLAGS"
1330 ac_save_CXXFLAGS="$CXXFLAGS"
1331 ac_save_LIBS="$LIBS"
1332 CFLAGS="$CFLAGS $SDL_CFLAGS"
1333 CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
1334 LIBS="$LIBS $SDL_LIBS"
1336 dnl Now check if the installed SDL is sufficiently new. (Also sanity
1337 dnl checks the results of sdl-config to some extent
1347 my_strdup (char *str)
1353 new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
1354 strcpy (new_str, str);
1362 int main (int argc, char *argv[])
1364 int major, minor, micro;
1367 /* This hangs on some systems (?)
1368 system ("touch conf.sdltest");
1370 { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
1372 /* HP/UX 9 (%@#!) writes to sscanf strings */
1373 tmp_version = my_strdup("$min_sdl_version");
1374 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
1375 printf("%s, bad version string\n", "$min_sdl_version");
1379 if (($sdl_major_version > major) ||
1380 (($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
1381 (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
1387 printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
1388 printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro);
1389 printf("*** best to upgrade to the required version.\n");
1390 printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n");
1391 printf("*** to point to the correct copy of sdl-config, and remove the file\n");
1392 printf("*** config.cache before re-running configure\n");
1397 ],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1398 CFLAGS="$ac_save_CFLAGS"
1399 CXXFLAGS="$ac_save_CXXFLAGS"
1400 LIBS="$ac_save_LIBS"
1403 if test "x$no_sdl" = x ; then
1405 ifelse([$2], , :, [$2])
1408 if test "$SDL_CONFIG" = "no" ; then
1409 echo "*** The sdl-config script installed by SDL could not be found"
1410 echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
1411 echo "*** your path, or set the SDL_CONFIG environment variable to the"
1412 echo "*** full path to sdl-config."
1414 if test -f conf.sdltest ; then
1417 echo "*** Could not run SDL test program, checking why..."
1418 CFLAGS="$CFLAGS $SDL_CFLAGS"
1419 CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
1420 LIBS="$LIBS $SDL_LIBS"
1425 int main(int argc, char *argv[])
1428 #define main K_and_R_C_main
1430 [ echo "*** The test program compiled, but did not run. This usually means"
1431 echo "*** that the run-time linker is not finding SDL or finding the wrong"
1432 echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
1433 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1434 echo "*** to the installed location Also, make sure you have run ldconfig if that"
1435 echo "*** is required on your system"
1437 echo "*** If you have an old version installed, it is best to remove it, although"
1438 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
1439 [ echo "*** The test program failed to compile or link. See the file config.log for the"
1440 echo "*** exact error that occured. This usually means SDL was incorrectly installed"
1441 echo "*** or that you have moved SDL since it was installed. In the latter case, you"
1442 echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
1443 CFLAGS="$ac_save_CFLAGS"
1444 CXXFLAGS="$ac_save_CXXFLAGS"
1445 LIBS="$ac_save_LIBS"
1450 ifelse([$3], , :, [$3])
1452 AC_SUBST(SDL_CFLAGS)
1457 dnl Perform a check for a GStreamer element using gst-inspect
1458 dnl Thomas Vander Stichele <thomas at apestaart dot org>
1459 dnl Last modification: 25/01/2005
1461 dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
1463 AC_DEFUN([AM_GST_ELEMENT_CHECK],
1465 if test "x$GST_INSPECT" == "x"; then
1466 AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
1469 if test "x$GST_INSPECT" != "x"; then
1470 AC_MSG_CHECKING(GStreamer element $1)
1471 if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
1472 AC_MSG_RESULT(found.)
1475 AC_MSG_RESULT(not found.)
1481 dnl ---------------------------------------------------------------------------
1482 dnl Support macros for makefiles generated by BAKEFILE.
1483 dnl ---------------------------------------------------------------------------
1485 dnl Lots of compiler & linker detection code contained here was taken from
1486 dnl wxWindows configure.in script (see http://www.wxwindows.org)
1490 dnl ---------------------------------------------------------------------------
1491 dnl AC_BAKEFILE_GNUMAKE
1493 dnl Detects GNU make
1494 dnl ---------------------------------------------------------------------------
1496 AC_DEFUN([AC_BAKEFILE_GNUMAKE],
1498 dnl does make support "-include" (only GNU make does AFAIK)?
1499 AC_CACHE_CHECK([if make is GNU make], bakefile_cv_prog_makeisgnu,
1501 if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
1502 egrep -s GNU > /dev/null); then
1503 bakefile_cv_prog_makeisgnu="yes"
1505 bakefile_cv_prog_makeisgnu="no"
1509 if test "x$bakefile_cv_prog_makeisgnu" = "xyes"; then
1514 AC_SUBST(IF_GNU_MAKE)
1517 dnl ---------------------------------------------------------------------------
1518 dnl AC_BAKEFILE_PLATFORM
1520 dnl Detects platform and sets PLATFORM_XXX variables accordingly
1521 dnl ---------------------------------------------------------------------------
1523 AC_DEFUN([AC_BAKEFILE_PLATFORM],
1534 if test "x$BAKEFILE_FORCE_PLATFORM" = "x"; then
1535 case "${BAKEFILE_HOST}" in
1536 *-*-cygwin* | *-*-mingw32* )
1542 *-pc-os2_emx | *-pc-os2-emx )
1552 powerpc-apple-macos* )
1561 case "$BAKEFILE_FORCE_PLATFORM" in
1582 AC_MSG_ERROR([Unknown platform: $BAKEFILE_FORCE_PLATFORM])
1587 AC_SUBST(PLATFORM_UNIX)
1588 AC_SUBST(PLATFORM_WIN32)
1589 AC_SUBST(PLATFORM_MSDOS)
1590 AC_SUBST(PLATFORM_MAC)
1591 AC_SUBST(PLATFORM_MACOS)
1592 AC_SUBST(PLATFORM_MACOSX)
1593 AC_SUBST(PLATFORM_OS2)
1594 AC_SUBST(PLATFORM_BEOS)
1598 dnl ---------------------------------------------------------------------------
1599 dnl AC_BAKEFILE_PLATFORM_SPECIFICS
1601 dnl Sets misc platform-specific settings
1602 dnl ---------------------------------------------------------------------------
1604 AC_DEFUN([AC_BAKEFILE_PLATFORM_SPECIFICS],
1606 AC_ARG_ENABLE([omf], AS_HELP_STRING([--enable-omf],
1607 [use OMF object format (OS/2)]),
1608 [bk_os2_use_omf="$enableval"])
1610 case "${BAKEFILE_HOST}" in
1612 dnl For Unix to MacOS X porting instructions, see:
1613 dnl http://fink.sourceforge.net/doc/porting/porting.html
1614 CFLAGS="$CFLAGS -fno-common"
1615 CXXFLAGS="$CXXFLAGS -fno-common"
1618 *-pc-os2_emx | *-pc-os2-emx )
1619 if test "x$bk_os2_use_omf" = "xyes" ; then
1622 LDFLAGS="-Zomf $LDFLAGS"
1623 CFLAGS="-Zomf $CFLAGS"
1624 CXXFLAGS="-Zomf $CXXFLAGS"
1632 LDFLAGS="-L/boot/develop/lib/x86 $LDFLAGS"
1637 dnl ---------------------------------------------------------------------------
1638 dnl AC_BAKEFILE_SUFFIXES
1640 dnl Detects shared various suffixes for shared libraries, libraries, programs,
1642 dnl ---------------------------------------------------------------------------
1644 AC_DEFUN([AC_BAKEFILE_SUFFIXES],
1647 SO_SUFFIX_MODULE="so"
1655 case "${BAKEFILE_HOST}" in
1658 SO_SUFFIX_MODULE="sl"
1662 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
1663 dnl Both archive libraries and shared libraries on AIX have an
1664 dnl .a extension. This will explain why you can't link with an
1665 dnl .so and why it works with the name changed to .a.
1667 SO_SUFFIX_MODULE="a"
1669 *-*-cygwin* | *-*-mingw32* )
1671 SO_SUFFIX_MODULE="dll"
1672 DLLIMP_SUFFIX="dll.a"
1680 *-pc-os2_emx | *-pc-os2-emx )
1682 SO_SUFFIX_MODULE="dll"
1683 DLLIMP_SUFFIX=$OS2_LIBEXT
1687 LIBEXT=".$OS2_LIBEXT"
1691 SO_SUFFIX_MODULE="bundle"
1695 if test "x$DLLIMP_SUFFIX" = "x" ; then
1696 DLLIMP_SUFFIX="$SO_SUFFIX"
1700 AC_SUBST(SO_SUFFIX_MODULE)
1701 AC_SUBST(DLLIMP_SUFFIX)
1706 AC_SUBST(DLLPREFIX_MODULE)
1710 dnl ---------------------------------------------------------------------------
1711 dnl AC_BAKEFILE_SHARED_LD
1713 dnl Detects command for making shared libraries, substitutes SHARED_LD_CC
1714 dnl and SHARED_LD_CXX.
1715 dnl ---------------------------------------------------------------------------
1717 AC_DEFUN([AC_BAKEFILE_SHARED_LD],
1719 dnl the extra compiler flags needed for compilation of shared library
1721 if test "x$GCC" = "xyes"; then
1722 dnl the switch for gcc is the same under all platforms
1726 dnl Defaults for GCC and ELF .so shared libs:
1727 SHARED_LD_CC="\$(CC) -shared ${PIC_FLAG} -o"
1728 SHARED_LD_CXX="\$(CXX) -shared ${PIC_FLAG} -o"
1730 case "${BAKEFILE_HOST}" in
1732 dnl default settings are good for gcc but not for the native HP-UX
1733 if test "x$GCC" != "xyes"; then
1734 dnl no idea why it wants it, but it does
1735 LDFLAGS="$LDFLAGS -L/usr/lib"
1737 SHARED_LD_CC="${CC} -b -o"
1738 SHARED_LD_CXX="${CXX} -b -o"
1744 if test "x$GCC" != "xyes"; then
1745 AC_CACHE_CHECK([for Intel compiler], bakefile_cv_prog_icc,
1749 #ifndef __INTEL_COMPILER
1753 bakefile_cv_prog_icc=yes,
1754 bakefile_cv_prog_icc=no
1757 if test "$bakefile_cv_prog_icc" = "yes"; then
1764 if test "x$GCC" != xyes ; then
1765 SHARED_LD_CC="${CC} -G -o"
1766 SHARED_LD_CXX="${CXX} -G -o"
1772 dnl Most apps benefit from being fully binded (its faster and static
1773 dnl variables initialized at startup work).
1774 dnl This can be done either with the exe linker flag -Wl,-bind_at_load
1775 dnl or with a double stage link in order to create a single module
1776 dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
1778 dnl If using newer dev tools then there is a -single_module flag that
1779 dnl we can use to do this, otherwise we'll need to use a helper
1780 dnl script. Check the version of gcc to see which way we can go:
1781 AC_CACHE_CHECK([for gcc 3.1 or later], wx_cv_gcc31, [
1784 #if (__GNUC__ < 3) || \
1785 ((__GNUC__ == 3) && (__GNUC_MINOR__ < 1))
1797 if test "$wx_cv_gcc31" = "no"; then
1798 AC_BAKEFILE_CREATE_FILE_SHARED_LD_SH
1799 chmod +x shared-ld-sh
1801 dnl Use the shared-ld-sh helper script
1802 SHARED_LD_CC="`pwd`/shared-ld-sh -dynamiclib -headerpad_max_install_names -o"
1803 SHARED_LD_MODULE_CC="`pwd`/shared-ld-sh -bundle -headerpad_max_install_names -o"
1804 SHARED_LD_CXX="$SHARED_LD_CC"
1805 SHARED_LD_MODULE_CXX="$SHARED_LD_MODULE_CC"
1807 dnl Use the -single_module flag and let the linker do it for us
1808 SHARED_LD_CC="\${CC} -dynamiclib -single_module -headerpad_max_install_names -o"
1809 SHARED_LD_MODULE_CC="\${CC} -bundle -single_module -headerpad_max_install_names -o"
1810 SHARED_LD_CXX="\${CXX} -dynamiclib -single_module -headerpad_max_install_names -o"
1811 SHARED_LD_MODULE_CXX="\${CXX} -bundle -single_module -headerpad_max_install_names -o"
1814 PIC_FLAG="-dynamic -fPIC"
1818 dnl default settings are ok for gcc
1819 if test "x$GCC" != "xyes"; then
1820 dnl the abs path below used to be hardcoded here so I guess it must
1821 dnl be some sort of standard location under AIX?
1822 AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
1823 makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
1824 dnl FIXME - what about makeCSharedLib?
1825 SHARED_LD_CC="$AIX_CC_LD -p 0 -o"
1826 SHARED_LD_CXX="$AIX_CXX_LD -p 0 -o"
1831 dnl can't use gcc under BeOS for shared library creation because it
1832 dnl complains about missing 'main'
1833 SHARED_LD_CC="${LD} -nostart -o"
1834 SHARED_LD_CXX="${LD} -nostart -o"
1838 dnl default settings are ok for gcc
1839 if test "x$GCC" != "xyes"; then
1844 *-*-cygwin* | *-*-mingw32* )
1846 SHARED_LD_CC="\$(CC) -shared -o"
1847 SHARED_LD_CXX="\$(CXX) -shared -o"
1850 *-pc-os2_emx | *-pc-os2-emx )
1851 SHARED_LD_CC="`pwd`/dllar.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
1852 SHARED_LD_CXX="`pwd`/dllar.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
1854 AC_BAKEFILE_CREATE_FILE_DLLAR_SH
1858 powerpc-apple-macos* | \
1859 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \
1868 AC_MSG_ERROR(unknown system type $BAKEFILE_HOST.)
1871 if test "x$PIC_FLAG" != "x" ; then
1872 PIC_FLAG="$PIC_FLAG -DPIC"
1875 if test "x$SHARED_LD_MODULE_CC" = "x" ; then
1876 SHARED_LD_MODULE_CC="$SHARED_LD_CC"
1878 if test "x$SHARED_LD_MODULE_CXX" = "x" ; then
1879 SHARED_LD_MODULE_CXX="$SHARED_LD_CXX"
1882 AC_SUBST(SHARED_LD_CC)
1883 AC_SUBST(SHARED_LD_CXX)
1884 AC_SUBST(SHARED_LD_MODULE_CC)
1885 AC_SUBST(SHARED_LD_MODULE_CXX)
1890 dnl ---------------------------------------------------------------------------
1891 dnl AC_BAKEFILE_SHARED_VERSIONS
1893 dnl Detects linker options for attaching versions (sonames) to shared libs.
1894 dnl ---------------------------------------------------------------------------
1896 AC_DEFUN([AC_BAKEFILE_SHARED_VERSIONS],
1905 case "${BAKEFILE_HOST}" in
1906 *-*-linux* | *-*-freebsd* )
1907 SONAME_FLAG="-Wl,-soname,"
1927 AC_SUBST(USE_SOVERSION)
1928 AC_SUBST(USE_SOVERLINUX)
1929 AC_SUBST(USE_SOVERSOLARIS)
1930 AC_SUBST(USE_MACVERSION)
1931 AC_SUBST(USE_SOSYMLINKS)
1932 AC_SUBST(SONAME_FLAG)
1936 dnl ---------------------------------------------------------------------------
1937 dnl AC_BAKEFILE_DEPS
1939 dnl Detects available C/C++ dependency tracking options
1940 dnl ---------------------------------------------------------------------------
1942 AC_DEFUN([AC_BAKEFILE_DEPS],
1944 AC_MSG_CHECKING([for dependency tracking method])
1947 if test "x$GCC" = "xyes"; then
1950 case "${BAKEFILE_HOST}" in
1952 dnl -cpp-precomp (the default) conflicts with -MMD option
1953 dnl used by bk-deps (see also http://developer.apple.com/documentation/Darwin/Conceptual/PortingUnix/compiling/chapter_4_section_3.html)
1954 DEPSFLAG_GCC="-no-cpp-precomp -MMD"
1960 AC_MSG_RESULT([gcc])
1961 elif test "x$MWCC" = "xyes"; then
1965 AC_MSG_RESULT([mwcc])
1967 AC_MSG_RESULT([none])
1970 if test $DEPS_TRACKING = 1 ; then
1971 AC_BAKEFILE_CREATE_FILE_BK_DEPS
1975 AC_SUBST(DEPS_TRACKING)
1978 dnl ---------------------------------------------------------------------------
1979 dnl AC_BAKEFILE_CHECK_BASIC_STUFF
1981 dnl Checks for presence of basic programs, such as C and C++ compiler, "ranlib"
1983 dnl ---------------------------------------------------------------------------
1985 AC_DEFUN([AC_BAKEFILE_CHECK_BASIC_STUFF],
1994 AC_CHECK_TOOL(AR, ar, ar)
1995 AC_CHECK_TOOL(STRIP, strip, :)
1996 AC_CHECK_TOOL(NM, nm, :)
1998 case ${BAKEFILE_HOST} in
2000 dnl HP-UX install doesn't handle the "-d" switch so don't
2002 INSTALL_DIR="mkdir -p"
2004 *) INSTALL_DIR="$INSTALL -d"
2007 AC_SUBST(INSTALL_DIR)
2010 case ${BAKEFILE_HOST} in
2011 *-*-cygwin* | *-*-mingw32* )
2012 LDFLAGS_GUI="-mwindows"
2014 AC_SUBST(LDFLAGS_GUI)
2018 dnl ---------------------------------------------------------------------------
2019 dnl AC_BAKEFILE_RES_COMPILERS
2021 dnl Checks for presence of resource compilers for win32 or mac
2022 dnl ---------------------------------------------------------------------------
2024 AC_DEFUN([AC_BAKEFILE_RES_COMPILERS],
2029 case ${BAKEFILE_HOST} in
2030 *-*-cygwin* | *-*-mingw32* )
2031 dnl Check for win32 resources compiler:
2032 if test "$build" != "$host" ; then
2033 RESCOMP=$host_alias-windres
2035 AC_CHECK_PROG(RESCOMP, windres, windres, windres)
2039 *-*-darwin* | powerpc-apple-macos* )
2040 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
2041 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
2049 dnl ---------------------------------------------------------------------------
2050 dnl AC_BAKEFILE_PRECOMP_HEADERS
2052 dnl Check for precompiled headers support (GCC >= 3.4)
2053 dnl ---------------------------------------------------------------------------
2055 AC_DEFUN([AC_BAKEFILE_PRECOMP_HEADERS],
2058 AC_ARG_ENABLE([precomp-headers],
2059 AS_HELP_STRING([--disable-precomp-headers],
2060 [don't use precompiled headers even if compiler can]),
2061 [bk_use_pch="$enableval"])
2065 if test "x$bk_use_pch" = "x" -o "x$bk_use_pch" = "xyes" ; then
2066 if test "x$GCC" = "xyes"; then
2067 dnl test if we have gcc-3.4:
2068 AC_MSG_CHECKING([if the compiler supports precompiled headers])
2071 #if !defined(__GNUC__) || !defined(__GNUC_MINOR__)
2072 #error "no pch support"
2075 #error "no pch support"
2077 #if (__GNUC__ == 3) && \
2078 ((!defined(__APPLE_CC__) && (__GNUC_MINOR__ < 4)) || \
2079 ( defined(__APPLE_CC__) && (__GNUC_MINOR__ < 3)))
2080 #error "no pch support"
2084 AC_MSG_RESULT([yes])
2090 if test $GCC_PCH = 1 ; then
2091 AC_BAKEFILE_CREATE_FILE_BK_MAKE_PCH
2092 chmod +x bk-make-pch
2102 dnl ---------------------------------------------------------------------------
2103 dnl AC_BAKEFILE([autoconf_inc.m4 inclusion])
2105 dnl To be used in configure.in of any project using Bakefile-generated mks
2107 dnl Behaviour can be modified by setting following variables:
2108 dnl BAKEFILE_CHECK_BASICS set to "no" if you don't want bakefile to
2109 dnl to perform check for basic tools like ranlib
2110 dnl BAKEFILE_HOST set this to override host detection, defaults
2112 dnl BAKEFILE_FORCE_PLATFORM set to override platform detection
2116 dnl AC_BAKEFILE([FOO(autoconf_inc.m4)])
2118 dnl (replace FOO with m4_include above, aclocal would die otherwise)
2119 dnl (yes, it's ugly, but thanks to a bug in aclocal, it's the only thing
2121 dnl ---------------------------------------------------------------------------
2123 AC_DEFUN([AC_BAKEFILE],
2127 if test "x$BAKEFILE_HOST" = "x"; then
2128 BAKEFILE_HOST="${host}"
2131 if test "x$BAKEFILE_CHECK_BASICS" != "xno"; then
2132 AC_BAKEFILE_CHECK_BASIC_STUFF
2135 AC_BAKEFILE_PLATFORM
2136 AC_BAKEFILE_PLATFORM_SPECIFICS
2137 AC_BAKEFILE_SUFFIXES
2138 AC_BAKEFILE_SHARED_LD
2139 AC_BAKEFILE_SHARED_VERSIONS
2141 AC_BAKEFILE_RES_COMPILERS
2143 BAKEFILE_BAKEFILE_M4_VERSION="0.1.8"
2145 dnl includes autoconf_inc.m4:
2148 if test "$BAKEFILE_BAKEFILE_M4_VERSION" != "$BAKEFILE_AUTOCONF_INC_M4_VERSION" ; then
2149 AC_MSG_ERROR([Versions of Bakefile used to generate makefiles ($BAKEFILE_AUTOCONF_INC_M4_VERSION) and configure ($BAKEFILE_BAKEFILE_M4_VERSION) do not match.])
2154 dnl ---------------------------------------------------------------------------
2155 dnl Embedded copies of helper scripts follow:
2156 dnl ---------------------------------------------------------------------------
2158 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_DLLAR_SH],
2160 dnl ===================== dllar.sh begins here =====================
2161 dnl (Created by merge-scripts.py from dllar.sh
2162 dnl file do not edit here!)
2167 # dllar - a tool to build both a .dll and an .a file
2168 # from a set of object (.o) files for EMX/OS2.
2170 # Written by Andrew Zabolotny, bit@freya.etu.ru
2171 # Ported to Unix like shell by Stefan Neis, Stefan.Neis@t-online.de
2173 # This script will accept a set of files on the command line.
2174 # All the public symbols from the .o files will be exported into
2175 # a .DEF file, then linker will be run (through gcc) against them to
2176 # build a shared library consisting of all given .o files. All libraries
2177 # (.a) will be first decompressed into component .o files then act as
2178 # described above. You can optionally give a description (-d "description")
2179 # which will be put into .DLL. To see the list of accepted options (as well
2180 # as command-line format) simply run this program without options. The .DLL
2181 # is built to be imported by name (there is no guarantee that new versions
2182 # of the library you build will have same ordinals for same symbols).
2184 # dllar is free software; you can redistribute it and/or modify
2185 # it under the terms of the GNU General Public License as published by
2186 # the Free Software Foundation; either version 2, or (at your option)
2187 # any later version.
2189 # dllar is distributed in the hope that it will be useful,
2190 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2191 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2192 # GNU General Public License for more details.
2194 # You should have received a copy of the GNU General Public License
2195 # along with dllar; see the file COPYING. If not, write to the Free
2196 # Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2199 # To successfuly run this program you will need:
2200 # - Current drive should have LFN support (HPFS, ext2, network, etc)
2201 # (Sometimes dllar generates filenames which won't fit 8.3 scheme)
2203 # (used to build the .dll)
2205 # (used to create .def file from .o files)
2207 # (used to create .a file from .def file)
2208 # - GNU text utilites (cat, sort, uniq)
2209 # used to process emxexp output
2210 # - GNU file utilities (mv, rm)
2212 # - lxlite (optional, see flag below)
2213 # (used for general .dll cleanup)
2220 # basnam, variant of basename, which does _not_ remove the path, _iff_
2221 # second argument (suffix to remove) is given
2225 echo ${D}1 | sed 's/.*\\///' | sed 's/.*\\\\//'
2228 echo ${D}1 | sed 's/'${D}2'${D}//'
2231 echo "error in basnam ${D}*"
2237 # Cleanup temporary files and output
2240 for i in ${D}inputFiles ; do
2243 rm -rf \`basnam ${D}i !\`
2250 # Kill result in case of failure as there is just to many stupid make/nmake
2251 # things out there which doesn't do this.
2252 if @<:@ ${D}# -eq 0 @:>@; then
2253 rm -f ${D}arcFile ${D}arcFile2 ${D}defFile ${D}dllFile
2257 # Print usage and exit script with rc=1.
2259 echo 'Usage: dllar.sh @<:@-o@<:@utput@:>@ output_file@:>@ @<:@-i@<:@mport@:>@ importlib_name@:>@'
2260 echo ' @<:@-name-mangler-script script.sh@:>@'
2261 echo ' @<:@-d@<:@escription@:>@ "dll descrption"@:>@ @<:@-cc "CC"@:>@ @<:@-f@<:@lags@:>@ "CFLAGS"@:>@'
2262 echo ' @<:@-ord@<:@inals@:>@@:>@ -ex@<:@clude@:>@ "symbol(s)"'
2263 echo ' @<:@-libf@<:@lags@:>@ "{INIT|TERM}{GLOBAL|INSTANCE}"@:>@ @<:@-nocrt@<:@dll@:>@@:>@ @<:@-nolxl@<:@ite@:>@@:>@'
2264 echo ' @<:@*.o@:>@ @<:@*.a@:>@'
2265 echo '*> "output_file" should have no extension.'
2266 echo ' If it has the .o, .a or .dll extension, it is automatically removed.'
2267 echo ' The import library name is derived from this and is set to "name".a,'
2268 echo ' unless overridden by -import'
2269 echo '*> "importlib_name" should have no extension.'
2270 echo ' If it has the .o, or .a extension, it is automatically removed.'
2271 echo ' This name is used as the import library name and may be longer and'
2272 echo ' more descriptive than the DLL name which has to follow the old '
2273 echo ' 8.3 convention of FAT.'
2274 echo '*> "script.sh may be given to override the output_file name by a'
2275 echo ' different name. It is mainly useful if the regular make process'
2276 echo ' of some package does not take into account OS/2 restriction of'
2277 echo ' DLL name lengths. It takes the importlib name as input and is'
2278 echo ' supposed to procude a shorter name as output. The script should'
2279 echo ' expect to get importlib_name without extension and should produce'
2280 echo ' a (max.) 8 letter name without extension.'
2281 echo '*> "cc" is used to use another GCC executable. (default: gcc.exe)'
2282 echo '*> "flags" should be any set of valid GCC flags. (default: -s -Zcrtdll)'
2283 echo ' These flags will be put at the start of GCC command line.'
2284 echo '*> -ord@<:@inals@:>@ tells dllar to export entries by ordinals. Be careful.'
2285 echo '*> -ex@<:@clude@:>@ defines symbols which will not be exported. You can define'
2286 echo ' multiple symbols, for example -ex "myfunc yourfunc _GLOBAL*".'
2287 echo ' If the last character of a symbol is "*", all symbols beginning'
2288 echo ' with the prefix before "*" will be exclude, (see _GLOBAL* above).'
2289 echo '*> -libf@<:@lags@:>@ can be used to add INITGLOBAL/INITINSTANCE and/or'
2290 echo ' TERMGLOBAL/TERMINSTANCE flags to the dynamically-linked library.'
2291 echo '*> -nocrt@<:@dll@:>@ switch will disable linking the library against emx''s'
2292 echo ' C runtime DLLs.'
2293 echo '*> -nolxl@<:@ite@:>@ switch will disable running lxlite on the resulting DLL.'
2294 echo '*> All other switches (for example -L./ or -lmylib) will be passed'
2295 echo ' unchanged to GCC at the end of command line.'
2296 echo '*> If you create a DLL from a library and you do not specify -o,'
2297 echo ' the basename for DLL and import library will be set to library name,'
2298 echo ' the initial library will be renamed to 'name'_s.a (_s for static)'
2299 echo ' i.e. "dllar gcc.a" will create gcc.dll and gcc.a, and the initial'
2300 echo ' library will be renamed into gcc_s.a.'
2303 echo ' dllar -o gcc290.dll libgcc.a -d "GNU C runtime library" -ord'
2304 echo ' -ex "__main __ctordtor*" -libf "INITINSTANCE TERMINSTANCE"'
2309 # Execute a command.
2310 # If exit code of the commnad <> 0 CleanUp() is called and we'll exit the script.
2311 # @Uses Whatever CleanUp() uses.
2317 if @<:@ ${D}rcCmd -ne 0 @:>@; then
2318 echo "command failed, exit code="${D}rcCmd
2333 CFLAGS="-s -Zcrtdll"
2335 EXPORT_BY_ORDINALS=0
2344 curDirS=${D}{curDirS}"/"
2350 while @<:@ ${D}1 @:>@; do
2353 EXPORT_BY_ORDINALS=1;
2363 -name-mangler-script)
2384 exclude_symbols=${D}{exclude_symbols}${D}1" "
2388 library_flags=${D}{library_flags}${D}1" "
2407 EXTRA_CFLAGS=${D}{EXTRA_CFLAGS}" "${D}1
2410 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS} \`basnam ${D}1 .dll\`"
2411 if @<:@ ${D}omfLinking -eq 1 @:>@; then
2412 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS}.lib"
2414 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS}.a"
2419 if @<:@ ${D}libsToLink -ne 0 @:>@; then
2420 EXTRA_CFLAGS=${D}{EXTRA_CFLAGS}" "${D}1
2422 for file in ${D}1 ; do
2423 if @<:@ -f ${D}file @:>@; then
2424 inputFiles="${D}{inputFiles} ${D}file"
2428 if @<:@ ${D}found -eq 0 @:>@; then
2429 echo "ERROR: No file(s) found: "${D}1
2436 done # iterate cmdline words
2439 if @<:@ -z "${D}inputFiles" @:>@; then
2440 echo "dllar: no input files"
2444 # Now extract all .o files from .a files
2446 for file in ${D}inputFiles ; do
2457 EXTRA_CFLAGS="${D}EXTRA_CFLAGS -Zomf"
2462 dirname=\`basnam ${D}file ${D}suffix\`"_%"
2464 if @<:@ ${D}? -ne 0 @:>@; then
2465 echo "Failed to create subdirectory ./${D}dirname"
2469 # Append '!' to indicate archive
2470 newInputFiles="${D}newInputFiles ${D}{dirname}!"
2471 doCommand "cd ${D}dirname; ${D}AR x ../${D}file"
2474 for subfile in ${D}dirname/*.o* ; do
2475 if @<:@ -f ${D}subfile @:>@; then
2477 if @<:@ -s ${D}subfile @:>@; then
2478 # FIXME: This should be: is file size > 32 byte, _not_ > 0!
2479 newInputFiles="${D}newInputFiles ${D}subfile"
2483 if @<:@ ${D}found -eq 0 @:>@; then
2484 echo "WARNING: there are no files in archive \\'${D}file\\'"
2488 newInputFiles="${D}{newInputFiles} ${D}file"
2492 inputFiles="${D}newInputFiles"
2494 # Output filename(s).
2496 if @<:@ -z ${D}outFile @:>@; then
2498 set outFile ${D}inputFiles; outFile=${D}2
2501 # If it is an archive, remove the '!' and the '_%' suffixes
2504 outFile=\`basnam ${D}outFile _%!\`
2511 outFile=\`basnam ${D}outFile .dll\`
2514 outFile=\`basnam ${D}outFile .DLL\`
2517 outFile=\`basnam ${D}outFile .o\`
2520 outFile=\`basnam ${D}outFile .obj\`
2523 outFile=\`basnam ${D}outFile .a\`
2526 outFile=\`basnam ${D}outFile .lib\`
2531 case ${D}outimpFile in
2533 outimpFile=\`basnam ${D}outimpFile .a\`
2536 outimpFile=\`basnam ${D}outimpFile .lib\`
2541 if @<:@ -z ${D}outimpFile @:>@; then
2542 outimpFile=${D}outFile
2544 defFile="${D}{outFile}.def"
2545 arcFile="${D}{outimpFile}.a"
2546 arcFile2="${D}{outimpFile}.lib"
2548 #create ${D}dllFile as something matching 8.3 restrictions,
2549 if @<:@ -z ${D}renameScript @:>@ ; then
2550 dllFile="${D}outFile"
2552 dllFile=\`${D}renameScript ${D}outimpFile\`
2555 if @<:@ ${D}do_backup -ne 0 @:>@ ; then
2556 if @<:@ -f ${D}arcFile @:>@ ; then
2557 doCommand "mv ${D}arcFile ${D}{outFile}_s.a"
2559 if @<:@ -f ${D}arcFile2 @:>@ ; then
2560 doCommand "mv ${D}arcFile2 ${D}{outFile}_s.lib"
2564 # Extract public symbols from all the object files.
2565 tmpdefFile=${D}{defFile}_%
2566 rm -f ${D}tmpdefFile
2567 for file in ${D}inputFiles ; do
2572 doCommand "emxexp -u ${D}file >> ${D}tmpdefFile"
2577 # Create the def file.
2579 echo "LIBRARY \`basnam ${D}dllFile\` ${D}library_flags" >> ${D}defFile
2580 dllFile="${D}{dllFile}.dll"
2581 if @<:@ ! -z ${D}description @:>@; then
2582 echo "DESCRIPTION \\"${D}{description}\\"" >> ${D}defFile
2584 echo "EXPORTS" >> ${D}defFile
2586 doCommand "cat ${D}tmpdefFile | sort.exe | uniq.exe > ${D}{tmpdefFile}%"
2587 grep -v "^ *;" < ${D}{tmpdefFile}% | grep -v "^ *${D}" >${D}tmpdefFile
2589 # Checks if the export is ok or not.
2590 for word in ${D}exclude_symbols; do
2591 grep -v ${D}word < ${D}tmpdefFile >${D}{tmpdefFile}%
2592 mv ${D}{tmpdefFile}% ${D}tmpdefFile
2596 if @<:@ ${D}EXPORT_BY_ORDINALS -ne 0 @:>@; then
2597 sed "=" < ${D}tmpdefFile | \\
2601 s/^\\(@<:@0-9@:>@\\+\\)\\(@<:@^;@:>@*\\)\\(;.*\\)\\?/\\2 @\\1 NONAME/
2603 ' > ${D}{tmpdefFile}%
2604 grep -v "^ *${D}" < ${D}{tmpdefFile}% > ${D}tmpdefFile
2606 rm -f ${D}{tmpdefFile}%
2608 cat ${D}tmpdefFile >> ${D}defFile
2609 rm -f ${D}tmpdefFile
2611 # Do linking, create implib, and apply lxlite.
2613 for file in ${D}inputFiles ; do
2618 gccCmdl="${D}gccCmdl ${D}file"
2622 doCommand "${D}CC ${D}CFLAGS -Zdll -o ${D}dllFile ${D}defFile ${D}gccCmdl ${D}EXTRA_CFLAGS"
2623 touch "${D}{outFile}.dll"
2625 doCommand "emximp -o ${D}arcFile ${D}defFile"
2626 if @<:@ ${D}flag_USE_LXLITE -ne 0 @:>@; then
2628 if @<:@ ${D}EXPORT_BY_ORDINALS -ne 0 @:>@; then
2631 doCommand "lxlite -cs -t: -mrn -mln ${D}add_flags ${D}dllFile"
2633 doCommand "emxomf -s -l ${D}arcFile"
2639 dnl ===================== dllar.sh ends here =====================
2642 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_BK_DEPS],
2644 dnl ===================== bk-deps begins here =====================
2645 dnl (Created by merge-scripts.py from bk-deps
2646 dnl file do not edit here!)
2651 # This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
2652 # script. It is used to track C/C++ files dependencies in portable way.
2654 # Permission is given to use this file in any way.
2656 DEPSMODE=${DEPSMODE}
2658 DEPSFLAG_GCC="${DEPSFLAG_GCC}"
2659 DEPSFLAG_MWCC="${DEPSFLAG_MWCC}"
2661 mkdir -p ${D}DEPSDIR
2663 if test ${D}DEPSMODE = gcc ; then
2664 ${D}* ${D}{DEPSFLAG_GCC}
2666 if test ${D}{status} != 0 ; then
2669 # move created file to the location we want it in:
2670 while test ${D}# -gt 0; do
2684 depfile=\`basename ${D}srcfile | sed -e 's/\\..*${D}/.d/g'\`
2685 depobjname=\`echo ${D}depfile |sed -e 's/\\.d/.o/g'\`
2686 if test -f ${D}depfile ; then
2687 sed -e "s,${D}depobjname:,${D}objfile:,g" ${D}depfile >${D}{DEPSDIR}/${D}{objfile}.d
2690 depfile=\`basename ${D}objfile | sed -e 's/\\..*${D}/.d/g'\`
2691 if test -f ${D}depfile ; then
2692 sed -e "/^${D}objfile/!s,${D}depobjname:,${D}objfile:,g" ${D}depfile >${D}{DEPSDIR}/${D}{objfile}.d
2697 elif test ${D}DEPSMODE = mwcc ; then
2700 if test ${D}{status} != 0 ; then
2703 # Run mwcc again with -MM and redirect into the dep file we want
2704 # NOTE: We can't use shift here because we need ${D}* to be valid
2706 for arg in ${D}* ; do
2707 if test "${D}prevarg" = "-o"; then
2720 ${D}* ${D}DEPSFLAG_MWCC >${D}{DEPSDIR}/${D}{objfile}.d
2727 dnl ===================== bk-deps ends here =====================
2730 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_SHARED_LD_SH],
2732 dnl ===================== shared-ld-sh begins here =====================
2733 dnl (Created by merge-scripts.py from shared-ld-sh
2734 dnl file do not edit here!)
2736 cat <<EOF >shared-ld-sh
2738 #-----------------------------------------------------------------------------
2739 #-- Name: distrib/mac/shared-ld-sh
2740 #-- Purpose: Link a mach-o dynamic shared library for Darwin / Mac OS X
2741 #-- Author: Gilles Depeyrot
2742 #-- Copyright: (c) 2002 Gilles Depeyrot
2743 #-- Licence: any use permitted
2744 #-----------------------------------------------------------------------------
2749 linking_flag="-dynamiclib"
2751 while test ${D}# -gt 0; do
2758 -o|-compatibility_version|-current_version|-framework|-undefined|-install_name)
2759 # collect these options and values
2760 args="${D}{args} ${D}1 ${D}2"
2764 -l*|-L*|-flat_namespace|-headerpad_max_install_names)
2765 # collect these options
2766 args="${D}{args} ${D}1"
2769 -dynamiclib|-bundle)
2770 linking_flag="${D}1"
2774 echo "shared-ld: unhandled option '${D}1'"
2778 *.o | *.a | *.dylib)
2779 # collect object files
2780 objects="${D}{objects} ${D}1"
2784 echo "shared-ld: unhandled argument '${D}1'"
2793 # Link one module containing all the others
2795 if test ${D}{verbose} = 1; then
2796 echo "c++ -r -keep_private_externs -nostdlib ${D}{objects} -o master.${D}${D}.o"
2798 c++ -r -keep_private_externs -nostdlib ${D}{objects} -o master.${D}${D}.o
2800 if test ${D}{status} != 0; then
2805 # Link the shared library from the single module created
2807 if test ${D}{verbose} = 1; then
2808 echo "cc ${D}{linking_flag} master.${D}${D}.o ${D}{args}"
2810 c++ ${D}{linking_flag} master.${D}${D}.o ${D}{args}
2812 if test ${D}{status} != 0; then
2817 # Remove intermediate module
2819 rm -f master.${D}${D}.o
2823 dnl ===================== shared-ld-sh ends here =====================
2826 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_BK_MAKE_PCH],
2828 dnl ===================== bk-make-pch begins here =====================
2829 dnl (Created by merge-scripts.py from bk-make-pch
2830 dnl file do not edit here!)
2832 cat <<EOF >bk-make-pch
2835 # This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
2836 # script. It is used to generated precompiled headers.
2838 # Permission is given to use this file in any way.
2847 while test ${D}{#} -gt 0; do
2850 incdir=\`echo ${D}{1} | sed -e 's/-I\\(.*\\)/\\1/g'\`
2851 if test "x${D}{headerfile}" = "x" -a -f "${D}{incdir}/${D}{header}" ; then
2852 headerfile="${D}{incdir}/${D}{header}"
2856 compiler="${D}{compiler} ${D}{1}"
2860 if test "x${D}{headerfile}" = "x" ; then
2861 echo "error: can't find header ${D}{header} in include paths" >2
2863 if test -f ${D}{outfile} ; then
2866 mkdir -p \`dirname ${D}{outfile}\`
2868 depsfile=".deps/\`echo ${D}{outfile} | tr '/.' '__'\`.d"
2870 # can do this because gcc is >= 3.4:
2871 ${D}{compiler} -o ${D}{outfile} -MMD -MF "${D}{depsfile}" "${D}{headerfile}"
2875 dnl ===================== bk-make-pch ends here =====================
2879 dnl AM_PATH_CPPUNIT(MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
2881 AC_DEFUN(AM_PATH_CPPUNIT,
2884 AC_ARG_WITH(cppunit-prefix,[ --with-cppunit-prefix=PFX Prefix where CppUnit is installed (optional)],
2885 cppunit_config_prefix="$withval", cppunit_config_prefix="")
2886 AC_ARG_WITH(cppunit-exec-prefix,[ --with-cppunit-exec-prefix=PFX Exec prefix where CppUnit is installed (optional)],
2887 cppunit_config_exec_prefix="$withval", cppunit_config_exec_prefix="")
2889 if test x$cppunit_config_exec_prefix != x ; then
2890 cppunit_config_args="$cppunit_config_args --exec-prefix=$cppunit_config_exec_prefix"
2891 if test x${CPPUNIT_CONFIG+set} != xset ; then
2892 CPPUNIT_CONFIG=$cppunit_config_exec_prefix/bin/cppunit-config
2895 if test x$cppunit_config_prefix != x ; then
2896 cppunit_config_args="$cppunit_config_args --prefix=$cppunit_config_prefix"
2897 if test x${CPPUNIT_CONFIG+set} != xset ; then
2898 CPPUNIT_CONFIG=$cppunit_config_prefix/bin/cppunit-config
2902 AC_PATH_PROG(CPPUNIT_CONFIG, cppunit-config, no)
2903 cppunit_version_min=$1
2905 AC_MSG_CHECKING(for Cppunit - version >= $cppunit_version_min)
2907 if test "$CPPUNIT_CONFIG" = "no" ; then
2910 CPPUNIT_CFLAGS=`$CPPUNIT_CONFIG --cflags`
2911 CPPUNIT_LIBS=`$CPPUNIT_CONFIG --libs`
2912 cppunit_version=`$CPPUNIT_CONFIG --version`
2914 cppunit_major_version=`echo $cppunit_version | \
2915 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
2916 cppunit_minor_version=`echo $cppunit_version | \
2917 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
2918 cppunit_micro_version=`echo $cppunit_version | \
2919 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
2921 cppunit_major_min=`echo $cppunit_version_min | \
2922 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
2923 cppunit_minor_min=`echo $cppunit_version_min | \
2924 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
2925 cppunit_micro_min=`echo $cppunit_version_min | \
2926 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
2928 cppunit_version_proper=`expr \
2929 $cppunit_major_version \> $cppunit_major_min \| \
2930 $cppunit_major_version \= $cppunit_major_min \& \
2931 $cppunit_minor_version \> $cppunit_minor_min \| \
2932 $cppunit_major_version \= $cppunit_major_min \& \
2933 $cppunit_minor_version \= $cppunit_minor_min \& \
2934 $cppunit_micro_version \>= $cppunit_micro_min `
2936 if test "$cppunit_version_proper" = "1" ; then
2937 AC_MSG_RESULT([$cppunit_major_version.$cppunit_minor_version.$cppunit_micro_version])
2944 if test "x$no_cppunit" = x ; then
2945 ifelse([$2], , :, [$2])
2949 ifelse([$3], , :, [$3])
2952 AC_SUBST(CPPUNIT_CFLAGS)
2953 AC_SUBST(CPPUNIT_LIBS)