]> git.saurik.com Git - wxWidgets.git/blame - contrib/configure.in
fix in fontspec parsing
[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
28
29AC_SUBST(PATH_IFS)
30AC_SUBST(ESD_LINK)
31AC_SUBST(WX_TARGET_LIBRARY)
32
33dnl -----------
34dnl File output
35
36
37AC_OUTPUT([
38 Makefile
39 src/Makefile
40 src/ogl/Makefile
41 src/mmedia/Makefile
e9b66393 42 src/stc/Makefile
e8482f24
GL
43 samples/Makefile
44 samples/mmedia/Makefile
e9b66393 45 samples/stc/Makefile
e8482f24 46 ])