cvs commit: ports/databases/postgresql83-server Makefile distinfo pkg-install-server pkg-plist-client pkg-plist-server

2007-10-31 Thread Palle Girgensohn
girgen 2007-11-01 07:10:04 UTC FreeBSD ports repository Modified files: databases/postgresql83-server Makefile distinfo pkg-install-server pkg-plist-client pkg-plist-server Log

cvs commit: ports/net/openldap24-server Makefile distinfo pkg-descr

2007-10-31 Thread Xin LI
delphij 2007-11-01 06:32:11 UTC FreeBSD ports repository Modified files: net/openldap24-server Makefile distinfo pkg-descr Log: Update to 2.4.6. This is the first production release of the OpenLDAP 2.4 series, and it fixes several security issues, as mentioned in vuln.xml

cvs commit: www/share/sgml press.xml

2007-10-31 Thread Joseph Koshy
jkoshy 2007-11-01 05:50:34 UTC FreeBSD doc repository Modified files: share/sgml press.xml Log: Add Part 9 of the "Desktop FreeBSD" series of articles. Revision ChangesPath 1.54 +11 -1 www/share/sgml/press.xml __

cvs commit: ports UPDATING

2007-10-31 Thread Jan Henrik Sylvester
Kris wrote: > Boris Samorodov wrote: > > On Wed, 31 Oct 2007 03:36:00 + (UTC) Beech Rintoul wrote: > > > >> 20071030: > >> + AFFECTS: users of net/skype > >> + AUTHOR: beech at FreeBSD.org > >> + > >> + The skype port has been upgraded to version 1.4.0.118. This requires a sysctl > >> +

cvs commit: src/sys/dev/mii e1000phy.c e1000phyreg.h

2007-10-31 Thread Pyun YongHyeon
yongari 2007-11-01 04:27:31 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/mii e1000phy.c e1000phyreg.h Log: MFC e1000phy.c rev 1.19, e1000phyreg.h rev. 1.5 to RELENG_6 Add 88E1116/88E1116R PHY support code that takes the PHY out of

cvs commit: src/sys/dev/mii e1000phy.c e1000phyreg.h

2007-10-31 Thread Pyun YongHyeon
yongari 2007-11-01 04:26:34 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/mii e1000phy.c e1000phyreg.h Log: MFC e1000phy.c rev 1.19, e1000phyreg.h rev. 1.5 to RELENG_7 Add 88E1116/88E1116R PHY support code that takes the PHY out of

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Christoph Mallon
Andrey Chernov wrote: On Thu, Nov 01, 2007 at 02:44:25AM +0100, Christoph Mallon wrote: Also the example is still unrealistic: You usually don't multiply chars by two. Lets try something more realistic: an ASCII filter int filter_ascii0(int c) { return c < 0 || c >= 128 ? '?' : c; } i

cvs commit: ports/devel/py-bison Makefile

2007-10-31 Thread Mark Linimon
linimon 2007-11-01 03:59:35 UTC FreeBSD ports repository Modified files: devel/py-bison Makefile Log: Attempt to unbreak this on the cluster. While here, portlint. Hat:portmgr Approved by:portmgr (self) Revision ChangesPath 1.5 +2 -

cvs commit: ports/deskutils/kdepim3 Makefile

2007-10-31 Thread Mark Linimon
linimon 2007-11-01 03:45:59 UTC FreeBSD ports repository Modified files: deskutils/kdepim3Makefile Log: Fix the USE_BISON setting. This was missed in the bison2 upgrade. Hat:portmgr Approved by:portmgr (self) Revision ChangesPath 1.78

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Thu, Nov 01, 2007 at 04:06:39AM +0100, Christoph Mallon wrote: > Andrey Chernov wrote: >> On Thu, Nov 01, 2007 at 02:44:25AM +0100, Christoph Mallon wrote: >>> Also the example is still unrealistic: You usually don't multiply chars >>> by two. Lets try something more realistic: an ASCII filter

cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey A. Chernov
ache2007-11-01 03:18:03 UTC FreeBSD src repository Modified files: include _ctype.h Log: Back out not human readable optimization in prev. commit which shown to generate 3bytes longer opcode. Revision ChangesPath 1.34 +1 -1 src/include/_ct

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Thu, Nov 01, 2007 at 02:52:13AM +0100, Christoph Mallon wrote: >> 2. _c & ~0x7F comes right from is{w}ascii() so there is no such enormously >> big problems to decifer. I just want to keep all ctype in style. > > Repeating cryptic code does not make it better, IMO. This issue is completely non

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Thu, Nov 01, 2007 at 02:44:25AM +0100, Christoph Mallon wrote: > Also the example is still unrealistic: You usually don't multiply chars by > two. Lets try something more realistic: an ASCII filter > > int filter_ascii0(int c) > { > return c < 0 || c >= 128 ? '?' : c; > } > > int filt

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Christoph Mallon
Andrey Chernov wrote: On Wed, Oct 31, 2007 at 10:33:49PM +, Alexey Dokuchaev wrote: For ones who doubts there two tests compiled with -O2. As you may see the result is almost identical (andl vs cmpl): Q.E.D. How about to restore original, more reader-friendly version then? 1. Reader-frie

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Christoph Mallon
Andrey Chernov wrote: On Thu, Nov 01, 2007 at 03:23:56AM +1100, Bruce Evans wrote: In fact, one of the cleanups/optimizations in rev.1.5 and 1.6 by ache and me was to get rid of the mask. There was already a check for _c < 0, so the mask cost even more. The top limit was 256 instead of 128, so

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Christoph Mallon
Andrey Chernov wrote: On Mon, Oct 29, 2007 at 09:48:16PM +0100, Christoph Mallon wrote: Andrey A. Chernov wrote: ache2007-10-27 22:32:28 UTC FreeBSD src repository Modified files: include _ctype.h Log: Micro-optimization of prev. commit, change (_c < 0 || _c >

cvs commit: ports/security/vuxml vuln.xml

2007-10-31 Thread Xin LI
delphij 2007-11-01 00:58:11 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Extend coverage to OpenLDAP 2.4.x series which is affected according to CVS history. Approved by:portmgr (ports-security blanket) Revision ChangesPath

Re: cvs commit: ports UPDATING

2007-10-31 Thread Beech Rintoul
On Wednesday 31 October 2007, Kris Kennaway said: > Boris Samorodov wrote: > > On Wed, 31 Oct 2007 03:36:00 + (UTC) Beech Rintoul wrote: > >> 20071030: > >> + AFFECTS: users of net/skype > >> + AUTHOR: [EMAIL PROTECTED] > >> + > >> + The skype port has been upgraded to version 1.4.0.118. Th

cvs commit: ports UPDATING

2007-10-31 Thread Alexey Dokuchaev
danfe 2007-10-31 23:51:39 UTC FreeBSD ports repository Modified files: .UPDATING Log: Add a note about how to remedy rather common problem when upgrading x11/nvidia-driver port. Approved by:portmgr (marcus) Revision ChangesPath 1.567

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Thu, Nov 01, 2007 at 01:48:19AM +0300, Andrey Chernov wrote: > > > 2. It also breaks common style ctype using for is{w}ascii(). If revert > > > this, is{w}ascii() should be rewritted too. > > > > That seems reasonable. > > Well, I don't want to fight here. If there general consensus that we

Re: cvs commit: ports UPDATING

2007-10-31 Thread Kris Kennaway
Boris Samorodov wrote: On Wed, 31 Oct 2007 03:36:00 + (UTC) Beech Rintoul wrote: 20071030: + AFFECTS: users of net/skype + AUTHOR: [EMAIL PROTECTED] + + The skype port has been upgraded to version 1.4.0.118. This requires a sysctl + change to run. After upgrading, please do: "sysctl c

cvs commit: src/share/man/man4 ng_car.4

2007-10-31 Thread Alexander Motin
mav 2007-10-31 22:52:51 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) share/man/man4 ng_car.4 Log: MFC rev 1.4,1.5 Fix some mistakes. Update my email. Approved by:re (gnn) Revision ChangesPath 1.3.2.1 +7 -7 src/shar

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Wed, Oct 31, 2007 at 12:43:13PM -1000, Juli Mallett wrote: > > 1. Reader-friendly version generates long code when absolutely no > > optimization used in compiler (for some reason f.e. to avoid optimization > > bugs). > > So if someone is trying to avoid compiler optimization bugs we should s

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Juli Mallett
* Andrey Chernov <[EMAIL PROTECTED]> [ 2007-10-31 ] [ Re: cvs commit: src/include _ctype.h ] > On Wed, Oct 31, 2007 at 10:33:49PM +, Alexey Dokuchaev wrote: > > > For ones who doubts there two tests compiled with -O2. As you may see the > > > result is almost identical (andl vs cmpl):

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Thu, Nov 01, 2007 at 03:23:56AM +1100, Bruce Evans wrote: > In fact, one of the cleanups/optimizations in rev.1.5 and 1.6 by ache > and me was to get rid of the mask. There was already a check for _c > < 0, so the mask cost even more. The top limit was 256 instead of > 128, so the point about

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Wed, Oct 31, 2007 at 10:33:49PM +, Alexey Dokuchaev wrote: > > For ones who doubts there two tests compiled with -O2. As you may see the > > result is almost identical (andl vs cmpl): > > Q.E.D. How about to restore original, more reader-friendly version then? 1. Reader-friendly version

Re: cvs commit: src/sys/dev/ata ata-chipset.c atapi-cd.c atapi-cd.h

2007-10-31 Thread Sean C. Farley
On Wed, 31 Oct 2007, SXren Schmidt wrote: sos 2007-10-31 19:59:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/ata ata-chipset.c atapi-cd.c atapi-cd.h Log: MFC: Add SATA ATAPI support for AHCI controllers. Approved by: re@ Revision

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Tue, Oct 30, 2007 at 10:03:31AM -1000, Juli Mallett wrote: > Is there a specific expensive instruction you're trying to avoid? > For such thoroughyl bit-aligned range checks, you shouldn't even get a branch > for the former case. Is there a platform other than i386 I should look at > where > t

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Alexey Dokuchaev
On Thu, Nov 01, 2007 at 12:55:26AM +0300, Andrey Chernov wrote: > On Tue, Oct 30, 2007 at 10:03:31AM -1000, Juli Mallett wrote: > > * "Andrey A. Chernov" <[EMAIL PROTECTED]> [ 2007-10-27 ] > > [ cvs commit: src/include _ctype.h ] > > > ache2007-10-27 22:32:28 UTC > > > > > > FreeBSD

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Bruce Evans
On Mon, 29 Oct 2007, Christoph Mallon wrote: Andrey A. Chernov wrote: ache2007-10-27 22:32:28 UTC FreeBSD src repository Modified files: include _ctype.h Log: Micro-optimization of prev. commit, change (_c < 0 || _c >= 128) to (_c & ~0x7F) Revision Chan

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Tue, Oct 30, 2007 at 06:44:46AM +, Alexey Dokuchaev wrote: > On Mon, Oct 29, 2007 at 09:48:16PM +0100, Christoph Mallon wrote: > > Andrey A. Chernov wrote: > > >ache2007-10-27 22:32:28 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > >include

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Mon, Oct 29, 2007 at 09:48:16PM +0100, Christoph Mallon wrote: > Andrey A. Chernov wrote: >> ache2007-10-27 22:32:28 UTC >> FreeBSD src repository >> Modified files: >> include _ctype.h Log: >> Micro-optimization of prev. commit, change >> (_c < 0 || _c >= 128)

Re: cvs commit: src/include _ctype.h

2007-10-31 Thread Andrey Chernov
On Tue, Oct 30, 2007 at 10:03:31AM -1000, Juli Mallett wrote: > * "Andrey A. Chernov" <[EMAIL PROTECTED]> [ 2007-10-27 ] > [ cvs commit: src/include _ctype.h ] > > ache2007-10-27 22:32:28 UTC > > > > FreeBSD src repository > > > > Modified files: > > include _ct

cvs commit: CVSROOT access

2007-10-31 Thread Erwin Lansing
erwin 2007-10-31 21:56:42 UTC FreeBSD ports repository Modified files: .access Log: Please welcome Henrik Brix Andersen (brix@) to the ranks of the ports committers. He made the classic mistake of sending too many useful patches and is now receiving his

Re: cvs commit: src/lib/libc/locale utf8.c

2007-10-31 Thread Andrey Chernov
On Wed, Oct 31, 2007 at 09:41:13PM +1100, Bruce Evans wrote: > Now the limit is spelled 128, so it really is constant and won't cause > problems unless the constant changes. Only in one particular case, the rest cases still need __mb_sb_limit. > _ctype.h still declares __mb_sb_limit but now doesn

cvs commit: ports/security/vuxml vuln.xml

2007-10-31 Thread Xin LI
delphij 2007-10-31 21:48:27 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Document openldap multiple vulnerabilities. Approved by:portmgr (ports-security blanket) Revision ChangesPath 1.1458+30 -1 ports/security/vuxml

cvs commit: src/sys/dev/ata ata-chipset.c atapi-cd.c atapi-cd.h

2007-10-31 Thread S�ren Schmidt
sos 2007-10-31 19:59:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/ata ata-chipset.c atapi-cd.c atapi-cd.h Log: MFC: Add SATA ATAPI support for AHCI controllers. Approved by: re@ Revision ChangesPath 1.202.2.2 +3

cvs commit: src/usr.bin/lockf lockf.1

2007-10-31 Thread Ruslan Ermilov
ru 2007-10-31 19:26:01 UTC FreeBSD src repository Modified files: usr.bin/lockflockf.1 Log: Also fix a "blank line" issue that sneaked in from rev. 1.19. Submitted by: John Hein Revision ChangesPath 1.21 +1 -1 src/usr.bin/lockf/lockf.1 __

cvs commit: src/share/man/man5 xfs.5

2007-10-31 Thread Craig Rodrigues
rodrigc 2007-10-31 19:21:52 UTC FreeBSD src repository Modified files: share/man/man5 xfs.5 Log: Add a small note about how "mkfs.xfs -p" can be used to create an XFS file system populated with files. Revision ChangesPath 1.2 +11 -1 src/share/man/man

cvs commit: src/etc/defaults rc.conf src/etc/rc.d ppp

2007-10-31 Thread Maksim Yevmenkin
emax2007-10-31 18:53:07 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) etc/defaults rc.conf etc/rc.d ppp Log: MFC: etc/rc.d/ppp,v1.14 and etc/defaults/rc.conf,v1.319 Teach /etc/rc.d/ppp to start multiple instances of ppp.

cvs commit: src/sys/modules Makefile

2007-10-31 Thread Sam Leffler
sam 2007-10-31 18:47:04 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: add zyd MFC after: 3 days Revision ChangesPath 1.547 +2 -1 src/sys/modules/Makefile ___ cvs-all@fre

cvs commit: src/share/man/man4 ng_car.4

2007-10-31 Thread Alexander Motin
mav 2007-10-31 18:33:23 UTC FreeBSD src repository Modified files: share/man/man4 ng_car.4 Log: Fix one more typo. Revision ChangesPath 1.5 +2 -2 src/share/man/man4/ng_car.4 ___ cvs-all@freebsd.org maili

Re: cvs commit: ports UPDATING

2007-10-31 Thread Boris Samorodov
On Wed, 31 Oct 2007 03:36:00 + (UTC) Beech Rintoul wrote: > 20071030: > + AFFECTS: users of net/skype > + AUTHOR: [EMAIL PROTECTED] > + > + The skype port has been upgraded to version 1.4.0.118. This requires a > sysctl > + change to run. After upgrading, please do: "sysctl > compat.lin

cvs commit: src/share/man/man4 ng_car.4

2007-10-31 Thread Alexander Motin
mav 2007-10-31 18:22:51 UTC FreeBSD src repository Modified files: share/man/man4 ng_car.4 Log: Fix some mistakes. Update my email. Revision ChangesPath 1.4 +5 -5 src/share/man/man4/ng_car.4 ___ cvs-al

cvs commit: www/en/projects/ideas ideas.xml

2007-10-31 Thread Daniel Gerzo
danger 2007-10-31 18:20:11 UTC FreeBSD doc repository Modified files: en/projects/ideasideas.xml Log: - Move the closing tag to the correct location - Update Attilio's email while here Revision ChangesPath 1.30 +3 -3 www/en/projects/ideas/ideas.xml _

cvs commit: ports/security/vuxml vuln.xml

2007-10-31 Thread Simon L. Nielsen
simon 2007-10-31 17:21:15 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Bump modified date for entry updated in last commit. Approved by:portmgr (secteam blanket) Revision ChangesPath 1.1457+2 -2 ports/security/vux

Re: cvs commit: src Makefile.inc1

2007-10-31 Thread Warner Losh
> 3) With a bit of hackery around rtld(8), it becomes possible to do > destructive > cross-installs, e.g., i386->amd64 over the live system. > but this can lead to security issues.) That's why a destructive > cross-install isn't possible w/o hackery yet. Does this mean I can now 'side

cvs commit: src/sys/net80211 ieee80211_scan.c

2007-10-31 Thread Sam Leffler
sam 2007-10-31 16:53:44 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/net80211 ieee80211_scan.c Log: MFC 1.4: silence complaint about not loading the wlan_scan_monitor module Approved by:re (gnn) Revision ChangesPath 1.3

cvs commit: src/usr.sbin/pciconf cap.c pciconf.h

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:14:30 UTC FreeBSD src repository Modified files: usr.sbin/pciconf cap.c pciconf.h Log: Update copyright attribution. MFC after: 3 days Revision ChangesPath 1.4 +2 -1 src/usr.sbin/pciconf/cap.c 1.2 +2 -1 src/u

cvs commit: src/etc/defaults rc.conf src/etc/rc.d ppp

2007-10-31 Thread Maksim Yevmenkin
emax2007-10-31 16:42:41 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) etc/defaults rc.conf etc/rc.d ppp Log: MFC: etc/rc.d/ppp,v1.14 and etc/defaults/rc.conf,v1.319 Teach /etc/rc.d/ppp to start multiple instances of ppp.

cvs commit: ports/security/vuxml vuln.xml

2007-10-31 Thread Palle Girgensohn
girgen 2007-10-31 16:38:08 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Update vuxml to reflect that mod_jk and mod_jk-ap2 have different portepochs. Approved by:portmgr (pav) Revision ChangesPath 1.1456+5 -2 por

cvs commit: src/usr.sbin/devinfo devinfo.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:17:41 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) usr.sbin/devinfo devinfo.c Log: MFC: Print IRQs in decimal rather than hex. Revision ChangesPath 1.5.8.1 +1 -1 src/usr.sbin/devinfo/devinfo.c __

cvs commit: src/sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c

2007-10-31 Thread Maksim Yevmenkin
emax2007-10-31 16:17:20 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c Log: Fix locking issue in ng_btsocket_l2cap_ctloutput() Submitted by: Heiko Wundram (Beenic) < wundram at beenic dot net > MFC after: 3 days

cvs commit: src/usr.sbin/devinfo devinfo.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:17:24 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) usr.sbin/devinfo devinfo.c Log: MFC: Print IRQs in decimal rather than hex. Approved by:re (kensmith) Revision ChangesPath 1.6.2.1 +1 -1 src/usr.sbin/d

cvs commit: src/usr.sbin/pciconf cap.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:16:19 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) usr.sbin/pciconf cap.c Log: MFC: Actually support the new HT capability type from HT 2.00b. Revision ChangesPath 1.1.2.3 +3 -0 src/usr.sbin/pciconf/cap.c __

cvs commit: src/usr.sbin/pciconf cap.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:15:34 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) usr.sbin/pciconf cap.c Log: MFC: Actually support the new HT capability type from HT 2.00b. Approved by:re (kensmith) Revision ChangesPath 1.2.2.1 +3 -0

cvs commit: src/sys/dev/acpica acpi_pci.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:11:01 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/acpica acpi_pci.c Log: MFC: Don't destroy an ACPI device_t for a PCI device if the ACPI device_t is already attached to a driver. Revision ChangesPath 1.26

cvs commit: src/sys/dev/acpica acpi_pci.c

2007-10-31 Thread John Baldwin
jhb 2007-10-31 16:10:12 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/acpica acpi_pci.c Log: MFC: Don't destroy an ACPI device_t for a PCI device if the ACPI device_t is already attached to a driver. Approved by:re (kensmith)

cvs commit: src/share/man/man4 ng_netflow.4

2007-10-31 Thread Giorgos Keramidas
keramida2007-10-31 16:07:58 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ng_netflow.4 Log: Insert zero-width break points to fix warnigns in nroff output, and reduce whitespace stretching in groff PS output. groff-foo by: ru Revisi

cvs commit: src/share/man/man5 bluetooth.device.conf.5

2007-10-31 Thread Giorgos Keramidas
keramida2007-10-31 16:05:21 UTC FreeBSD src repository (doc committer) Modified files: share/man/man5 bluetooth.device.conf.5 Log: Insert zero-width break points to fix warnigns in nroff output, and reduce whitespace stretching in groff PS output. groff-foo by: ru

Re: cvs commit: src/sys/nfsclient nfs_vfsops.c

2007-10-31 Thread Bruce Evans
On Sat, 27 Oct 2007, Craig Rodrigues wrote: rodrigc 2007-10-27 16:28:05 UTC FreeBSD src repository Modified files: sys/nfsclientnfs_vfsops.c Log: Add the following mount options to the nfs_opts array: noatime, noexec, suiddir, nosuid, nosymfollow, union, noclusterr, noclus

cvs commit: ports/audio/akode-plugins-xiph Makefile

2007-10-31 Thread Michael Nottebrock
lofi2007-10-31 15:03:05 UTC FreeBSD ports repository Modified files: audio/akode-plugins-xiph Makefile Log: Backout PORTREVISION decrement. Noticed by: markus Approved by: portmgr (erwin, pav) Revision ChangesPath 1.21 +1 -1 ports/audio/akode-plug

cvs commit: src/sbin/dhclient clparse.c dhclient-script dhclient.c dhclient.conf dhcp.h tables.c

2007-10-31 Thread Ed Maste
emaste 2007-10-31 14:30:20 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sbin/dhclientclparse.c dhclient-script dhclient.c dhclient.conf dhcp.h tables.c Log: MFC to RELENG_6 dhclient RFC3442 support (the classless static r

cvs commit: src/usr.sbin/tcpdrop tcpdrop.c

2007-10-31 Thread Ruslan Ermilov
ru 2007-10-31 13:49:20 UTC FreeBSD src repository Modified files: usr.sbin/tcpdrop tcpdrop.c Log: Normalize usage output. Revision ChangesPath 1.3 +4 -2 src/usr.sbin/tcpdrop/tcpdrop.c ___ cvs-all@freebsd.

cvs commit: ports/games/blobwars Makefile ports/games/blobwars/files patch-src-CFileData.h patch-src-CKeyboard.h

2007-10-31 Thread Martin Wilke
miwi2007-10-31 13:27:18 UTC FreeBSD ports repository Modified files: games/blobwars Makefile Added files: games/blobwars/files patch-src-CFileData.h patch-src-CKeyboard.h Log: - Fix build with gcc 4.2 PR: 117699 Submit

cvs commit: ports/games/openmortal Makefile ports/games/openmortal/files patch-src-OnlineChat.cpp

2007-10-31 Thread Martin Wilke
miwi2007-10-31 13:15:39 UTC FreeBSD ports repository Modified files: games/openmortal Makefile Added files: games/openmortal/files patch-src-OnlineChat.cpp Log: - Unbreak - Fix build with gcc 4.2 - Pass maintainership to submitter - Use SF macro PR:

cvs commit: ports/audio/id3lib Makefile ports/audio/id3lib/files patch-examples-Makefile.in patch-src-Makefile.in

2007-10-31 Thread Martin Wilke
miwi2007-10-31 13:08:34 UTC FreeBSD ports repository Modified files: audio/id3lib Makefile Added files: audio/id3lib/files patch-examples-Makefile.in patch-src-Makefile.in Log: - Fix libtool TAG problems with gcc 4.2 PR:

cvs commit: ports/net-im/jit Makefile ports/net-im/jit/files patch-jit-jit-wp_client.cpp

2007-10-31 Thread Martin Wilke
miwi2007-10-31 13:08:23 UTC FreeBSD ports repository Modified files: net-im/jit Makefile Added files: net-im/jit/files patch-jit-jit-wp_client.cpp Log: - Fix build with gcc 4.2 PR: 117705 Submitted by: Dmitry Marakasov <[EMAIL PROTECT

cvs commit: src/sys/dev/ata ata-chipset.c ata-pci.h

2007-10-31 Thread Poul-Henning Kamp
phk 2007-10-31 13:06:17 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-chipset.c ata-pci.h Log: MFC: recognize AMD GeodeLX companion chip CS5536 RevisionChangesPath 1.126.2.21 +1 -0 src/sys/dev/ata/

cvs commit: ports/security/vuxml vuln.xml

2007-10-31 Thread Martin Wilke
miwi2007-10-31 12:44:04 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Update mozilla -- code execution via Quicktime media-link files PR: 117704 Submitted by: John Hein <[EMAIL PROTECTED]> Reviewed by:simon Appr

Re: cvs commit: src/sbin/route route.c

2007-10-31 Thread Bruce Evans
On Tue, 30 Oct 2007, Giorgos Keramidas wrote: On 2007-10-29 00:08, Mike Makonnen <[EMAIL PROTECTED]> wrote: mtm 2007-10-29 00:08:24 UTC FreeBSD src repository Modified files: sbin/route route.c Log: Fix an error in bit shifting logic for network addresses. The ro

cvs commit: src/sys/pc98/pc98 machdep.c

2007-10-31 Thread Takahashi Yoshihiro
nyan2007-10-31 11:53:17 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/pc98/pc98machdep.c Log: MFi386: revision 1.616.2.9 Don't abuse tf_err to pass the faulting virtual address to signal handlers. Revision ChangesPath 1.3

cvs commit: src/libexec Makefile

2007-10-31 Thread Yar Tikhiy
yar 2007-10-31 11:19:32 UTC FreeBSD src repository Modified files: libexec Makefile Log: Add a hackish knob to skip rtld, NO_RTLD. In conjunction with src/Makefile.inc1 rev. 1.590, it can allow installing a world cross-built for a different arch over the liv

Re: cvs commit: src/lib/libc/locale utf8.c

2007-10-31 Thread Bruce Evans
On Thu, 25 Oct 2007, LI Xin wrote: Scott Long wrote: Andrey Chernov wrote: On Thu, Oct 25, 2007 at 09:15:27AM -0600, Scott Long wrote: Andrey A. Chernov wrote: ache2007-10-15 09:51:30 UTC FreeBSD src repository Modified files: lib/libc/locale utf8.c Log: Add comment

Re: cvs commit: src/sbin/route route.c

2007-10-31 Thread Giorgos Keramidas
On 2007-10-31 11:09, Mike Makonnen <[EMAIL PROTECTED]> wrote: > On Tue, 2007-10-30 at 22:10 +0200, Giorgos Keramidas wrote: > > Nuno has also mentioned that `netstat -rn' gets things wrong; do you > > have a WIP for that too? Do you need help with testing? > > Sorry, I haven't seen the discussion

cvs commit: www/en/releng index.sgml

2007-10-31 Thread Daniel Gerzo
danger 2007-10-31 09:33:52 UTC FreeBSD doc repository Modified files: en/relengindex.sgml Log: Restore the portmgr link, i.e. use the correct entity for it. Submitted by: pluknet Revision ChangesPath 1.218 +2 -2 www/en/releng/index.sgml ___

cvs commit: src Makefile.inc1

2007-10-31 Thread Yar Tikhiy
yar 2007-10-31 09:26:43 UTC FreeBSD src repository Modified files: .Makefile.inc1 Log: Decouple the install tools from the main system as much as possible. I.e., not only copy them to a scratch dir, but also make them use saved copies of libraries and

cvs commit: ports/ports-mgmt/portmaster Makefile

2007-10-31 Thread Doug Barton
dougb 2007-10-31 08:57:40 UTC FreeBSD ports repository Modified files: ports-mgmt/portmaster Makefile Log: Update for version 1.25 Approved by:portmgr (marcus) Revision ChangesPath 1.26 +1 -1 ports/ports-mgmt/portmaster/Makefile __

cvs commit: ports/ports-mgmt/portmaster/files portmaster.sh.in

2007-10-31 Thread Doug Barton
dougb 2007-10-31 08:57:04 UTC FreeBSD ports repository Modified files: ports-mgmt/portmaster/files portmaster.sh.in Log: Small bug fixes === 1. In delete_all_distfiles(), $distdir already contains a trailing slash 2. Only print the "no new versions" message fo

cvs commit: src/sys/i386/i386 geode.c

2007-10-31 Thread Poul-Henning Kamp
phk 2007-10-31 08:42:18 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/i386/i386geode.c Log: MFC: GeodeLX and advantech watchdogs Soekris NET5501 recognition and /dev/led/error Revision ChangesPath 1.5.8.3 +9

cvs commit: src/usr.bin/make make.1

2007-10-31 Thread Yar Tikhiy
yar 2007-10-31 08:20:09 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Give more details on the following topics: o How global, command-line, and environment variables relate. o What peculiarities the -f option has WRT ${MAKEFLAGS}. Revis

Re: cvs commit: src/sbin/route route.c

2007-10-31 Thread Mike Makonnen
On Tue, 2007-10-30 at 22:10 +0200, Giorgos Keramidas wrote: > Nuno has also mentioned that `netstat -rn' gets things wrong; do you > have a WIP for that too? Do you need help with testing? Sorry, I haven't seen the discussion. Can you point me to it? Cheers. -- Mike Makonnen | GPG-KEY:

cvs commit: ports/sysutils/cdrtools-cjk Makefile

2007-10-31 Thread Erwin Lansing
erwin 2007-10-31 07:56:47 UTC FreeBSD ports repository Modified files: sysutils/cdrtools-cjk Makefile Log: Fix PKGORIGIN by backing out part of the previous commit. The first category in CATEGORIES should always be physical category. Approved by:portmgr (self)

cvs commit: src/sys/conf options.arm

2007-10-31 Thread Kevin Lo
kevlo 2007-10-31 07:28:45 UTC FreeBSD src repository Modified files: sys/conf options.arm Log: Add CPU_ARM9E Revision ChangesPath 1.19 +1 -0 src/sys/conf/options.arm ___ cvs-all@freebsd.org mailing li

cvs commit: src/sys/arm/arm cpufunc.c

2007-10-31 Thread Kevin Lo
kevlo 2007-10-31 07:27:31 UTC FreeBSD src repository Modified files: sys/arm/arm cpufunc.c Log: Don't define get_cachetype() for CPU_ARM9E unless it's going to be used. Revision ChangesPath 1.20 +1 -1 src/sys/arm/arm/cpufunc.c

Re: cvs commit: src/sys/arm/arm cpufunc.c cpufunc_asm_arm11.S cpufunc_asm_armv5.S cpufunc_asm_armv5_ec.S identcpu.c src/sys/arm/include cpuconf.h cpufunc.h

2007-10-31 Thread Kevin Lo
On Thu, 2007-10-18 at 05:33 +, Warner Losh wrote: > imp 2007-10-18 05:33:06 UTC > > FreeBSD src repository > > Modified files: > sys/arm/arm cpufunc.c identcpu.c > sys/arm/include cpuconf.h cpufunc.h > Added files: > sys/arm/arm cpufunc_asm_a

cvs commit: src/usr.sbin/fwcontrol fwcontrol.8

2007-10-31 Thread Christian Brueffer
brueffer2007-10-31 05:59:17 UTC FreeBSD src repository Modified files: usr.sbin/fwcontrol fwcontrol.8 Log: Remove dublicate .Pp, sort SEE ALSO. Revision ChangesPath 1.21 +3 -4 src/usr.sbin/fwcontrol/fwcontrol.8 _

cvs commit: ports/security/gnutls-devel Makefile

2007-10-31 Thread Roman Bogorodskiy
novel 2007-10-31 05:46:58 UTC FreeBSD ports repository Modified files: security/gnutls-devel Makefile Log: gnutls-devel is now older than gnutls, so in order not to update or delete it during the freeze, mark it IGNORE. Approved by:portmgr (linimon) Revision Ch

cvs commit: ports/security/gnutls Makefile

2007-10-31 Thread Roman Bogorodskiy
novel 2007-10-31 05:42:35 UTC FreeBSD ports repository Modified files: security/gnutls Makefile Log: Chase opencdk shared lib version change. Approved by:portmgr (pav) (as a part of security/opencdk commit) Revision ChangesPath 1.54 +3 -2 por

cvs commit: ports/security/opencdk Makefile distinfo pkg-plist ports/security/opencdk/files patch-src::keyserver.c

2007-10-31 Thread Roman Bogorodskiy
novel 2007-10-31 05:40:39 UTC FreeBSD ports repository Modified files: security/opencdk Makefile distinfo pkg-plist Removed files: security/opencdk/files patch-src::keyserver.c Log: Update to 0.6.0 - the versioin compatible with the current version of gnutls in por

cvs commit: src/contrib/ipfilter HISTORY Makefile ip_fil.c md5.h radix.c radix_ipf.h src/contrib/ipfilter/BSD Makefile kupgrade src/contrib/ipfilter/iplang Makefile src/contrib/ipfilter/ipsend iptests

2007-10-31 Thread Darren Reed
darrenr 2007-10-31 05:00:38 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) contrib/ipfilter HISTORY Makefile ip_fil.c md5.h radix.c radix_ipf.h contrib/ipfilter/BSD Makefile kupgrade contrib/ipfilter/iplang Makefile co

cvs commit: ports/mail/thunderbird Makefile ports/mail/thunderbird/files patch-gfx_src_gtk_gtk2drawing.c

2007-10-31 Thread Jeremy Messenger
mezz2007-10-31 04:33:21 UTC FreeBSD ports repository Modified files: mail/thunderbird Makefile Added files: mail/thunderbird/files patch-gfx_src_gtk_gtk2drawing.c Log: Fix the crash with GTK+ 2.12.x, depend on what theme user is using. Bump the PORTREVISION.

cvs commit: src/sys/dev/sound/pcm ac97.c

2007-10-31 Thread Ariff Abdullah
ariff 2007-10-31 04:00:07 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/sound/pcmac97.c Log: MFC (revision 1.74): Remap and virtualize mixer controls for HP nx6110 with AD1981B AC97 codec, unifying master volume control. * Remap

Re: cvs commit: src/sys/dev/ata ata-chipset.c

2007-10-31 Thread Daniel O'Connor
On Fri, 26 Oct 2007, SXren Schmidt wrote: > sos 2007-10-26 09:01:07 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-chipset.c > Log: > Fix the signature matching code on AHCI controllers. > Add SATA ATAPI support for AHCI controllers. Huzzah! Thi

cvs commit: src/sys/dev/sound/pcm ac97_patch.c

2007-10-31 Thread Ariff Abdullah
ariff 2007-10-31 03:59:24 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/sound/pcmac97_patch.c Log: MFC (revision 1.11): Enable headphone jack-sense for HP nx6100 with AD1981B AC'97 codec, automuting internal speakers. Tested by: