1 dnl Process this file with autoconf to produce a configure script.
4 dnl ---------------------------------------------------------------------------
6 dnl Top-level configure.in for wxWindows by Robert Roebling, Phil Blecker and
9 dnl This script is under the wxWindows licence.
12 dnl ---------------------------------------------------------------------------
14 dnl ===========================================================================
15 dnl macros to find the a file in the list of include/lib paths
16 dnl ===========================================================================
18 dnl ---------------------------------------------------------------------------
19 dnl call WX_PATH_FIND_INCLUDES(search path, header name), sets ac_find_includes
20 dnl to the full name of the file that was found or leaves it empty if not found
21 dnl ---------------------------------------------------------------------------
22 AC_DEFUN(WX_PATH_FIND_INCLUDES,
27 if test -f "$ac_dir/$2"; then
28 ac_find_includes=$ac_dir
34 dnl ---------------------------------------------------------------------------
35 dnl call WX_PATH_FIND_LIBRARIES(search path, header name), sets ac_find_includes
36 dnl to the full name of the file that was found or leaves it empty if not found
37 dnl ---------------------------------------------------------------------------
38 AC_DEFUN(WX_PATH_FIND_LIBRARIES,
43 for ac_extension in a so sl dylib; do
44 if test -f "$ac_dir/lib$2.$ac_extension"; then
45 ac_find_libraries=$ac_dir
52 dnl ---------------------------------------------------------------------------
53 dnl Path to include, already defined
54 dnl ---------------------------------------------------------------------------
55 AC_DEFUN(WX_INCLUDE_PATH_EXIST,
58 echo "$2" | grep "\-I$1" > /dev/null
60 if test $result = 0; then
63 ac_path_to_include="-I$1"
67 dnl ---------------------------------------------------------------------------
68 dnl Path to link, already defined
69 dnl ---------------------------------------------------------------------------
70 AC_DEFUN(WX_LINK_PATH_EXIST,
72 echo "$2" | grep "\-L$1" > /dev/null
74 if test $result = 0; then
77 ac_path_to_link="-L$1"
81 dnl ===========================================================================
83 dnl ===========================================================================
85 dnl ---------------------------------------------------------------------------
86 dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
87 dnl or only the old <iostream.h> one - it may be generally assumed that if
88 dnl <iostream> exists, the other "new" headers (without .h) exist too.
90 dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false-or-cross-compiling)
91 dnl ---------------------------------------------------------------------------
93 AC_DEFUN(WX_CPP_NEW_HEADERS,
95 if test "$cross_compiling" = "yes"; then
96 ifelse([$2], , :, [$2])
101 AC_CHECK_HEADERS(iostream)
103 if test "$ac_cv_header_iostream" = "yes" ; then
104 ifelse([$1], , :, [$1])
106 ifelse([$2], , :, [$2])
113 dnl ---------------------------------------------------------------------------
114 dnl WX_CPP_BOOL checks whether the C++ compiler has a built in bool type
116 dnl call WX_CPP_BOOL - will define HAVE_BOOL if the compiler supports bool
117 dnl ---------------------------------------------------------------------------
119 AC_DEFUN(WX_CPP_BOOL,
121 AC_CACHE_CHECK([if C++ compiler supports bool], wx_cv_cpp_bool,
145 if test "$wx_cv_cpp_bool" = "yes"; then
150 dnl ---------------------------------------------------------------------------
151 dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
152 dnl ---------------------------------------------------------------------------
154 AC_DEFUN(WX_C_BIGENDIAN,
155 [AC_CACHE_CHECK(whether byte ordering is bigendian, ac_cv_c_bigendian,
156 [ac_cv_c_bigendian=unknown
157 # See if sys/param.h defines the BYTE_ORDER macro.
158 AC_TRY_COMPILE([#include <sys/types.h>
159 #include <sys/param.h>], [
160 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
162 #endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
163 AC_TRY_COMPILE([#include <sys/types.h>
164 #include <sys/param.h>], [
165 #if BYTE_ORDER != BIG_ENDIAN
167 #endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
168 if test $ac_cv_c_bigendian = unknown; then
169 AC_TRY_RUN([main () {
170 /* Are we little or big endian? From Harbison&Steele. */
174 char c[sizeof (long)];
177 exit (u.c[sizeof (long) - 1] == 1);
178 }], ac_cv_c_bigendian=no, ac_cv_c_bigendian=yes, ac_cv_c_bigendian=unknown)
180 if test $ac_cv_c_bigendian = unknown; then
181 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])
183 if test $ac_cv_c_bigendian = yes; then
184 AC_DEFINE(WORDS_BIGENDIAN)
188 dnl ---------------------------------------------------------------------------
189 dnl override AC_ARG_ENABLE/WITH to cache the results in .cache file
190 dnl ---------------------------------------------------------------------------
192 AC_DEFUN(WX_ARG_CACHE_INIT,
194 wx_arg_cache_file="configarg.cache"
195 echo "loading argument cache $wx_arg_cache_file"
196 rm -f ${wx_arg_cache_file}.tmp
197 touch ${wx_arg_cache_file}.tmp
198 touch ${wx_arg_cache_file}
201 AC_DEFUN(WX_ARG_CACHE_FLUSH,
203 echo "saving argument cache $wx_arg_cache_file"
204 mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
207 dnl this macro checks for a three-valued command line --with argument:
208 dnl possible arguments are 'yes', 'no', or 'sys'
209 dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
210 AC_DEFUN(WX_ARG_SYS_WITH,
212 AC_MSG_CHECKING([for --with-$1])
214 AC_ARG_WITH($1, [$2],
216 if test "$withval" = yes; then
217 ac_cv_use_$1='$3=yes'
218 elif test "$withval" = no; then
220 elif test "$withval" = sys; then
221 ac_cv_use_$1='$3=sys'
223 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no or sys])
227 LINE=`grep "$3" ${wx_arg_cache_file}`
228 if test "x$LINE" != x ; then
234 ac_cv_use_$1='$3='$DEFAULT_$3
238 if test "$no_cache" != 1; then
239 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
242 if test "$$3" = yes; then
244 elif test "$$3" = no; then
246 elif test "$$3" = sys; then
247 AC_MSG_RESULT(system version)
249 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no or sys])
253 dnl this macro checks for a command line argument and caches the result
254 dnl usage: WX_ARG_WITH(option, helpmessage, variable-name)
255 AC_DEFUN(WX_ARG_WITH,
257 AC_MSG_CHECKING([for --with-$1])
259 AC_ARG_WITH($1, [$2],
261 if test "$withval" = yes; then
262 ac_cv_use_$1='$3=yes'
268 LINE=`grep "$3" ${wx_arg_cache_file}`
269 if test "x$LINE" != x ; then
275 ac_cv_use_$1='$3='$DEFAULT_$3
279 if test "$no_cache" != 1; then
280 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
283 if test "$$3" = yes; then
290 dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
291 dnl usage: WX_ARG_ENABLE(option, helpmessage, variable-name)
292 AC_DEFUN(WX_ARG_ENABLE,
294 AC_MSG_CHECKING([for --enable-$1])
296 AC_ARG_ENABLE($1, [$2],
298 if test "$enableval" = yes; then
299 ac_cv_use_$1='$3=yes'
305 LINE=`grep "$3" ${wx_arg_cache_file}`
306 if test "x$LINE" != x ; then
312 ac_cv_use_$1='$3='$DEFAULT_$3
316 if test "$no_cache" != 1; then
317 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
320 if test "$$3" = yes; then
327 dnl ---------------------------------------------------------------------------
329 dnl ---------------------------------------------------------------------------
331 dnl the file passed to AC_INIT should be specific to our package
332 AC_INIT(wx-config.in)
334 dnl sets build, host, target variables and the same with _alias
337 dnl When making releases do:
339 dnl WX_RELEASE_NUMBER += 1
341 dnl ..and update WX_CURRENT, WX_RELEASE and WX_AGE according to the
344 dnl If any changes have been made to the public interface, that is if any
345 dnl exported class, method, global or global type has been added, removed
346 dnl or changed in any way, then do: WX_CURRENT += 1
348 dnl If source changes have been made that *do not* alter the public
349 dnl interface then do: WX_REVISION += 1
350 dnl If WX_CURRENT was incremented (as above) instead do: WX_REVISION = 0
352 dnl If any public interface was added, do: WX_AGE += 1
353 dnl If any public interface was removed (or altered in a way effectively
354 dnl removing the previous definition), instead do: WX_AGE = 0
356 dnl When the major or minor version numbers are incremented, all the above
357 dnl variables should be reset to 0.
359 dnl The resulting library name will be of the form:
360 dnl libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
362 WX_MAJOR_VERSION_NUMBER=2
363 WX_MINOR_VERSION_NUMBER=3
366 WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER
367 WX_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER
374 dnl ------------------------------------------------------------------------
375 dnl Check platform (host system)
376 dnl ------------------------------------------------------------------------
406 dnl on some platforms xxx_r() functions are declared inside "#ifdef
407 dnl _REENTRANT" and it's easier to just define this symbol for these platforms
408 dnl than checking it during run-time
409 NEEDS_D_REENTRANT_FOR_R_FUNCS=0
411 dnl the list of all available toolkits
413 dnl update NUM_TOOLKITS calculation below when adding a new toolkit here!
414 ALL_TOOLKITS="CYGWIN GTK MAC MGL MINGW MOTIF PM WINE"
416 dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
417 dnl which are either yes or no
421 DEFAULT_wxUSE_MOTIF=0
426 dnl these are the values which are really default for the given platform -
427 dnl they're not cached and are only used if no --with-toolkit was given *and*
428 dnl nothing was found in the cache
429 DEFAULT_DEFAULT_wxUSE_GTK=0
430 DEFAULT_DEFAULT_wxUSE_MAC=0
431 DEFAULT_DEFAULT_wxUSE_MGL=0
432 DEFAULT_DEFAULT_wxUSE_MOTIF=0
433 DEFAULT_DEFAULT_wxUSE_MSW=0
434 DEFAULT_DEFAULT_wxUSE_PM=0
435 DEFAULT_DEFAULT_wxUSE_WINE=0
439 dnl to support a new system, you need to add its canonical name (as determined
440 dnl by config.sub or specified by the configure command line) to this "case"
441 dnl and also define the shared library flags below - search for
442 dnl SHARED_LIB_SETUP to find the exact place
446 DEFAULT_DEFAULT_wxUSE_MOTIF=1
447 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
454 if test "x$TMP" = "xalpha"; then
458 DEFAULT_DEFAULT_wxUSE_GTK=1
460 *-*-irix5* | *-*-irix6* )
465 DEFAULT_DEFAULT_wxUSE_MOTIF=1
472 AC_DEFINE(__SOLARIS__)
474 DEFAULT_DEFAULT_wxUSE_MOTIF=1
475 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
484 DEFAULT_DEFAULT_wxUSE_MOTIF=1
489 AC_DEFINE(__FREEBSD__)
491 DEFAULT_DEFAULT_wxUSE_GTK=1
496 AC_DEFINE(__FREEBSD__)
497 AC_DEFINE(__OPENBSD__)
498 DEFAULT_DEFAULT_wxUSE_GTK=1
503 AC_DEFINE(__FREEBSD__)
504 AC_DEFINE(__NETBSD__)
505 DEFAULT_DEFAULT_wxUSE_GTK=1
512 DEFAULT_DEFAULT_wxUSE_MOTIF=1
513 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
520 DEFAULT_DEFAULT_wxUSE_MOTIF=1
527 DEFAULT_DEFAULT_wxUSE_MOTIF=1
536 DEFAULT_DEFAULT_wxUSE_MOTIF=1
539 *-*-cygwin* | *-*-mingw32* )
544 AC_DEFINE(__WINDOWS__)
545 AC_DEFINE(__GNUWIN32__)
547 AC_DEFINE(WINVER, 0x0400)
549 DEFAULT_DEFAULT_wxUSE_MSW=1
555 DEFAULT_DEFAULT_wxUSE_PM=1
562 AC_DEFINE(__DARWIN__)
564 DEFAULT_DEFAULT_wxUSE_MAC=1
568 dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this
574 AC_MSG_ERROR(unknown system type ${host}.)
577 if test "$USE_UNIX" = 1 ; then
581 SRC_SUBDIRS="$SRC_SUBDIRS unix"
582 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS unix"
585 if test "$USE_BEOS" = 1; then
586 SRC_SUBDIRS="$SRC_SUBDIRS be"
587 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS be"
590 dnl check for glibc version
591 dnl if test "$USE_LINUX" = 1; then
592 dnl AC_CACHE_CHECK([for glibc version], wx_lib_glibc21,
593 dnl AC_TRY_COMPILE([#include <features.h>],
595 dnl #if !__GLIBC_PREREQ(2, 1)
596 dnl #error not glibc2.1
600 dnl AC_MSG_RESULT(2.1 or later),
601 dnl wx_lib_glibc21=yes
604 dnl AC_MSG_RESULT(less than 2.1),
605 dnl wx_lib_glibc21=no
610 dnl if test "$wx_lib_glibc21" = "yes"; then
611 dnl AC_DEFINE(wxHAVE_GLIBC2)
615 dnl ---------------------------------------------------------------------------
616 dnl command line options for configure
617 dnl ---------------------------------------------------------------------------
619 dnl the default values for all options - we collect them all here to simplify
620 dnl modification of the default values (for example, if the defaults for some
621 dnl platform should be changed, it can be done here too)
623 dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above
627 dnl useful to test the compilation with minimum options, define as 0 for normal
630 if test $DEBUG_CONFIGURE = 1; then
631 DEFAULT_wxUSE_UNIVERSAL=no
633 DEFAULT_wxUSE_THREADS=yes
635 DEFAULT_wxUSE_SHARED=yes
636 DEFAULT_wxUSE_BURNT_NAME=no
637 DEFAULT_wxUSE_OPTIMISE=no
638 DEFAULT_wxUSE_PROFILE=no
639 DEFAULT_wxUSE_NO_DEPS=no
640 DEFAULT_wxUSE_NO_RTTI=no
641 DEFAULT_wxUSE_NO_EXCEPTIONS=no
642 DEFAULT_wxUSE_PERMISSIVE=no
643 DEFAULT_wxUSE_DEBUG_FLAG=yes
644 DEFAULT_wxUSE_DEBUG_INFO=yes
645 DEFAULT_wxUSE_DEBUG_GDB=yes
646 DEFAULT_wxUSE_MEM_TRACING=no
647 DEFAULT_wxUSE_DEBUG_CONTEXT=no
648 DEFAULT_wxUSE_DMALLOC=no
649 DEFAULT_wxUSE_APPLE_IEEE=no
651 DEFAULT_wxUSE_LOG=yes
652 DEFAULT_wxUSE_LOGWINDOW=no
653 DEFAULT_wxUSE_LOGGUI=no
655 DEFAULT_wxUSE_GUI=yes
656 DEFAULT_wxUSE_CONTROLS=no
658 DEFAULT_wxUSE_REGEX=no
659 DEFAULT_wxUSE_ZLIB=no
660 DEFAULT_wxUSE_LIBPNG=no
661 DEFAULT_wxUSE_LIBJPEG=no
662 DEFAULT_wxUSE_LIBTIFF=no
663 DEFAULT_wxUSE_ODBC=no
664 DEFAULT_wxUSE_FREETYPE=no
665 DEFAULT_wxUSE_OPENGL=no
667 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no
668 DEFAULT_wxUSE_SNGLINST_CHECKER=no
669 DEFAULT_wxUSE_STD_IOSTREAM=no
670 DEFAULT_wxUSE_CMDLINE_PARSER=no
671 DEFAULT_wxUSE_DATETIME=no
672 DEFAULT_wxUSE_TIMEDATE=no
673 DEFAULT_wxUSE_TIMER=no
674 DEFAULT_wxUSE_STOPWATCH=no
675 DEFAULT_wxUSE_FILE=no
676 DEFAULT_wxUSE_FFILE=no
677 DEFAULT_wxUSE_TEXTFILE=no
678 DEFAULT_wxUSE_WAVE=no
679 DEFAULT_wxUSE_INTL=no
680 DEFAULT_wxUSE_CONFIG=no
681 DEFAULT_wxUSE_FONTMAP=no
682 DEFAULT_wxUSE_STREAMS=no
683 DEFAULT_wxUSE_SOCKETS=no
684 DEFAULT_wxUSE_DIALUP_MANAGER=no
685 DEFAULT_wxUSE_SERIAL=no
686 DEFAULT_wxUSE_JOYSTICK=no
687 DEFAULT_wxUSE_DYNLIB_CLASS=no
688 DEFAULT_wxUSE_LONGLONG=no
689 DEFAULT_wxUSE_GEOMETRY=no
691 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
692 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
693 DEFAULT_wxUSE_POSTSCRIPT=no
695 DEFAULT_wxUSE_X_RESOURCES=no
696 DEFAULT_wxUSE_CLIPBOARD=no
697 DEFAULT_wxUSE_TOOLTIPS=no
698 DEFAULT_wxUSE_DRAG_AND_DROP=no
699 DEFAULT_wxUSE_DRAGIMAGE=no
700 DEFAULT_wxUSE_SPLINES=no
702 DEFAULT_wxUSE_MDI_ARCHITECTURE=no
703 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
704 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
706 DEFAULT_wxUSE_PROLOGIO=no
707 DEFAULT_wxUSE_RESOURCES=no
708 DEFAULT_wxUSE_CONSTRAINTS=no
710 DEFAULT_wxUSE_HELP=no
711 DEFAULT_wxUSE_MS_HTML_HELP=no
712 DEFAULT_wxUSE_WXHTML_HELP=no
713 DEFAULT_wxUSE_TREELAYOUT=no
714 DEFAULT_wxUSE_METAFILE=no
715 DEFAULT_wxUSE_MIMETYPE=no
716 DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
718 DEFAULT_wxUSE_COMMONDLGS=no
719 DEFAULT_wxUSE_CHOICEDLG=no
720 DEFAULT_wxUSE_COLOURDLG=no
721 DEFAULT_wxUSE_DIRDLG=no
722 DEFAULT_wxUSE_FILEDLG=no
723 DEFAULT_wxUSE_FINDREPLDLG=no
724 DEFAULT_wxUSE_FONTDLG=no
725 DEFAULT_wxUSE_MSGDLG=no
726 DEFAULT_wxUSE_NUMBERDLG=no
727 DEFAULT_wxUSE_TEXTDLG=no
728 DEFAULT_wxUSE_SPLASH=no
729 DEFAULT_wxUSE_STARTUP_TIPS=no
730 DEFAULT_wxUSE_PROGRESSDLG=no
731 DEFAULT_wxUSE_WIZARDDLG=no
733 DEFAULT_wxUSE_MENUS=no
734 DEFAULT_wxUSE_MINIFRAME=no
735 DEFAULT_wxUSE_HTML=no
736 DEFAULT_wxUSE_FILESYSTEM=no
737 DEFAULT_wxUSE_FS_INET=no
738 DEFAULT_wxUSE_FS_ZIP=no
739 DEFAULT_wxUSE_BUSYINFO=no
740 DEFAULT_wxUSE_ZIPSTREAM=no
741 DEFAULT_wxUSE_VALIDATORS=no
743 DEFAULT_wxUSE_ACCEL=no
744 DEFAULT_wxUSE_BUTTON=no
745 DEFAULT_wxUSE_BMPBUTTON=no
746 DEFAULT_wxUSE_CALCTRL=no
747 DEFAULT_wxUSE_CARET=no
748 DEFAULT_wxUSE_CHECKBOX=no
749 DEFAULT_wxUSE_CHECKLST=no
750 DEFAULT_wxUSE_CHOICE=no
751 DEFAULT_wxUSE_COMBOBOX=no
752 DEFAULT_wxUSE_GAUGE=no
753 DEFAULT_wxUSE_GRID=no
754 DEFAULT_wxUSE_NEW_GRID=no
755 DEFAULT_wxUSE_IMAGLIST=no
756 DEFAULT_wxUSE_LISTBOX=no
757 DEFAULT_wxUSE_LISTCTRL=no
758 DEFAULT_wxUSE_NOTEBOOK=no
759 DEFAULT_wxUSE_PROPSHEET=no
760 DEFAULT_wxUSE_RADIOBOX=no
761 DEFAULT_wxUSE_RADIOBTN=no
762 DEFAULT_wxUSE_SASH=no
763 DEFAULT_wxUSE_SCROLLBAR=no
764 DEFAULT_wxUSE_SLIDER=no
765 DEFAULT_wxUSE_SPINBTN=no
766 DEFAULT_wxUSE_SPINCTRL=no
767 DEFAULT_wxUSE_SPLITTER=no
768 DEFAULT_wxUSE_STATBMP=no
769 DEFAULT_wxUSE_STATBOX=no
770 DEFAULT_wxUSE_STATLINE=no
771 DEFAULT_wxUSE_STATTEXT=no
772 DEFAULT_wxUSE_STATUSBAR=yes
773 DEFAULT_wxUSE_TABDIALOG=no
774 DEFAULT_wxUSE_TEXTCTRL=no
775 DEFAULT_wxUSE_TOGGLEBTN=no
776 DEFAULT_wxUSE_TOOLBAR=no
777 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
778 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
779 DEFAULT_wxUSE_TREECTRL=no
780 DEFAULT_wxUSE_POPUPWIN=no
782 DEFAULT_wxUSE_UNICODE=no
783 DEFAULT_wxUSE_WCSRTOMBS=no
785 DEFAULT_wxUSE_IMAGE=no
791 DEFAULT_wxUSE_UNIVERSAL=no
793 DEFAULT_wxUSE_THREADS=yes
795 DEFAULT_wxUSE_SHARED=yes
796 DEFAULT_wxUSE_BURNT_NAME=no
797 DEFAULT_wxUSE_OPTIMISE=yes
798 DEFAULT_wxUSE_PROFILE=no
799 DEFAULT_wxUSE_NO_DEPS=no
800 DEFAULT_wxUSE_NO_RTTI=no
801 DEFAULT_wxUSE_NO_EXCEPTIONS=no
802 DEFAULT_wxUSE_PERMISSIVE=no
803 DEFAULT_wxUSE_DEBUG_FLAG=no
804 DEFAULT_wxUSE_DEBUG_INFO=no
805 DEFAULT_wxUSE_DEBUG_GDB=no
806 DEFAULT_wxUSE_MEM_TRACING=no
807 DEFAULT_wxUSE_DEBUG_CONTEXT=no
808 DEFAULT_wxUSE_DMALLOC=no
809 DEFAULT_wxUSE_APPLE_IEEE=yes
811 DEFAULT_wxUSE_LOG=yes
812 DEFAULT_wxUSE_LOGWINDOW=yes
813 DEFAULT_wxUSE_LOGGUI=yes
815 DEFAULT_wxUSE_GUI=yes
817 DEFAULT_wxUSE_REGEX=yes
818 DEFAULT_wxUSE_ZLIB=yes
819 DEFAULT_wxUSE_LIBPNG=yes
820 DEFAULT_wxUSE_LIBJPEG=yes
821 DEFAULT_wxUSE_LIBTIFF=yes
822 DEFAULT_wxUSE_ODBC=no
823 DEFAULT_wxUSE_FREETYPE=no
824 DEFAULT_wxUSE_OPENGL=no
826 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes
827 DEFAULT_wxUSE_SNGLINST_CHECKER=yes
828 DEFAULT_wxUSE_STD_IOSTREAM=no
829 DEFAULT_wxUSE_CMDLINE_PARSER=yes
830 DEFAULT_wxUSE_DATETIME=yes
831 DEFAULT_wxUSE_TIMEDATE=no
832 DEFAULT_wxUSE_TIMER=yes
833 DEFAULT_wxUSE_STOPWATCH=yes
834 DEFAULT_wxUSE_FILE=yes
835 DEFAULT_wxUSE_FFILE=yes
836 DEFAULT_wxUSE_TEXTFILE=yes
837 DEFAULT_wxUSE_WAVE=no
838 DEFAULT_wxUSE_INTL=yes
839 DEFAULT_wxUSE_CONFIG=yes
840 DEFAULT_wxUSE_FONTMAP=yes
841 DEFAULT_wxUSE_STREAMS=yes
842 DEFAULT_wxUSE_SOCKETS=yes
843 DEFAULT_wxUSE_DIALUP_MANAGER=yes
844 DEFAULT_wxUSE_SERIAL=yes
845 DEFAULT_wxUSE_JOYSTICK=yes
846 DEFAULT_wxUSE_DYNLIB_CLASS=yes
847 DEFAULT_wxUSE_LONGLONG=yes
848 DEFAULT_wxUSE_GEOMETRY=yes
850 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
851 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
852 DEFAULT_wxUSE_POSTSCRIPT=yes
854 DEFAULT_wxUSE_X_RESOURCES=no
855 DEFAULT_wxUSE_CLIPBOARD=yes
856 DEFAULT_wxUSE_TOOLTIPS=yes
857 DEFAULT_wxUSE_DRAG_AND_DROP=yes
858 DEFAULT_wxUSE_DRAGIMAGE=yes
859 DEFAULT_wxUSE_SPLINES=yes
861 DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
862 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
863 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
865 DEFAULT_wxUSE_PROLOGIO=yes
866 DEFAULT_wxUSE_RESOURCES=yes
867 DEFAULT_wxUSE_CONSTRAINTS=yes
868 DEFAULT_wxUSE_IPC=yes
869 DEFAULT_wxUSE_HELP=yes
870 DEFAULT_wxUSE_MS_HTML_HELP=yes
871 DEFAULT_wxUSE_WXHTML_HELP=yes
872 DEFAULT_wxUSE_TREELAYOUT=yes
873 DEFAULT_wxUSE_METAFILE=yes
874 DEFAULT_wxUSE_MIMETYPE=yes
875 DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
877 DEFAULT_wxUSE_COMMONDLGS=yes
878 DEFAULT_wxUSE_CHOICEDLG=yes
879 DEFAULT_wxUSE_COLOURDLG=yes
880 DEFAULT_wxUSE_DIRDLG=yes
881 DEFAULT_wxUSE_FILEDLG=yes
882 DEFAULT_wxUSE_FINDREPLDLG=yes
883 DEFAULT_wxUSE_FONTDLG=yes
884 DEFAULT_wxUSE_MSGDLG=yes
885 DEFAULT_wxUSE_NUMBERDLG=yes
886 DEFAULT_wxUSE_TEXTDLG=yes
887 DEFAULT_wxUSE_SPLASH=yes
888 DEFAULT_wxUSE_STARTUP_TIPS=yes
889 DEFAULT_wxUSE_PROGRESSDLG=yes
890 DEFAULT_wxUSE_WIZARDDLG=yes
892 DEFAULT_wxUSE_MENUS=yes
893 DEFAULT_wxUSE_MINIFRAME=yes
894 DEFAULT_wxUSE_HTML=yes
895 DEFAULT_wxUSE_FILESYSTEM=yes
896 DEFAULT_wxUSE_FS_INET=yes
897 DEFAULT_wxUSE_FS_ZIP=yes
898 DEFAULT_wxUSE_BUSYINFO=yes
899 DEFAULT_wxUSE_ZIPSTREAM=yes
900 DEFAULT_wxUSE_VALIDATORS=yes
902 DEFAULT_wxUSE_ACCEL=yes
903 DEFAULT_wxUSE_BUTTON=yes
904 DEFAULT_wxUSE_BMPBUTTON=yes
905 DEFAULT_wxUSE_CALCTRL=yes
906 DEFAULT_wxUSE_CARET=yes
907 DEFAULT_wxUSE_CHECKBOX=yes
908 DEFAULT_wxUSE_CHECKLST=yes
909 DEFAULT_wxUSE_CHOICE=yes
910 DEFAULT_wxUSE_COMBOBOX=yes
911 DEFAULT_wxUSE_GAUGE=yes
912 DEFAULT_wxUSE_GRID=yes
913 DEFAULT_wxUSE_NEW_GRID=yes
914 DEFAULT_wxUSE_IMAGLIST=yes
915 DEFAULT_wxUSE_LISTBOX=yes
916 DEFAULT_wxUSE_LISTCTRL=yes
917 DEFAULT_wxUSE_NOTEBOOK=yes
918 DEFAULT_wxUSE_PROPSHEET=yes
919 DEFAULT_wxUSE_RADIOBOX=yes
920 DEFAULT_wxUSE_RADIOBTN=yes
921 DEFAULT_wxUSE_SASH=yes
922 DEFAULT_wxUSE_SCROLLBAR=yes
923 DEFAULT_wxUSE_SLIDER=yes
924 DEFAULT_wxUSE_SPINBTN=yes
925 DEFAULT_wxUSE_SPINCTRL=yes
926 DEFAULT_wxUSE_SPLITTER=yes
927 DEFAULT_wxUSE_STATBMP=yes
928 DEFAULT_wxUSE_STATBOX=yes
929 DEFAULT_wxUSE_STATLINE=yes
930 DEFAULT_wxUSE_STATTEXT=yes
931 DEFAULT_wxUSE_STATUSBAR=yes
932 DEFAULT_wxUSE_TABDIALOG=no
933 DEFAULT_wxUSE_TEXTCTRL=yes
934 DEFAULT_wxUSE_TOGGLEBTN=yes
935 DEFAULT_wxUSE_TOOLBAR=yes
936 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
937 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
938 DEFAULT_wxUSE_TREECTRL=yes
939 DEFAULT_wxUSE_POPUPWIN=yes
941 DEFAULT_wxUSE_UNICODE=no
942 DEFAULT_wxUSE_WCSRTOMBS=no
944 DEFAULT_wxUSE_IMAGE=yes
945 DEFAULT_wxUSE_GIF=yes
946 DEFAULT_wxUSE_PCX=yes
947 DEFAULT_wxUSE_PNM=yes
948 DEFAULT_wxUSE_XPM=yes
951 dnl WX_ARG_WITH should be used to select whether an external package will be
952 dnl used or not, to configure compile-time features of this package itself,
953 dnl use WX_ARG_ENABLE instead
955 dnl ============================
956 dnl external package dependecies
957 dnl ============================
959 dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache
960 dnl these values manually
961 for toolkit in `echo $ALL_TOOLKITS`; do
962 LINE=`grep "wxUSE_$toolkit" ${wx_arg_cache_file}`
963 if test "x$LINE" != x ; then
964 has_toolkit_in_cache=1
966 eval "CACHE_$toolkit=1"
970 dnl ---------------------------------------------------------------------------
971 dnl --disable-gui will build only non-GUI part of wxWindows: check for this
972 dnl first to disable many other switches if it's given
974 dnl NB: this is still in testing stage, don't use if you don't know what you're
976 dnl ---------------------------------------------------------------------------
978 WX_ARG_ENABLE(gui, [ --enable-gui use GUI classes], wxUSE_GUI)
980 if test "$wxUSE_GUI" = "yes"; then
982 WX_ARG_ENABLE(universal, [ --enable-universal use wxWindows GUI controls instead of native ones], wxUSE_UNIVERSAL)
983 AC_ARG_WITH(gtk, [ --with-gtk use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1])
984 AC_ARG_WITH(motif, [ --with-motif use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1])
985 AC_ARG_WITH(mac, [ --with-mac use Mac OS X], [wxUSE_MAC="$withval" TOOLKIT_GIVEN=1])
986 AC_ARG_WITH(wine, [ --with-wine use WINE], [wxUSE_WINE="$withval" CACHE_WINE=1 TOOLKIT_GIVEN=1])
987 AC_ARG_WITH(cygwin, [ --with-cygwin use Cygwin for MS-Windows], [wxUSE_CYGWIN="$withval" CACHE_CYGWIN=1 TOOLKIT_GIVEN=1])
988 AC_ARG_WITH(mingw, [ --with-mingw use GCC Minimal MS-Windows], [wxUSE_MINGW="$withval" CACHE_MINGW=1 TOOLKIT_GIVEN=1])
989 AC_ARG_WITH(pm, [ --with-pm use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
990 AC_ARG_WITH(mgl, [ --with-mgl use MGL], [wxUSE_MGL="$withval" CACHE_MGL=1 TOOLKIT_GIVEN=1])
992 AC_ARG_ENABLE(gtk2, [ --enable-gtk2 use GTK+ 2.0 if available (EXPERIMENTAL)],wxUSE_GTK2=1,wxUSE_GTK2=0)
994 WX_ARG_SYS_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG)
995 WX_ARG_SYS_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
996 WX_ARG_SYS_WITH(libtiff, [ --with-libtiff use libtiff (TIFF file format)], wxUSE_LIBTIFF)
997 WX_ARG_SYS_WITH(freetype, [ --with-freetype use freetype (font rasterizer)], wxUSE_FREETYPE)
998 WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL)
1003 WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (www.letters.com/dmalloc)], wxUSE_DMALLOC)
1004 WX_ARG_SYS_WITH(regex, [ --with-regex enable support for wxRegEx class], wxUSE_REGEX)
1005 WX_ARG_SYS_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB)
1006 WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC)
1008 dnl ====================
1009 dnl compile-time options
1010 dnl ====================
1012 dnl ---------------------------------------------------------------------------
1014 dnl ---------------------------------------------------------------------------
1016 WX_ARG_ENABLE(shared, [ --enable-shared create shared library code], wxUSE_SHARED)
1017 WX_ARG_ENABLE(burnt_name, [ --enable-burnt_name create set name in shared library ], wxUSE_BURNT_NAME)
1018 WX_ARG_ENABLE(optimise, [ --enable-optimise create optimised code], wxUSE_OPTIMISE)
1019 WX_ARG_ENABLE(debug, [ --enable-debug same as debug_flag and debug_info], wxUSE_DEBUG)
1021 if test "$wxUSE_DEBUG" = "yes"; then
1022 DEFAULT_wxUSE_DEBUG_FLAG=yes
1023 DEFAULT_wxUSE_DEBUG_INFO=yes
1024 elif test "$wxUSE_DEBUG" = "no"; then
1025 DEFAULT_wxUSE_DEBUG_FLAG=no
1026 DEFAULT_wxUSE_DEBUG_INFO=no
1029 WX_ARG_ENABLE(debug_flag, [ --enable-debug_flag set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG)
1030 WX_ARG_ENABLE(debug_info, [ --enable-debug_info create code with debugging information], wxUSE_DEBUG_INFO)
1031 WX_ARG_ENABLE(debug_gdb, [ --enable-debug_gdb create code with extra GDB debugging information], wxUSE_DEBUG_GDB)
1032 WX_ARG_ENABLE(debug_cntxt, [ --enable-debug_cntxt use wxDebugContext], wxUSE_DEBUG_CONTEXT)
1033 WX_ARG_ENABLE(mem_tracing, [ --enable-mem_tracing create code with memory tracing], wxUSE_MEM_TRACING)
1034 WX_ARG_ENABLE(profile, [ --enable-profile create code with profiling information], wxUSE_PROFILE)
1035 WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI)
1036 WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without exceptions information], wxUSE_NO_EXCEPTIONS)
1037 WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
1038 WX_ARG_ENABLE(no_deps, [ --enable-no_deps create code without dependency information], wxUSE_NO_DEPS)
1040 WX_ARG_ENABLE(compat20, [ --enable-compat20 enable wxWin 2.0 compatibility], WXWIN_COMPATIBILITY_2)
1041 WX_ARG_ENABLE(compat22, [ --enable-compat22 enable wxWin 2.2 compatibility], WXWIN_COMPATIBILITY_2_2)
1043 dnl ---------------------------------------------------------------------------
1044 dnl (small) optional non GUI classes
1045 dnl ---------------------------------------------------------------------------
1047 WX_ARG_ENABLE(intl, [ --enable-intl use internationalization system], wxUSE_INTL)
1048 WX_ARG_ENABLE(config, [ --enable-config use wxConfig (and derived) classes], wxUSE_CONFIG)
1050 WX_ARG_ENABLE(sockets, [ --enable-sockets use socket/network classes], wxUSE_SOCKETS)
1052 WX_ARG_ENABLE(ipc, [ --enable-ipc use interprocess communication (wxSocket etc.)], wxUSE_IPC)
1054 WX_ARG_ENABLE(cmdline, [ --enable-cmdline use wxCmdLineParser class], wxUSE_CMDLINE_PARSER)
1055 WX_ARG_ENABLE(datetime, [ --enable-datetime use wxDateTime class], wxUSE_DATETIME)
1056 WX_ARG_ENABLE(timedate, [ --enable-timedate use obsolete wxDate/wxTime classes], wxUSE_TIMEDATE)
1057 WX_ARG_ENABLE(stopwatch, [ --enable-stopwatch use wxStopWatch class], wxUSE_STOPWATCH)
1058 WX_ARG_ENABLE(dialupman, [ --enable-dialupman use dialup network classes], wxUSE_DIALUP_MANAGER)
1059 WX_ARG_ENABLE(apple_ieee, [ --enable-apple_ieee use the Apple IEEE codec], wxUSE_APPLE_IEEE)
1060 WX_ARG_ENABLE(timer, [ --enable-timer use wxTimer class], wxUSE_TIMER)
1061 WX_ARG_ENABLE(wave, [ --enable-wave use wxWave class], wxUSE_WAVE)
1062 WX_ARG_ENABLE(fraction, [ --enable-fraction use wxFraction class], wxUSE_FRACTION)
1063 WX_ARG_ENABLE(dynlib, [ --enable-dynlib use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS)
1064 WX_ARG_ENABLE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG)
1065 WX_ARG_ENABLE(geometry, [ --enable-geometry use geometry class], wxUSE_GEOMETRY)
1066 WX_ARG_ENABLE(log, [ --enable-log use logging system], wxUSE_LOG)
1067 WX_ARG_ENABLE(streams, [ --enable-streams use wxStream etc classes], wxUSE_STREAMS)
1068 WX_ARG_ENABLE(file, [ --enable-file use wxFile classes], wxUSE_FILE)
1069 WX_ARG_ENABLE(ffile, [ --enable-ffile use wxFFile classes], wxUSE_FFILE)
1070 WX_ARG_ENABLE(textfile, [ --enable-textfile use wxTextFile classes], wxUSE_TEXTFILE)
1071 WX_ARG_ENABLE(fontmap, [ --enable-fontmap use font encodings conversion classes], wxUSE_FONTMAP)
1072 WX_ARG_ENABLE(unicode, [ --enable-unicode compile wxString with Unicode support], wxUSE_UNICODE)
1073 WX_ARG_ENABLE(wcsrtombs, [ --enable-wcsrtombs use wcsrtombs instead of buggy (GNU libc1/Linux libc5) wcstombs], wxUSE_WCSRTOMBS)
1074 WX_ARG_ENABLE(wxprintfv, [ --enable-wxprintfv use wxWindows implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF)
1075 WX_ARG_ENABLE(std_iostreams, [ --enable-std_iostreams use standard C++ stream classes], wxUSE_STD_IOSTREAM)
1076 WX_ARG_ENABLE(filesystem, [ --enable-filesystem use virtual file systems classes], wxUSE_FILESYSTEM)
1077 WX_ARG_ENABLE(fs_inet, [ --enable-fs_inet use virtual HTTP/FTP filesystems], wxUSE_FS_INET)
1078 WX_ARG_ENABLE(fs_zip, [ --enable-fs_zip use virtual ZIP filesystems], wxUSE_FS_ZIP)
1079 WX_ARG_ENABLE(zipstream, [ --enable-zipstream use wxZipInputStream], wxUSE_ZIPSTREAM)
1081 WX_ARG_ENABLE(catch_segvs, [ --enable-catch_segvs catch signals and pass them to wxApp::OnFatalException], wxUSE_ON_FATAL_EXCEPTION)
1082 WX_ARG_ENABLE(snglinst, [ --enable-snglinst use wxSingleInstanceChecker class], wxUSE_SNGLINST_CHECKER)
1084 WX_ARG_ENABLE(mimetype, [ --enable-mimetypes use wxMimeTypesManager], wxUSE_MIMETYPE)
1085 WX_ARG_ENABLE(system_options, [ --enable-sysoptions use wxSystemOptions], wxUSE_SYSTEM_OPTIONS)
1087 dnl ---------------------------------------------------------------------------
1088 dnl "big" options (i.e. those which change a lot of things throughout the library)
1089 dnl ---------------------------------------------------------------------------
1091 WX_ARG_ENABLE(threads, [ --enable-threads use threads], wxUSE_THREADS)
1092 WX_ARG_ENABLE(serial, [ --enable-serial use class serialization], wxUSE_SERIAL)
1094 if test "$wxUSE_GUI" = "yes"; then
1096 dnl ---------------------------------------------------------------------------
1097 dnl "big" GUI options
1098 dnl ---------------------------------------------------------------------------
1100 WX_ARG_ENABLE(docview, [ --enable-docview use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE)
1101 WX_ARG_ENABLE(help, [ --enable-help use help subsystem], wxUSE_HELP)
1102 WX_ARG_ENABLE(mshtmlhelp, [ --enable-mshtmlhelp use MS HTML Help (win32)], wxUSE_MS_HTML_HELP)
1103 WX_ARG_ENABLE(html, [ --enable-html use wxHTML sub-library], wxUSE_HTML)
1104 WX_ARG_ENABLE(htmlhelp, [ --enable-htmlhelp use wxHTML-based help], wxUSE_WXHTML_HELP)
1105 WX_ARG_ENABLE(constraints, [ --enable-constraints use layout-constraints system], wxUSE_CONSTRAINTS)
1106 WX_ARG_ENABLE(printarch, [ --enable-printarch use printing architecture], wxUSE_PRINTING_ARCHITECTURE)
1107 WX_ARG_ENABLE(mdi, [ --enable-mdi use multiple document interface architecture], wxUSE_MDI_ARCHITECTURE)
1108 WX_ARG_ENABLE(loggui, [ --enable-loggui use standard GUI logger], wxUSE_LOGGUI)
1109 WX_ARG_ENABLE(logwin, [ --enable-logwin use wxLogWindow], wxUSE_LOGWINDOW)
1111 dnl ---------------------------------------------------------------------------
1112 dnl PostScript options
1113 dnl ---------------------------------------------------------------------------
1114 WX_ARG_ENABLE(postscript, [ --enable-postscript use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT)
1116 dnl VZ: these options seem to be always on, if someone wants to change it please do
1117 dnl WX_ARG_ENABLE(PS-normalized, [ --enable-PS-normalized use normalized PS fonts], dnl wxUSE_NORMALIZED_PS_FONTS)
1118 dnl WX_ARG_ENABLE(afmfonts, [ --enable-afmfonts use Adobe Font Metric Font table], dnl wxUSE_AFM_FOR_POSTSCRIPT)
1120 dnl ---------------------------------------------------------------------------
1122 dnl ---------------------------------------------------------------------------
1124 WX_ARG_ENABLE(prologio, [ --enable-prologio use Prolog IO library], wxUSE_PROLOGIO)
1125 WX_ARG_ENABLE(resources, [ --enable-resources use wxWindows resources], wxUSE_RESOURCES)
1127 WX_ARG_ENABLE(xresources, [ --enable-xresources use X resources for save (default for gtk+)], wxUSE_X_RESOURCES)
1129 dnl ---------------------------------------------------------------------------
1131 dnl ---------------------------------------------------------------------------
1133 WX_ARG_ENABLE(clipboard, [ --enable-clipboard use wxClipboard classes], wxUSE_CLIPBOARD)
1134 WX_ARG_ENABLE(dnd, [ --enable-dnd use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP)
1135 WX_ARG_ENABLE(metafile, [ --enable-metafile use win32 metafiles], wxUSE_METAFILE)
1137 WX_ARG_ENABLE(treelayout, [ --enable-treelayout use wxTreeLayout classes], wxUSE_TREELAYOUT)
1139 dnl ---------------------------------------------------------------------------
1140 dnl optional GUI controls (in alphabetical order except the first one)
1141 dnl ---------------------------------------------------------------------------
1143 WX_ARG_ENABLE(controls, [ --enable-controls use all usual controls], wxUSE_CONTROLS)
1145 dnl even with --enable-controls, some may be disabled by giving
1146 dnl --disable-<control> later on the command line - but by default all will be
1147 dnl used (and vice versa)
1148 if test "$wxUSE_CONTROLS" = "yes"; then
1149 DEFAULT_wxUSE_ACCEL=yes
1150 DEFAULT_wxUSE_BMPBUTTON=yes
1151 DEFAULT_wxUSE_BUTTON=yes
1152 DEFAULT_wxUSE_CALCTRL=no
1153 DEFAULT_wxUSE_CARET=yes
1154 DEFAULT_wxUSE_COMBOBOX=yes
1155 DEFAULT_wxUSE_CHECKBOX=yes
1156 DEFAULT_wxUSE_CHECKLISTBOX=yes
1157 DEFAULT_wxUSE_CHOICE=yes
1158 DEFAULT_wxUSE_GAUGE=yes
1159 DEFAULT_wxUSE_GRID=yes
1160 DEFAULT_wxUSE_NEW_GRID=yes
1161 DEFAULT_wxUSE_IMAGLIST=yes
1162 DEFAULT_wxUSE_LISTBOX=yes
1163 DEFAULT_wxUSE_LISTCTRL=yes
1164 DEFAULT_wxUSE_NOTEBOOK=yes
1165 DEFAULT_wxUSE_PROPSHEET=yes
1166 DEFAULT_wxUSE_RADIOBOX=yes
1167 DEFAULT_wxUSE_RADIOBTN=yes
1168 DEFAULT_wxUSE_SASH=yes
1169 DEFAULT_wxUSE_SCROLLBAR=yes
1170 DEFAULT_wxUSE_SLIDER=yes
1171 DEFAULT_wxUSE_SPINBTN=yes
1172 DEFAULT_wxUSE_SPINCTRL=yes
1173 DEFAULT_wxUSE_SPLITTER=yes
1174 DEFAULT_wxUSE_STATBMP=yes
1175 DEFAULT_wxUSE_STATBOX=yes
1176 DEFAULT_wxUSE_STATLINE=yes
1177 DEFAULT_wxUSE_STATUSBAR=yes
1178 DEFAULT_wxUSE_TAB_DIALOG=yes
1179 DEFAULT_wxUSE_TOGGLEBTN=yes
1180 DEFAULT_wxUSE_TOOLBAR=yes
1181 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
1182 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
1183 DEFAULT_wxUSE_TOOLTIPS=yes
1184 DEFAULT_wxUSE_TREECTRL=yes
1185 DEFAULT_wxUSE_POPUPWIN=yes
1186 elif test "$wxUSE_CONTROLS" = "no"; then
1187 DEFAULT_wxUSE_ACCEL=no
1188 DEFAULT_wxUSE_BMPBUTTON=no
1189 DEFAULT_wxUSE_BUTTON=no
1190 DEFAULT_wxUSE_CALCTRL=no
1191 DEFAULT_wxUSE_CARET=no
1192 DEFAULT_wxUSE_COMBOBOX=no
1193 DEFAULT_wxUSE_CHECKBOX=no
1194 DEFAULT_wxUSE_CHECKLISTBOX=no
1195 DEFAULT_wxUSE_CHOICE=no
1196 DEFAULT_wxUSE_GAUGE=no
1197 DEFAULT_wxUSE_GRID=no
1198 DEFAULT_wxUSE_NEW_GRID=no
1199 DEFAULT_wxUSE_IMAGLIST=no
1200 DEFAULT_wxUSE_LISTBOX=no
1201 DEFAULT_wxUSE_LISTCTRL=no
1202 DEFAULT_wxUSE_NOTEBOOK=no
1203 DEFAULT_wxUSE_PROPSHEET=no
1204 DEFAULT_wxUSE_RADIOBOX=no
1205 DEFAULT_wxUSE_RADIOBTN=no
1206 DEFAULT_wxUSE_SASH=no
1207 DEFAULT_wxUSE_SCROLLBAR=no
1208 DEFAULT_wxUSE_SLIDER=no
1209 DEFAULT_wxUSE_SPINBTN=no
1210 DEFAULT_wxUSE_SPINCTRL=no
1211 DEFAULT_wxUSE_SPLITTER=no
1212 DEFAULT_wxUSE_STATBMP=no
1213 DEFAULT_wxUSE_STATBOX=no
1214 DEFAULT_wxUSE_STATLINE=no
1215 DEFAULT_wxUSE_STATUSBAR=no
1216 DEFAULT_wxUSE_TAB_DIALOG=no
1217 DEFAULT_wxUSE_TOGGLEBTN=no
1218 DEFAULT_wxUSE_TOOLBAR=no
1219 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
1220 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
1221 DEFAULT_wxUSE_TOOLTIPS=no
1222 DEFAULT_wxUSE_TREECTRL=no
1223 DEFAULT_wxUSE_POPUPWIN=no
1226 WX_ARG_ENABLE(accel, [ --enable-accel use accelerators], wxUSE_ACCEL)
1227 WX_ARG_ENABLE(button, [ --enable-button use wxButton class], wxUSE_BUTTON)
1228 WX_ARG_ENABLE(bmpbutton, [ --enable-bmpbutton use wxBitmapButton class], wxUSE_BMPBUTTON)
1229 WX_ARG_ENABLE(calendar, [ --enable-calendar use wxCalendarCtrl class], wxUSE_CALCTRL)
1230 WX_ARG_ENABLE(caret, [ --enable-caret use wxCaret class], wxUSE_CARET)
1231 WX_ARG_ENABLE(checkbox, [ --enable-checkbox use wxCheckBox class], wxUSE_CHECKBOX)
1232 WX_ARG_ENABLE(checklst, [ --enable-checklst use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST)
1233 WX_ARG_ENABLE(choice, [ --enable-choice use wxChoice class], wxUSE_CHOICE)
1234 WX_ARG_ENABLE(combobox, [ --enable-combobox use wxComboBox classes], wxUSE_COMBOBOX)
1235 WX_ARG_ENABLE(gauge, [ --enable-gauge use wxGauge class], wxUSE_GAUGE)
1236 WX_ARG_ENABLE(grid, [ --enable-grid use wxGrid class], wxUSE_GRID)
1237 WX_ARG_ENABLE(newgrid, [ --enable-newgrid use new wxGrid class], wxUSE_NEW_GRID)
1238 WX_ARG_ENABLE(imaglist, [ --enable-imaglist use wxImageList class], wxUSE_IMAGLIST)
1239 WX_ARG_ENABLE(listbox, [ --enable-listbox use wxListBox class], wxUSE_LISTBOX)
1240 WX_ARG_ENABLE(listctrl, [ --enable-listctrl use wxListCtrl class], wxUSE_LISTCTRL)
1241 WX_ARG_ENABLE(notebook, [ --enable-notebook use wxNotebook class], wxUSE_NOTEBOOK)
1242 WX_ARG_ENABLE(propsheet, [ --enable-propsheet use wxPropertySheet class], wxUSE_PROPSHEET)
1243 WX_ARG_ENABLE(radiobox, [ --enable-radiobox use wxRadioBox class], wxUSE_RADIOBOX)
1244 WX_ARG_ENABLE(radiobtn, [ --enable-radiobtn use wxRadioButton class], wxUSE_RADIOBTN)
1245 WX_ARG_ENABLE(sash, [ --enable-sash use wxSashWindow class], wxUSE_SASH)
1246 WX_ARG_ENABLE(scrollbar, [ --enable-scrollbar use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR)
1247 WX_ARG_ENABLE(slider, [ --enable-slider use wxSlider class], wxUSE_SLIDER)
1248 WX_ARG_ENABLE(spinbtn, [ --enable-spinbtn use wxSpinButton class], wxUSE_SPINBTN)
1249 WX_ARG_ENABLE(spinctrl, [ --enable-spinctrl use wxSpinCtrl class], wxUSE_SPINCTRL)
1250 WX_ARG_ENABLE(splitter, [ --enable-splitter use wxSplitterWindow class], wxUSE_SPLITTER)
1251 WX_ARG_ENABLE(statbmp, [ --enable-statbmp use wxStaticBitmap class], wxUSE_STATBMP)
1252 WX_ARG_ENABLE(statbox, [ --enable-statbox use wxStaticBox class], wxUSE_STATBOX)
1253 WX_ARG_ENABLE(statline, [ --enable-statline use wxStaticLine class], wxUSE_STATLINE)
1254 WX_ARG_ENABLE(stattext, [ --enable-stattext use wxStaticText class], wxUSE_STATTEXT)
1255 WX_ARG_ENABLE(statusbar, [ --enable-statusbar use wxStatusBar class], wxUSE_STATUSBAR)
1256 WX_ARG_ENABLE(tabdialog, [ --enable-tabdialog use wxTabControl class], wxUSE_TABDIALOG)
1257 WX_ARG_ENABLE(textctrl, [ --enable-textctrl use wxTextCtrl class], wxUSE_TEXTCTRL)
1258 WX_ARG_ENABLE(togglebtn, [ --enable-togglebtn use wxToggleButton class], wxUSE_TOGGLEBTN)
1259 WX_ARG_ENABLE(toolbar, [ --enable-toolbar use wxToolBar class], wxUSE_TOOLBAR)
1260 WX_ARG_ENABLE(tbarnative, [ --enable-tbarnative use native wxToolBar class], wxUSE_TOOLBAR_NATIVE)
1261 WX_ARG_ENABLE(tbarsmpl, [ --enable-tbarsmpl use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE)
1262 WX_ARG_ENABLE(treectrl, [ --enable-treectrl use wxTreeCtrl class], wxUSE_TREECTRL)
1263 WX_ARG_ENABLE(popupwin, [ --enable-popupwin use wxPopUpWindow class], wxUSE_POPUPWIN)
1265 dnl ---------------------------------------------------------------------------
1267 dnl ---------------------------------------------------------------------------
1269 WX_ARG_ENABLE(commondlg, [ --enable-commondlg use common dialogs (wxDirDialog, wxProgressDialog, wxTextDialog, ...)], wxUSE_COMMONDLGS)
1270 WX_ARG_ENABLE(choicedlg, [ --enable-choicedlg use wxChoiceDialog], wxUSE_CHOICEDLG)
1271 WX_ARG_ENABLE(coldlg, [ --enable-coldlg use wxColourDialog], wxUSE_COLOURDLG)
1272 WX_ARG_ENABLE(filedlg, [ --enable-filedlg use wxFileDialog], wxUSE_FILEDLG)
1273 WX_ARG_ENABLE(filedlg, [ --enable-finddlg use wxFindReplaceDialog], wxUSE_FINDREPLDLG)
1274 WX_ARG_ENABLE(fontdlg, [ --enable-fontdlg use wxFontDialog], wxUSE_FONTDLG)
1275 WX_ARG_ENABLE(dirdlg, [ --enable-dirdlg use wxDirDialog], wxUSE_DIRDLG)
1276 WX_ARG_ENABLE(msgdlg, [ --enable-msgdlg use wxMessageDialog], wxUSE_MSGDLG)
1277 WX_ARG_ENABLE(numberdlg, [ --enable-numberdlg use wxNumberEntryDialog], wxUSE_NUMBERDLG)
1278 WX_ARG_ENABLE(splash, [ --enable-splash use wxSplashScreen], wxUSE_SPLASH)
1279 WX_ARG_ENABLE(textdlg, [ --enable-textdlg use wxTextDialog], wxUSE_TEXTDLG)
1280 WX_ARG_ENABLE(tipdlg, [ --enable-tipdlg use startup tips], wxUSE_STARTUP_TIPS)
1281 WX_ARG_ENABLE(progressdlg, [ --enable-progressdlg use wxProgressDialog], wxUSE_PROGRESSDLG)
1282 WX_ARG_ENABLE(wizarddlg, [ --enable-wizarddlg use wxWizard], wxUSE_WIZARDDLG)
1284 dnl ---------------------------------------------------------------------------
1285 dnl misc GUI options
1286 dnl ---------------------------------------------------------------------------
1288 WX_ARG_ENABLE(menus, [ --enable-menus use wxMenu/wxMenuBar/wxMenuItem classes], wxUSE_MENUS)
1289 WX_ARG_ENABLE(miniframe, [ --enable-miniframe use wxMiniFrame class], wxUSE_MINIFRAME)
1290 WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUSE_TOOLTIPS)
1291 WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES)
1292 WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
1293 WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
1294 WX_ARG_ENABLE(joystick, [ --enable-joystick compile in joystick support (Linux only)], wxUSE_JOYSTICK)
1295 WX_ARG_ENABLE(metafile, [ --enable-metafiles use wxMetaFile (Windows only)], wxUSE_METAFILE)
1296 WX_ARG_ENABLE(dragimage, [ --enable-dragimage use wxDragImage], wxUSE_DRAGIMAGE)
1298 dnl ---------------------------------------------------------------------------
1299 dnl support for image formats that do not rely on external library
1300 dnl ---------------------------------------------------------------------------
1302 WX_ARG_ENABLE(image, [ --enable-image use wxImage class], wxUSE_IMAGE)
1303 WX_ARG_ENABLE(gif, [ --enable-gif use gif images (GIF file format)], wxUSE_GIF)
1304 WX_ARG_ENABLE(pcx, [ --enable-pcx use pcx images (PCX file format)], wxUSE_PCX)
1305 WX_ARG_ENABLE(pnm, [ --enable-pnm use pnm images (PNM file format)], wxUSE_PNM)
1306 WX_ARG_ENABLE(pnm, [ --enable-xpm use xpm images (XPM file format)], wxUSE_XPM)
1311 dnl cache the options values before (may be) aborting below
1314 dnl check that no more than one toolkit is given and that if none are given that
1315 dnl we have a default one
1317 AC_MSG_CHECKING(for toolkit)
1319 if test "$wxUSE_GUI" = "yes"; then
1321 if test "$USE_BEOS" = 1; then
1322 AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui])
1325 if test "$TOOLKIT_GIVEN" = 1; then
1326 dnl convert "yes" to 1 and "no" to 0
1327 for toolkit in `echo $ALL_TOOLKITS`; do
1329 eval "value=\$${var}"
1330 eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`"
1333 dnl try to guess the most apropriate toolkit for this platform
1334 for toolkit in `echo $ALL_TOOLKITS`; do
1335 if test "$has_toolkit_in_cache" != 1; then
1336 var=DEFAULT_DEFAULT_wxUSE_$toolkit
1338 var=DEFAULT_wxUSE_$toolkit
1340 eval "wxUSE_$toolkit=\$${var}"
1344 dnl we suppose that expr is available (maybe there is a better way to do
1345 dnl this? what about using ALL_TOOLKITS? TODO)
1346 NUM_TOOLKITS=`expr ${wxUSE_GTK:-0} + ${wxUSE_MOTIF:-0} + ${wxUSE_MAC:-0} + ${wxUSE_WINE:-0} + ${wxUSE_MINGW:-0} + ${wxUSE_CYGWIN:-0} + ${wxUSE_MGL:-0}`
1348 dnl Allow wxUSE_PM only for OS/2 with EMX.
1349 dnl Path separator; ':' for unix.
1350 dnl Stem for flex output; lexyy for OS/2, lex.yy otherwise
1351 dnl Extension for programs; '.exe' for OS/2 and msw builds (set later).
1354 NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}`
1355 # PATH_IFS is autodetected by OS/2's configure (usually ';')
1364 case "$NUM_TOOLKITS" in
1368 AC_MSG_ERROR(Please specify a toolkit - cannot determine the default for ${host})
1371 AC_MSG_ERROR(Please specify at most one toolkit (may be some are cached?))
1374 dnl cache the wxUSE_<TOOLKIT> values too
1375 for toolkit in `echo $ALL_TOOLKITS`; do
1377 eval "value=\$${var}"
1378 if test "x$value" != x; then
1379 cache_var=CACHE_$toolkit
1380 eval "cache=\$${cache_var}"
1381 if test "$cache" = 1; then
1382 echo "$var=$value" >> ${wx_arg_cache_file}
1384 if test "$value" = 1; then
1385 toolkit_echo=`echo $toolkit | tr [[A-Z]] [[a-z]]`
1386 AC_MSG_RESULT($toolkit_echo)
1391 dnl from "if wxUSE_GUI"
1394 AC_MSG_RESULT(base only)
1397 dnl ---------------------------------------------------------------------------
1398 dnl Checks for programs
1399 dnl ---------------------------------------------------------------------------
1401 dnl flush the cache because checking for programs might abort
1404 dnl cross-compiling support: we're cross compiling if the build system is
1405 dnl different from the target one (assume host and target be always the same)
1406 if test "$build" != "$host" ; then
1410 RANLIB=$host_alias-ranlib
1411 DLLTOOL=$host_alias-dlltool
1412 RESCOMP=$host_alias-windres
1415 STRIP=$host_alias-strip
1418 dnl C-compiler checks
1419 dnl defines CC with the compiler to use
1420 dnl defines GCC with yes if using gcc
1421 dnl defines GCC empty if not using gcc
1425 CFLAGS=`echo "$CFLAGS" | sed 's/-g//g'`
1427 dnl what is the c-preprocessor
1428 dnl defines CPP with the c-preprocessor
1431 dnl is -traditional needed for correct compilations
1432 dnl adds -traditional for gcc if needed
1433 AC_PROG_GCC_TRADITIONAL
1438 dnl C++-compiler checks
1439 dnl defines CXX with the compiler to use
1440 dnl defines GXX with yes if using gxx
1441 dnl defines GXX empty if not using gxx
1442 dnl defines CXXFLAGS
1445 dnl what is the C++-preprocessor
1446 dnl defines CXXCPP with the C++-preprocessor
1449 CXXFLAGS=`echo "$CXXFLAGS" | sed 's/-g//g'`
1454 dnl defines RANLIB with the appropriate command
1458 dnl defines AR with the appropriate command
1459 AC_CHECK_PROG(AR, ar, ar, ar)
1462 dnl defines INSTALL with the appropriate command
1466 dnl defines STRIP as strip or nothing if not found
1467 AC_CHECK_PROG(STRIP, strip, strip, true)
1469 dnl check if VPATH works
1470 AC_MSG_CHECKING([make for VPATH support])
1472 cat - << EOF > confMake
1478 if test ! -d sub ; then
1481 echo dummy > sub/file
1482 ${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null
1484 rm -f sub/file check final_file confMake
1486 if test "$RESULT" = 0; then
1491 You need a make-utility that is able to use the variable
1493 If your version of make does not support VPATH correctly,
1494 please install GNU-make (possibly as gmake), and start
1495 configure with the following command:
1496 export MAKE=gmake; ./configure for sh-type shells
1497 setenv MAKE gmake; ./configure for csh-type shells
1498 Also please do remember to use gmake in this case every time
1499 you are trying to compile.
1504 dnl defines YACC with the appropriate command
1508 dnl defines LEX with the appropriate command
1509 dnl defines LEXLIB with the appropriate library
1512 dnl needed for making link to setup.h
1515 dnl ---------------------------------------------------------------------------
1516 dnl Define search path for includes and libraries: all headers and libs will be
1517 dnl looked for in all directories of this path
1518 dnl ---------------------------------------------------------------------------
1520 dnl notice that /usr/include should not be in this list, otherwise it breaks
1521 dnl compilation on Solaris/gcc because standard headers are included instead
1522 dnl of the gcc ones (correction: it *is* needed for broken AIX compiler - but
1523 dnl do put it last!)
1525 dnl Also try to put all directories which may contain X11R6 before those which
1526 dnl may contain X11R5/4 - we want to use R6 on machines which have both!
1528 /usr/local/include \
1530 /usr/Motif-1.2/include \
1531 /usr/Motif-2.1/include \
1533 /usr/include/Motif1.2 \
1534 /opt/xpm/include/X11 \
1535 /opt/GBxpm/include/ \
1536 /opt/GBxpm/X11/include/ \
1538 /usr/Motif1.2/include \
1540 /usr/openwin/include \
1544 /usr/X11R6/include \
1545 /usr/X11R6.4/include \
1546 /usr/X11R5/include \
1547 /usr/X11R4/include \
1549 /usr/include/X11R6 \
1550 /usr/include/X11R5 \
1551 /usr/include/X11R4 \
1553 /usr/local/X11R6/include \
1554 /usr/local/X11R5/include \
1555 /usr/local/X11R4/include \
1557 /usr/local/include/X11R6 \
1558 /usr/local/include/X11R5 \
1559 /usr/local/include/X11R4 \
1563 /usr/local/X11/include \
1564 /usr/local/include/X11 \
1568 /usr/XFree86/include/X11 \
1570 X:/XFree86/include \
1571 X:/XFree86/include/X11 \
1574 /usr/local/include/gtk \
1576 /usr/local/include/glib \
1579 /usr/local/include/qt \
1581 /usr/include/windows \
1583 /usr/local/include/wine \
1585 /usr/unsupported/include \
1586 /usr/athena/include \
1587 /usr/local/x11r5/include \
1588 /usr/lpp/Xamples/include \
1590 /usr/openwin/share/include \
1594 SEARCH_LIB="`echo "$SEARCH_INCLUDE" | sed s/include/lib/g` "
1596 dnl ------------------------------------------------------------------------
1597 dnl Check for libraries
1598 dnl ------------------------------------------------------------------------
1600 dnl flush the cache because checking for libraries below might abort
1603 dnl ------------------------------------------------------------------------
1604 dnl Check for regex libraries
1605 dnl ------------------------------------------------------------------------
1608 if test "$wxUSE_REGEX" != "no"; then
1609 dnl according to Unix 98 specs, regcomp() is in libc but I believe that
1610 dnl on some old systems it may be in libregex - check for it too?
1611 AC_CHECK_HEADER(regex.h, AC_CHECK_FUNCS(regcomp))
1613 if test "x$ac_cv_func_regcomp" != "xyes"; then
1614 dnl we were asked to use the system version of regex lib only but it
1615 dnl is not available
1616 if test "$wxUSE_REGEX" = "sys"; then
1617 AC_MSG_ERROR([system regex library not found! Use --with-regex to use the built-in regex library.])
1620 dnl fallback to the built in code
1621 REGEX_INCLUDE="-I\${top_srcdir}/src/regex"
1624 AC_DEFINE(wxUSE_REGEX)
1627 dnl ----------------------------------------------------------------
1628 dnl search for toolkit (widget sets)
1629 dnl ----------------------------------------------------------------
1633 if test "$wxUSE_GUI" = "yes"; then
1648 if test "$wxUSE_CYGWIN" = 1 || test "$wxUSE_MINGW" = 1 ; then
1649 AC_CHECK_HEADER(windows.h, [],
1651 AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
1654 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS msw"
1656 dnl --- Quick & Dirty ; link against most/all libraries
1657 dnl --- This will bloat the executable, but it'll work for now...
1658 LIBS="$LIBS -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -ladvapi32 -lwsock32"
1660 dnl add extra odbc libs if we have compiled in odbc
1661 if test "$wxUSE_ODBC" = "yes" ; then
1662 LIBS="$LIBS -lodbc32 -lole32 -loleaut32"
1665 dnl -mwindows is needed to avoid that spawning of a console window
1666 if test "$wxUSE_MINGW" = 1; then
1667 LDFLAGS="$LDFLAGS -mwindows"
1673 dnl we should calculate these
1674 RCINCSWITCH="--include-dir"
1675 RCDEFSWITCH="--define"
1676 RCPREPROCESSOR="--preprocessor \"\$(CC) -c -E -xc-header -DRC_INVOKED\""
1679 RESFLAGS="$RCPREPROCESSOR $RCINCSWITCH \$(top_srcdir)/include $RCINCSWITCH \$(top_srcdir)/\$(program_dir) $RCDEFSWITCH __WIN32__ $RCDEFSWITCH __WIN95__ $RCDEFSWITCH __GNUWIN32__"
1681 dnl set optinal RES_PROGRAM_OPT to RES_PROGRAM
1682 RESPROGRAM="\$(RES_PROGRAM)"
1685 if test "$wxUSE_GTK" = 1; then
1686 AC_MSG_CHECKING([for GTK+ version])
1688 gtk_version_cached=1
1689 AC_CACHE_VAL(wx_cv_lib_gtk,
1691 dnl stupid GTK+ AM macros produce their own messages, so we
1692 dnl have to pass to the next line
1693 gtk_version_cached=0
1697 if test "x$wxUSE_GTK2" = "xyes"; then
1698 AM_PATH_GTK_2_0(1.3.1, wx_cv_lib_gtk=2.0, gthread)
1701 if test -z "$wx_cv_lib_gtk"; then
1702 AM_PATH_GTK(1.2.7, wx_cv_lib_gtk=1.2.7)
1705 if test -z "$wx_cv_lib_gtk"; then
1706 AM_PATH_GTK(1.2.3, wx_cv_lib_gtk=1.2.3)
1709 if test -z "$wx_cv_lib_gtk"; then
1710 dnl looks better in AC_MSG_RESULT
1713 dnl we need to cache GTK_CFLAGS and GTK_LIBS for the
1715 wx_cv_cflags_gtk=$GTK_CFLAGS
1716 wx_cv_libs_gtk=$GTK_LIBS
1721 dnl if it wasn't cached, the messages from AM_PATH_GTK() above are
1723 if test "$gtk_version_cached" = 1; then
1724 AC_MSG_RESULT($wx_cv_lib_gtk)
1727 case "$wx_cv_lib_gtk" in
1736 Please check that gtk-config is in path, the directory
1737 where GTK+ libraries are installed (returned by
1738 'gtk-config --libs' command) is in LD_LIBRARY_PATH or
1739 equivalent variable and GTK+ is version 1.2.3 or above.
1744 TOOLKIT_INCLUDE="$wx_cv_cflags_gtk"
1745 GUI_TK_LIBRARY="$wx_cv_libs_gtk"
1747 AFMINSTALL=afminstall
1751 dnl test for XIM support in libgdk
1752 AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM))
1755 if test "$wxUSE_MGL" = 1; then
1756 dnl FIXME_MGL - test for MGL's variants for freebsd etc.
1758 AC_MSG_CHECKING(for SciTech MGL library)
1759 if test "x$MGL_ROOT" = x ; then
1760 AC_MSG_RESULT(not found)
1761 AC_MSG_ERROR([Cannot find MGL library. Make sure MGL_ROOT is set.])
1763 AC_MSG_RESULT($MGL_ROOT)
1766 MGL_OS=linux/gcc/glibc
1769 if test "$wxUSE_DEBUG_FLAG" = yes ; then
1770 if test -f $MGL_ROOT/lib/debug/$MGL_OS/libmgl.a ; then
1774 if test "x$MGL_LIB_TYPE" = x ; then
1775 if test -f $MGL_ROOT/lib/release/$MGL_OS/libmgl.a ; then
1776 MGL_LIB_TYPE=release
1778 AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.])
1782 TOOLKIT_INCLUDE="-I$MGL_ROOT/include"
1783 GUI_TK_LIBRARY="-L$MGL_ROOT/lib/$MGL_LIB_TYPE/$MGL_OS -lmgl -lmglcpp -lpm"
1785 AFMINSTALL=afminstall
1790 if test "$wxUSE_WINE" = 1; then
1791 AC_MSG_CHECKING(for WINE includes)
1792 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, windows.h)
1793 if test "$ac_find_includes" != "" ; then
1794 AC_MSG_RESULT(found $ac_find_includes)
1795 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE -I$ac_find_includes"
1798 AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
1802 AC_MSG_CHECKING(for Xpm library)
1803 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
1804 if test "$ac_find_libraries" != "" ; then
1805 GUI_TK_LIBRARY="-L$ac_find_libraries"
1807 AC_DEFINE(wxHAVE_LIB_XPM)
1808 AC_MSG_RESULT(found at $ac_find_libraries)
1811 AC_MSG_WARN(library will be compiled without support for images in XPM format)
1815 AC_MSG_CHECKING(for Mesa library)
1816 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,MesaGL)
1817 if test "$ac_find_libraries" != "" ; then
1818 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -L$ac_find_libraries"
1819 MESA_LINK="-lMesaGL"
1820 AC_MSG_RESULT(found at $ac_find_libraries)
1825 GUI_TK_LINK="-lwine $MESA_LINK $XPM_LINK -lXxf86dga -lXxf86vm -lSM -lICE -lXext -lXmu -lX11 -lncurses"
1826 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK"
1832 dnl use standard macros to check for X headers/libs, this brings support
1833 dnl for the standard configure options --x-includes and --x-libraries;
1834 dnl the path to the X headers/libs is not only needed for motif, but also
1835 dnl by the OpenGL and XKBlib.h checks further down
1838 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1839 LDFLAGS="$LDFLAGS $X_LIBS"
1841 if test "$wxUSE_MOTIF" = 1; then
1842 if test "$no_x" = "yes"; then
1843 AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
1846 GUI_TK_LIBRARY="$X_LIBS"
1847 TOOLKIT_INCLUDE="$X_CFLAGS"
1849 AFMINSTALL=afminstall
1851 dnl manual check for X11 headers/libs
1853 dnl AC_MSG_CHECKING(for X11 headers)
1854 dnl WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, X11/Intrinsic.h)
1855 dnl if test "$ac_find_includes" != "" ; then
1856 dnl AC_MSG_RESULT(found $ac_find_includes)
1858 dnl AC_MSG_RESULT(no)
1859 dnl AC_MSG_ERROR(please set CFLAGS to contain the location of X11/Intrinsic.h)
1862 dnl AC_MSG_CHECKING(for X11 libraries)
1863 dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB, X11)
1864 dnl if test "$ac_find_libraries" != "" ; then
1865 dnl WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
1866 dnl WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
1868 dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1869 dnl TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE $ac_path_to_include"
1870 dnl AC_MSG_RESULT(found at $ac_find_libraries)
1872 dnl AC_MSG_RESULT(no)
1873 dnl AC_MSG_ERROR(please set LDFLAGS to contain the location of libX11)
1876 COMPILED_X_PROGRAM=0
1878 AC_MSG_CHECKING(for Motif/Lesstif headers)
1879 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
1880 if test "$ac_find_includes" != "" ; then
1881 AC_MSG_RESULT(found $ac_find_includes)
1890 version = xmUseVersion;
1893 AC_MSG_RESULT(found in default search path)
1894 COMPILED_X_PROGRAM=1
1898 AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
1903 if test "$COMPILED_X_PROGRAM" = 0; then
1904 AC_MSG_CHECKING(for Motif/Lesstif library)
1905 WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
1906 if test "$ac_find_libraries" != "" ; then
1907 WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
1908 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
1910 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1911 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE $ac_path_to_include"
1912 AC_MSG_RESULT(found at $ac_find_libraries)
1914 dnl it might happen that we found headers in one of the standard
1915 dnl paths but the libs are elsewhere - we do need to try to
1916 dnl compile a sample program then here
1924 version = xmUseVersion;
1927 AC_MSG_RESULT(found in default search path)
1928 COMPILED_X_PROGRAM=1
1932 AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
1938 dnl we don't need this as we used AC_PATH_XTRA above which does it for us
1940 dnl dnl if we already compiled a sample program, X libs are surely there
1941 dnl if test "$COMPILED_X_PROGRAM" = 0; then
1942 dnl AC_MSG_CHECKING(for Xt library)
1943 dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xt)
1944 dnl if test "$ac_find_libraries" != "" ; then
1945 dnl WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
1946 dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1947 dnl AC_MSG_RESULT(found at $ac_find_libraries)
1952 dnl #include <X11/Intrinsic.h>
1956 dnl p = XtMalloc(5);
1959 dnl AC_MSG_RESULT(found in default search path)
1960 dnl COMPILED_X_PROGRAM=1
1963 dnl AC_MSG_RESULT(no)
1964 dnl AC_MSG_ERROR(please set LDFLAGS to contain the location of libXt)
1971 AC_MSG_CHECKING(for Xpm library)
1972 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
1973 if test "$ac_find_libraries" != "" ; then
1974 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
1975 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1977 AC_DEFINE(wxHAVE_LIB_XPM)
1978 AC_MSG_RESULT(found at $ac_find_libraries)
1982 #include <X11/xpm.h>
1987 version = XpmLibraryVersion();
1991 AC_DEFINE(wxHAVE_LIB_XPM)
1992 AC_MSG_RESULT(found in default search path)
1993 COMPILED_X_PROGRAM=0
1997 AC_MSG_WARN(library will be compiled without support for images in XPM format)
2002 GUI_TK_LINK="-lXm $XPM_LINK -lXmu -lXext -lXt -lX11"
2003 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK"
2008 if test "$wxUSE_MAC" = 1; then
2010 dnl we can't call this MAC_DIST or autoconf thinks its a macro
2014 if test "$wxUSE_PM" = 1; then
2019 dnl the name of the directory where the files for this toolkit live
2020 if test "$TOOLKIT" != "PM" ; then
2021 TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
2026 dnl the (base) name of the library and support files for this toolkit
2027 TOOLKIT_NAME="${TOOLKIT_DIR}"
2029 dnl the list of paths containing the files for this toolkit
2030 TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}"
2032 dnl need to add an extra dir for wxMotif
2033 if test "$TOOLKIT_NAME" = "motif"; then
2034 TOOLKIT_VPATH="${TOOLKIT_VPATH}${PATH_IFS}\${top_srcdir}/src/motif/xmcombo"
2037 dnl are we using the generic version with this low level toolkit?
2038 if test "$wxUSE_UNIVERSAL" = "yes"; then
2039 TOOLKIT_NAME="${TOOLKIT_NAME}univ"
2040 UNIV_VPATH="\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes"
2041 TOOLKIT_VPATH="${UNIV_VPATH}${PATH_IFS}${TOOLKIT_VPATH}"
2044 SETUPH_DIR="${TOOLKIT_DIR}"
2047 dnl append 'd' to the debug library name
2048 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
2049 TOOLKIT_NAME="${TOOLKIT_NAME}d"
2052 dnl the symbol which allows conditional compilation for the given toolkit
2053 TOOLKIT_DEF="-D__WX${TOOLKIT}__"
2054 if test "$wxUSE_UNIVERSAL" = "yes"; then
2055 TOOLKIT_DEF="${TOOLKIT_DEF} -D__WXUNIVERSAL__"
2058 dnl the name of the (libtool) library
2059 WX_LIBRARY="wx_${TOOLKIT_NAME}"
2061 dnl collect together all the object files for this port
2062 if test "$wxUSE_UNIVERSAL" = "yes"; then
2063 ALL_OBJECTS="\$(GUI_LOWLEVEL_OBJS) \${UNIVOBJS}"
2065 ALL_OBJECTS="\$(GUIOBJS)"
2068 ALL_OBJECTS="${ALL_OBJECTS} \$(COMMONOBJS) \$(GENERICOBJS)"
2070 if test "$TOOLKIT" != "MSW"; then
2071 ALL_OBJECTS="${ALL_OBJECTS} \$(UNIXOBJS)"
2074 if test "$wxUSE_HTML" = "yes"; then
2075 ALL_OBJECTS="${ALL_OBJECTS} \$(HTMLOBJS)"
2078 dnl ODBC objects are Unix only
2079 if test "$TOOLKIT" != "MSW"; then
2080 if test "$wxUSE_ODBC" = "yes" ; then
2081 ALL_OBJECTS="${ALL_OBJECTS} \$(IODBCOBJS)"
2085 dnl REGEX_INCLUDE is only set if we want regex support and if we use our
2086 dnl own sources and not the system library
2087 if test "x$REGEX_INCLUDE" != "x" ; then
2088 ALL_OBJECTS="${ALL_OBJECTS} \$(REGEXOBJS)"
2091 if test "$wxUSE_LIBJPEG" = "yes" ; then
2092 ALL_OBJECTS="${ALL_OBJECTS} \$(JPEGOBJS)"
2094 if test "$wxUSE_LIBTIFF" = "yes" ; then
2095 ALL_OBJECTS="${ALL_OBJECTS} \$(TIFFOBJS)"
2097 if test "$wxUSE_LIBPNG" = "yes" ; then
2098 ALL_OBJECTS="${ALL_OBJECTS} \$(PNGOBJS)"
2100 if test "$wxUSE_ZLIB" = "yes" ; then
2101 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
2103 if test "$wxUSE_FREETYPE" = "yes" ; then
2104 ALL_OBJECTS="${ALL_OBJECTS} \$(FREETYPEOBJS)"
2107 dnl collect all .d files together as well
2108 if test "$wxUSE_UNIVERSAL" = "yes"; then
2109 ALL_DEPFILES="\$(GUI_LOWLEVEL_DEPS) \$(UNIVDEPS)"
2111 ALL_DEPFILES="\$(GUIDEPS)"
2114 ALL_DEPFILES="${ALL_DEPFILES} \$(COMMONDEPS) \$(GENERICDEPS)"
2116 if test "$TOOLKIT" != "MSW"; then
2117 ALL_DEPFILES="${ALL_DEPFILES} \$(UNIXDEPS)"
2120 if test "$wxUSE_HTML" = "yes"; then
2121 ALL_DEPFILES="${ALL_DEPFILES} \$(HTMLDEPS)"
2124 dnl misc other files depending on the port
2125 PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst"
2126 if test "$wxUSE_UNIVERSAL" = "yes"; then
2127 PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst"
2129 RPM_FILES="src/\$(TOOLKITDIR)/rpmfiles.lst"
2130 RPM_SPEC="wx\$(TOOLKIT).spec"
2132 dnl distribute samples/demos/utils with GUI versions
2133 GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
2134 DISTDIR="wx\$(TOOLKIT)"
2138 dnl this may be (almost) unneccesary for wxBase now we use TOOLKIT_NAME
2141 dnl well, we have to set it to something...
2144 dnl the base name of the library and wxXXX-config files
2145 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
2146 TOOLKIT_NAME="${TOOLKIT_DIR}d"
2148 TOOLKIT_NAME="${TOOLKIT_DIR}"
2151 TOOLKIT_DEF="-D__WXBASE__"
2153 dnl the sources, their dependenices and the headers
2154 ALL_OBJECTS="\$(BASE_OBJS) \$(BASE_UNIX_OBJS)"
2155 ALL_DEPFILES="\$(BASE_DEPS) \$(BASE_UNIX_DEPS)"
2157 dnl REGEX_INCLUDE is only set if we want regex support and if we use our
2158 dnl own sources and not the system library
2159 if test "x$REGEX_INCLUDE" != "x" ; then
2160 ALL_OBJECTS="${ALL_OBJECTS} \$(REGEXOBJS)"
2163 if test "$wxUSE_ZLIB" = "yes" ; then
2164 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
2167 dnl building wxBase only
2168 WX_LIBRARY="wx_${TOOLKIT_NAME}"
2170 PORT_FILES="\${top_srcdir}/src/files.lst"
2171 RPM_FILES="src/rpmfiles.lst"
2172 RPM_SPEC="wxBase.spec"
2174 dnl distribute only wxBase sources/headers
2179 dnl the name of the (libtool) library
2180 WX_LIBRARY_NAME="lib${WX_LIBRARY}.la"
2181 WX_LIBRARY_NAME_GL="lib${WX_LIBRARY}_gl.la"
2183 dnl the name of the static library
2184 WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
2185 WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY}_gl.a"
2187 dnl the name of the shared library
2190 WX_LIBRARY_NAME_SHARED="wx${WX_MAJOR_VERSION_NUMBER}${WX_MINOR_VERSION_NUMBER}_${WX_RELEASE_NUMBER}.dll"
2193 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2194 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2198 dnl the name of the links to the shared library
2199 WX_LIBRARY_LINK1="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}"
2200 WX_LIBRARY_LINK2="lib${WX_LIBRARY}-${WX_RELEASE}.so"
2201 WX_LIBRARY_LINK3="lib${WX_LIBRARY}.so"
2202 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}"
2203 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so"
2204 WX_LIBRARY_LINK3_GL="lib${WX_LIBRARY}_gl.so"
2206 dnl shared library settings
2212 WX_TARGET_LIBRARY_SONAME=
2214 dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
2216 if test "$wxUSE_SHARED" = "yes"; then
2219 if test "$GCC" = yes ; then
2220 SHARED_LD="${CXX} -shared -fPIC -o"
2223 dnl no idea why it wants it, but it does
2224 LDFLAGS="-L/usr/lib"
2226 SHARED_LD="${CXX} -b -o"
2229 WX_LIBRARY_NAME_SHARED="libwx_${TOOLKIT_NAME}.sl"
2230 WX_LIBRARY_NAME_SHARED_GL="libwx_${TOOLKIT_NAME}_gl.sl"
2231 if test "$wxUSE_OPENGL" = "yes"; then
2232 WX_ALL_INSTALLED="preinstall_gl"
2233 WX_ALL="${WX_LIBRARY_NAME_SHARED} ${WX_LIBRARY_NAME_SHARED_GL}"
2235 WX_ALL="${WX_LIBRARY_NAME_SHARED}"
2239 dnl in fact, these settings are for any platform using gcc
2241 SHARED_LD="${CXX} -shared -o"
2243 if test "$wxUSE_BURNT_NAME" = "yes" ; then
2244 BURNT_LIBRARY_NAME="-Wl,-soname,${WX_LIBRARY_LINK1}"
2245 BURNT_LIBRARY_NAME_GL="-Wl,-soname,${WX_LIBRARY_LINK1_GL}"
2246 dnl substitute this in makelib.env for the contrib libs
2247 WX_TARGET_LIBRARY_SONAME="-Wl,-soname,\$(TARGETLIB_LINK1)"
2249 if test "$wxUSE_OPENGL" = "yes"; then
2250 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2251 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2253 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2254 WX_ALL="CREATE_LINKS"
2257 *-*-irix5* | *-*-irix6* )
2258 if test "$GCC" = yes ; then
2259 SHARED_LD="${CXX} -shared -o"
2262 SHARED_LD="${CXX} -shared -o"
2264 if test "$wxUSE_OPENGL" = "yes"; then
2265 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2266 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2268 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2269 WX_ALL="CREATE_LINKS"
2273 if test "$GCC" = yes ; then
2274 SHARED_LD="${CXX} -shared -o"
2277 dnl newer versions of gcc need -isystem to compile X headers on
2278 dnl Solaris (which use old style C syntax)
2279 CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
2281 SHARED_LD="${CXX} -G -o"
2284 if test "$wxUSE_OPENGL" = "yes"; then
2285 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2286 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2288 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2289 WX_ALL="CREATE_LINKS"
2293 SHARED_LD="${CXX} -shared -o"
2295 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2296 WX_ALL="CREATE_LINKS"
2298 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* )
2299 SHARED_LD="${CXX} -shared -o"
2301 if test "$wxUSE_OPENGL" = "yes"; then
2302 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2303 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2305 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2306 WX_ALL="CREATE_LINKS"
2310 TOOLKIT_DEF="${TOOLKIT_DEF} -D__UNIX__ -D__DARWIN__ -D__POWERPC__"
2311 CFLAGS="${CFLAGS} -fno-common"
2312 CPPFLAGS="${CPPFLAGS} -fno-common"
2313 SHARED_LD="${CXX} -dynamiclib -o"
2314 PIC_FLAG="-dynamic -fPIC"
2315 if test "$wxUSE_OPENGL" = "yes"; then
2316 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2317 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2319 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2320 WX_ALL="CREATE_LINKS"
2322 dnl add the resources target for wxMac
2323 if test "$wxUSE_MAC" = 1 ; then
2324 WX_ALL="${WX_ALL} ./lib/lib${WX_LIBRARY}-${WX_RELEASE}.r"
2326 dnl the name of the shared library
2327 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}-${WX_RELEASE}.dylib.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2328 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.dylib.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2329 dnl the name of the links to the shared library
2330 WX_LIBRARY_LINK1="lib${WX_LIBRARY}-${WX_RELEASE}.dylib.${WX_CURRENT}"
2331 WX_LIBRARY_LINK2="lib${WX_LIBRARY}-${WX_RELEASE}.dylib"
2332 WX_LIBRARY_LINK3="lib${WX_LIBRARY}.dylib"
2333 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.dylib.${WX_CURRENT}"
2334 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.dylib"
2335 WX_LIBRARY_LINK3_GL="lib${WX_LIBRARY}_gl.dylib"
2338 SHARED_LD="${CXX} -shared -o"
2340 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2341 WX_ALL="CREATE_LINKS"
2344 SHARED_LD="${CXX} -shared -o"
2346 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2347 WX_ALL="CREATE_LINKS"
2350 SHARED_LD="${CXX} -shared -o"
2352 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2353 WX_ALL="CREATE_LINKS"
2356 SHARED_LD="/usr/lpp/xlC/bin/makeC++SharedLib -p 0 -o"
2357 WX_ALL=${WX_LIBRARY_NAME_SHARED}
2360 dnl only static for now
2361 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
2362 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
2363 if test "$wxUSE_OPENGL" = "yes"; then
2364 WX_ALL_INSTALLED="preinstall_gl"
2365 WX_ALL="${WX_LIBRARY_NAME_STATIC} ${WX_LIBRARY_NAME_STATIC_GL}"
2367 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2371 WX_LIBRARY_NAME_STATIC="lib/libwx${WX_MAJOR_VERSION_NUMBER}${WX_MINOR_VERSION_NUMBER}_${WX_RELEASE_NUMBER}.a"
2372 SHARED_LD="${CC} -shared -Wl,--out-implib,${WX_LIBRARY_NAME_STATIC} -o"
2373 TOOLKIT_DEF="${TOOLKIT_DEF} -DWXUSINGDLL=1"
2374 WXMSW_DLL_DEFINES="-UWXUSINGDLL -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1"
2375 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
2376 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
2377 if test "$wxUSE_OPENGL" = "yes"; then
2378 WX_ALL_INSTALLED="preinstall_gl"
2379 WX_ALL="${WX_LIBRARY_NAME_SHARED} ${WX_LIBRARY_NAME_SHARED_GL}"
2381 WX_ALL="${WX_LIBRARY_NAME_SHARED}"
2385 dnl only static for now
2386 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
2387 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2390 dnl can't use gcc under BeOS for shared library creation because it
2391 dnl complains about missing 'main'
2392 SHARED_LD="${LD} -shared -o"
2394 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2395 WX_ALL="CREATE_LINKS"
2398 AC_MSG_ERROR(unknown system type ${host}.)
2401 dnl set target to shared if not explicitly chose static before
2402 if test "x$WX_TARGET_LIBRARY" = "x"; then
2403 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
2404 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
2406 dnl do not alter the LIBRARY_TYPE strings "so" and "a", they are magic
2407 WX_TARGET_LIBRARY_TYPE="so"
2409 dnl set target to static
2410 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
2411 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
2413 if test "$wxUSE_OPENGL" = "yes"; then
2414 WX_ALL_INSTALLED="preinstall_gl"
2415 WX_ALL="${WX_LIBRARY_NAME_STATIC} ${WX_LIBRARY_NAME_STATIC_GL}"
2417 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2420 dnl give static wxBase build a working install target
2421 if test "$wxUSE_GUI" = "no"; then
2422 dnl we're here because WX_ALL_INSTALLED is empty, but play safe anyway
2423 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
2426 WX_TARGET_LIBRARY_TYPE="a"
2429 dnl ------------------------------------------------------------------------
2430 dnl Check for headers
2431 dnl ------------------------------------------------------------------------
2433 dnl defines HAVE_STRINGS_H (where some string functions live on AIX for example)
2434 AC_CHECK_HEADERS(strings.h)
2435 dnl defines HAVE_STDLIB_H
2436 AC_CHECK_HEADERS(stdlib.h)
2437 dnl defines HAVE_UNISTD_H
2438 AC_CHECK_HEADERS(unistd.h)
2439 dnl defines HAVE_WCHAR_H
2440 AC_CHECK_HEADERS(wchar.h)
2441 dnl defines HAVE_WCSTR_H
2442 AC_CHECK_HEADERS(wcstr.h)
2443 dnl defines HAVE_FNMATCH_H
2444 AC_CHECK_HEADERS(fnmatch.h)
2445 dnl defines HAVE_ICONV_H (Unix98 encoding conversion routines)
2446 AC_CHECK_HEADERS(iconv.h)
2447 dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
2448 AC_CHECK_HEADERS(langinfo.h)
2450 if test "$wxUSE_GUI" = "yes"; then
2451 if test "$wxUSE_UNIX" = "yes"; then
2452 dnl defines HAVE_X11_XKBLIB_H
2453 AC_CHECK_HEADERS(X11/XKBlib.h)
2457 if test "$USE_WIN32" = 1; then
2458 AC_CHECK_HEADERS(w32api.h)
2461 dnl ---------------------------------------------------------------------------
2462 dnl Checks for typedefs
2463 dnl ---------------------------------------------------------------------------
2465 dnl defines mode_t if not already defined
2467 dnl defines off_t if not already defined
2469 dnl defines pid_t if not already defined
2471 dnl defines size_t if not already defined
2473 dnl defines uid_t and gid_t if not already defined
2476 dnl check for wchar_t
2477 AC_CACHE_CHECK([for wchar_t], wx_cv_type_wchar_t,
2479 AC_TRY_COMPILE([#include <wchar.h>],
2483 ws = L"Hello, world!";
2485 wx_cv_type_wchar_t=yes,
2486 AC_TRY_COMPILE([#include <stdlib.h>],
2490 ws = L"Hello, world!";
2492 wx_cv_type_wchar_t=yes,
2493 wx_cv_type_wchar_t=no)
2497 if test "$wx_cv_type_wchar_t" = "yes"; then
2498 AC_DEFINE(wxUSE_WCHAR_T)
2501 dnl check what exactly size_t is on this machine - this is necessary to avoid
2502 dnl ambiguos overloads in several places, notably wx/string.h and wx/array.h
2505 AC_CACHE_CHECK([if size_t is unsigned int],
2506 wx_cv_size_t_is_uint,
2507 dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work
2508 dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate
2509 dnl methods in a local class (i.e. class inside a function) declaration
2510 dnl without any objections!!
2512 dnl hence the hack below: we must have Foo at global scope!
2513 AC_TRY_COMPILE([#include <stddef.h>],
2517 struct Foo { void foo(size_t); void foo(unsigned int); };
2521 wx_cv_size_t_is_uint=no,
2522 wx_cv_size_t_is_uint=yes
2526 if test "$wx_cv_size_t_is_uint" = "yes"; then
2527 AC_DEFINE(wxSIZE_T_IS_UINT)
2529 AC_CACHE_CHECK([if size_t is unsigned long],
2530 wx_cv_size_t_is_ulong,
2531 AC_TRY_COMPILE([#include <stddef.h>],
2535 struct Foo { void foo(size_t); void foo(unsigned long); };
2539 wx_cv_size_t_is_ulong=no,
2540 wx_cv_size_t_is_ulong=yes
2544 if test "$wx_cv_size_t_is_ulong" = "yes"; then
2545 AC_DEFINE(wxSIZE_T_IS_ULONG)
2551 dnl ---------------------------------------------------------------------------
2552 dnl Checks for structures
2553 dnl ---------------------------------------------------------------------------
2555 dnl does passwd struct has the pw_gecos field?
2556 AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
2558 AC_TRY_COMPILE([#include <pwd.h>],
2565 wx_cv_struct_pw_gecos=yes
2568 wx_cv_struct_pw_gecos=no
2574 if test "$wx_cv_struct_pw_gecos" = "yes"; then
2575 AC_DEFINE(HAVE_PW_GECOS)
2578 dnl ---------------------------------------------------------------------------
2579 dnl Checks for compiler characteristics
2580 dnl ---------------------------------------------------------------------------
2582 dnl defines const to be empty if c-compiler does not support const fully
2584 dnl defines inline to a sensible value for the c-compiler
2587 dnl check the sizes of integral types (give some reasonable default values for
2588 dnl cross-compiling)
2589 dnl defines the size of certain types of variables in SIZEOF_<TYPE>
2590 AC_CHECK_SIZEOF(char, 1)
2591 AC_CHECK_SIZEOF(short, 2)
2592 AC_CHECK_SIZEOF(int *, 4)
2593 AC_CHECK_SIZEOF(int, 4)
2594 AC_CHECK_SIZEOF(long, 4)
2595 AC_CHECK_SIZEOF(long long, 0)
2597 dnl we have to do it ourselves because SGI/Irix's stdio.h does not include
2598 dnl wchar_t an AC_CHECK_SIZEOF only includes stdio.h
2599 dnl Mac OS X does not provide wchar.h and wchar_t is defined by stdlib.h (GD)
2600 AC_CACHE_CHECK([size of wchar_t], wx_cv_sizeof_wchar_t,
2607 #ifdef HAVE_STDLIB_H
2608 # include <stdlib.h>
2613 FILE *f=fopen("conftestval", "w");
2615 fprintf(f, "%i", sizeof(wchar_t));
2619 wx_cv_sizeof_wchar_t=`cat conftestval`,
2620 wx_cv_sizeof_wchar_t=0,
2621 wx_cv_sizeof_wchar_t=4
2625 AC_DEFINE_UNQUOTED(SIZEOF_WCHAR_T, $wx_cv_sizeof_wchar_t)
2627 dnl for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling)
2630 dnl check for iostream (as opposed to iostream.h) standard header
2631 WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH))
2633 dnl check whether C++ compiler supports bool built-in type
2636 dnl ---------------------------------------------------------------------------
2637 dnl Check for functions
2638 dnl ---------------------------------------------------------------------------
2640 dnl check for wcslen
2641 AC_CHECK_LIB(c, wcslen, [
2642 AC_DEFINE(HAVE_WCSLEN)
2645 AC_CHECK_LIB(w, wcslen, [
2646 AC_DEFINE(HAVE_WCSLEN)
2649 AC_CHECK_LIB(msvcrt, wcslen, [
2650 AC_DEFINE(HAVE_WCSLEN)
2656 dnl check for vprintf/vsprintf() which are GNU extensions
2660 dnl check for vsscanf() and vsnprintf() - on some platforms (Linux, glibc
2661 dnl 2.1.1 for the first one, HP-UX for the second) it's available in the
2662 dnl library but the prototype is missing, so we can't use AC_CHECK_FUNCS here,
2665 dnl we use AC_TRY_COMPILE() here instead of AC_TRY_RUN() to make the checks
2666 dnl work for cross-compilation, but AC_TRY_COMPILE() normally only compiles
2667 dnl one function while we need at least 2 - hence the ugly hack below. To
2668 dnl understand why it works, remember that AC_TRY_COMPILE() just prepends
2669 dnl "int main() {" in the beginning of the code and "; return 0; }" at the
2672 dnl if we fail to find vsnprintf, also try for _vsnprintf as that is what
2673 dnl we'll find under MSW if it exists.
2675 dnl final note: AC_TRY_COMPILE will only be executed if there is nothing in
2676 dnl the cache so we have to do AC_DEFINE(HAVE_VSNPRINTF) below and not inside
2677 dnl it or the symbol wouldn't be defined for the 2nd and subsequent configure
2680 dnl check for vsnprintf() - a safe version of vsprintf()
2681 AC_CACHE_CHECK([for vsnprintf], wx_cv_func_vsnprintf,
2687 int wx_test_vsnprintf(const char *, ...);
2689 wx_test_vsnprintf("%s");
2693 int wx_test_vsnprintf(const char *fmt, ...)
2698 va_start(argp, fmt);
2699 vsnprintf(s, 42, fmt, argp);
2702 wx_cv_func_vsnprintf=yes
2708 int wx_test_vsnprintf(const char *, ...);
2710 wx_test_vsnprintf("%s");
2714 int wx_test_vsnprintf(const char *fmt, ...)
2719 va_start(argp, fmt);
2720 _vsnprintf(s, 42, fmt, argp);
2723 wx_cv_func_vsnprintf=yes
2725 wx_cv_func_vsnprintf=no
2730 if test "$wx_cv_func_vsnprintf" = yes; then
2731 AC_DEFINE(HAVE_VSNPRINTF)
2733 AC_MSG_WARN(unsafe function sprintf will be used instead of snprintf)
2736 dnl check for vsscanf()
2737 AC_CACHE_CHECK([for vsscanf], wx_cv_func_vsscanf,
2743 int wx_test_vsscanf(const char *, ...);
2745 wx_test_vsscanf("%d");
2749 int wx_test_vsscanf(const char *fmt, ...)
2752 va_start(argp, fmt);
2753 vsscanf("42", fmt, argp);
2756 wx_cv_func_vsscanf=yes
2758 wx_cv_func_vsscanf=no
2762 if test "$wx_cv_func_vsscanf" = yes; then
2763 AC_DEFINE(HAVE_VSSCANF)
2766 dnl the following tests are for Unix(like) systems only
2767 if test "$TOOLKIT" != "MSW"; then
2769 dnl check for available version of iconv()
2773 AC_CACHE_CHECK([if iconv() takes char**], wx_cv_iconv_takes_char,
2775 AC_TRY_COMPILE([#include <iconv.h>],
2777 char **inbuf, **outbuf;
2780 iconv(cd, inbuf, &insz, outbuf, &outsz);
2782 wx_cv_iconv_takes_char=yes,
2783 wx_cv_iconv_takes_char=no)
2786 if test "$wx_cv_iconv_takes_char" = yes ; then
2787 AC_DEFINE(WX_ICONV_TAKES_CHAR)
2791 dnl check for POSIX signals if we need them
2792 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
2793 AC_CHECK_FUNCS(sigaction)
2795 if test "$ac_cv_func_sigaction" = "no"; then
2796 AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
2797 wxUSE_ON_FATAL_EXCEPTION=no
2800 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
2804 AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
2806 AC_TRY_COMPILE([#include <signal.h>],
2808 extern void testSigHandler(int);
2810 struct sigaction sa;
2811 sa.sa_handler = testSigHandler;
2813 wx_cv_type_sa_handler=int
2815 wx_cv_type_sa_handler=void
2821 AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
2825 dnl check for vfork() (even if it's the same as fork() in modern Unices)
2826 AC_CHECK_FUNCS(vfork)
2828 dnl check for fcntl() or at least flock() needed by Unix implementation of
2829 dnl wxSingleInstanceChecker
2830 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
2831 AC_CHECK_FUNCS(fcntl flock, break)
2833 if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then
2834 AC_MSG_WARN(wxSingleInstanceChecker not available)
2835 wxUSE_SNGLINST_CHECKER=no
2839 dnl check for timegm() used by datetime.cpp
2840 AC_CHECK_FUNCS(timegm)
2842 dnl look for a function to modify the environment
2843 AC_CHECK_FUNCS(putenv setenv, break)
2845 HAVE_SOME_SLEEP_FUNC=0
2846 if test "$USE_BEOS" = 1; then
2847 dnl BeOS has its own (wonder where did they get it from) sleep() function
2849 AC_DEFINE(HAVE_SLEEP)
2850 HAVE_SOME_SLEEP_FUNC=1
2853 if test "$USE_DARWIN" = 1; then
2854 dnl Mac OS X has both nanosleep and usleep
2855 dnl but only usleep is defined in unistd.h
2856 AC_DEFINE(HAVE_USLEEP)
2857 HAVE_SOME_SLEEP_FUNC=1
2860 if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
2861 dnl try nanosleep() in libc and libposix4, if this fails - usleep()
2863 AC_CHECK_FUNCS(nanosleep,
2864 AC_DEFINE(HAVE_NANOSLEEP),
2866 AC_CHECK_LIB(posix4, nanosleep,
2868 AC_DEFINE(HAVE_NANOSLEEP)
2869 POSIX4_LINK="-lposix4"
2872 AC_CHECK_FUNCS(usleep,
2873 AC_DEFINE(HAVE_USLEEP),
2874 AC_MSG_WARN([wxSleep() function will not work])
2882 dnl check for uname (POSIX) and gethostname (BSD)
2883 AC_CHECK_FUNCS(uname gethostname, break)
2885 dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
2886 dnl but not for C++ one - hence change language)
2890 AC_CHECK_FUNCS(strtok_r)
2894 dnl check for inet_addr and inet_aton (these may live either in libc, or in
2895 dnl libnsl or libresolv)
2897 AC_CHECK_FUNCS(inet_addr,
2898 AC_DEFINE(HAVE_INET_ADDR),
2900 AC_CHECK_LIB(nsl, inet_addr,
2902 AC_CHECK_LIB(resolv, inet_addr,
2909 AC_CHECK_FUNCS(inet_aton,
2910 AC_DEFINE(HAVE_INET_ATON),
2912 dnl only check it in the same lib
2913 AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
2916 if test "x$INET_LINK" != "x"; then
2917 AC_DEFINE(HAVE_INET_ADDR)
2918 INET_LINK="-l$INET_LINK"
2924 dnl ===========================================================================
2925 dnl Now we have all the info we need - use it!
2926 dnl ===========================================================================
2931 dnl ---------------------------------------------------------------------------
2932 dnl thread support for Unix (always available under Win32)
2933 dnl ---------------------------------------------------------------------------
2935 dnl under MSW we always have thread support
2936 if test "$TOOLKIT" != "MSW"; then
2939 dnl defines THREADS_OBJ which contains the object files to build
2940 dnl defines THREADS_LINK which contains the thread library to link with
2941 dnl defines wxUSE_THREADS=1 if thread support is activated
2946 if test "$wxUSE_THREADS" = "yes" ; then
2947 if test "$wxUSE_WINE" = 1 ; then
2948 AC_MSG_WARN([Threads are not supported under WINE])
2950 elif test "$USE_BEOS" = 1; then
2951 AC_MSG_WARN([BeOS threads are not yet supported])
2956 if test "$wxUSE_THREADS" = "yes" ; then
2957 dnl find if POSIX threads are available
2959 dnl AIX calls the library libpthreads - thanks IBM!
2960 if test "$USE_AIX" = 1; then
2961 THREADS_LIB=pthreads
2966 dnl standard lib name is pthread
2967 dnl We no longer test for pthread-0.7 as it breaks compilation on some
2968 dnl glibc2 systems, especially for static linkage.
2969 AC_CHECK_LIB($THREADS_LIB, pthread_create, [
2970 THREADS_OBJ="threadpsx.lo"
2971 THREADS_LINK=$THREADS_LIB
2973 dnl thread functions are in libc_r under FreeBSD
2974 AC_CHECK_LIB(c_r, pthread_create, [
2975 THREADS_OBJ="threadpsx.lo"
2978 dnl VZ: SGI threads are not supported currently
2979 AC_CHECK_HEADER(sys/prctl.h, [
2980 THREADS_OBJ="threadsgi.lo"
2985 if test -z "$THREADS_OBJ" ; then
2987 AC_MSG_WARN(No thread support on this system)
2991 dnl do other tests only if we are using threads
2992 if test "$wxUSE_THREADS" = "yes" ; then
2993 AC_CHECK_FUNCS(thr_setconcurrency)
2995 dnl define autoconf macro to check for given function in both pthread and
2996 dnl posix4 libraries
2997 dnl usage: AC_FUNC_THREAD(FUNCTION_NAME)
2999 dnl AC_DEFUN(AC_FUNC_THREAD,
3001 dnl AC_CHECK_LIB($THREADS_LINK, $1,
3002 dnl AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z'),
3003 dnl [AC_CHECK_LIB([posix4], $1,
3004 dnl [AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z'))
3005 dnl POSIX4_LINK="-lposix4"
3010 AC_CHECK_HEADERS(sched.h)
3012 AC_CHECK_LIB($THREADS_LINK, sched_yield,
3013 AC_DEFINE(HAVE_SCHED_YIELD),
3014 [AC_CHECK_LIB([posix4], sched_yield,
3015 [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK="-lposix4"],
3016 AC_MSG_WARN(wxThread::Yield will not work properly)
3020 dnl to be able to set the thread priority, we need to have all of the
3021 dnl following functions:
3022 dnl 1. pthread_attr_getschedpolicy
3023 dnl 2. sched_get_priority_min and sched_get_priority_max
3024 dnl (this one can be in either libpthread or libposix4 (under Solaris))
3025 dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam
3027 AC_CHECK_LIB($THREADS_LINK, pthread_attr_getschedpolicy,
3028 AC_CHECK_LIB($THREADS_LINK, pthread_attr_setschedparam,
3029 AC_CHECK_LIB($THREADS_LINK, sched_get_priority_max,
3031 AC_CHECK_LIB([posix4], sched_get_priority_max,
3034 POSIX4_LINK="-lposix4"
3041 if test "$HAVE_PRIOR_FUNCS" = 1; then
3042 AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
3044 AC_MSG_WARN(Setting thread priority will not work)
3047 AC_CHECK_LIB($THREADS_LINK, pthread_cancel,
3048 AC_DEFINE(HAVE_PTHREAD_CANCEL),
3049 AC_MSG_WARN([wxThread::Kill() will not work properly]))
3051 AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push,
3053 AC_TRY_COMPILE([#include <pthread.h>],
3055 pthread_cleanup_push(NULL, NULL);
3056 pthread_cleanup_pop(0);
3058 wx_cv_func_pthread_cleanup_push=yes
3060 wx_cv_func_pthread_cleanup_push=no
3064 if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then
3065 AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS)
3068 dnl mutexattr_t initialization is done in quite different ways on different
3069 dnl platforms, so check for a few things:
3071 dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
3072 dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
3073 dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
3074 dnl defined, we do it by directly assigned
3075 dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
3077 dnl we need to define _XOPEN_SOURCE=500 to get PTHREAD_MUTEX_RECURSIVE
3078 dnl with glibc 2.1+, it probably shouldn't hurt elsewhere?
3079 if test "x$wx_lib_glibc21" = "xyes"; then
3080 CFLAGS="$CFLAGS -D_XOPEN_SOURCE=500"
3083 AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
3085 AC_TRY_COMPILE([#include <pthread.h>],
3087 pthread_mutexattr_t attr;
3088 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
3090 wx_cv_type_pthread_mutexattr_t=yes
3092 wx_cv_type_pthread_mutexattr_t=no
3097 if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
3098 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
3100 dnl don't despair, there may be another way to do it
3101 AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
3102 wx_cv_type_pthread_rec_mutex_init,
3104 AC_TRY_COMPILE([#include <pthread.h>],
3106 pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
3108 wx_cv_type_pthread_rec_mutex_init=yes
3110 wx_cv_type_pthread_rec_mutex_init=no
3114 if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then
3115 AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
3117 dnl this may break code working elsewhere, so at least warn about it
3118 AC_MSG_WARN([wxMutex won't be recursive on this platform])
3122 THREADS_LINK="-l$THREADS_LINK"
3124 dnl building MT programs under Solaris with the native compiler requires -mt
3126 if test "$USE_SOLARIS" = "yes" -a "$GCC" != "yes"; then
3127 CFLAGS="${CFLAGS} -mt"
3128 CXXFLAGS="${CXXFLAGS} -mt"
3129 LDFLAGS="${LDFLAGS} -mt"
3136 if test "$wxUSE_THREADS" = "yes"; then
3137 AC_DEFINE(wxUSE_THREADS)
3139 dnl must define _REENTRANT for multithreaded code except for Darwin/Mac OS X
3140 if test "$USE_DARWIN" != 1; then
3141 CFLAGS="${CFLAGS} -D_REENTRANT"
3142 CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
3145 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
3147 dnl on some systems, _REENTRANT should be defined if we want to use any _r()
3148 dnl functions - add tests for other functions here as well
3149 if test "$ac_cv_func_strtok_r" = "yes"; then
3150 AC_MSG_CHECKING(if -D_REENTRANT is needed)
3151 if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
3152 CFLAGS="${CFLAGS} -D_REENTRANT"
3153 CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
3161 if test "$WXGTK20" = 1 ; then
3162 AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
3166 if test "$WXGTK12" = 1 ; then
3167 AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
3170 if test "$WXGTK127" = 1 ; then
3171 AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
3174 if test "$WXWINE" = 1 ; then
3175 TOOLKIT_DEF="${TOOLKIT_DEF} -D__WXWINE__"
3178 if test "$wxUSE_MAC" = 1 ; then
3179 TOOLKIT_DEF="${TOOLKIT_DEF} -DTARGET_CARBON"
3180 CFLAGS="${CFLAGS} -fpascal-strings"
3181 CPPFLAGS="${CPPFLAGS} -cpp-precomp -fpascal-strings"
3182 AC_CHECK_PROG(REZ, Rez, Rez, /Developer/Tools/Rez)
3183 AC_CHECK_PROG(DEREZ, Derez, Derez, /Developer/Tools/Derez)
3185 REZFLAGS="-d __UNIX__ -useDF"
3186 DEREZFLAGS="Carbon.r -useDF"
3187 RESFLAGS="Carbon.r -t APPL"
3188 LIBWXMACRES="\$(LIBWX_MACRES)"
3189 LIBWXMACRESCOMP="\$(LIBWX_MACRESCOMP)"
3192 if test "$wxUSE_CYGWIN" = 1 ; then
3193 TOOLKIT_DEF="${TOOLKIT_DEF} -D__WIN95__"
3198 if test "$wxUSE_DEBUG_INFO" = "yes" ; then
3203 if test "$wxUSE_DEBUG_GDB" = "yes" ; then
3204 wxUSE_DEBUG_INFO=yes
3208 if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
3210 WXDEBUG_DEFINE="-D__WXDEBUG__"
3212 if test "$wxUSE_GTK" = 1 ; then
3213 WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
3217 if test "$wxUSE_MEM_TRACING" = "yes" ; then
3218 AC_DEFINE(wxUSE_MEMORY_TRACING)
3219 AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
3220 AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
3221 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
3224 if test "$wxUSE_DMALLOC" = "yes" ; then
3225 DMALLOC_LINK="-ldmalloc"
3229 if test "$wxUSE_PROFILE" = "yes" ; then
3236 if test "$GCC" = yes ; then
3237 if test "$wxUSE_NO_RTTI" = "yes" ; then
3238 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS -fno-rtti"
3240 if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
3241 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS -fno-exceptions"
3243 if test "$wxUSE_PERMISSIVE" = "yes" ; then
3244 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
3246 if test "$wxUSE_NO_DEPS" = "no" ; then
3247 DEP_INFO_FLAGS="-MMD"
3252 CXXFLAGS=`echo "${CXXFLAGS}" | sed "s/\-O.//g" `
3253 CFLAGS=`echo "${CFLAGS}" | sed "s/\-O.//g" `
3254 if test "$wxUSE_OPTIMISE" = "no" ; then
3257 if test "$GCC" = yes ; then
3261 OPTIMISE="${OPTIMISE} "
3269 if test "$WXWIN_COMPATIBILITY_2" = "yes"; then
3270 AC_DEFINE(WXWIN_COMPATIBILITY_2)
3272 WXWIN_COMPATIBILITY_2_2="yes"
3275 if test "$WXWIN_COMPATIBILITY_2_2" = "yes"; then
3276 AC_DEFINE(WXWIN_COMPATIBILITY_2_2)
3279 dnl ---------------------------------------------------------------------------
3280 dnl Optional libraries
3281 dnl ---------------------------------------------------------------------------
3284 if test "$wxUSE_ZLIB" = "yes" -o "$wxUSE_ZLIB" = "sys" ; then
3285 AC_DEFINE(wxUSE_ZLIB)
3286 if test "$wxUSE_ZLIB" = "yes" ; then
3287 ZLIB_INCLUDE="-I\${top_srcdir}/src/zlib"
3290 AC_CHECK_HEADER(zlib.h, AC_CHECK_LIB(z, deflate, ZLIB_LINK="-lz"))
3291 if test "x$ZLIB_LINK" = "x" ; then
3292 AC_MSG_ERROR(system zlib compression library not found! Use --with-zlib=yes to use built-in zlib)
3298 if test "$wxUSE_LIBPNG" = "yes" -o "$wxUSE_LIBPNG" = "sys" ; then
3299 AC_DEFINE(wxUSE_LIBPNG)
3300 dnl for the check below to have a chance to succeed, we must already have
3302 if test "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then
3303 AC_MSG_WARN([--with-libpng=sys doesn't work without --with-zlib=sys, will compile the built-in libpng instead])
3307 if test "$wxUSE_LIBPNG" = "yes" ; then
3308 PNG_INCLUDE="-I\${top_srcdir}/src/png"
3311 AC_CHECK_HEADER(png.h,
3312 AC_CHECK_LIB(png, png_check_sig,
3317 if test "x$PNG_LINK" = "x" ; then
3318 AC_MSG_ERROR(system png library not found! Use --with-libpng=yes to use the built-in libpng)
3322 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
3326 if test "$wxUSE_LIBJPEG" = "yes" -o "$wxUSE_LIBJPEG" = "sys" ; then
3327 AC_DEFINE(wxUSE_LIBJPEG)
3328 if test "$wxUSE_LIBJPEG" = "yes" ; then
3329 JPEG_INCLUDE="-I\${top_srcdir}/src/jpeg"
3332 dnl can't use AC_CHECK_HEADER as jconfig.h defines things like
3333 dnl HAVE_STDLIB_H which are already defined and this provokes
3334 dnl a compiler warning which configure considers as an error...
3335 AC_MSG_CHECKING(for jpeglib.h)
3336 AC_CACHE_VAL(ac_cv_header_jpeglib_h,
3339 #undef HAVE_STDLIB_H
3341 #include <jpeglib.h>
3345 ac_cv_header_jpeglib_h=yes,
3346 ac_cv_header_jpeglib_h=no
3349 AC_MSG_RESULT($ac_cv_header_jpeglib_h)
3351 if test "$ac_cv_header_jpeglib_h" = "yes"; then
3352 AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK="-ljpeg")
3355 if test "x$JPEG_LINK" = "x" ; then
3356 AC_MSG_ERROR(system jpeg library not found! Use --with-libjpeg=yes to use the built-in one)
3362 if test "$wxUSE_LIBTIFF" = "yes" -o "$wxUSE_LIBTIFF" = "sys" ; then
3363 AC_DEFINE(wxUSE_LIBTIFF)
3364 if test "$wxUSE_LIBTIFF" = "yes" ; then
3365 TIFF_INCLUDE="-I\${top_srcdir}/src/tiff"
3368 AC_CHECK_HEADER(tiffio.h, AC_CHECK_LIB(tiff, TIFFError,
3372 if test "x$TIFF_LINK" = "x" ; then
3373 AC_MSG_ERROR(system tiff library not found! Use --with-libtiff=yes to use the built-in one)
3379 if test "$wxUSE_FREETYPE" = "yes" -o "$wxUSE_FREETYPE" = "sys" ; then
3380 AC_DEFINE(wxUSE_FREETYPE)
3381 if test "$wxUSE_FREETYPE" = "yes" ; then
3382 FREETYPE_INCLUDE="-I\${top_srcdir}/src/freetype"
3385 AC_CHECK_HEADER(freetype.h,
3386 AC_CHECK_LIB(freetype, FT_Render_Glyph,
3387 FREETYPE_LINK="-lfreetype",
3391 if test "x$FREETYPE_LINK" = "x" ; then
3392 AC_MSG_ERROR(system freetype library not found! Use --with-freetype=yes to use the built-in freetype)
3397 if test "$wxUSE_OPENGL" = "yes"; then
3398 if test "$wxUSE_MAC" = 1; then
3399 AC_DEFINE(wxUSE_OPENGL)
3400 AC_DEFINE(wxUSE_GLCANVAS)
3401 OPENGL_LINK="-framework OpenGL -framework AGL"
3402 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl"
3404 AC_CHECK_HEADER(GL/gl.h, [
3405 AC_DEFINE(wxUSE_OPENGL)
3406 AC_DEFINE(wxUSE_GLCANVAS)
3407 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl"
3408 AC_CHECK_LIB(GL, glFlush, [
3409 OPENGL_LINK="-lGL -lGLU"
3411 AC_CHECK_LIB(MesaGL, glFlush, [
3412 OPENGL_LINK="-lMesaGL -lMesaGLU"
3419 dnl ---------------------------------------------------------------------------
3420 dnl the library may be built without GUI classes at all
3421 dnl ---------------------------------------------------------------------------
3423 if test "$wxUSE_GUI" = "yes"; then
3424 AC_DEFINE(wxUSE_GUI)
3426 dnl the things we always pull in the GUI version of the library:
3427 dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
3428 dnl library really can't be built without those)
3429 dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
3430 dnl almost any program and the first 2 are needed to show a message box
3431 dnl which want to be always able to do)
3432 dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
3433 dnl to compile without them (if the app doesn't do any drawing, it doesn't
3434 dnl need the dcs, pens, brushes, ...), this just can't be done now
3435 dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
3436 dnl 5. misc stuff: timers, settings, message box
3438 AC_DEFINE(wxUSE_NOGUI)
3441 dnl ---------------------------------------------------------------------------
3443 dnl ---------------------------------------------------------------------------
3445 if test "$wxUSE_UNIX" = "yes"; then
3446 AC_DEFINE(wxUSE_UNIX)
3449 dnl ---------------------------------------------------------------------------
3450 dnl Register non-GUI class options for makefiles and setup.h
3451 dnl ---------------------------------------------------------------------------
3453 if test "$wxUSE_APPLE_IEEE" = "yes"; then
3454 AC_DEFINE(wxUSE_APPLE_IEEE)
3457 if test "$wxUSE_TIMER" = "yes"; then
3458 AC_DEFINE(wxUSE_TIMER)
3461 if test "$wxUSE_WAVE" = "yes"; then
3462 AC_DEFINE(wxUSE_WAVE)
3465 if test "$wxUSE_CMDLINE_PARSER" = "yes"; then
3466 AC_DEFINE(wxUSE_CMDLINE_PARSER)
3469 if test "$wxUSE_STOPWATCH" = "yes"; then
3470 AC_DEFINE(wxUSE_STOPWATCH)
3473 if test "$wxUSE_DATETIME" = "yes"; then
3474 AC_DEFINE(wxUSE_DATETIME)
3477 if test "$wxUSE_TIMEDATE" = "yes"; then
3478 AC_DEFINE(wxUSE_TIMEDATE)
3481 if test "$wxUSE_FILE" = "yes"; then
3482 AC_DEFINE(wxUSE_FILE)
3485 if test "$wxUSE_FFILE" = "yes"; then
3486 AC_DEFINE(wxUSE_FFILE)
3489 if test "$wxUSE_FILESYSTEM" = "yes"; then
3490 AC_DEFINE(wxUSE_FILESYSTEM)
3493 if test "$wxUSE_FS_INET" = "yes"; then
3494 AC_DEFINE(wxUSE_FS_INET)
3497 if test "$wxUSE_FS_ZIP" = "yes"; then
3498 AC_DEFINE(wxUSE_FS_ZIP)
3501 if test "$wxUSE_ZIPSTREAM" = "yes"; then
3502 AC_DEFINE(wxUSE_ZIPSTREAM)
3505 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3506 AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
3509 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
3510 AC_DEFINE(wxUSE_SNGLINST_CHECKER)
3513 if test "$wxUSE_BUSYINFO" = "yes"; then
3514 AC_DEFINE(wxUSE_BUSYINFO)
3517 if test "$wxUSE_STD_IOSTREAM" = "yes"; then
3518 AC_DEFINE(wxUSE_STD_IOSTREAM)
3521 if test "$wxUSE_TEXTFILE" = "yes"; then
3522 if test "$wxUSE_FILE" != "yes"; then
3523 AC_MSG_WARN(wxTextFile requires wxFile and it won't be compiled without it)
3525 AC_DEFINE(wxUSE_TEXTFILE)
3529 if test "$wxUSE_CONFIG" = "yes" ; then
3530 if test "$wxUSE_TEXTFILE" != "yes"; then
3531 AC_MSG_WARN(wxConfig requires wxTextFile and it won't be compiled without it)
3533 AC_DEFINE(wxUSE_CONFIG)
3534 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
3538 if test "$wxUSE_INTL" = "yes" ; then
3539 if test "$wxUSE_FILE" != "yes"; then
3540 AC_MSG_WARN(I18n code requires wxFile and it won't be compiled without it)
3542 AC_DEFINE(wxUSE_INTL)
3543 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
3544 GUIDIST="$GUIDIST INTL_DIST"
3548 if test "$wxUSE_LOG" = "yes"; then
3549 AC_DEFINE(wxUSE_LOG)
3551 if test "$wxUSE_LOGGUI" = "yes"; then
3552 AC_DEFINE(wxUSE_LOGGUI)
3555 if test "$wxUSE_LOGWINDOW" = "yes"; then
3556 AC_DEFINE(wxUSE_LOGWINDOW)
3560 if test "$wxUSE_LONGLONG" = "yes"; then
3561 AC_DEFINE(wxUSE_LONGLONG)
3564 if test "$wxUSE_GEOMETRY" = "yes"; then
3565 AC_DEFINE(wxUSE_GEOMETRY)
3568 if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
3569 AC_DEFINE(wxUSE_DIALUP_MANAGER)
3570 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
3573 if test "$wxUSE_STREAMS" = "yes" ; then
3574 AC_DEFINE(wxUSE_STREAMS)
3577 dnl ------------------------------------------------------------------------
3578 dnl time/date functions
3579 dnl ------------------------------------------------------------------------
3581 if test "$wxUSE_DATETIME" = "yes"; then
3582 dnl check for strptime
3583 AC_CHECK_FUNCS(strptime)
3585 dnl check for timezone variable
3586 AC_CACHE_CHECK(for timezone variable in <time.h>,
3598 wx_cv_var_timezone=timezone
3610 wx_cv_var_timezone=_timezone
3622 wx_cv_var_timezone=__timezone
3624 AC_MSG_ERROR(no timezone variable)
3633 dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
3634 AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
3636 dnl check for localtime (it's POSIX, but the check can do no harm...)
3637 AC_CHECK_FUNCS(localtime)
3639 if test "$ac_cv_func_localtime" = "yes"; then
3640 AC_CACHE_CHECK(for tm_gmtoff in struct tm,
3641 wx_cv_struct_tm_has_gmtoff,
3652 wx_cv_struct_tm_has_gmtoff=yes
3654 wx_cv_struct_tm_has_gmtoff=no
3659 if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then
3660 AC_DEFINE(WX_GMTOFF_IN_TM)
3663 dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
3664 dnl function to be used for high resolution timers
3665 AC_CHECK_FUNCS(gettimeofday ftime, break)
3667 if test "$ac_cv_func_gettimeofday" = "yes"; then
3668 AC_CACHE_CHECK([whether gettimeofday takes two arguments],
3669 wx_cv_func_gettimeofday_has_2_args,
3671 dnl on some _really_ old systems it takes only 1 argument
3677 #include <sys/time.h>
3683 gettimeofday(&tv, &tz);
3685 wx_cv_func_gettimeofday_has_2_args=yes,
3688 #include <sys/time.h>
3695 wx_cv_func_gettimeofday_has_2_args=no,
3696 wx_cv_func_gettimeofday_has_2_args=unknown
3702 if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
3703 AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
3707 AC_DEFINE(wxUSE_TIMEDATE)
3708 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
3711 dnl ------------------------------------------------------------------------
3713 dnl ------------------------------------------------------------------------
3715 dnl under MSW we always have sockets
3716 if test "$TOOLKIT" != "MSW"; then
3718 if test "$wxUSE_SOCKETS" = "yes"; then
3719 dnl under Solaris, socket functions live in -lsocket
3720 AC_CHECK_FUNC(socket,,
3721 AC_CHECK_LIB(socket, socket,
3722 INET_LINK="$INET_LINK -lsocket",
3724 AC_MSG_WARN([socket library not found - sockets will be disabled])
3731 dnl this test may be appropriate if building under cygwin
3732 dnl right now I'm assuming it also uses the winsock stuff
3733 dnl like mingw does.. -- RL
3735 if test "$wxUSE_SOCKETS" = "yes" ; then
3736 dnl determine the type of third argument for getsockname
3737 AC_CACHE_CHECK([what is the type of the third argument of getsockname],
3738 wx_cv_type_getsockname3,
3745 #include <sys/types.h>
3746 #include <sys/socket.h>
3750 getsockname(0, 0, &len);
3752 wx_cv_type_getsockname3=socklen_t,
3755 #include <sys/types.h>
3756 #include <sys/socket.h>
3760 getsockname(0, 0, &len);
3762 wx_cv_type_getsockname3=size_t,
3765 #include <sys/types.h>
3766 #include <sys/socket.h>
3770 getsockname(0, 0, &len);
3772 wx_cv_type_getsockname3=int,
3773 wx_cv_type_getsockname3=unknown
3781 if test "$wx_cv_type_getsockname3" = "unknown"; then
3783 AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
3785 AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
3792 if test "$wxUSE_SOCKETS" = "yes" ; then
3793 AC_DEFINE(wxUSE_SOCKETS)
3794 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
3795 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS protocol"
3798 dnl ---------------------------------------------------------------------------
3799 dnl Joystick support
3800 dnl ---------------------------------------------------------------------------
3802 if test "$wxUSE_GUI" = "yes"; then
3804 dnl under MSW we always have joystick support
3805 if test "$TOOLKIT" != "MSW"; then
3807 if test "$wxUSE_JOYSTICK" = "yes"; then
3808 dnl joystick support is only for Linux 2.1.x or greater
3809 AC_CHECK_HEADERS(linux/joystick.h)
3810 if test "$ac_cv_header_linux_joystick_h" != "yes"; then
3812 AC_MSG_WARN(Joystick not supported by this system, disabled)
3819 if test "$wxUSE_JOYSTICK" = "yes"; then
3820 AC_DEFINE(wxUSE_JOYSTICK)
3821 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
3827 dnl ------------------------------------------------------------------------
3829 dnl ------------------------------------------------------------------------
3831 dnl under MSW we always have LoadLibrary/GetProcAddress
3832 if test "$TOOLKIT" != "MSW"; then
3836 if test "$wxUSE_DYNLIB_CLASS" = "yes"; then
3837 if test "$USE_DARWIN" = 1; then
3838 dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X
3841 dnl the test is a bit complicated because we check for dlopen() both with
3842 dnl and without -ldl and we also try to find shl_load() if there is no
3843 dnl dlopen() on this system
3844 AC_CHECK_FUNCS(dlopen,
3846 AC_DEFINE(HAVE_DLOPEN)
3850 AC_CHECK_LIB(dl, dlopen,
3852 AC_DEFINE(HAVE_DLOPEN)
3857 AC_CHECK_FUNCS(shl_load,
3859 AC_DEFINE(HAVE_SHL_LOAD)
3863 AC_CHECK_LIB(shl_load, dld,
3872 dnl check also for dlerror()
3873 if test "$HAVE_DL_FUNCS" = 1; then
3874 AC_CHECK_FUNCS(dlerror,
3875 AC_DEFINE(HAVE_DLERROR),
3876 AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)))
3880 if test "$HAVE_DL_FUNCS" = 0; then
3881 if test "$HAVE_SHL_FUNCS" = 0; then
3882 if test "$USE_UNIX" = 1; then
3883 AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
3884 wxUSE_DYNLIB_CLASS=no
3886 AC_MSG_WARN([Assuming wxLibrary class works on this platform])
3895 if test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
3896 AC_DEFINE(wxUSE_DYNLIB_CLASS)
3902 dnl ---------------------------------------------------------------------------
3904 dnl ---------------------------------------------------------------------------
3906 if test "$wxUSE_FONTMAP" = "yes" ; then
3907 AC_DEFINE(wxUSE_FONTMAP)
3910 if test "$wxUSE_UNICODE" = "yes" ; then
3911 AC_DEFINE(wxUSE_UNICODE)
3914 if test "$wxUSE_WCSRTOMBS" = "yes" ; then
3915 AC_DEFINE(wxUSE_WCSRTOMBS)
3918 if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
3919 AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
3922 dnl ----------------------------------------------------------------
3923 dnl serialization support
3924 dnl ----------------------------------------------------------------
3926 if test "$wxUSE_SERIAL" = "yes" ; then
3927 AC_DEFINE(wxUSE_SERIAL)
3930 dnl ----------------------------------------------------------------
3932 dnl ----------------------------------------------------------------
3935 if test "$wxUSE_ODBC" = "yes" ; then
3936 AC_DEFINE(wxUSE_ODBC)
3937 WXODBCFLAG="-D_IODBC_"
3938 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
3941 dnl ----------------------------------------------------------------
3942 dnl Register PostScript options for makefiles and setup.h
3943 dnl ----------------------------------------------------------------
3945 if test "$wxUSE_POSTSCRIPT" = "yes" ; then
3946 AC_DEFINE(wxUSE_POSTSCRIPT)
3949 AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
3951 AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
3953 dnl ---------------------------------------------------------------------------
3954 dnl big GUI components: MDI, doc/view, printing, help, ...
3955 dnl ---------------------------------------------------------------------------
3957 if test "$wxUSE_CONSTRAINTS" = "yes"; then
3958 AC_DEFINE(wxUSE_CONSTRAINTS)
3959 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
3962 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
3963 AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
3964 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
3967 if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
3968 AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
3969 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
3970 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
3971 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
3975 if test "$wxUSE_HELP" = "yes"; then
3976 AC_DEFINE(wxUSE_HELP)
3977 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
3979 if test "$USE_WIN32" = 1; then
3980 if test "$wxUSE_MS_HTML_HELP" = "yes"; then
3981 AC_CHECK_HEADER(htmlhelp.h,
3983 AC_DEFINE(wxUSE_MS_HTML_HELP)
3986 AC_MSG_WARN(MS HTML Help cannot be used without htmlhelp.h so it won't be compiled without it)
3987 wxUSE_MS_HTML_HELP=no
3992 if test "$wxUSE_WXHTML_HELP" = "yes"; then
3993 if test "$wxUSE_HTML" = "yes"; then
3994 AC_DEFINE(wxUSE_WXHTML_HELP)
3996 AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled)
3997 wxUSE_WXHTML_HELP=no
4002 if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
4003 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4004 AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
4006 AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
4008 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
4011 if test "$wxUSE_PROLOGIO" = "yes" ; then
4012 AC_DEFINE(wxUSE_PROLOGIO)
4015 if test "$wxUSE_RESOURCES" = "yes" ; then
4016 AC_DEFINE(wxUSE_RESOURCES)
4017 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource"
4020 if test "$wxUSE_X_RESOURCES" = "yes"; then
4021 AC_DEFINE(wxUSE_X_RESOURCES)
4024 dnl ---------------------------------------------------------------------------
4025 dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
4026 dnl ---------------------------------------------------------------------------
4028 if test "$wxUSE_IPC" = "yes"; then
4029 if test "$wxUSE_SOCKETS" != "yes"; then
4030 AC_MSG_WARN(wxWindows IPC classes require sockets, disabled)
4033 AC_DEFINE(wxUSE_IPC)
4036 if test "$wxUSE_CLIPBOARD" = "yes"; then
4037 AC_DEFINE(wxUSE_CLIPBOARD)
4038 AC_DEFINE(wxUSE_DATAOBJ)
4041 if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
4042 if test "$wxUSE_GTK" = 1; then
4043 if test "$WXGTK12" != 1; then
4044 AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2])
4045 wxUSE_DRAG_AND_DROP=no
4049 if test "$wxUSE_MOTIF" = 1; then
4050 AC_MSG_WARN([Drag and drop is not yet supported under Motif])
4051 wxUSE_DRAG_AND_DROP=no
4054 if test "$wxUSE_MAC" = 1; then
4055 AC_MSG_WARN([Drag and drop is not yet supported under Mac OS X])
4056 wxUSE_DRAG_AND_DROP=no
4059 if test "$USE_WIN32" = 1; then
4060 dnl check for ole headers and disable DnD if not present (earlier
4061 dnl versions of mingw32 don't have them)
4063 AC_CHECK_HEADERS(ole2.h)
4065 if test "$ac_cv_header_ole2_h" = "yes" ; then
4066 if test "$GCC" = yes ; then
4067 ALL_OBJECTS="$ALL_OBJECTS \$(OLEOBJS)"
4068 ALL_DEPFILES="$ALL_DEPFILES \$(OLEDEPS)"
4069 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"
4070 LIBS="$LIBS -lrpcrt4 -loleaut32 -lole32 -luuid"
4071 AC_DEFINE(wxUSE_OLE)
4073 dnl metafiles need the ole code, right?? if not this
4074 dnl doesn't need to be in here.
4075 if test "$wxUSE_METAFILE" = "yes"; then
4076 AC_DEFINE(wxUSE_METAFILE)
4077 dnl this one should probably be made separately configurable
4078 AC_DEFINE(wxUSE_ENH_METAFILE)
4082 AC_MSG_WARN(Drag and drop disabled because OLE headers not found)
4083 wxUSE_DRAG_AND_DROP=no
4087 if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
4088 AC_DEFINE(wxUSE_DRAG_AND_DROP)
4089 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
4094 if test "$wxUSE_SPLINES" = "yes" ; then
4095 AC_DEFINE(wxUSE_SPLINES)
4098 dnl ---------------------------------------------------------------------------
4100 dnl ---------------------------------------------------------------------------
4103 if test "$wxUSE_CONTROLS" = "yes"; then
4107 if test "$wxUSE_ACCEL" = "yes"; then
4108 AC_DEFINE(wxUSE_ACCEL)
4112 if test "$wxUSE_BUTTON" = "yes"; then
4113 AC_DEFINE(wxUSE_BUTTON)
4117 if test "$wxUSE_BMPBUTTON" = "yes"; then
4118 AC_DEFINE(wxUSE_BMPBUTTON)
4122 if test "$wxUSE_CALCTRL" = "yes"; then
4123 AC_DEFINE(wxUSE_CALENDARCTRL)
4125 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
4128 if test "$wxUSE_CARET" = "yes"; then
4129 AC_DEFINE(wxUSE_CARET)
4131 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
4134 if test "$wxUSE_COMBOBOX" = "yes"; then
4135 AC_DEFINE(wxUSE_COMBOBOX)
4139 if test "$wxUSE_CHOICE" = "yes"; then
4140 AC_DEFINE(wxUSE_CHOICE)
4144 if test "$wxUSE_CHECKBOX" = "yes"; then
4145 AC_DEFINE(wxUSE_CHECKBOX)
4149 if test "$wxUSE_CHECKLST" = "yes"; then
4150 AC_DEFINE(wxUSE_CHECKLISTBOX)
4152 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
4155 if test "$wxUSE_GAUGE" = "yes"; then
4156 AC_DEFINE(wxUSE_GAUGE)
4160 if test "$wxUSE_NEW_GRID" = "yes"; then
4162 AC_DEFINE(wxUSE_NEW_GRID)
4164 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS newgrid"
4167 if test "$wxUSE_GRID" = "yes"; then
4168 AC_DEFINE(wxUSE_GRID)
4170 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
4173 if test "$wxUSE_IMAGLIST" = "yes"; then
4174 AC_DEFINE(wxUSE_IMAGLIST)
4177 if test "$wxUSE_LISTBOX" = "yes"; then
4178 AC_DEFINE(wxUSE_LISTBOX)
4182 if test "$wxUSE_LISTCTRL" = "yes"; then
4183 if test "$wxUSE_IMAGLIST" = "yes"; then
4184 AC_DEFINE(wxUSE_LISTCTRL)
4186 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
4188 AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
4192 if test "$wxUSE_NOTEBOOK" = "yes"; then
4193 AC_DEFINE(wxUSE_NOTEBOOK)
4195 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
4198 if test "$wxUSE_PROPSHEET" = "yes"; then
4199 AC_DEFINE(wxUSE_PROPSHEET)
4201 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist"
4204 if test "$wxUSE_RADIOBOX" = "yes"; then
4205 AC_DEFINE(wxUSE_RADIOBOX)
4209 if test "$wxUSE_RADIOBTN" = "yes"; then
4210 AC_DEFINE(wxUSE_RADIOBTN)
4214 if test "$wxUSE_SASH" = "yes"; then
4215 AC_DEFINE(wxUSE_SASH)
4216 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
4219 if test "$wxUSE_SCROLLBAR" = "yes"; then
4220 AC_DEFINE(wxUSE_SCROLLBAR)
4222 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
4225 if test "$wxUSE_SLIDER" = "yes"; then
4226 AC_DEFINE(wxUSE_SLIDER)
4230 if test "$wxUSE_SPINBTN" = "yes"; then
4231 AC_DEFINE(wxUSE_SPINBTN)
4235 if test "$wxUSE_SPINCTRL" = "yes"; then
4236 AC_DEFINE(wxUSE_SPINCTRL)
4240 if test "$wxUSE_SPLITTER" = "yes"; then
4241 AC_DEFINE(wxUSE_SPLITTER)
4242 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
4245 if test "$wxUSE_STATBMP" = "yes"; then
4246 AC_DEFINE(wxUSE_STATBMP)
4250 if test "$wxUSE_STATBOX" = "yes"; then
4251 AC_DEFINE(wxUSE_STATBOX)
4255 if test "$wxUSE_STATTEXT" = "yes"; then
4256 AC_DEFINE(wxUSE_STATTEXT)
4260 if test "$wxUSE_STATLINE" = "yes"; then
4261 if test "$wxUSE_WINE" = 1 ; then
4262 AC_MSG_WARN([wxStaticLine is not supported under WINE])
4264 AC_DEFINE(wxUSE_STATLINE)
4269 if test "$wxUSE_STATUSBAR" = "yes"; then
4270 AC_DEFINE(wxUSE_STATUSBAR)
4273 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
4276 if test "$wxUSE_TABDIALOG" = "yes"; then
4277 AC_DEFINE(wxUSE_TAB_DIALOG)
4278 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
4281 if test "$wxUSE_TEXTCTRL" = "yes"; then
4282 AC_DEFINE(wxUSE_TEXTCTRL)
4284 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
4287 if test "$wxUSE_TOGGLEBTN" = "yes"; then
4288 if test "$wxUSE_MAC" = 1; then
4289 AC_MSG_WARN([Toggle button is not yet supported under Mac OS X])
4293 if test "$wxUSE_TOGGLEBTN" = "yes"; then
4294 AC_DEFINE(wxUSE_TOGGLEBTN)
4299 if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
4300 AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
4305 if test "$wxUSE_TOOLBAR" = "yes"; then
4306 AC_DEFINE(wxUSE_TOOLBAR)
4309 dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
4310 if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
4311 wxUSE_TOOLBAR_NATIVE="yes"
4314 if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
4315 AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
4319 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
4322 if test "$wxUSE_TOOLTIPS" = "yes"; then
4323 if test "$wxUSE_MOTIF" = 1; then
4324 AC_MSG_WARN(wxTooltip not supported yet under Motif)
4326 if test "$wxUSE_WINE" = 1; then
4327 AC_MSG_WARN(wxTooltip not supported under WINE)
4329 AC_DEFINE(wxUSE_TOOLTIPS)
4334 if test "$wxUSE_TREECTRL" = "yes"; then
4335 if test "$wxUSE_IMAGLIST" = "yes"; then
4336 AC_DEFINE(wxUSE_TREECTRL)
4338 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
4340 AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
4344 if test "$wxUSE_POPUPWIN" = "yes"; then
4345 if test "$wxUSE_MAC" = 1; then
4346 AC_MSG_WARN(Popup window is not yet supported under Mac OS)
4348 AC_DEFINE(wxUSE_POPUPWIN)
4353 if test "$USES_CONTROLS" = 1; then
4354 AC_DEFINE(wxUSE_CONTROLS)
4357 dnl ---------------------------------------------------------------------------
4359 dnl ---------------------------------------------------------------------------
4361 if test "$wxUSE_TREELAYOUT" = "yes"; then
4362 AC_DEFINE(wxUSE_TREELAYOUT)
4363 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treelay"
4366 if test "$wxUSE_DRAGIMAGE" = "yes"; then
4367 AC_DEFINE(wxUSE_DRAGIMAGE)
4368 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
4371 if test "$wxUSE_MENUS" = "yes"; then
4372 AC_DEFINE(wxUSE_MENUS)
4373 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
4376 if test "$wxUSE_METAFILE" = "yes"; then
4377 AC_DEFINE(wxUSE_METAFILE)
4380 if test "$wxUSE_MIMETYPE" = "yes"; then
4381 AC_DEFINE(wxUSE_MIMETYPE)
4384 if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
4385 AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
4388 if test "$wxUSE_MINIFRAME" = "yes"; then
4389 AC_DEFINE(wxUSE_MINIFRAME)
4390 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
4393 if test "$wxUSE_HTML" = "yes"; then
4394 AC_DEFINE(wxUSE_HTML)
4395 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html"
4396 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS html"
4399 if test "$wxUSE_VALIDATORS" = "yes"; then
4400 AC_DEFINE(wxUSE_VALIDATORS)
4401 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
4404 if test "$wxUSE_IMAGE" = "yes" ; then
4405 AC_DEFINE(wxUSE_IMAGE)
4408 if test "$wxUSE_GIF" = "yes" ; then
4409 AC_DEFINE(wxUSE_GIF)
4412 if test "$wxUSE_PCX" = "yes" ; then
4413 AC_DEFINE(wxUSE_PCX)
4416 if test "$wxUSE_PNM" = "yes" ; then
4417 AC_DEFINE(wxUSE_PNM)
4420 if test "$wxUSE_XPM" = "yes" ; then
4421 AC_DEFINE(wxUSE_XPM)
4424 dnl ---------------------------------------------------------------------------
4426 dnl ---------------------------------------------------------------------------
4428 if test "$wxUSE_CHOICEDLG" = "yes"; then
4429 AC_DEFINE(wxUSE_CHOICEDLG)
4432 if test "$wxUSE_COLOURDLG" = "yes"; then
4433 AC_DEFINE(wxUSE_COLOURDLG)
4436 if test "$wxUSE_FILEDLG" = "yes"; then
4437 AC_DEFINE(wxUSE_FILEDLG)
4440 if test "$wxUSE_FINDREPLDLG" = "yes"; then
4441 AC_DEFINE(wxUSE_FINDREPLDLG)
4444 if test "$wxUSE_FONTDLG" = "yes"; then
4445 AC_DEFINE(wxUSE_FONTDLG)
4448 if test "$wxUSE_DIRDLG" = "yes"; then
4449 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4450 AC_MSG_WARN(wxDirDialog requires constraints so it won't be compiled without them)
4452 if test "$wxUSE_TREECTRL" != "yes"; then
4453 AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
4455 AC_DEFINE(wxUSE_DIRDLG)
4460 if test "$wxUSE_MSGDLG" = "yes"; then
4461 AC_DEFINE(wxUSE_MSGDLG)
4464 if test "$wxUSE_NUMBERDLG" = "yes"; then
4465 AC_DEFINE(wxUSE_NUMBERDLG)
4468 if test "$wxUSE_PROGRESSDLG" = "yes"; then
4469 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4470 AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
4472 AC_DEFINE(wxUSE_PROGRESSDLG)
4476 if test "$wxUSE_SPLASH" = "yes"; then
4477 AC_DEFINE(wxUSE_SPLASH)
4480 if test "$wxUSE_STARTUP_TIPS" = "yes"; then
4481 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4482 AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
4484 AC_DEFINE(wxUSE_STARTUP_TIPS)
4488 if test "$wxUSE_TEXTDLG" = "yes"; then
4489 AC_DEFINE(wxUSE_TEXTDLG)
4492 if test "$wxUSE_WIZARDDLG" = "yes"; then
4493 AC_DEFINE(wxUSE_WIZARDDLG)
4494 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard"
4497 dnl ---------------------------------------------------------------------------
4498 dnl get the string with OS info - used by wxGetOsDescription()
4499 dnl ---------------------------------------------------------------------------
4501 if test "$cross_compiling" = "yes"; then
4502 dnl Use best guess from host as we can't use uname when cross compiling
4505 dnl attualy work out OS version
4506 OSINFO=`uname -s -r -m`
4507 OSINFO="\"$OSINFO\""
4510 AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
4512 dnl ---------------------------------------------------------------------------
4513 dnl Output the makefiles and such from the results found above
4514 dnl ---------------------------------------------------------------------------
4516 GUILIBS="$GUI_TK_LIBRARY $TOOLKIT_LINK"
4517 OPENGL_LIBS="$OPENGL_LINK"
4519 dnl all additional libraries (except wxWindows itself) we link with
4521 dnl note that we always link with -lm except for Mac OS X
4522 dnl extended.c uses floor() and is always linked in
4523 EXTRA_LIBS="$LIBS $POSIX4_LINK $INET_LINK $WCHAR_LINK $THREADS_LINK $DMALLOC_LINK $DL_LINK $ZLIB_LINK -lm"
4524 if test "$wxUSE_MAC" = 1 ; then
4525 EXTRA_LIBS="$EXTRA_LIBS -framework Carbon -framework System"
4527 if test "$wxUSE_GUI" = "yes"; then
4528 EXTRA_LIBS="$GUILIBS $PNG_LINK $JPEG_LINK $TIFF_LINK $FREETYPE_LINK $EXTRA_LIBS"
4531 dnl all the libraries needed to link wxWindows programs when using the
4532 dnl makefile system without libtool
4533 LD_LIBS="\${top_builddir}/lib/${WX_LIBRARY_NAME_STATIC} $EXTRA_LIBS"
4535 dnl all -I options we must pass to the compiler
4536 INCLUDES="-I. -I\${top_builddir}/include -I\${top_srcdir}/include \
4537 $REGEX_INCLUDE $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TIFF_INCLUDE \
4538 $FREETYPE_INCLUDE $TOOLKIT_INCLUDE"
4540 dnl wxGTK does not need TOOLKIT includes in wx-config
4541 if test "$wxUSE_GTK" = 1; then
4544 WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
4547 dnl C/C++ compiler options used to compile wxWindows
4548 if test "$GXX" = yes ; then
4549 dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
4551 dnl should enable this one day...
4552 dnl CXXWARNINGS="-Wall -Werror"
4554 EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE $INCLUDES"
4556 CFLAGS=`echo $CFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
4557 CXXFLAGS=`echo $CXXFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
4559 LDFLAGS="$LDFLAGS $PROFILE"
4561 if test "$wxUSE_GUI" = "yes"; then
4562 dnl TODO add checks that these samples will really compile (i.e. all the
4563 dnl library features they need are present)
4565 dnl TODO some samples are never built so far:
4566 dnl ipc, mfc, nativdlg, oleauto, ownerdrw
4567 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS controls dialogs \
4568 drawing dynamic erase event exec font image \
4569 minimal richedit rotate widgets"
4571 if test "$wxUSE_UNIVERSAL" = "yes" ; then
4572 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS univ"
4575 dnl this is needed to be able to find AFM files
4576 CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"
4578 SAMPLES_SUBDIRS="console"
4581 dnl for convenience, sort the samples in alphabetical order
4583 dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
4584 dnl in this list - hence uniq. But normally, this shouldn't be needed!
4586 dnl Unfortunately, there is a bug in OS/2's tr, such that
4587 dnl tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
4588 dnl only removes the Unix-like part of the introduced line break.
4589 SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
4591 dnl makefile variables
4596 AC_SUBST(WX_MAJOR_VERSION_NUMBER)
4597 AC_SUBST(WX_MINOR_VERSION_NUMBER)
4598 AC_SUBST(WX_RELEASE_NUMBER)
4599 AC_SUBST(WX_LIBRARY_NAME)
4600 AC_SUBST(WX_LIBRARY_NAME_STATIC)
4601 AC_SUBST(WX_LIBRARY_NAME_SHARED)
4602 AC_SUBST(WX_LIBRARY)
4603 AC_SUBST(WX_TARGET_LIBRARY)
4604 AC_SUBST(WX_LIBRARY_LINK1)
4605 AC_SUBST(WX_LIBRARY_LINK2)
4606 AC_SUBST(WX_LIBRARY_LINK3)
4607 AC_SUBST(PROGRAM_EXT)
4609 dnl global gl options
4610 AC_SUBST(WX_LIBRARY_NAME_GL)
4611 AC_SUBST(WX_LIBRARY_NAME_STATIC_GL)
4612 AC_SUBST(WX_LIBRARY_NAME_SHARED_GL)
4613 AC_SUBST(WX_LIBRARY_GL)
4614 AC_SUBST(WX_TARGET_LIBRARY_GL)
4615 AC_SUBST(WX_LIBRARY_LINK1_GL)
4616 AC_SUBST(WX_LIBRARY_LINK2_GL)
4617 AC_SUBST(WX_LIBRARY_LINK3_GL)
4619 dnl are we supposed to create the links?
4621 AC_SUBST(WX_ALL_INSTALLED)
4625 AC_SUBST(DEP_INFO_FLAGS)
4626 AC_SUBST(CODE_GEN_FLAGS)
4627 AC_SUBST(CODE_GEN_FLAGS_CXX)
4628 AC_SUBST(BURNT_LIBRARY_NAME)
4629 AC_SUBST(BURNT_LIBRARY_NAME_GL)
4630 AC_SUBST(WX_TARGET_LIBRARY_SONAME)
4631 AC_SUBST(WX_TARGET_LIBRARY_TYPE)
4633 dnl debugging options
4634 AC_SUBST(WXDEBUG_DEFINE)
4638 AC_SUBST(AFMINSTALL)
4639 AC_SUBST(SETUPH_DIR)
4641 AC_SUBST(TOOLKIT_DEF)
4642 AC_SUBST(TOOLKIT_DIR)
4643 AC_SUBST(TOOLKIT_NAME)
4644 AC_SUBST(TOOLKIT_INCLUDE)
4645 AC_SUBST(TOOLKIT_VPATH)
4646 AC_SUBST(WXCONFIG_INCLUDE)
4649 AC_SUBST(ALL_OBJECTS)
4650 AC_SUBST(ALL_DEPFILES)
4652 dnl distribution vars
4654 AC_SUBST(PORT_FILES)
4659 dnl additional subdirectories where we will build
4660 AC_SUBST(SRC_SUBDIRS)
4661 AC_SUBST(INCLUDE_SUBDIRS)
4662 AC_SUBST(UTILS_SUBDIRS)
4663 AC_SUBST(DOCS_SUBDIRS)
4664 AC_SUBST(SAMPLES_SUBDIRS)
4665 AC_SUBST(USER_SUBDIRS)
4667 dnl additional libraries and linker settings
4669 AC_SUBST(EXTRA_LIBS)
4670 AC_SUBST(OPENGL_LIBS)
4674 AC_SUBST(WXMSW_DLL_DEFINES)
4676 dnl additional resurces settings
4677 AC_SUBST(RCINPUTSWITCH)
4678 AC_SUBST(RCOUTPUTSWITCH)
4679 AC_SUBST(RESPROGRAM)
4682 dnl additional for Mac OS X
4686 AC_SUBST(DEREZFLAGS)
4687 AC_SUBST(LIBWXMACRES)
4688 AC_SUBST(LIBWXMACRESCOMP)
4690 dnl These seam to be missing
4698 dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
4699 dnl itself (this is macro is required if SUBDIRS variable is used in Makefile.am
4700 dnl - and we do use it)
4703 dnl move setup.h back if available
4704 if test -d include; then
4705 if test -d include/wx; then
4706 if test -d include/wx/${SETUPH_DIR}; then
4707 if test -f include/wx/${SETUPH_DIR}/setup.h; then
4708 mv -f include/wx/${SETUPH_DIR}/setup.h setup.h
4714 AC_CONFIG_HEADER(setup.h:setup.h.in)
4716 dnl some more GUI only things
4717 if test "$wxUSE_GUI" = "yes"; then
4718 dnl we need to pass SAMPLES_SUBDIRS (and some other) to the configure in
4719 dnl samples and the only way to do it is, again, use the cache
4720 wx_cv_path_samplesubdirs=$SAMPLES_SUBDIRS
4721 wx_cv_path_ifs=$PATH_IFS
4722 wx_cv_program_ext=$PROGRAM_EXT
4723 wx_cv_target_library=$WX_TARGET_LIBRARY
4724 wx_cv_target_library_gl=$WX_TARGET_LIBRARY_GL
4725 wx_cv_target_libtype=$WX_TARGET_LIBRARY_TYPE
4726 dnl we need to export them because passing them through cache won't
4727 dnl work when cache=/dev/null (which is default for autoconf 2.50)
4728 export wx_cv_path_samplesubdirs wx_cv_path_ifs wx_cv_program_ext \
4729 wx_cv_target_library wx_cv_target_library_gl wx_cv_target_libtype
4730 AC_CONFIG_SUBDIRS(demos samples utils contrib)
4734 dnl create each of the files in the space separated list from the file.in
4735 dnl (the original file name may be overriden by appending another name after a
4745 dnl don't move the file on itself - this happens when we run
4746 dnl config.status which, as configure, executes these commands
4747 dnl but, unlike it, doesn't create wx-config (which already
4748 if test ! -f wx${TOOLKIT_NAME}-config; then
4750 mv wx-config wx${TOOLKIT_NAME}-config
4751 ${LN_S} wx${TOOLKIT_NAME}-config wx-config
4754 dnl the debian build process wants setup.h in the lib subdir so we
4755 dnl can pretend wxWin is already installed, so we *copy* it there
4757 if test ! -d lib; then
4760 if test ! -d lib/wx; then
4763 if test ! -d lib/wx/include; then
4764 mkdir lib/wx/include
4766 if test ! -d lib/wx/include/wx; then
4767 mkdir lib/wx/include/wx
4769 if test ! -d lib/wx/include/wx/${TOOLKIT_NAME}; then
4770 mkdir lib/wx/include/wx/${TOOLKIT_NAME}
4772 if test -f setup.h; then
4773 cp -fp setup.h lib/wx/include/wx/${TOOLKIT_NAME}/setup.h
4776 dnl *move* setup.h to its final place
4778 if test ! -d include; then
4781 if test ! -d include/wx; then
4784 if test ! -d include/wx/${SETUPH_DIR}; then
4785 mkdir include/wx/${SETUPH_DIR}
4787 if test -f setup.h; then
4788 cp -fp setup.h include/wx/${SETUPH_DIR}/setup.h
4793 SETUPH_DIR="${SETUPH_DIR}"
4794 TOOLKIT_NAME="${TOOLKIT_NAME}"
4799 dnl vi: set et ts=4 sw=4 list: