]>
Commit | Line | Data |
---|---|---|
e8482f24 GL |
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 | ||
2c4ad283 | 19 | if test "$ESD_LINK" != "" ; then |
e8482f24 GL |
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 | |
3711412e | 28 | WX_TARGET_LIBRARY_TYPE=$wx_cv_target_libtype |
e8482f24 GL |
29 | |
30 | AC_SUBST(PATH_IFS) | |
31 | AC_SUBST(ESD_LINK) | |
32 | AC_SUBST(WX_TARGET_LIBRARY) | |
3711412e | 33 | AC_SUBST(WX_TARGET_LIBRARY_TYPE) |
e8482f24 GL |
34 | |
35 | dnl ----------- | |
36 | dnl File output | |
37 | ||
38 | ||
39 | AC_OUTPUT([ | |
e8482f24 GL |
40 | src/Makefile |
41 | src/ogl/Makefile | |
42 | src/mmedia/Makefile | |
e9b66393 | 43 | src/stc/Makefile |
999d9a9f | 44 | src/xrc/Makefile |
6a2c1874 RR |
45 | src/canvas/Makefile |
46 | src/gizmos/Makefile | |
8556b795 | 47 | src/plot/Makefile |
db157a6c | 48 | src/applet/Makefile |
8e08b761 | 49 | src/fl/Makefile |
decb3a6a | 50 | src/net/Makefile |
e8482f24 GL |
51 | samples/Makefile |
52 | samples/mmedia/Makefile | |
f6bcfd97 BP |
53 | samples/ogl/Makefile |
54 | samples/ogl/ogledit/Makefile | |
55 | samples/ogl/studio/Makefile | |
e9b66393 | 56 | samples/stc/Makefile |
6a2c1874 RR |
57 | samples/canvas/Makefile |
58 | samples/canvas/test/Makefile | |
f9032263 | 59 | samples/canvas/simple/Makefile |
6a2c1874 RR |
60 | samples/gizmos/Makefile |
61 | samples/gizmos/multicell/Makefile | |
62 | samples/gizmos/splittree/Makefile | |
999d9a9f | 63 | samples/gizmos/editlbox/Makefile |
eacb91fc VZ |
64 | samples/gizmos/dynsash/Makefile |
65 | samples/gizmos/dynsash_switch/Makefile | |
999d9a9f | 66 | samples/xrc/Makefile |
8556b795 | 67 | samples/plot/Makefile |
db157a6c | 68 | samples/applet/Makefile |
2d2c394b | 69 | samples/fl/Makefile |
72c094d9 JS |
70 | samples/fl/fl_demo1/Makefile |
71 | samples/fl/fl_demo2/Makefile | |
72 | samples/fl/fl_sample1/Makefile | |
73 | samples/fl/fl_sample2/Makefile | |
74 | samples/fl/fl_sample3/Makefile | |
56d2f750 VS |
75 | utils/Makefile |
76 | utils/wxrc/Makefile | |
77 | utils/wxrcedit/Makefile | |
2193517f | 78 | utils/convertrc/Makefile |
e8482f24 | 79 | ]) |