|
From: <ai...@us...> - 2013-10-05 19:51:51
|
Revision: 12581
http://sourceforge.net/p/plplot/code/12581
Author: airwin
Date: 2013-10-05 19:51:48 +0000 (Sat, 05 Oct 2013)
Log Message:
-----------
Make DOCBOOK_XML_BACKEND ON mandatory rather than an option.
This change effectively disables the old SGML/DSSSL backend tools that
were deprecated but still available for 5.9.10 and which were the
default for releases prior to 5.9.10.
Modified Paths:
--------------
trunk/cmake/modules/docbook.cmake
Modified: trunk/cmake/modules/docbook.cmake
===================================================================
--- trunk/cmake/modules/docbook.cmake 2013-10-05 19:38:25 UTC (rev 12580)
+++ trunk/cmake/modules/docbook.cmake 2013-10-05 19:51:48 UTC (rev 12581)
@@ -68,8 +68,15 @@
# This option is used for the BUILD_DOC case below and elsewhere and also
# for the PREBUILT_DOC case elsewhere (when stylesheet.css is configured).
-option(DOCBOOK_XML_BACKEND "Use DocBook XML/XSLT backend tools to generate our documentation from DocBook source" ON)
+# option(DOCBOOK_XML_BACKEND "Use DocBook XML/XSLT backend tools to generate our documentation from DocBook source" ON)
+# N.B., DOCBOOK_XML_BACKEND ON is mandatory now rather than an option
+# which effectively disables the old SGML/DSSSL backend tools that
+# were deprecated but still available for 5.9.10 and which were the
+# default for releases prior to 5.9.10.
+set(DOCBOOK_XML_BACKEND ON CACHE BOOL "" FORCE)
+
+
# Check for required programs and perl libraries.
if(BUILD_DOC)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|