From owner-freebsd-doc@FreeBSD.ORG Thu Jul 24 18:20:05 2008 Return-Path: Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F8FC1065673 for ; Thu, 24 Jul 2008 18:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 287AF8FC1C for ; Thu, 24 Jul 2008 18:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m6OIK4qN065444 for ; Thu, 24 Jul 2008 18:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m6OIK46i065443; Thu, 24 Jul 2008 18:20:04 GMT (envelope-from gnats) Date: Thu, 24 Jul 2008 18:20:04 GMT Message-Id: <200807241820.m6OIK46i065443@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Thomas Abthorpe Cc: Subject: Re: docs/125907: [patch] Update makefiles options section of Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Abthorpe List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2008 18:20:05 -0000 The following reply was made to PR docs/125907; it has been noted by GNATS. From: Thomas Abthorpe To: bug-followup@freebsd.org, tabthorpe@freebsd.org Cc: pav@freebsd.org Subject: Re: docs/125907: [patch] Update makefiles options section of Porter's Handbook Date: Thu, 24 Jul 2008 14:11:05 -0400 --Boundary-00=_5WMiIoytvjBzMiH Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline With more feedback, and further deliberation, take a slightly different approach. - Highlight defaults if MYSQL/BDB/APACHE options are unset - Incorporate information regarding ports ranges for BDB/APACHE Please find attached my current patch Thomas -- Thomas Abthorpe | FreeBSD Committer tabthorpe@FreeBSD.org | http://people.freebsd.org/~tabthorpe --Boundary-00=_5WMiIoytvjBzMiH Content-Type: text/x-diff; charset="us-ascii"; name="ph-makefileoptions.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ph-makefileoptions.patch" Index: book.sgml =================================================================== RCS file: /home/dcvs/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml,v retrieving revision 1.938 diff -u -r1.938 book.sgml --- book.sgml 22 Jul 2008 13:48:03 -0000 1.938 +++ book.sgml 24 Jul 2008 17:32:08 -0000 @@ -3765,34 +3765,38 @@ - WITH_APACHE2 + USE_APACHE - If set, use + If variable is not set, uses www/apache20 - instead of the default of - www/apache13. + as default. It may be set with values such as 1.3, 13, + 2.0, 20, 2.1, 21 2.2 or 22. You can declare a range of + acceptable values, USE_APACHE=2.0+ + will find the highest installed version, and fall back + to 2.0 if nothing else is installed. - WITH_BERKELEY_DB + USE_BDB - Define this variable to specify the ability to - use a variant of the Berkeley database package such as - databases/db41. - An associated variable, - WITH_BDB_VER, may be - set to values such as 2, 3, 4, 41 or 42. + If variable is not set, uses + databases/db41 + as default. It may be set to values such as 2, 3, + 40, 41 or 42, 43, 44, 45 46, or 47. + You can declare a range of acceptable values, + USE_BDB=42+ will find + the highest installed version, and fall back + to 42 if nothing else is installed. - WITH_MYSQL + USE_MYSQL - Define this variable to specify the ability to - use a variant of the MySQL database package such as - databases/mysql40-server. - An associated variable, + If variable is not set, uses + databases/mysql50-server + as default. An associated variable, WANT_MYSQL_VER, may be - set to values such as 323, 40, 41, or 50. + set to values such as 323, 40, 41, 50 or 51. @@ -3812,19 +3816,19 @@ WITH_OPENSSL_PORT - Use the version of OpenSSL from + Installs the version of OpenSSL from security/openssl, - overwriting the version that was originally installed - in the base system. + even if the base is up to date. - WITH_POSTGRESQL + USE_PGSQL - Define this variable to specify the ability to - use a variant of the PostGreSQL database package such as - databases/postgresql72. - + If set, uses + databases/postgresql82 + as default. An associated variable, + WANT_PGSQL_VER, may be set to values + such as 73, 74, 80, 81, 82, or 83. --Boundary-00=_5WMiIoytvjBzMiH--