]>
Commit | Line | Data |
---|---|---|
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 | src/Makefile | |
41 | src/ogl/Makefile | |
42 | src/mmedia/Makefile | |
43 | src/stc/Makefile | |
44 | src/svg/Makefile | |
45 | src/xrc/Makefile | |
46 | src/canvas/Makefile | |
47 | src/gizmos/Makefile | |
48 | src/plot/Makefile | |
49 | src/applet/Makefile | |
50 | src/fl/Makefile | |
51 | src/net/Makefile | |
52 | samples/Makefile | |
53 | samples/mmedia/Makefile | |
54 | samples/ogl/Makefile | |
55 | samples/ogl/ogledit/Makefile | |
56 | samples/ogl/studio/Makefile | |
57 | samples/stc/Makefile | |
58 | samples/canvas/Makefile | |
59 | samples/canvas/test/Makefile | |
60 | samples/canvas/simple/Makefile | |
61 | samples/gizmos/Makefile | |
62 | samples/gizmos/multicell/Makefile | |
63 | samples/gizmos/splittree/Makefile | |
64 | samples/gizmos/editlbox/Makefile | |
65 | samples/gizmos/dynsash/Makefile | |
66 | samples/gizmos/dynsash_switch/Makefile | |
67 | samples/xrc/Makefile | |
68 | samples/plot/Makefile | |
69 | samples/applet/Makefile | |
70 | samples/fl/Makefile | |
71 | samples/fl/fl_demo1/Makefile | |
72 | samples/fl/fl_demo2/Makefile | |
73 | samples/fl/fl_sample1/Makefile | |
74 | samples/fl/fl_sample2/Makefile | |
75 | samples/fl/fl_sample3/Makefile | |
76 | utils/Makefile | |
77 | utils/wxrc/Makefile | |
78 | utils/wxrcedit/Makefile | |
79 | utils/convertrc/Makefile | |
80 | ]) |