[gs-cvs] rev 6993 - trunk/gs/src

giles at ghostscript.com giles at ghostscript.com
Mon Aug 14 16:05:38 PDT 2006


Author: giles
Date: 2006-08-14 16:05:38 -0700 (Mon, 14 Aug 2006)
New Revision: 6993

Modified:
   trunk/gs/src/configure.ac
Log:
Enable COMPILE_INITS by default in the autoconf build, as suggested by 
Ray Johnston.


Modified: trunk/gs/src/configure.ac
===================================================================
--- trunk/gs/src/configure.ac	2006-08-14 22:47:33 UTC (rev 6992)
+++ trunk/gs/src/configure.ac	2006-08-14 23:05:38 UTC (rev 6993)
@@ -389,11 +389,11 @@
 AC_SUBST(GS)
 
 dnl do we compile the postscript initialization files into Ghostscript?
-COMPILE_INITS="0"
-AC_ARG_ENABLE(compile-inits, AC_HELP_STRING([--enable-compile-inits],
-       [compile initialization files into Ghostscript]),[
-               if test x$enable_compile_inits = xyes; then
-                       COMPILE_INITS="1"
+COMPILE_INITS="1"
+AC_ARG_ENABLE(compile-inits, AC_HELP_STRING([--disable-compile-inits],
+       [don't compile in initialization files]),[
+               if test "x$enable_compile_inits" = xno; then
+                       COMPILE_INITS="0"
                fi])
 AC_SUBST(COMPILE_INITS)
 



More information about the gs-cvs mailing list