From pepper@reppep.com  Sat Sep  4 03:31:47 2004
Return-Path: <pepper@reppep.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 459E816A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  4 Sep 2004 03:31:47 +0000 (GMT)
Received: from www.reppep.com (www.reppep.com [66.92.104.200])
	by mx1.FreeBSD.org (Postfix) with ESMTP id F06CD43D5C
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  4 Sep 2004 03:31:44 +0000 (GMT)
	(envelope-from pepper@reppep.com)
Received: by www.reppep.com (Postfix, from userid 501)
	id 57909FE6F; Fri,  3 Sep 2004 23:31:44 -0400 (EDT)
Message-Id: <20040904033144.57909FE6F@www.reppep.com>
Date: Fri,  3 Sep 2004 23:31:44 -0400 (EDT)
From: Chris Pepper <pepper@reppep.com>
Reply-To: Chris Pepper <pepper@reppep.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: paul@gromit.dlib.vt.edu (Paul Mather)
Subject: /usr/share/examples/etc/make.conf contains broken CXXFLAGS
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         71359
>Category:       docs
>Synopsis:       /usr/share/examples/etc/make.conf contains broken CXXFLAGS
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    trhodes
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 04 03:40:19 GMT 2004
>Closed-Date:    Wed Feb 23 01:38:15 GMT 2005
>Last-Modified:  Wed Feb 23 01:38:15 GMT 2005
>Originator:     Chris Pepper
>Release:        FreeBSD 4.10-STABLE i386
>Organization:
>Environment:
System: FreeBSD www.reppep.com 4.10-STABLE FreeBSD 4.10-STABLE #16: Wed Jul 21 18:25:39 EDT 2004 root@www.reppep.com:/usr/obj/usr/src/sys/REPPEP i386


	
>Description:
	/usr/share/examples/etc/make.conf suggests:
CXXFLAGS+= -fmemoize-lookups -fsave-memoized
	but this prevents make buildworld in RELENG_5. See also http://news.gw.com/freebsd.current/65460 .
	
>How-To-Repeat:
	CXXFLAGS+= -fmemoize-lookups -fsave-memoized" >> /etc/make.conf && cd /usr/src && make buildworld
	
>Fix:

	
	Remove this sample from the example, or replace it with one that's safe under RELENG_5
>Release-Note:
>Audit-Trail:

From: Giorgos Keramidas <keramida@freebsd.org>
To: Chris Pepper <pepper@reppep.com>,
	Paul Mather <paul@gromit.dlib.vt.edu>
Cc: bug-followup@freebsd.org
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS
Date: Sat, 4 Sep 2004 15:46:52 +0300

 On 2004-09-03 23:31, Chris Pepper <pepper@reppep.com> wrote:
 > >Description:
 > 	/usr/share/examples/etc/make.conf suggests:
 > CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 > 	but this prevents make buildworld in RELENG_5.
 > [...]
 > >Fix:
 > Remove this sample from the example, or replace it with one that's
 > safe under RELENG_5
 
 You don't *have* to use the same CXXFLAGS options as the ones of the
 example.  It's an example, after all.  Anyway, would you prefer something
 like this instead?
 
     # CXXFLAGS controls the compiler settings used when compiling C++ code.
     # Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
     # to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
     # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
    +# For a description of the options recognized by the GNU C++ compiler
    +# please refer to the c++(1) manpage and the info documentation of GCC.
     #
    -#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
    +#CXXFLAGS+= -O -pipe
 

From: Chris Pepper <pepper@reppep.com>
To: Giorgos Keramidas <keramida@freebsd.org>
Cc: Paul Mather <paul@gromit.dlib.vt.edu>, bug-followup@freebsd.org
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken
 CXXFLAGS
Date: Sat, 4 Sep 2004 11:31:51 -0400

 At 3:46 PM +0300 2004/09/04, Giorgos Keramidas wrote:
 >On 2004-09-03 23:31, Chris Pepper <pepper@reppep.com> wrote:
 >>  >Description:
 >  >	/usr/share/examples/etc/make.conf suggests:
 >>  CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 >>	but this prevents make buildworld in RELENG_5.
 >>  [...]
 >>  >Fix:
 >>  Remove this sample from the example, or replace it with one that's
 >>  safe under RELENG_5
 >
 >You don't *have* to use the same CXXFLAGS options as the ones of the
 >example.  It's an example, after all.  Anyway, would you prefer something
 >like this instead?
 
 	Of course, but the examples should all be valid. This one 
 prevents make buildworld, so should be replaced by something that 
 doesn't.
 
 >     # CXXFLAGS controls the compiler settings used when compiling C++ code.
 >     # Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
 >     # to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
 >     # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
 >    +# For a description of the options recognized by the GNU C++ compiler
 >    +# please refer to the c++(1) manpage and the info documentation of GCC.
 >     #
 >    -#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 >    +#CXXFLAGS+= -O -pipe
 
 	Except that's provided already with the example of CFLAGS, so 
 would make sense iff CFLAGS had another example value.
 
 # CFLAGS controls the compiler settings used when compiling C code.
 # Note that optimization settings other than -O and -O2 are not recommended
 # or supported for compiling the world or the kernel - please revert any
 # nonstandard optimization settings to "-O" before submitting bug reports
 # without patches to the developers.
 # Note also that at this time the -O2 setting is known to expose bugs in
 # libalias(3), and possibly other parts of the system.
 #
 #CFLAGS= -O -pipe
 #
 # CXXFLAGS controls the compiler settings used when compiling C++ code.
 # Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
 # to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
 # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
 #
 #CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 
 
 						Regards,
 
 
 						Chris Pepper
 --
 Chris Pepper:               <http://www.reppep.com/~pepper/>
 Rockefeller University:     <http://www.rockefeller.edu/>

From: Giorgos Keramidas <keramida@freebsd.org>
To: Chris Pepper <pepper@reppep.com>
Cc: Paul Mather <paul@gromit.dlib.vt.edu>, bug-followup@freebsd.org
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS
Date: Sat, 4 Sep 2004 20:47:44 +0300

 On 2004-09-04 11:31, Chris Pepper <pepper@reppep.com> wrote:
 >
 > 	Of course, but the examples should all be valid. This one
 > prevents make buildworld, so should be replaced by something that
 > doesn't.
 
 True, true.
 
 > >    # CXXFLAGS controls the compiler settings used when compiling C++ code.
 > >    # Note that CXXFLAGS is initially set to the value of CFLAGS.  If you
 > >    wish
 > >    # to add to CXXFLAGS value, "+=" must be used rather than "=".  Using
 > >    "="
 > >    # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
 > >   +# For a description of the options recognized by the GNU C++ compiler
 > >   +# please refer to the c++(1) manpage and the info documentation of GCC.
 > >    #
 > >   -#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 > >   +#CXXFLAGS+= -O -pipe
 >
 > 	Except that's provided already with the example of CFLAGS, so
 > would make sense iff CFLAGS had another example value.
 
 I don't use C++ so much, so perhaps I'm not the right person to choose a
 "nice set of default flags" for this.
 
 Any ideas from you, Chris?
 

From: Chris Pepper <pepper@reppep.com>
To: Giorgos Keramidas <keramida@freebsd.org>
Cc: Paul Mather <paul@gromit.dlib.vt.edu>, bug-followup@freebsd.org
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken
 CXXFLAGS
Date: Sat, 4 Sep 2004 19:31:32 -0400

 At 8:47 PM +0300 2004/09/04, Giorgos Keramidas wrote:
 >On 2004-09-04 11:31, Chris Pepper <pepper@reppep.com> wrote:
 >>
 >>	Of course, but the examples should all be valid. This one
 >>  prevents make buildworld, so should be replaced by something that
 >>  doesn't.
 >
 >True, true.
 >
 >>  >    # CXXFLAGS controls the compiler settings used when compiling C++ code.
 >>  >    # Note that CXXFLAGS is initially set to the value of CFLAGS.  If you
 >>  >    wish
 >>  >    # to add to CXXFLAGS value, "+=" must be used rather than "=".  Using
 >>  >    "="
 >>  >    # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
 >>  >   +# For a description of the options recognized by the GNU C++ compiler
 >>  >   +# please refer to the c++(1) manpage and the info documentation of GCC.
 >>  >    #
 >>  >   -#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
 >  > >   +#CXXFLAGS+= -O -pipe
 >>
 >>	Except that's provided already with the example of CFLAGS, so
 >>  would make sense iff CFLAGS had another example value.
 >
 >I don't use C++ so much, so perhaps I'm not the right person to choose a
 >"nice set of default flags" for this.
 >
 >Any ideas from you, Chris?
 
 	No idea, sorry. If we don't have (get) one, it should 
 probably be left blank (e.g., "#CXXFLAGS+="), and the explanation 
 will have to serve.
 
 	That would still be a substantial improvement over the 
 current state of affairs.
 
 
 						Chris Pepper
 -- 
 Chris Pepper:               <http://www.reppep.com/~pepper/>
 Rockefeller University:     <http://www.rockefeller.edu/>

From: DanGer <danger@rulez.sk>
To: freebsd-gnats-submit@FreeBSD.org, pepper@reppep.com
Cc:  
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS
Date: Sun, 20 Feb 2005 22:28:51 -0800

 This is a cryptographically signed message in MIME format.
 
 ------------9119F243B0678D9
 Content-Type: multipart/mixed;
  boundary="----------11525202F7C726A"
 
 ------------11525202F7C726A
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: quoted-printable
 
 Hello freebsd-gnats-submit,
 
   the patch is attached, please confirm it :)
 
 --=20
 Best Regards,
 
 +----------=3D=3D/\/\=3D=3D----------+       (__)      FreeBSD
 |  DanGer <danger@rulez.sk>  |    \\\'',)      The
 | DanGer@IRCnet ICQ261701668 |      \/  \ ^    Power
 |   http://danger.rulez.sk   |      .\._/_)    To
 +----------=3D=3D\/\/=3D=3D----------+                 Serve
 
 [ We are Conrail of Borg, Monongehela will be assimilated. ]
 ------------11525202F7C726A
 Content-Type: application/octet-stream; name="make.conf.patch"
 Content-transfer-encoding: base64
 Content-Disposition: attachment; filename="make.conf.patch"
 
 LS0tIC91c3Ivc2hhcmUvZXhhbXBsZXMvZXRjL21ha2UuY29uZglUaHUgTm92IDExIDIxOjIx
 OjE1IDIwMDQKKysrIC91c3Ivc2hhcmUvZXhhbXBsZXMvZXRjL21ha2UuY29uZi5kYW5nZXIJ
 U3VuIEZlYiAyMCAyMjoxNDowOSAyMDA1CkBAIC01Nyw2ICs1NywxMCBAQAogIyB0byBhZGQg
 dG8gQ1hYRkxBR1MgdmFsdWUsICIrPSIgbXVzdCBiZSB1c2VkIHJhdGhlciB0aGFuICI9Ii4g
 IFVzaW5nICI9IgogIyBhbG9uZSB3aWxsIHJlbW92ZSB0aGUgb2Z0ZW4gbmVlZGVkIGNvbnRl
 bnRzIG9mIENGTEFHUyBmcm9tIENYWEZMQUdTLgogIworIyBOT1RFOiB0aGUgLWZtZW1vaXpl
 LWxvb2t1cHMgYW5kIC1mc2F2ZS1tZW1vaXplZCBmbGFncyBhcmUgZGVwcmVjYXRlZAorIyAg
 ICAgICBvbiBSRUxFTkdfNS4gSW5zdGVhZCBvZiB0aG9zZSwgeW91IHNob3VsZCBoYXZlIENY
 WEZMQUdTIGVtcHR5IAorIyAgICAgICBvdGhlcndpc2UgeW91ciBzb3VyY2UgY29kZSB3b3Vs
 ZCBub3QgY29tcGlsZS4KKyMKICNDWFhGTEFHUys9IC1mbWVtb2l6ZS1sb29rdXBzIC1mc2F2
 ZS1tZW1vaXplZAogIwogIyBNQUtFX1NIRUxMIGNvbnRyb2xzIHRoZSBzaGVsbCB1c2VkIGlu
 dGVybmFsbHkgYnkgbWFrZSgxKSB0byBwcm9jZXNzIHRoZQo=
 
 ------------11525202F7C726A--
 
 ------------9119F243B0678D9
 Content-Type: application/pkcs7-signature; name="smime.p7s"
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment; filename="smime.p7s"
 Content-Description: S/MIME Cryptographic Signature
 
 MIIHVwYJKoZIhvcNAQcCoIIHSDCCB0QCAQMxCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC
 BbEwggJqMIIB06ADAgECAgMNsvcwDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA0MTIyODAwMzIyM1oXDTA1MTIyODAw
 MzIyM1owQTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEeMBwGCSqGSIb3DQEJ
 ARYPZGFuZ2VyQHJ1bGV6LnNrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDb7/VY6YOb
 cOc57IG38YMvdO33FMTWVGctbp4of0R2SfhcGFzR69A2+bd1O5TeGu9DrASLIaPKG1UnNNbZ
 AXUOyjc1abDTPbnLxrXsHfbNjuGJE3ryAmtO1rhguLdMuJjDM8H37jZ9mJOrmwkvLMVdmAtf
 uLIRgYbFZDeB0uhSvwIDAQABo08wTTAOBgNVHQ8BAf8EBAMCA4gwEQYJYIZIAYb4QgEBBAQD
 AgUgMBoGA1UdEQQTMBGBD2RhbmdlckBydWxlei5zazAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3
 DQEBBAUAA4GBAGaZqMR1Svtv9VCrDhXhkaVtoL0SQmOM1O5Q0Edit+4w3liLDsNJn8iMIUr2
 +aoswclTd6OmAkeXlj5tvU8Uvjtu0gYtSw5cxsTqfNPSnMWW13zdQXlr1t/YStc4jGlH4qRW
 q3oP+p/h7vHyvPx319NUVImHH+gJ1Wx0f79ApnR2MIIDPzCCAqigAwIBAgIBDTANBgkqhkiG
 9w0BAQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE
 BxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2Vy
 dGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFs
 IEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUu
 Y29tMB4XDTAzMDcxNzAwMDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
 gQDEpjxVc1X7TrnKmVoeaMB1BHCd3+n/ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1os
 iRVwjt3J8CuFWqo/cVbLrzwLB+fxH5E2JCoTzyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XR
 xSpUhQ9IBH+nttE8YQRAHmQZcmC3+wIDAQABo4GUMIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAw
 QwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVBlcnNvbmFs
 RnJlZW1haWxDQS5jcmwwCwYDVR0PBAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQ
 cml2YXRlTGFiZWwyLTEzODANBgkqhkiG9w0BAQUFAAOBgQBIjNFQg+oLLswNo2asZw9/r6y+
 whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8/a3hYWLD2ToZfoSxmRsAxRoLgnSeJVCUYsfb
 J3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQGls1TXfjViF4gtwhGTXeJLHTHUb/XV9l
 TzGCAW4wggFqAgEBMGkwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0
 aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1
 aW5nIENBAgMNsvcwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwIwYJ
 KoZIhvcNAQkEMRYEFGGZtAtGMTT9mZe7KdEFOhWnIaP0MBwGCSqGSIb3DQEJBTEPFw0wNTAy
 MjEwNjI4NTJaMA0GCSqGSIb3DQEBAQUABIGARB6WoOHnWd6HOXmUVN45LShVmvaC/oG3VCdW
 qWArdcVeMuWd5xExVZLb92GdaK4g9MwIuZPg2YvLI5KoKv7StB6LKCmHdliwt0okZhzHe8cp
 Hsm0jrH/Ka7U+wRoAQYJ2c8cdAgsSJrL2JOOdyWGStaaQOPpZvFc+c/nWiWhax4=
 ------------9119F243B0678D9--
 

From: DanGer <danger@rulez.sk>
To: freebsd-gnats-submit@FreeBSD.org, pepper@reppep.com
Cc: ru@freebsd.org
Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS
Date: Sun, 20 Feb 2005 22:51:29 -0800

 This is a cryptographically signed message in MIME format.
 
 ------------117BE1FB2D92C8E8
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: quoted-printable
 
 Hi freebsd-gnats-submit,
 
   the -fmemoize-lookups and -fsave-memoized flags are deprecated in
   RELENG_5 so here is a patch :)
 
   Ruslan: have you some problems with this or doc team can commit this?
 
 --- /usr/share/examples/etc/make.confThu Nov 11 21:21:15 2004
 +++ /usr/share/examples/etc/make.conf.dangerSun Feb 20 22:41:44 2005
 @@ -57,7 +57,7 @@
  # to add to CXXFLAGS value, "+=3D" must be used rather than "=3D".  Using =
 "=3D"
  # alone will remove the often needed contents of CFLAGS from CXXFLAGS.
  #
 -#CXXFLAGS+=3D -fmemoize-lookups -fsave-memoized
 +#CXXFLAGS+=3D
  #
  # MAKE_SHELL controls the shell used internally by make(1) to process the
  # command scripts in makefiles.  Three shells are supported, sh, ksh, and
 
 --=20
 Best Regards,
 
 +----------=3D=3D/\/\=3D=3D----------+       (__)      FreeBSD
 |  DanGer <danger@rulez.sk>  |    \\\'',)      The
 | DanGer@IRCnet ICQ261701668 |      \/  \ ^    Power
 |   http://danger.rulez.sk   |      .\._/_)    To
 +----------=3D=3D\/\/=3D=3D----------+                 Serve
 
 [ Beer - So much more than just a breakfast drink. ]
 
 ------------117BE1FB2D92C8E8
 Content-Type: application/pkcs7-signature; name="smime.p7s"
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment; filename="smime.p7s"
 Content-Description: S/MIME Cryptographic Signature
 
 MIIHVwYJKoZIhvcNAQcCoIIHSDCCB0QCAQMxCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC
 BbEwggJqMIIB06ADAgECAgMNsvcwDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA0MTIyODAwMzIyM1oXDTA1MTIyODAw
 MzIyM1owQTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEeMBwGCSqGSIb3DQEJ
 ARYPZGFuZ2VyQHJ1bGV6LnNrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDb7/VY6YOb
 cOc57IG38YMvdO33FMTWVGctbp4of0R2SfhcGFzR69A2+bd1O5TeGu9DrASLIaPKG1UnNNbZ
 AXUOyjc1abDTPbnLxrXsHfbNjuGJE3ryAmtO1rhguLdMuJjDM8H37jZ9mJOrmwkvLMVdmAtf
 uLIRgYbFZDeB0uhSvwIDAQABo08wTTAOBgNVHQ8BAf8EBAMCA4gwEQYJYIZIAYb4QgEBBAQD
 AgUgMBoGA1UdEQQTMBGBD2RhbmdlckBydWxlei5zazAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3
 DQEBBAUAA4GBAGaZqMR1Svtv9VCrDhXhkaVtoL0SQmOM1O5Q0Edit+4w3liLDsNJn8iMIUr2
 +aoswclTd6OmAkeXlj5tvU8Uvjtu0gYtSw5cxsTqfNPSnMWW13zdQXlr1t/YStc4jGlH4qRW
 q3oP+p/h7vHyvPx319NUVImHH+gJ1Wx0f79ApnR2MIIDPzCCAqigAwIBAgIBDTANBgkqhkiG
 9w0BAQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE
 BxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2Vy
 dGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFs
 IEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUu
 Y29tMB4XDTAzMDcxNzAwMDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
 gQDEpjxVc1X7TrnKmVoeaMB1BHCd3+n/ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1os
 iRVwjt3J8CuFWqo/cVbLrzwLB+fxH5E2JCoTzyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XR
 xSpUhQ9IBH+nttE8YQRAHmQZcmC3+wIDAQABo4GUMIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAw
 QwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVBlcnNvbmFs
 RnJlZW1haWxDQS5jcmwwCwYDVR0PBAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQ
 cml2YXRlTGFiZWwyLTEzODANBgkqhkiG9w0BAQUFAAOBgQBIjNFQg+oLLswNo2asZw9/r6y+
 whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8/a3hYWLD2ToZfoSxmRsAxRoLgnSeJVCUYsfb
 J3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQGls1TXfjViF4gtwhGTXeJLHTHUb/XV9l
 TzGCAW4wggFqAgEBMGkwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0
 aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1
 aW5nIENBAgMNsvcwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwIwYJ
 KoZIhvcNAQkEMRYEFOiBpkOSIPC/tGomMOREdN35grWQMBwGCSqGSIb3DQEJBTEPFw0wNTAy
 MjEwNjUxMjlaMA0GCSqGSIb3DQEBAQUABIGAZ8x8/n3/b79nUQzBg0ZgIw6ukReI5i3bpYvi
 YvSJLGS87qxjr3JI3LIBkPbs3zW6OOIZSMgrgpHKzI1T6SMy4/4m7iMatjMDDZ/hqI1kNBMv
 dG7hlYUjvt25cR1oe3SDmtvM0y1BEu3bo0SZ4lOoAxljLHceGH37LnrH1dWp804=
 ------------117BE1FB2D92C8E8--
 
State-Changed-From-To: open->closed 
State-Changed-By: trhodes 
State-Changed-When: Wed Feb 23 01:37:39 GMT 2005 
State-Changed-Why:  
Patched, MFC pending. 


Responsible-Changed-From-To: freebsd-doc->trhodes 
Responsible-Changed-By: trhodes 
Responsible-Changed-When: Wed Feb 23 01:37:39 GMT 2005 
Responsible-Changed-Why:  
Over to me. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=71359 
>Unformatted:
