]> git.saurik.com Git - wxWidgets.git/blob - utils/configure.in
added checks to prevent running sub configure scripts directly (they can only
[wxWidgets.git] / utils / configure.in
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 we need the values the main configure determined for us, so refuse
7 dnl to run if we don't have them
8 if test "x$wx_cv_path_glcanvas" = "x"; then
9 AC_MSG_ERROR([Please run configure from the top level directory.])
10 fi
11
12 GL_TOOLKIT_DIR=$wx_cv_path_glcanvas
13 USE_GUI=$wx_cv_use_gui
14 USE_RESOURCES=$wx_cv_use_resources
15 AC_SUBST(GL_TOOLKIT_DIR)
16 AC_SUBST(USE_GUI)
17 AC_SUBST(USE_RESOURCES)
18
19 AC_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 ])