]> git.saurik.com Git - wxWidgets.git/blob - contrib/configure.in
repaired some of the more obvious horrors in the contrib (configure) Makefiles
[wxWidgets.git] / contrib / 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 dnl ---------------
7 dnl MMedia specific
8 dnl ---------------
9
10 dnl Check for ESD
11
12 ESD_LINK=
13 AC_CHECK_HEADER(esd.h, [
14 AC_CHECK_LIB(esd, esd_close, [
15 ESD_LINK="-lesd"
16 ])
17 ])
18
19 if test "$ESD_LINK" != "" ; then
20 echo "ESound detected"
21 fi
22
23 dnl -----------
24 dnl Final subst
25
26 PATH_IFS=$wx_cv_path_ifs
27 WX_TARGET_LIBRARY=$wx_cv_target_library
28 WX_TARGET_LIBRARY_TYPE=$wx_cv_target_libtype
29
30 AC_SUBST(PATH_IFS)
31 AC_SUBST(ESD_LINK)
32 AC_SUBST(WX_TARGET_LIBRARY)
33 AC_SUBST(WX_TARGET_LIBRARY_TYPE)
34
35 dnl -----------
36 dnl File output
37
38
39 AC_OUTPUT([
40 Makefile
41 src/Makefile
42 src/ogl/Makefile
43 src/mmedia/Makefile
44 src/stc/Makefile
45 samples/Makefile
46 samples/mmedia/Makefile
47 samples/stc/Makefile
48 ])