svn commit: r52806 - head/en_US.ISO8859-1/books/porters-handbook/makefiles
Mathieu Arnold
mat at FreeBSD.org
Sat Feb 9 09:02:08 UTC 2019
Author: mat
Date: Sat Feb 9 09:02:07 2019
New Revision: 52806
URL: https://svnweb.freebsd.org/changeset/doc/52806
Log:
Fix ordering of a couple examples.
Reported by: kbowling
Modified:
head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml
Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Feb 8 21:57:30 2019 (r52805)
+++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Sat Feb 9 09:02:07 2019 (r52806)
@@ -6166,11 +6166,11 @@ OPTIONS_GROUP_GG1= OPT9 OPT10</programlisting>
<title>Simple Use of <varname>OPTIONS</varname></title>
<programlisting>OPTIONS_DEFINE= FOO BAR
+OPTIONS_DEFAULT=FOO
+
FOO_DESC= Option foo support
BAR_DESC= Feature bar support
-OPTIONS_DEFAULT=FOO
-
# Will add --with-foo / --without-foo
FOO_CONFIGURE_WITH= foo
BAR_RUN_DEPENDS= bar:bar/bar
@@ -6198,6 +6198,7 @@ EXAMPLES_CONFIGURE_WITH= examples</programlisting>
<title>Practical Use of <varname>OPTIONS</varname></title>
<programlisting>OPTIONS_DEFINE= EXAMPLES
+OPTIONS_DEFAULT= PGSQL LDAP SSL
OPTIONS_SINGLE= BACKEND
OPTIONS_SINGLE_BACKEND= MYSQL PGSQL BDB
@@ -6212,8 +6213,6 @@ BDB_DESC= Use Berkeley DB as backend
LDAP_DESC= Build with LDAP authentication support
PAM_DESC= Build with PAM support
SSL_DESC= Build with OpenSSL support
-
-OPTIONS_DEFAULT= PGSQL LDAP SSL
# Will add USE_PGSQL=yes
PGSQL_USE= pgsql=yes
More information about the svn-doc-head
mailing list