]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configure.in
removed wxEncodingConverter from docs where wxMBConv should be mentioned instead
[wxWidgets.git] / utils / configure.in
index ff794a4c5c24b153ed3bd530c9ffd05c0924cfdc..39a4a5f333b5b1e5724e6fa2cca5e1a2e6f3db9d 100644 (file)
@@ -3,8 +3,18 @@ AC_REVISION($Id$)dnl
 
 AC_INIT(Makefile.in)
 
+dnl we need the values the main configure determined for us, so refuse
+dnl to run if we don't have them
+if test "x$wx_cv_use_gui" = "x"; then
+    AC_MSG_ERROR([Please run configure from the top level directory.])
+fi
+
 GL_TOOLKIT_DIR=$wx_cv_path_glcanvas
+USE_GUI=$wx_cv_use_gui
+USE_RESOURCES=$wx_cv_use_resources
 AC_SUBST(GL_TOOLKIT_DIR)
+AC_SUBST(USE_GUI)
+AC_SUBST(USE_RESOURCES)
 
 AC_OUTPUT([
             Makefile
@@ -16,4 +26,8 @@ AC_OUTPUT([
             hhp2cached/Makefile
             dialoged/Makefile
             dialoged/src/Makefile
+            emulator/Makefile
+            emulator/src/Makefile
+            helpview/Makefile
+            helpview/src/Makefile
          ])