the default build list previously. Then removed animate from default contrib build again since it doesn't compile under linux. There is no point packaging something that obviously has never been tested and two chances at breaking a 4 hour package build is plenty for something no one has ever requested. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24307 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
94 lines
2.4 KiB
Plaintext
94 lines
2.4 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_REVISION($Id$)dnl
|
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
dnl ---------------
|
|
dnl MMedia specific
|
|
dnl ---------------
|
|
|
|
dnl Check for ESD
|
|
|
|
ESD_LINK=
|
|
AC_CHECK_HEADER(esd.h, [
|
|
AC_CHECK_LIB(esd, esd_close, [
|
|
ESD_LINK="-lesd"
|
|
])
|
|
])
|
|
|
|
if test "$ESD_LINK" != "" ; then
|
|
echo "ESound detected"
|
|
fi
|
|
|
|
dnl -----------
|
|
dnl Final subst
|
|
|
|
PATH_IFS=$wx_cv_path_ifs
|
|
WX_TARGET_LIBRARY=$wx_cv_target_library
|
|
WX_TARGET_LIBRARY_TYPE=$wx_cv_target_libtype
|
|
WX_LIBRARY_BASENAME=$wx_cv_library_basename
|
|
WX_RELEASE=$wx_cv_release
|
|
WX_CURRENT=$wx_cv_current
|
|
WX_REVISION=$wx_cv_revision
|
|
WX_AGE=$wx_cv_age
|
|
|
|
AC_SUBST(PATH_IFS)
|
|
AC_SUBST(ESD_LINK)
|
|
AC_SUBST(WX_TARGET_LIBRARY)
|
|
AC_SUBST(WX_TARGET_LIBRARY_TYPE)
|
|
AC_SUBST(WX_LIBRARY_BASENAME)
|
|
AC_SUBST(WX_RELEASE)
|
|
AC_SUBST(WX_CURRENT)
|
|
AC_SUBST(WX_REVISION)
|
|
AC_SUBST(WX_AGE)
|
|
|
|
dnl -----------
|
|
dnl File output
|
|
|
|
|
|
AC_OUTPUT([
|
|
src/Makefile
|
|
src/ogl/Makefile
|
|
src/mmedia/Makefile
|
|
src/stc/Makefile
|
|
src/svg/Makefile
|
|
src/xrc/Makefile
|
|
src/canvas/Makefile
|
|
src/gizmos/Makefile
|
|
src/plot/Makefile
|
|
src/applet/Makefile
|
|
src/fl/Makefile
|
|
src/net/Makefile
|
|
src/animate/Makefile
|
|
samples/Makefile
|
|
samples/mmedia/Makefile
|
|
samples/ogl/Makefile
|
|
samples/ogl/ogledit/Makefile
|
|
samples/ogl/studio/Makefile
|
|
samples/stc/Makefile
|
|
samples/svg/Makefile
|
|
samples/canvas/Makefile
|
|
samples/canvas/test/Makefile
|
|
samples/canvas/simple/Makefile
|
|
samples/gizmos/Makefile
|
|
samples/gizmos/editlbox/Makefile
|
|
samples/gizmos/dynsash/Makefile
|
|
samples/gizmos/dynsash_switch/Makefile
|
|
samples/gizmos/multicell/Makefile
|
|
samples/gizmos/splittree/Makefile
|
|
samples/gizmos/led/Makefile
|
|
samples/xrc/Makefile
|
|
samples/plot/Makefile
|
|
samples/applet/Makefile
|
|
samples/fl/Makefile
|
|
samples/fl/fl_demo1/Makefile
|
|
samples/fl/fl_demo2/Makefile
|
|
samples/fl/fl_sample1/Makefile
|
|
samples/fl/fl_sample2/Makefile
|
|
samples/fl/fl_sample3/Makefile
|
|
utils/Makefile
|
|
utils/wxrc/Makefile
|
|
utils/wxrcedit/Makefile
|
|
utils/convertrc/Makefile
|
|
])
|