Re: svn commit: r213270 - head/etc/rc.d

2010-09-29 Thread Anonymous
Ed Maste writes: > Author: emaste > Date: Wed Sep 29 13:08:23 2010 > New Revision: 213270 > URL: http://svn.freebsd.org/changeset/base/213270 > [...] > + if [ ${waited} -eq ${defaultroute_carrier_delay} ] && ! > defaultroute_carrier; then > + echo -n "(no carrier)

Re: svn commit: r212979 - in head: gnu/lib/libobjc sys/boot/i386/boot2 sys/boot/pc98/boot2

2010-10-01 Thread Anonymous
Dimitry Andric writes: > Author: dim > Date: Tue Sep 21 21:41:45 2010 > New Revision: 212979 > URL: http://svn.freebsd.org/changeset/base/212979 [...] > Modified: head/gnu/lib/libobjc/Makefile > == > --- head/gnu/lib/libo

Re: svn commit: r212979 - in head: gnu/lib/libobjc sys/boot/i386/boot2 sys/boot/pc98/boot2

2010-10-04 Thread Anonymous
Dimitry Andric writes: > The particular case of libobjc is special, because it is the only > Makefile that both modifies CC, and takes the default CFLAGS from > make.conf. The only other cases where we *must* compile with gcc for > now, are boot2 for i386 and pc98, but these set their CFLAGS to

Re: svn commit: r214334 - head/lib/libthr/thread

2010-10-26 Thread Anonymous
David Xu writes: > Author: davidxu > Date: Mon Oct 25 09:16:04 2010 > New Revision: 214334 > URL: http://svn.freebsd.org/changeset/base/214334 > > Log: > Get cpuset in pthread_attr_get_np() and free it in pthread_attr_destroy(). > > MFC after: 7 days After this change firefox 4.0b8pre built

Re: svn commit: r214905 - in head/lib/libarchive: . test

2010-11-06 Thread Anonymous
Tim Kientzle writes: > Author: kientzle > Date: Sun Nov 7 03:40:37 2010 > New Revision: 214905 > URL: http://svn.freebsd.org/changeset/base/214905 > > Log: > If the Zip reader doesn't see a PK signature block > because there's inter-entry garbage, just scan forward > to find the next one.

Re: svn commit: r215309 - in head/sys: amd64/amd64 i386/i386 sys vm

2010-11-14 Thread Anonymous
Konstantin Belousov writes: > Author: kib > Date: Sun Nov 14 18:24:12 2010 > New Revision: 215309 > URL: http://svn.freebsd.org/changeset/base/215309 > > Log: > Use symbolic names instead of hardcoding values for magic p_osrel constants. > > MFC after: 1 week [...] > Modified: head/sys/s

Re: svn commit: r215309 - in head/sys: amd64/amd64 i386/i386 sys vm

2010-11-14 Thread Anonymous
Kostik Belousov writes: > On Mon, Nov 15, 2010 at 12:20:37AM +0300, Anonymous wrote: >> Konstantin Belousov writes: >> >> > Author: kib >> > Date: Sun Nov 14 18:24:12 2010 >> > New Revision: 215309 >> > URL: http://svn.freebsd.org/changeset/b

Re: svn commit: r212770 - head/usr.bin/script

2010-12-19 Thread Anonymous
"David E. O'Brien" writes: > Author: obrien > Date: Thu Sep 16 22:31:03 2010 > New Revision: 212770 > URL: http://svn.freebsd.org/changeset/base/212770 > > Log: > + Add the 'command' argument (if supplied on the command line) to the > typescript file. This creates a more complete typescript

Re: svn commit: r212770 - head/usr.bin/script

2010-12-20 Thread Anonymous
Anonymous writes: > "David E. O'Brien" writes: > >> Author: obrien >> Date: Thu Sep 16 22:31:03 2010 >> New Revision: 212770 >> URL: http://svn.freebsd.org/changeset/base/212770 >> >> Log: >> + Add the 'command' argu

Re: svn commit: r212770 - head/usr.bin/script

2010-12-20 Thread Anonymous
"David E. O'Brien" writes: > Author: obrien > Date: Thu Sep 16 22:31:03 2010 > New Revision: 212770 > URL: http://svn.freebsd.org/changeset/base/212770 > > Log: > + Add the 'command' argument (if supplied on the command line) to the > typescript file. This creates a more complete typescript

Re: svn commit: r216975 - in head/libexec/rtld-elf: amd64 i386

2011-01-04 Thread Anonymous
Dimitry Andric writes: > Author: dim > Date: Tue Jan 4 20:26:41 2011 > New Revision: 216975 > URL: http://svn.freebsd.org/changeset/base/216975 > > Log: > Remove '-elf' from build flags for libexec/rtld-elf for amd64 and i386. > ELF has been the default format for almost 12 years now. '-elf

Re: svn commit: r216955 - head/usr.sbin/rtprio

2011-01-06 Thread Anonymous
Alexander Best writes: > On Thu Jan 6 11, John Baldwin wrote: >> Note that that usage is rather pointless since it means you apply rtprio to >> the 'rtprio' process that is about to exit. :) > > yeah but at least it makes the usage of -X consistent. ;) also consider the > following: the current

Re: svn commit: r216955 - head/usr.sbin/rtprio

2011-01-06 Thread Anonymous
Garrett Cooper writes: > On Jan 6, 2011, at 2:41 PM, Alexander Best wrote: > >> On Fri Jan 7 11, Anonymous wrote: >>> Alexander Best writes: >>> >>>> On Thu Jan 6 11, John Baldwin wrote: >>>>> Note that that usage is rather point

Re: svn commit: r217101 - head/lib/libcompiler_rt

2011-01-07 Thread Anonymous
Konstantin Belousov writes: > Author: kib > Date: Fri Jan 7 14:35:45 2011 > New Revision: 217101 > URL: http://svn.freebsd.org/changeset/base/217101 > > Log: > On amd64 and i386, force assembler to mark objects compiled from the > assembler source for libcompiler_rt as not needed executable

Re: svn commit: r209772 - head/usr.bin/getopt

2010-07-07 Thread Anonymous
Doug Barton writes: > On 7/7/2010 10:44 AM, Benedict Reuschling wrote: >> Author: bcr (doc committer) > >> -for i >> +while true; >> do > > If this is intended to be an sh scripting example a better way to write > that is: > > while : ; > > You can't guarantee that "true" will always be availabl

Re: svn commit: r209772 - head/usr.bin/getopt

2010-07-07 Thread Anonymous
Garrett Cooper writes: > On Wed, Jul 7, 2010 at 10:58 AM, Anonymous wrote: >> Doug Barton writes: >> >>> On 7/7/2010 10:44 AM, Benedict Reuschling wrote: >>>> Author: bcr (doc committer) >>> >>>> -for i >>>> +while true;

Re: svn commit: r210612 - head/share/mk

2010-07-29 Thread Anonymous
Rui Paulo writes: > Author: rpaulo > Date: Thu Jul 29 16:30:27 2010 > New Revision: 210612 > URL: http://svn.freebsd.org/changeset/base/210612 > > Log: > When building WITH_CTF=1, print the ctf executable that's going to be > run. This makes the 'ctfconvert' and 'ctfmerge' programs show up du

Re: svn commit: r211577 - in head: . cddl/lib/drti lib/libelf

2010-08-21 Thread Anonymous
Rui Paulo writes: > Author: rpaulo > Date: Sat Aug 21 17:29:59 2010 > New Revision: 211577 > URL: http://svn.freebsd.org/changeset/base/211577 > > Log: > Don't link drti.o with libelf_pic.a. This means that all software with > userland SDT probes must be linked with libelf explicitly. > >

Re: svn commit: r211621 - head/bin/sh

2010-08-22 Thread Anonymous
Jilles Tjoelker writes: > Author: jilles > Date: Sun Aug 22 13:04:00 2010 > New Revision: 211621 > URL: http://svn.freebsd.org/changeset/base/211621 > > Log: > sh(1): Add a brief summary of arithmetic expressions. > > Modified: > head/bin/sh/sh.1 > > Modified: head/bin/sh/sh.1 > =

Re: svn commit: r212779 - in head/share/man: man4 man7

2010-09-16 Thread Anonymous
Alexander Motin writes: > Author: mav > Date: Fri Sep 17 04:55:01 2010 > New Revision: 212779 > URL: http://svn.freebsd.org/changeset/base/212779 > > Log: > Add attimer(4) manual page. > [...] > --- head/share/man/man4/Makefile Fri Sep 17 04:48:50 2010 > (r212778) > +++ head/share/

Re: svn commit: r213161 - head/lib/libthr/thread

2010-09-25 Thread Anonymous
David Xu writes: > Author: davidxu > Date: Sat Sep 25 08:36:46 2010 > New Revision: 213161 > URL: http://svn.freebsd.org/changeset/base/213161 > > Log: > Add missing field. > > Modified: > head/lib/libthr/thread/thr_private.h > > Modified: head/lib/libthr/thread/thr_private.h > ==

Re: svn commit: r217588 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2011-02-01 Thread Anonymous
Edward Tomasz Napierala writes: > Author: trasz > Date: Wed Jan 19 17:11:52 2011 > New Revision: 217588 > URL: http://svn.freebsd.org/changeset/base/217588 > > Log: > Add MNT_NFS4ACLS to ZFS mount flags. It's not conditional, since there > is no way to disable NFSv4 ACLs in ZFS. This should

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-13 Thread Anonymous
Tim Kientzle writes: > Author: kientzle > Date: Sat May 8 16:28:22 2010 > New Revision: 207790 > URL: http://svn.freebsd.org/changeset/base/207790 > > Log: > Config updates. > > Modified: > head/usr.bin/tar/config_freebsd.h Smth broke after this commit. Hitting ^T causes ports to barf error

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-17 Thread Anonymous
Tim Kientzle writes: > Please try the attached patch and let me know if it fixes it for you... > > Cheers, > > Tim [...] It fixes the issue. Thanks. ___ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsub

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-22 Thread Anonymous
Anonymous writes: > Tim Kientzle writes: > >> Please try the attached patch and let me know if it fixes it for you... >> >> Cheers, >> >> Tim > [...] > > It fixes the issue. Thanks. I'm afraid not. Similar issue affects `tar cf - blah | tar xf

Re: svn commit: r207790 - head/usr.bin/tar

2010-05-22 Thread Anonymous
Tim Kientzle writes: > Ah, yes. I did forget to add an EINTR check to the write side. > > Attached patch should fix "tar cf" > > Thanks for your careful testing... > [...] > Index: archive_write.c > === > --- archive_write.c (revi

Re: svn commit: r196727 - head/share/man/man5

2009-09-02 Thread Anonymous
Dimitry Andric writes: > On 2009-09-02 07:21, Maxim Konovalov wrote: >>> Unless I'm missing something this should be in the src.conf man page >>> instead of make.conf. >> Please explain why. > > make.conf(5): > The file make.conf contains system-wide settings that will apply to every >

Re: svn commit: r197380 - in head/sys: amd64/conf conf i386/conf

2009-09-21 Thread Anonymous
Xin LI writes: > Author: delphij > Date: Mon Sep 21 07:08:20 2009 > New Revision: 197380 > URL: http://svn.freebsd.org/changeset/base/197380 > > Log: > Automatically depend on x86emu when vesa or dpms is being built into > kernel. With this change the user no longer need to remember building

Re: svn commit: r197383 - in head/sys: conf contrib/x86emu dev/dpms dev/fb dev/x86bios modules modules/x86bios modules/x86emu

2009-09-21 Thread Anonymous
Xin LI writes: > Author: delphij > Date: Mon Sep 21 08:17:57 2009 > New Revision: 197383 > URL: http://svn.freebsd.org/changeset/base/197383 > > Log: > Collapase interrupt supporting functions to a new module, and switch from > x86emu to this new module. > > This changeset also brings a

Re: svn commit: r197698 - head/etc/rc.d

2009-10-02 Thread Anonymous
Hiroki Sato writes: > Modified: head/etc/rc.d/netoptions [...] > > if checkyesno tcp_extensions; then > + ${SYSCTL_W} net.inet.tcp.rfc1323=1 >/dev/null > + else > netoptions_init > - echo -n ' rfc1323 extensions=NO' > + echo -n ' rfc13

Re: svn commit: r191235 - head/lib/libarchive

2009-04-18 Thread Anonymous
Tim Kientzle writes: > Author: kientzle > Date: Sat Apr 18 03:47:29 2009 > New Revision: 191235 > URL: http://svn.freebsd.org/changeset/base/191235 > > Log: > Correct and update the manpage to include > more details about some of the formats and > to briefly describe the mtree writing capab