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
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
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
__
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
> >> +
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
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
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
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 -
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
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
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
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
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
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
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
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 >
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
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
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
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
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
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
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
* 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):
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
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
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
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
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
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
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
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)
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
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
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
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
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
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
__
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
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.
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
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
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
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
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
_
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
> 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
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
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
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.
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
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
__
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
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
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
__
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
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
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)
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
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
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
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
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
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.
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
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:
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:
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
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/
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
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
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
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
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
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
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
___
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
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
__
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
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
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
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:
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)
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
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
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
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
_
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
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
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
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
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.
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
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
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:
95 matches
Mail list logo