Re: svn commit: r360125 - in head/usr.bin/diff: . tests

2020-04-28 Thread Jan Beich
Gary Jennejohn writes: > On Tue, 28 Apr 2020 07:25:18 -0500 > Kyle Evans wrote: > >> On Tue, Apr 28, 2020 at 6:52 AM Jan Beich wrote: >> > >> > Kyle Evans writes: >> > >> > > Author: kevans >> > > Date: Mon

Re: svn commit: r360125 - in head/usr.bin/diff: . tests

2020-04-28 Thread Jan Beich
Kyle Evans writes: > Author: kevans > Date: Mon Apr 20 16:14:44 2020 > New Revision: 360125 > URL: https://svnweb.freebsd.org/changeset/base/360125 > > Log: > diff(1): reject conflicting formatting options > > This matches GNU diff(1) behavior and, more importantly, eliminates any > sour

Re: svn commit: r358363 - head/sys/vm

2020-03-01 Thread Jan Beich
Mark Johnston writes: > On Sat, Feb 29, 2020 at 09:24:11PM +0100, Emmanuel Vadot wrote: > >> >> Hi Jeff, >> >> On Thu, 27 Feb 2020 02:37:27 + (UTC) >> Jeff Roberson wrote: >> >> > Author: jeff >> > Date: Thu Feb 27 02:37:27 2020 >> > New Revision: 358363 >> > URL: https://svnweb.freebsd.

Re: svn commit: r345708 - in head: lib/clang lib/libc++ lib/libc++experimental lib/libc++fs lib/libclang_rt lib/libcxxrt lib/libgcc_eh lib/libomp lib/ofed/libibnetdisc share/mk usr.bin/dtc usr.sbin/pm

2019-09-03 Thread Jan Beich
Enji Cooper writes: > +.if ${COMPILER_FEATURES:Mc++11} > +CXXSTD?= c++11 POLA violation. Clang 6.0 or later defaults to gnu++14, not c++11. > +.elif ${COMPILER_TYPE} == "gcc" > +# Prior versions of g++ support C++98 with GNU extensions by default. > +CXXSTD?= gnu++98 POLA violation. GC

Re: svn commit: r345708 - in head: lib/clang lib/libc++ lib/libc++experimental lib/libc++fs lib/libclang_rt lib/libcxxrt lib/libgcc_eh lib/libomp lib/ofed/libibnetdisc share/mk usr.bin/dtc usr.sbin/pm

2019-04-10 Thread Jan Beich
Enji Cooper writes: > +.if ${COMPILER_FEATURES:Mc++11} > +CXXSTD?= c++11 POLA violation. Clang 6.0 or later defaults to gnu++14, not c++11. > +.elif ${COMPILER_TYPE} == "gcc" > +# Prior versions of g++ support C++98 with GNU extensions by default. > +CXXSTD?= gnu++98 POLA violation. GC

Re: svn commit: r344021 - head/share/man/man7

2019-02-17 Thread Jan Beich
Edward Tomasz Napierala writes: > ... while the > +.Em quarterly .Em looks unnecessary as "the" is enough. /quarterly is a package set (or repository), not an actual name of the branch. - /head -> /latest - /branches/*Q* -> /quarterly - /tags/RELEASE_* -> /release_* > +subdirectory, eg: Did y

Re: svn commit: r338990 - in head/sys: compat/freebsd32 dev/pci

2018-11-16 Thread Jan Beich
Brooks Davis writes: > Author: brooks > Date: Thu Sep 27 21:08:32 2018 > New Revision: 338990 > URL: https://svnweb.freebsd.org/changeset/base/338990 > > Log: > Centralize compat support for PCIOCGETCONF. > > The pre-7.x compat for both native and 32-bit code was already in > pci_user.c.

Re: svn commit: r339563 - in head: . share/man/man4 sys/conf sys/dev/joy sys/modules sys/modules/joy sys/sys tools/kerneldoc/subsys

2018-10-25 Thread Jan Beich
Warner Losh writes: > On Wed, Oct 24, 2018 at 9:42 AM Jan Beich wrote: > >> Warner Losh writes: >> >> > Author: imp >> > Date: Mon Oct 22 02:34:00 2018 >> > New Revision: 339563 >> > URL: https://svnweb.freebsd.org/changeset/

Re: svn commit: r339563 - in head: . share/man/man4 sys/conf sys/dev/joy sys/modules sys/modules/joy sys/sys tools/kerneldoc/subsys

2018-10-24 Thread Jan Beich
Warner Losh writes: > Author: imp > Date: Mon Oct 22 02:34:00 2018 > New Revision: 339563 > URL: https://svnweb.freebsd.org/changeset/base/339563 > > Log: > Remove joy(4) driver. > > This driver was marked as gone in 12. We're at 13 now. Remove it. > Data from nycbug's dmesg cache shows

Re: svn commit: r339436 - in head: . contrib/gcc gnu/usr.bin/cc/cc_tools lib/clang release sys/conf sys/sys

2018-10-21 Thread Jan Beich
Dimitry Andric writes: > On 21 Oct 2018, at 04:08, Jan Beich wrote: > >> >> Glen Barber writes: >> >>> Modified: head/lib/clang/llvm.build.mk >>> == >>> --- head/

Re: svn commit: r339436 - in head: . contrib/gcc gnu/usr.bin/cc/cc_tools lib/clang release sys/conf sys/sys

2018-10-21 Thread Jan Beich
Glen Barber writes: > Modified: head/lib/clang/llvm.build.mk > == > --- head/lib/clang/llvm.build.mk Fri Oct 19 00:24:23 2018 > (r339435) > +++ head/lib/clang/llvm.build.mk Fri Oct 19 00:37:47 2018

Re: svn commit: r324815 - in head: lib/libc/gen sys/sys

2018-09-02 Thread Jan Beich
Michal Meloun writes: > Author: mmel > Date: Sat Oct 21 12:06:18 2017 > New Revision: 324815 > URL: https://svnweb.freebsd.org/changeset/base/324815 > > Log: > Make elf_aux_info() as public libc function. > - Teach elf aux vector functions about newly added AT_HWCAP and AT_HWCAP2 > vector

Re: svn commit: r334054 - in head: sys/kern sys/netipsec tools/tools/crypto usr.bin/netstat

2018-05-24 Thread Jan Beich
Fabien Thomas writes: > + IPSECSTAT_INC(ips_spdcache_hits); > + > + SPDCACHE_UNLOCK(hashv); > + goto out; > + } > + > + IPSECSTAT_INC(ips_spdcache_misses); Breaks kernel build with "nooption IPSEC": ld: error: undefined symbol: vnet_entry_ipsec4stat >

Re: svn commit: r329371 - head/sys/compat/linuxkpi/common/include/asm

2018-02-17 Thread Jan Beich
Hans Petter Selasky writes: > On 02/17/18 01:42, Jan Beich wrote: > >> Hans Petter Selasky writes: >> >>> Author: hselasky >>> Date: Fri Feb 16 15:20:21 2018 >>> New Revision: 329371 >>> URL: https://svnweb.freebsd.org/changeset/base/32937

Re: svn commit: r329371 - head/sys/compat/linuxkpi/common/include/asm

2018-02-17 Thread Jan Beich
Hans Petter Selasky writes: > On 02/17/18 01:42, Jan Beich wrote: > >> To generate errors instead ? > > Which compiler are you using? > > This was tested with clang over here. $ cc -v FreeBSD clang version 6.0.0 (branches/release_60 324090) (based on LLVM 6.0.0

Re: svn commit: r329371 - head/sys/compat/linuxkpi/common/include/asm

2018-02-16 Thread Jan Beich
Hans Petter Selasky writes: > Author: hselasky > Date: Fri Feb 16 15:20:21 2018 > New Revision: 329371 > URL: https://svnweb.freebsd.org/changeset/base/329371 > > Log: > Allow the cmpxchg() macro in the LinuxKPI to work on pointers without > generating compiler warnings, -Wint-conversion . [.

Re: svn commit: r328436 - head/sys/compat/linuxkpi/common/src

2018-02-01 Thread Jan Beich
Hans Petter Selasky writes: > On 02/01/18 12:04, Hans Petter Selasky wrote: > >> On 02/01/18 11:25, Jan Beich wrote: >>> Hans Petter Selasky writes: >>> >>>> Author: hselasky >>>> Date: Fri Jan 26 10:49:02 2018 >>>> New Revision:

Re: svn commit: r328436 - head/sys/compat/linuxkpi/common/src

2018-02-01 Thread Jan Beich
Hans Petter Selasky writes: > On 02/01/18 11:25, Jan Beich wrote: > >> Hans Petter Selasky writes: >> >>> Author: hselasky >>> Date: Fri Jan 26 10:49:02 2018 >>> New Revision: 328436 >>> URL: https://svnweb.freebsd.org/changeset/base/32

Re: svn commit: r328436 - head/sys/compat/linuxkpi/common/src

2018-02-01 Thread Jan Beich
Hans Petter Selasky writes: > Author: hselasky > Date: Fri Jan 26 10:49:02 2018 > New Revision: 328436 > URL: https://svnweb.freebsd.org/changeset/base/328436 > > Log: > Decouple Linux files from the belonging character device right after open > in the LinuxKPI. This is done by calling finit(

Re: svn commit: r318780 - in head: include sys/sys

2017-08-03 Thread Jan Beich
Konstantin Belousov writes: > -#ifndef _POSIX_SOURCE > +#if __BSD_VISIBLE > #define ONLCR 0x0002 /* map NL to CR-NL (ala CRMOD) > */ This caused a regression for apps building with _XOPEN_SOURCE e.g., https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220843 DragonFly u

Re: svn commit: r320240 - head/include

2017-06-27 Thread Jan Beich
Ed Schouten writes: > 2017-06-27 7:02 GMT+02:00 Jan Beich : >> thus regressing some ports e.g., >> >> [...] >> >> https://lists.freebsd.org/pipermail/freebsd-pkg-fallout/Week-of-Mon-20170626/493679.html > > Would there be an easy way for me to extra

Re: svn commit: r320240 - head/include

2017-06-26 Thread Jan Beich
Ed Schouten writes: > Author: ed > Date: Thu Jun 22 18:39:52 2017 > New Revision: 320240 > URL: https://svnweb.freebsd.org/changeset/base/320240 > > Log: > Use __ISO_C_VISIBLE, as opposed to testing __STDC_VERSION__. > > FreeBSD's C library uses __STDC_VERSION__ to determine whether the >

Re: svn commit: r311667 - in head/sys/contrib/dev/acpica: components/namespace components/tables include

2017-01-08 Thread Jan Beich
"Conrad E. Meyer" writes: > +++ head/sys/contrib/dev/acpica/components/tables/tbxface.c Sun Jan 8 > 06:26:33 2017(r311667) > @@ -314,11 +314,12 @@ ACPI_EXPORT_SYMBOL (AcpiGetTableHeader) > > > /*** > * >

Re: svn commit: r308996 - head/lib/libfetch

2016-11-30 Thread Jan Beich
Dag-Erling Smørgrav writes: > conn_t * > fetch_connect(const char *host, int port, int af, int verbose) > { [...] > + fetch_info("resolved"); Can you hide it behind "verbose" flag to avoid confusion? $ pkg The package management tool is not yet installed on your system. Do you wan

Re: svn commit: r303033 - head/share/man/man7

2016-07-19 Thread Jan Beich
Ed Maste writes: > +.It Sy Architecture Ta Sy Page Sizes > +.It amd64 Ta 4K, 2M, 1G Does FreeBSD support 1G pages nowadays? $ sysctl hw.pagesizes hw.pagesizes: 4096 2097152 0 $ dmesg | fgrep -i 1gb AMD Features=0x2c100800 > +.Ss Predefined Macros > +The compiler provides a number of p

Re: svn commit: r302163 - in head/sys: cam conf

2016-07-03 Thread Jan Beich
Warner Losh writes: > Author: imp > Date: Thu Jun 23 23:20:58 2016 > New Revision: 302163 > URL: https://svnweb.freebsd.org/changeset/base/302163 > > Log: > Rename CAM_NETFLIX_IOSCHED to CAM_IOSCHED_DYNAMIC to better reflect > its nature. > > Approved by: re > Reviewed By: jhb > Diff

Re: svn commit: r299448 - in head/sys/cddl/contrib/opensolaris: common/acl uts/common/fs/zfs uts/common/sys

2016-06-14 Thread Jan Beich
Alexander Motin writes: > Author: mav > Date: Wed May 11 13:43:20 2016 > New Revision: 299448 > URL: https://svnweb.freebsd.org/changeset/base/299448 > > Log: > MFV r299442: 6762 POSIX write should imply DELETE_CHILD on directories - and > some additional considerations > > Reviewed by:

Re: svn commit: r301172 - head/contrib/blacklist

2016-06-02 Thread Jan Beich
Kurt Lidl writes: > Author: lidl > Date: Wed Jun 1 22:04:10 2016 > New Revision: 301172 > URL: https://svnweb.freebsd.org/changeset/base/301172 > > Log: > Import NetBSD's blacklist source from vendor tree > > This import includes The basic blacklist library and utility programs, > to ad

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

2016-05-31 Thread Jan Beich
Allan Jude writes: > Author: allanjude > Date: Tue May 31 04:12:14 2016 > New Revision: 301010 > URL: https://svnweb.freebsd.org/changeset/base/301010 > > Log: > Connect the SHA-512t256 and Skein hashing algorithms to ZFS > > Support for the new hashing algorithms in ZFS was introduced in

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

2016-04-24 Thread Jan Beich
Jens Schweikhardt writes: > - parenthesize the "case" string for symmetry and improved >search for matching paren (e.g. with vi's %) [...] > case "${state}" in > - [oO][nN]) > + ([oO][nN]) > swapon /dev/zvol/

Re: svn commit: r297685 - in head/sys: conf dev/kbdmux modules/kbdmux

2016-04-07 Thread Jan Beich
Ngie Cooper writes: > On Thu, Apr 7, 2016 at 1:12 PM, Ed Maste wrote: > >> Author: emaste >> Date: Thu Apr 7 20:12:45 2016 >> New Revision: 297685 >> URL: https://svnweb.freebsd.org/changeset/base/297685 >> >> Log: >> Add option to specify built-in keymap for kbdmux >> >> PR: 1534

Re: svn commit: r296823 - in head: sbin/ifconfig sys/net80211

2016-03-14 Thread Jan Beich
Adrian Chadd writes: > Author: adrian > Date: Mon Mar 14 04:39:35 2016 > New Revision: 296823 > URL: https://svnweb.freebsd.org/changeset/base/296823 > > Log: > [net80211] handle unlisted information elements. > > This displays the IE names in ifconfig but it doesn't yet decode things. >

Re: svn commit: r294665 - head/usr.bin/ldd

2016-01-24 Thread Jan Beich
Ruslan Bukin writes: > Modified: head/usr.bin/ldd/ldd.c > == > --- head/usr.bin/ldd/ldd.cSun Jan 24 15:12:49 2016(r294664) > +++ head/usr.bin/ldd/ldd.cSun Jan 24 15:15:57 2016(r294665) > @@ -48,8 +

Re: svn commit: r293115 - head/etc

2016-01-04 Thread Jan Beich
Warner Losh writes: > Author: imp > Date: Sun Jan 3 19:18:48 2016 > New Revision: 293115 > URL: https://svnweb.freebsd.org/changeset/base/293115 > > Log: > Use /bin/rm to remove /firstboot*. Otherwise rm -i alias is picked > up and can cause issues on boot with the prompts. Why do you have

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

2015-11-19 Thread Jan Beich
Warner Losh writes: > Author: imp > Date: Thu Nov 19 17:06:12 2015 > New Revision: 291079 > URL: https://svnweb.freebsd.org/changeset/base/291079 > > Log: > Add arm CPUTYPE values typically used on FreeBSD. > > Modified: > head/share/mk/bsd.cpu.mk Why not put together with x86 examples? See

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

2015-10-11 Thread Jan Beich
Baptiste Daroussin writes: > +++ head/share/mk/bsd.confs.mkFri Oct 9 21:57:42 2015 > (r289085) [...] > +CONFGROUPS?= CONFS [...] > +.error bsd.conf.mk cannot be included directly. > +.for group in ${CONFSGROUPS} Typo: plural vs. singular [...] > +${group}OWN?=${SHAREOWN

Re: svn commit: r289114 - in head: libexec/dma/dmagent share/mk usr.sbin/ppp

2015-10-11 Thread Jan Beich
Baptiste Daroussin writes: > Modified: head/share/mk/bsd.own.mk > == > --- head/share/mk/bsd.own.mk Sat Oct 10 09:37:31 2015(r289113) > +++ head/share/mk/bsd.own.mk Sat Oct 10 10:48:09 2015(r289114) > @@

Re: svn commit: r286866 - in head: contrib/jemalloc contrib/jemalloc/doc contrib/jemalloc/include/jemalloc contrib/jemalloc/include/jemalloc/internal contrib/jemalloc/src include lib/libc/gen lib/libc

2015-08-18 Thread Jan Beich
Jason Evans writes: >>> Index: include/malloc_np.h [...] >>> +typedef void *(chunk_alloc_t)(void *, size_t, size_t, bool *, bool *, >>> unsigned); >>> +typedef bool (chunk_dalloc_t)(void *, size_t, bool, unsigned); malloc_np.h changes regressing consumers isn't surprising given the lack of test

Re: svn commit: r286866 - in head: contrib/jemalloc contrib/jemalloc/doc contrib/jemalloc/include/jemalloc contrib/jemalloc/include/jemalloc/internal contrib/jemalloc/src include lib/libc/gen lib/libc

2015-08-17 Thread Jan Beich
Jason Evans writes: > Author: jasone > Date: Tue Aug 18 00:21:25 2015 > New Revision: 286866 > URL: https://svnweb.freebsd.org/changeset/base/286866 > > Log: > Update jemalloc to version 4.0.0. Can you bump __FreeBSD_version for non-standard API changes? Some ports like www/firefox may want to

Re: svn commit: r278934 - in head: cddl/contrib/opensolaris/lib/libdtrace/common share/mk

2015-08-10 Thread Jan Beich
Mark Johnston writes: > Author: markj > Date: Wed Feb 18 03:54:54 2015 > New Revision: 278934 > URL: https://svnweb.freebsd.org/changeset/base/278934 > > Log: > Remove drti.o's dependency on libelf. This makes it possible to add DTrace > probes to userland programs and libraries without also

Re: svn commit: r286524 - in head: . etc sys/dev/drm sys/dev/drm2

2015-08-09 Thread Jan Beich
Koop Mast writes: > Author: kwm (ports committer) > Date: Sun Aug 9 12:58:56 2015 > New Revision: 286524 > URL: https://svnweb.freebsd.org/changeset/base/286524 > > Log: > Add a new group named 'video' with the id of 44. And make drm create > devices in /dev/dri/ with this new group. Would

Re: svn commit: r284421 - in head: . cddl/lib gnu/lib/libgcc gnu/lib/libssp lib/libalias/libalias lib/libalias/modules lib/libbegemot lib/libc lib/libcam lib/libcapsicum lib/libcasper lib/libcrypt lib

2015-06-15 Thread Jan Beich
Baptiste Daroussin writes: > Author: bapt > Date: Mon Jun 15 19:28:07 2015 > New Revision: 284421 > URL: https://svnweb.freebsd.org/changeset/base/284421 > > Log: > Revert r284417 it is not necessary anymore [...] > Modified: head/Makefile.inc1 >

Re: svn commit: r284107 - head/sys/cddl/compat/opensolaris/sys

2015-06-09 Thread Jan Beich
Andriy Gapon writes: > On 09/06/2015 13:31, Jan Beich wrote: > >> Andriy Gapon writes: >> >>> Author: avg Date: Sun Jun 7 08:54:25 2015 New Revision: 284107 URL: >>> https://svnweb.freebsd.org/changeset/base/284107 >>> >>> Log: compat n

Re: svn commit: r284107 - head/sys/cddl/compat/opensolaris/sys

2015-06-09 Thread Jan Beich
Andriy Gapon writes: > Author: avg > Date: Sun Jun 7 08:54:25 2015 > New Revision: 284107 > URL: https://svnweb.freebsd.org/changeset/base/284107 > > Log: > compat nvpair.h: make sure that the names are mangled only for kernel > > Currently there is no good reason to mangle the userland A

Re: svn commit: r281131 - head/etc

2015-04-14 Thread Jan Beich
Baptiste Daroussin writes: > Log: > Enforce LC_COLLATE="C" until we do support proper UTF-8 collation [...] > - :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\ > + :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:LC_COLLATE=C:\ Did you mean to append value to :setenv instead of defining a separate capabili

Re: svn commit: r279487 - head/sys/dev/pci

2015-03-02 Thread Jan Beich
Jean-Sebastien Pedron writes: > Modified: head/sys/dev/pci/vga_pci.c [...] > +int > +vga_pci_repost(device_t dev) > +{ > +#if defined(__amd64__) || defined(__i386__) > + x86regs_t regs; > + > + if (!vga_pci_is_boot_display(dev)) > + return (EINVAL); > + > + if (x86bios_get

Re: svn commit: r278616 - in head: . contrib/netbsd-tests/games etc etc/mtree etc/root games games/caesar games/fortune/datfiles release/scripts share/man/man4 share/man/man6 share/man/man7 share/mk s

2015-02-12 Thread Jan Beich
Devin Teske writes: > PLEASE! Do NOT remove the grand digital clock (grdc). > > So many of us over the years have used it as a terminal keeper-aliver :) (and > as a clock, to boot). > > I will be very sad if you remove grdc. Aren't there better alternatives in ports? clock-mode in sysutils/tmux

svn commit: r277444 - head/share/misc

2015-01-20 Thread Jan Beich
quot;] jase [label="Jase Thew\nj...@freebsd.org\n2012/05/30"] +jbeich [label="Jan Beich\njbe...@freebsd.org\n2015/01/19"] jgh [label="Jason Helfman\n...@freebsd.org\n2011/12/16"] jhale [label="Jason E. Hale\njh...@freebsd.org\n2012/09/10"] jkim [label=&quo

Re: svn commit: r276941 - head/release/doc/en_US.ISO8859-1/relnotes

2015-01-10 Thread Jan Beich
Glen Barber writes: > Log: > Document r273598, /dev/heptN devices for HPET access from > userland. [...] > +The &man.hpet.4; driver has been updated > + to create a > + /dev/heptN Typo: /dev/hpetN vs /dev/heptN - VFEmail.net - h

Re: svn commit: r274177 - in head: share/man/man9 sys/net sys/netinet sys/netinet6 sys/sys

2014-11-06 Thread Jan Beich
"Alexander V. Chernikov" writes: > Log: > Finish r274118: remove useless fields from struct domain. [...] > Modified: head/sys/sys/domain.h > == > --- head/sys/sys/domain.h Thu Nov 6 13:13:47 2014(r274176)

Re: svn commit: r273872 - in head: etc/defaults etc/rc.d libexec/save-entropy share/examples/kld/random_adaptor sys/conf sys/dev/glxsb sys/dev/random sys/kern sys/modules sys/modules/padlock_rng sys/m

2014-11-01 Thread Jan Beich
Mark Murray writes: > Log: > This is the much-discussed major upgrade to the random(4) device, > known to you all as /dev/random. [...] > Modified: head/sys/dev/random/randomdev_soft.c > === > --- head/sys/dev/random/randomdev_soft

Re: svn commit: r273762 - head/sys/modules/dtrace/dtraceall

2014-11-01 Thread Jan Beich
Julian Elischer writes: > Log: > Allow loading of dtraceall without nfscl if what you really wnat is > nfsclient ... or if what you really want is neither, no NFS by default. > > Obtained from: Panzura tree > MFC after: 1 week > > Modified: > head/sys/modules/dtrace/dtraceall/

Re: svn commit: r270232 - head/tools/tools/vt/keymaps

2014-09-04 Thread Jan Beich
Stefan Esser writes: > Author: se > Date: Wed Aug 20 17:07:41 2014 > New Revision: 270232 > URL: http://svnweb.freebsd.org/changeset/base/270232 > > Log: > The conversion tools have been further improved and some erroneous > conversions have been detected and fixed. [...] > sub local_to_UCS_

Re: svn commit: r268745 - in head/usr.bin: . timeout

2014-07-16 Thread Jan Beich
Baptiste Daroussin writes: > Author: bapt > Date: Wed Jul 16 09:55:36 2014 > New Revision: 268745 > URL: http://svnweb.freebsd.org/changeset/base/268745 > > Log: > New BSDL timeout(1) utility compatible with GNU timeout > > it fully passes the GNU timeout regression tests, it is written in

Re: svn commit: r268461 - in head: . gnu/lib/libreadline gnu/lib/libreadline/history gnu/lib/libreadline/readline gnu/lib/libreadline/readline/doc gnu/usr.bin/gdb gnu/usr.bin/gdb/gdb gnu/usr.bin/gdb/g

2014-07-10 Thread Jan Beich
Baptiste Daroussin writes: > Log: > The GNU readline library is now an INTERNALLIB - that is, it is > statically linked into consumers (GDB and variants) in the base > system, and the shared library is no longer installed. WITH_LLDB=t build is broken because libedit doesn't install readlin

Re: svn commit: r253862 - head/sys/boot/ficl

2013-08-04 Thread Jan Beich
Marcel Moolenaar writes: > On Aug 4, 2013, at 2:06 PM, Jan Beich wrote: > >> Marcel Moolenaar writes: >> >>> +static union { >>> + struct dirent dirent; >>> + char buf[512]; >>> +} u; >>> +off_t off; >>>

Re: svn commit: r253862 - head/sys/boot/ficl

2013-08-04 Thread Jan Beich
Marcel Moolenaar writes: > +static union { > + struct dirent dirent; > + char buf[512]; > +} u; > +off_t off; > +int len; [...] > +/* > + * The readdirfd() function is specific to the loader environment. > + * We do the best we can to make freaddir work, but i

Re: svn commit: r253802 - head/contrib/llvm/tools/clang/lib/Headers

2013-07-30 Thread Jan Beich
Dimitry Andric writes: > Author: dim > Date: Tue Jul 30 12:33:21 2013 > New Revision: 253802 > URL: http://svnweb.freebsd.org/changeset/base/253802 > > Log: > Pull in r186696 from upstream clang trunk: > > This patch implements __get_cpuid_max() as an inline and __cpuid() > and __cpu

Re: svn commit: r251886 - in head: contrib/apr contrib/apr-util contrib/serf contrib/sqlite3 contrib/subversion share/mk usr.bin usr.bin/svn usr.bin/svn/lib usr.bin/svn/lib/libapr usr.bin/svn/lib/liba

2013-06-28 Thread Jan Beich
Peter Wemm writes: > Author: peter > Date: Tue Jun 18 02:53:45 2013 > New Revision: 251886 > URL: http://svnweb.freebsd.org/changeset/base/251886 > > Log: > Introduce svnlite so that we can check out our source code again. Can you teach apr about WITH_ICONV? $ svnsync sync file:///freebsd/b

Re: svn commit: r246827 - in head: contrib/ldns contrib/ldns/compat contrib/ldns/drill contrib/ldns/ldns lib lib/libldns share/mk tools/build/options

2013-02-15 Thread Jan Beich
Dag-Erling Smørgrav writes: > Author: des > Date: Fri Feb 15 13:44:18 2013 > New Revision: 246827 > URL: http://svnweb.freebsd.org/changeset/base/246827 > > Log: > Import LDNS and build it as an internal library. [...] > Index: share/mk/bsd.libnames.mk >

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

2012-11-22 Thread Jan Beich
Jung-uk Kim writes: > Author: jkim > Date: Mon Nov 19 21:58:14 2012 > New Revision: 243310 > URL: http://svnweb.freebsd.org/changeset/base/243310 > > Log: > Add x86 CPUs supported by clang on head. > > Reviewed by:arch (silence) > X-MFC: r242624 No penryn? My core2

Re: svn commit: r243130 - head/etc/root

2012-11-15 Thread Jan Beich
Eitan Adler writes: > Author: eadler > Date: Fri Nov 16 04:25:35 2012 > New Revision: 243130 > URL: http://svnweb.freebsd.org/changeset/base/243130 > > Log: > dot.login is supposed to be for bourne shell, not csh Can you explain better or point to the reference? sh(1) mentions ~/.profile while

Re: svn commit: r242120 - head/usr.sbin/cpucontrol

2012-10-26 Thread Jan Beich
Eitan Adler writes: > Author: eadler > Date: Fri Oct 26 02:50:16 2012 > New Revision: 242120 > URL: http://svn.freebsd.org/changeset/base/242120 > > Log: > This utility builds without NO_WCAST_ALIGN Not for clang. It probably predates NO_WCAST_ALIGN.clang= support. intel.c:66:3: warning: cast

Re: svn commit: r241823 - in head: . etc etc/atf etc/mtree lib lib/atf lib/atf/libatf-c lib/atf/libatf-c++ libexec libexec/atf libexec/atf/atf-check share share/atf share/doc share/doc/atf share/examp

2012-10-24 Thread Jan Beich
Dimitry Andric writes: > On 2012-10-23 11:05, Dimitry Andric wrote: > >> On 2012-10-22 16:58, Jan Beich wrote: >>> Dimitry Andric writes: >>>> On 2012-10-22 09:00, Jan Beich wrote: >> ... >>>>> undefined reference to `std::__1::bas

Re: svn commit: r241823 - in head: . etc etc/atf etc/mtree lib lib/atf lib/atf/libatf-c lib/atf/libatf-c++ libexec libexec/atf libexec/atf/atf-check share share/atf share/doc share/doc/atf share/examp

2012-10-22 Thread Jan Beich
Dimitry Andric writes: > On 2012-10-22 09:00, Jan Beich wrote: > ... > >> atf-run fails to link when using -stdlib=libc++. It works if I remove >> `throw' from check_stream(). Any clue? >> >> test-program.o: In function `(anonymous >> namespace)::ch

Re: svn commit: r241823 - in head: . etc etc/atf etc/mtree lib lib/atf lib/atf/libatf-c lib/atf/libatf-c++ libexec libexec/atf libexec/atf/atf-check share share/atf share/doc share/doc/atf share/examp

2012-10-22 Thread Jan Beich
Marcel Moolenaar writes: > Author: marcel > Date: Mon Oct 22 01:18:41 2012 > New Revision: 241823 > URL: http://svn.freebsd.org/changeset/base/241823 > > Log: > Add ATF to the build. This is may be a bit rought around the egdes, > but committing it helps to get everyone on the same page and m

Re: svn commit: r236028 - head/lib/libkiconv

2012-05-27 Thread Jan Beich
Gabor Kovesdan writes: > Author: gabor > Date: Fri May 25 22:07:13 2012 > New Revision: 236028 > URL: http://svn.freebsd.org/changeset/base/236028 > > Log: > - Add support for BSD iconv when it is build into libc [...] > +.if !defined(MK_ICONV) > +CFLAGS+= -DICONV_DLOPEN > +.endif This doe

Re: svn commit: r233429 - in head: etc/root share/examples share/examples/csh

2012-03-24 Thread Jan Beich
Eitan Adler writes: > Author: eadler > Date: Sat Mar 24 18:43:18 2012 > New Revision: 233429 > URL: http://svn.freebsd.org/changeset/base/233429 > > Log: > - Make the default values for tcsh more user friendly [...] > Modified: head/etc/root/dot.cshrc > =

Re: svn commit: r228157 - head/usr.bin/make

2011-11-30 Thread Jan Beich
Max Khon writes: > On Thu, Dec 1, 2011 at 7:16 AM, Alexander Best wrote: >> it would also be nice, if at some point, somebody could dive into the code >> to >> see why 'make buildkernel' will let clang produce coloured output, but >> 'make -j(N>1) buildkernel' doesn't (and why adding a -B switch