]> git.saurik.com Git - wxWidgets.git/blame - contrib/configure.in
1. Setting the listctrl as the event object before sending the event
[wxWidgets.git] / contrib / configure.in
CommitLineData
e8482f24
GL
1dnl Process this file with autoconf to produce a configure script.
2AC_REVISION($Id$)dnl
3
4AC_INIT(Makefile.in)
5
6dnl ---------------
7dnl MMedia specific
8dnl ---------------
9
10dnl Check for ESD
11
12ESD_LINK=
13AC_CHECK_HEADER(esd.h, [
14 AC_CHECK_LIB(esd, esd_close, [
15 ESD_LINK="-lesd"
16 ])
17])
18
2c4ad283 19if test "$ESD_LINK" != "" ; then
e8482f24
GL
20 echo "ESound detected"
21fi
22
23dnl -----------
24dnl Final subst
25
26PATH_IFS=$wx_cv_path_ifs
27WX_TARGET_LIBRARY=$wx_cv_target_library
3711412e 28WX_TARGET_LIBRARY_TYPE=$wx_cv_target_libtype
e8482f24
GL
29
30AC_SUBST(PATH_IFS)
31AC_SUBST(ESD_LINK)
32AC_SUBST(WX_TARGET_LIBRARY)
3711412e 33AC_SUBST(WX_TARGET_LIBRARY_TYPE)
e8482f24
GL
34
35dnl -----------
36dnl File output
37
38
39AC_OUTPUT([
40 Makefile
41 src/Makefile
42 src/ogl/Makefile
43 src/mmedia/Makefile
e9b66393 44 src/stc/Makefile
56d2f750 45 src/xml/Makefile
6a2c1874
RR
46 src/canvas/Makefile
47 src/gizmos/Makefile
e8482f24
GL
48 samples/Makefile
49 samples/mmedia/Makefile
f6bcfd97
BP
50 samples/ogl/Makefile
51 samples/ogl/ogledit/Makefile
52 samples/ogl/studio/Makefile
e9b66393 53 samples/stc/Makefile
6a2c1874
RR
54 samples/canvas/Makefile
55 samples/canvas/test/Makefile
56 samples/gizmos/Makefile
57 samples/gizmos/multicell/Makefile
58 samples/gizmos/splittree/Makefile
56d2f750
VS
59 utils/Makefile
60 utils/wxrc/Makefile
61 utils/wxrcedit/Makefile
e8482f24 62 ])