make(1) build broken

2011-09-20 Thread Michael W. Bombardieri
Hi all, I noticed that the make(1) build is broken for non-gcc compilers. The following diff stops the build from breaking for pcc and llvm/clang. Comments? - Michael Index: targ.h === RCS file: /usr/src/cvs/src/usr.bin/make/targ.h

[patch] sys/arch/macppc rcs ids

2011-09-20 Thread Daniel Dickman
fix rcs ids. Index: elf32_powerpc_merge.x === RCS file: /home/cvs/src/sys/arch/macppc/stand/boot.mac/elf32_powerpc_merge.x,v retrieving revision 1.1 diff -u -r1.1 elf32_powerpc_merge.x --- elf32_powerpc_merge.x 5 Dec 2006 20:30:

Re:

2011-09-20 Thread Compumar
[IMAGE] [IMAGE] Ver mas info del producto haciendo click aqui Envmos a todo el pams! WWW.COMPUMAR.COM Pablo pablodemart...@compumar.com (011) 4958-7775 Av. La Plata 444 - Caballito - Capital Federal Buenos Aires - Argentina

MRT parser for bgpctl

2011-09-20 Thread Claudio Jeker
In short libbgpdump is a nightmare therefor I decided to make bgpctl read bgp mrt dump files. Plus I have some evil ideas that needs this too. This is the initial shot. It adds a "show mrt" command that will either read a file (specified with "file /path/to/dump") or read from stdin. Additionally

Re: /usr/local/share/terminfo (was: NEW: x11/st)

2011-09-20 Thread David Coppa
On Tue, Sep 20, 2011 at 7:20 PM, Nicholas Marriott wrote: > Index: ncurses_cfg.h > === > RCS file: /cvs/src/lib/libcurses/ncurses_cfg.h,v > retrieving revision 1.26 > diff -u -p -r1.26 ncurses_cfg.h > --- ncurses_cfg.h 23 Apr 2

Re: Do less work under splusb()

2011-09-20 Thread Ariane van der Steldt
On Sun, Sep 18, 2011 at 10:27:37PM +0200, Michael Knudsen wrote: > Does this make sense? Since it's been taken off the list, the splusb is indeed no longer required. Either way is fine with me though, I doubt the zeroing will take that many cycles to really matter. > Index: ehci.c > =

/usr/local/share/terminfo (was: NEW: x11/st)

2011-09-20 Thread Nicholas Marriott
Moving to tech@; this is so ports can install custom terminfo files (notably st and rxvt-unicode which for one reason or another won't get them into upstream ncurses). On Tue, Sep 20, 2011 at 05:03:06PM +0200, David Coppa wrote: > On Mon, Sep 19, 2011 at 8:12 PM, Nicholas Marriott > wrote: > > I'

Re: compat linux pipe2() circus

2011-09-20 Thread Ariane van der Steldt
On Tue, Sep 20, 2011 at 09:47:45AM +0200, Mark Kettenis wrote: > > Date: Tue, 20 Sep 2011 01:41:35 +0300 > > From: Paul Irofti > > > > Linux keeps surprising me everytime! > > > > This time its their pipe2 system call which adds flags to the pipe call. > > Its the unix-ish way apparently to turn

Re: wscanf

2011-09-20 Thread Stefan Sperling
On Tue, Sep 20, 2011 at 12:01:18PM +0200, Stefan Sperling wrote: > wscanf based on our scanf implementation. The delta from narrow > to wide character support was obtained from FreeBSD and modified > to fit our code. > > Does not include a libc bump yet! Here are corresponding libstdc++ changes,

Re: etc/rc.d/ldapd stop - pexp - ldapd: ldap server

2011-09-20 Thread Gleydson Soares
On Tue, Sep 20, 2011 at 04:33:10PM +0200, MERIGHI Marcus wrote: > anyone? it is in, already committed. > > mcmer-open...@tor.at (MERIGHI Marcus), 2011.09.09 (Fri) 16:22 (CEST): > > Hello, > > > > the stock > > $ /etc/rc.d/ldapd stop > > does not work for me. The diff below makes it work. > >

etc/rc.d/ldapd stop - pexp - ldapd: ldap server

2011-09-20 Thread MERIGHI Marcus
Hello, the stock $ /etc/rc.d/smtpd stop does not work for me. The diff below makes it work. Index: src/etc/rc.d/smtpd === RCS file: /cvs/src/etc/rc.d/smtpd,v retrieving revision 1.1 diff -u -r1.1 smtpd --- src/etc/rc.d/smtpd 6 Ju

Re: etc/rc.d/ldapd stop - pexp - ldapd: ldap server

2011-09-20 Thread MERIGHI Marcus
anyone? mcmer-open...@tor.at (MERIGHI Marcus), 2011.09.09 (Fri) 16:22 (CEST): > Hello, > > the stock > $ /etc/rc.d/ldapd stop > does not work for me. The diff below makes it work. > > Index: ldapd > === > RCS file: /cvs/src/etc/r

rdomain support for ntpd

2011-09-20 Thread Peter Hessler
To add rtable support for most daemons, we just run them multiple times. with ntpd, that turns into hilarity as each daemon thinks it has exclusive control over the clock. watching the time skew when you have 3 or 4 is a fun thing for a rainy afternoon. since it isn't raining today, I'm sending

wscanf

2011-09-20 Thread Stefan Sperling
wscanf based on our scanf implementation. The delta from narrow to wide character support was obtained from FreeBSD and modified to fit our code. Does not include a libc bump yet! Please also review the diff between vfscanf.c and vfwscanf.c after applying this. Thanks. Index: include/wchar.h ===

Re: compat linux pipe2() circus

2011-09-20 Thread Mark Kettenis
> Date: Tue, 20 Sep 2011 01:41:35 +0300 > From: Paul Irofti > > Linux keeps surprising me everytime! > > This time its their pipe2 system call which adds flags to the pipe call. > Its the unix-ish way apparently to turn pipes into files on a kernel > filesystem, or so they claim. > > Anywho, th