]> git.saurik.com Git - wxWidgets.git/blame_incremental - contrib/configure.in
Removed AlignIn after further thought
[wxWidgets.git] / contrib / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2AC_REVISION($Id$)dnl
3
4AC_INIT(Makefile.in)
5
6dnl we need the values the main configure determined for us, so refuse
7dnl to run if we don't have them
8if test "x$wx_cv_path_ifs" = "x"; then
9 AC_MSG_ERROR([Please run configure from the top level directory.])
10fi
11
12dnl ---------------
13dnl MMedia specific
14dnl ---------------
15
16dnl Check for ESD
17
18ESD_LINK=
19AC_CHECK_HEADER(esd.h, [
20 AC_CHECK_LIB(esd, esd_close, [
21 ESD_LINK="-lesd"
22 ])
23])
24
25if test "$ESD_LINK" != "" ; then
26 echo "ESound detected"
27fi
28
29dnl -----------
30dnl Final subst
31
32PATH_IFS=$wx_cv_path_ifs
33WX_TARGET_LIBRARY=$wx_cv_target_library
34WX_TARGET_LIBRARY_TYPE=$wx_cv_target_libtype
35WX_LIBRARY_BASENAME=$wx_cv_library_basename
36WX_RELEASE=$wx_cv_release
37WX_CURRENT=$wx_cv_current
38WX_REVISION=$wx_cv_revision
39WX_AGE=$wx_cv_age
40
41AC_SUBST(PATH_IFS)
42AC_SUBST(ESD_LINK)
43AC_SUBST(WX_TARGET_LIBRARY)
44AC_SUBST(WX_TARGET_LIBRARY_TYPE)
45AC_SUBST(WX_LIBRARY_BASENAME)
46AC_SUBST(WX_RELEASE)
47AC_SUBST(WX_CURRENT)
48AC_SUBST(WX_REVISION)
49AC_SUBST(WX_AGE)
50
51dnl -----------
52dnl File output
53
54
55AC_OUTPUT([
56 src/Makefile
57 src/deprecated/Makefile
58 src/ogl/Makefile
59 src/mmedia/Makefile
60 src/stc/Makefile
61 src/svg/Makefile
62 src/xrc/Makefile
63 src/gizmos/Makefile
64 src/plot/Makefile
65 src/applet/Makefile
66 src/fl/Makefile
67 src/net/Makefile
68 samples/Makefile
69 samples/deprecated/Makefile
70 samples/deprecated/proplist/Makefile
71 samples/deprecated/resource/Makefile
72 samples/deprecated/treelay/Makefile
73 samples/mmedia/Makefile
74 samples/ogl/Makefile
75 samples/ogl/ogledit/Makefile
76 samples/ogl/studio/Makefile
77 samples/stc/Makefile
78 samples/svg/Makefile
79 samples/gizmos/Makefile
80 samples/gizmos/editlbox/Makefile
81 samples/gizmos/dynsash/Makefile
82 samples/gizmos/dynsash_switch/Makefile
83 samples/gizmos/multicell/Makefile
84 samples/gizmos/splittree/Makefile
85 samples/gizmos/led/Makefile
86 samples/xrc/Makefile
87 samples/plot/Makefile
88 samples/applet/Makefile
89 samples/fl/Makefile
90 samples/fl/fl_demo1/Makefile
91 samples/fl/fl_demo2/Makefile
92 samples/fl/fl_sample1/Makefile
93 samples/fl/fl_sample2/Makefile
94 samples/fl/fl_sample3/Makefile
95 utils/Makefile
96 utils/wxrc/Makefile
97 utils/wxrcedit/Makefile
98 utils/convertrc/Makefile
99 ])