]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/configure.in
removed wxEncodingConverter from docs where wxMBConv should be mentioned instead
[wxWidgets.git] / utils / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2AC_REVISION($Id$)dnl
3
4AC_INIT(Makefile.in)
5
6dnl we need the values the main configure determined for us, so refuse
7dnl to run if we don't have them
8if test "x$wx_cv_use_gui" = "x"; then
9 AC_MSG_ERROR([Please run configure from the top level directory.])
10fi
11
12GL_TOOLKIT_DIR=$wx_cv_path_glcanvas
13USE_GUI=$wx_cv_use_gui
14USE_RESOURCES=$wx_cv_use_resources
15AC_SUBST(GL_TOOLKIT_DIR)
16AC_SUBST(USE_GUI)
17AC_SUBST(USE_RESOURCES)
18
19AC_OUTPUT([
20 Makefile
21 makegen/Makefile
22 HelpGen/Makefile
23 HelpGen/src/Makefile
24 tex2rtf/Makefile
25 tex2rtf/src/Makefile
26 hhp2cached/Makefile
27 dialoged/Makefile
28 dialoged/src/Makefile
29 emulator/Makefile
30 emulator/src/Makefile
31 helpview/Makefile
32 helpview/src/Makefile
33 ])