]> git.saurik.com Git - wxWidgets.git/blob - samples/configure.in
corrections for compilation under Mac OS X
[wxWidgets.git] / samples / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Id$)dnl
3
4 AC_INIT(Makefile.in)
5
6 AC_CANONICAL_SYSTEM
7
8 AC_PROG_CC
9 AC_PROG_CXX
10
11 dnl we need the values the main configure determined for us, so refuse
12 dnl to run if we don't have them
13 if test "x$wx_cv_path_samplesubdirs" = "x"; then
14 AC_MSG_ERROR([Please run configure from the top level directory.])
15 fi
16
17 SAMPLES_SUBDIRS=$wx_cv_path_samplesubdirs
18 AC_SUBST(SAMPLES_SUBDIRS)
19
20 IF_GNU_MAKE=$wx_cv_if_gnu_make
21 PATH_IFS=$wx_cv_path_ifs
22 PROGRAM_EXT=$wx_cv_program_ext
23 WX_TARGET_LIBRARY=$wx_cv_target_library
24 WX_TARGET_LIBRARY_GL=$wx_cv_target_library_gl
25 USE_GUI=$wx_cv_use_gui
26
27 AC_SUBST(top_builddir)
28 AC_SUBST(IF_GNU_MAKE)
29 AC_SUBST(PATH_IFS)
30 AC_SUBST(PROGRAM_EXT)
31 AC_SUBST(WX_TARGET_LIBRARY)
32 AC_SUBST(WX_TARGET_LIBRARY_GL)
33
34 AC_SUBST(wxUSE_ZLIB)
35 AC_SUBST(wxUSE_REGEX)
36 AC_SUBST(wxUSE_ODBC)
37 AC_SUBST(wxUSE_LIBJPEG)
38 AC_SUBST(wxUSE_LIBPNG)
39 AC_SUBST(wxUSE_LIBTIFF)
40 AC_SUBST(TOOLKIT)
41 AC_SUBST(TOOLKIT_LOWERCASE)
42 AC_SUBST(TOOLKIT_VERSION)
43 AC_SUBST(EXTRALIBS)
44 AC_SUBST(WXUNIV)
45 AC_SUBST(UNICODE)
46 AC_SUBST(BUILD)
47 AC_SUBST(SHARED)
48 AC_SUBST(USE_GUI)
49 AC_SUBST(MONOLITHIC)
50 AC_SUBST(SAMPLES_RPATH_FLAG)
51 AC_BAKEFILE
52
53
54 AC_OUTPUT([
55 Makefile
56 access/Makefile
57 artprov/Makefile
58 caret/Makefile
59 calendar/Makefile
60 checklst/Makefile
61 config/Makefile
62 controls/Makefile
63 console/Makefile
64 db/Makefile
65 dialogs/Makefile
66 dialup/Makefile
67 docview/Makefile
68 docvwmdi/Makefile
69 dnd/Makefile
70 dragimag/Makefile
71 drawing/Makefile
72 dynamic/Makefile
73 erase/Makefile
74 event/Makefile
75 exec/Makefile
76 font/Makefile
77 grid/Makefile
78 help/Makefile
79 image/Makefile
80 internat/Makefile
81 ipc/Makefile
82 joytest/Makefile
83 keyboard/Makefile
84 layout/Makefile
85 listctrl/Makefile
86 mdi/Makefile
87 menu/Makefile
88 memcheck/Makefile
89 minifram/Makefile
90 minimal/Makefile
91 mobile/Makefile
92 mobile/wxedit/Makefile
93 mobile/styles/Makefile
94 multimon/Makefile
95 notebook/Makefile
96 oleauto/Makefile
97 ownerdrw/Makefile
98 png/Makefile
99 printing/Makefile
100 propsize/Makefile
101 regtest/Makefile
102 rotate/Makefile
103 sashtest/Makefile
104 shaped/Makefile
105 scroll/Makefile
106 scrollsub/Makefile
107 sockets/Makefile
108 splitter/Makefile
109 statbar/Makefile
110 taskbar/Makefile
111 text/Makefile
112 thread/Makefile
113 toolbar/Makefile
114 treectrl/Makefile
115 typetest/Makefile
116 validate/Makefile
117 widgets/Makefile
118 wizard/Makefile
119 htlbox/Makefile
120 html/Makefile
121 html/about/Makefile
122 html/help/Makefile
123 html/printing/Makefile
124 html/helpview/Makefile
125 html/test/Makefile
126 html/zip/Makefile
127 html/virtual/Makefile
128 html/widget/Makefile
129 opengl/Makefile
130 opengl/cube/Makefile
131 opengl/penguin/Makefile
132 opengl/isosurf/Makefile
133 ])