| 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 | src/xml/Makefile |
| 46 | src/canvas/Makefile |
| 47 | src/gizmos/Makefile |
| 48 | src/plot/Makefile |
| 49 | src/applet/Makefile |
| 50 | samples/Makefile |
| 51 | samples/mmedia/Makefile |
| 52 | samples/ogl/Makefile |
| 53 | samples/ogl/ogledit/Makefile |
| 54 | samples/ogl/studio/Makefile |
| 55 | samples/stc/Makefile |
| 56 | samples/canvas/Makefile |
| 57 | samples/canvas/test/Makefile |
| 58 | samples/canvas/simple/Makefile |
| 59 | samples/gizmos/Makefile |
| 60 | samples/gizmos/multicell/Makefile |
| 61 | samples/gizmos/splittree/Makefile |
| 62 | samples/xml/Makefile |
| 63 | samples/plot/Makefile |
| 64 | samples/applet/Makefile |
| 65 | utils/Makefile |
| 66 | utils/wxrc/Makefile |
| 67 | utils/wxrcedit/Makefile |
| 68 | utils/convertrc/Makefile |
| 69 | ]) |