Re: CVS commit: src/external/bsd/cron/dist

2012-12-25 Thread Bernd Ernesti
On Tue, Dec 25, 2012 at 02:13:57PM +, Christos Zoulas wrote:
 In article 15993.1356420...@splode.eterna.com.au,
 matthew green  m...@eterna.com.au wrote:
 
  On Mon, Dec 24, 2012 at 02:30:46PM -0500, Christos Zoulas wrote:
Modified Files:
src/external/bsd/cron/dist: database.c

Log Message:
PR/47362: Brian Marcotte: cron is too restrictive on file permissions
Allow file being writable by owner.
XXX: pullup to 6.
 
 wasn't the problem that mode 0400 files were rejected?  ie, read-only
 not writable files.
 
 Yes, it was allowing 0600 and not allowing 0400. Now it allows both.

The commit message suggested something differently: Allow file being writable 
by owner.

I haven't checked the source but when does this happen and what is the
result of this change now?
Can you now change a read only file in /var/cron/tabs with crontab -e?

Bernd



libterminfo build does not find tic (was: CVS commit: [netbsd-6] src)

2012-07-30 Thread Bernd Ernesti
Hi,

On Sat, Jun 23, 2012 at 10:55:00PM +, Jeff Rizzo wrote:
 Module Name:  src
 Committed By: riz
 Date: Sat Jun 23 22:54:59 UTC 2012
 
 Modified Files:
[..]
   src/lib/libterminfo [netbsd-6]: Makefile.hash compile.c term.c
   term_private.h terminfo.5.in
[..]
 Added Files:
   src/tools/compat [netbsd-6]: cdbr.h cdbw.h
 
 Log Message:
 Pull up following revision(s) (requested by joerg in ticket #328):
[..]
   lib/libterminfo/Makefile.hash: revision 1.5
[..]

I asume this is broken in -current too, but I just updated my netbsd-6
source and this pullup broke a build if you try to only build
src/lib/libterminfo:

 dependall === libterminfo
 Generating terminfo hash
 .
 Generating termcap hash
 .
 ..
 make: don't know how to make tic. Stop

I'm not sure how to change the following line in Makefile.hash so it
builds:
compiled_terms.c: ${TOOL_TIC}

$ grep -r TOOL_TIC /usr/share/mk/
 /usr/share/mk/bsd.own.mk:TOOL_TIC= ${TOOLDIR}/bin/${_TOOL_PREFIX}tic
 /usr/share/mk/bsd.own.mk:TOOL_TIC= tic

There is another issue that 'NETBSDSRCDIR=${NETBSDSRCDIR:Q}' has to be
set in Makefile.hash for SCRIPT_ENV too, otherwise you will get problems
if you don't have your source code in /usr/src.

Bernd



Re: CVS commit: src/sys/arch/i386/conf

2012-04-09 Thread Bernd Ernesti
On Sat, Apr 07, 2012 at 01:40:42AM -0400, Christos Zoulas wrote:
 Module Name:  src
 Committed By: christos
 Date: Sat Apr  7 05:40:42 UTC 2012
 
 Modified Files:
   src/sys/arch/i386/conf: GENERIC
 
 Log Message:
 add apple autodiscovery

That needs to be added to the ALL config too.

Bernd



Re: CVS commit: [netbsd-6] src/etc/root

2012-03-18 Thread Bernd Ernesti
Hi Havard,

see the issue at the end.

On Sun, Mar 18, 2012 at 01:20:02AM +0400, Aleksej Saushev wrote:
 Manuel Bouyer bou...@netbsd.org writes:
 
  Module Name:src
  Committed By:   bouyer
  Date:   Sat Mar 17 17:22:54 UTC 2012
 
  Modified Files:
  src/etc/root [netbsd-6]: dot.cshrc dot.profile
 
  Log Message:
  Pull up following revision(s) (requested by he in ticket #109):
  etc/root/dot.cshrc: revision 1.23
  etc/root/dot.cshrc: revision 1.24
  etc/root/dot.profile: revision 1.26
  Can't use Bourne shell syntax here... (Even in comments, for PKG_PATH.)
  Point first to 6.0 packages, then to packages for 5.1 or 5.0.
  The latter have reduced usefullness in -current or netbsd-6 until
  we have a compat50 package.
 
 
  To generate a diff of this commit:
  cvs rdiff -u -r1.22 -r1.22.4.1 src/etc/root/dot.cshrc
  cvs rdiff -u -r1.25 -r1.25.4.1 src/etc/root/dot.profile
 
  Please note that diffs are not public domain; they are subject to the
  copyright notices on the relevant files.
 
 
  Modified files:
 ...
  Index: src/etc/root/dot.profile
  diff -u src/etc/root/dot.profile:1.25 src/etc/root/dot.profile:1.25.4.1
  --- src/etc/root/dot.profile:1.25   Tue Jun 21 05:31:29 2011
  +++ src/etc/root/dot.profileSat Mar 17 17:22:54 2012
  @@ -1,11 +1,12 @@
  -#  $NetBSD: dot.profile,v 1.25 2011/06/21 05:31:29 erh Exp $
  +#  $NetBSD: dot.profile,v 1.25.4.1 2012/03/17 17:22:54 bouyer Exp $
   
   export PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin
   export 
  PATH=${PATH}:/usr/X11R7/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
   
   # Uncomment the following line(s) to install binary packages
   # from ftp.NetBSD.org via pkg_add.  (See also pkg_install.conf)
  -#export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname 
  -m)/5.1/All
  +#export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname 
  -m)/6.0/All
  +#export 
  PKG_PATH=${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname
   -m)/5.1/All
   #export 
  PKG_PATH=${PKG_PATH};ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname
   -m)/5.0/All
   
   export BLOCKSIZE=1k
 
 Why were quotes dropped?

You are asking the wrong person. That change come from the HEAD commit
by Havard, this is just the pullup.

Bernd



Re: CVS commit: src/external/mit/lua/dist/src

2012-03-15 Thread Bernd Ernesti
On Thu, Mar 15, 2012 at 01:25:06AM +, Alexander Nasonov wrote:
 Alexander Nasonov wrote:
  Log Message:
  Don't overwrite Roberto's external $Id.
 
 This made me realise that all external $Id were changed to Id
 by the previous import and that there is a script that does this
 replacement (external/mit/lua/dist/lua2netbsd). I will use it next
 time.
 
 Hopefully, everything else is fine, this was my first import over
 existing code.

It would be great to have a short summary in the cvs import log
what changed in the new version instead of just 'Import Lua 5.1.5'.
That doesn't have to be the full changelog.

Bernd



Re: CVS commit: src/sys/kern

2011-12-04 Thread Bernd Ernesti
On Thu, Nov 24, 2011 at 02:55:22PM -0500, Christos Zoulas wrote:
 Module Name:  src
 Committed By: christos
 Date: Thu Nov 24 19:55:22 UTC 2011
 
 Modified Files:
   src/sys/kern: kern_exec.c
 
 Log Message:
 fix incomplete statement.
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.331 -r1.332 src/sys/kern/kern_exec.c

Hmm, why did you change two '#ifdef notyet' to '#ifndef notyet'?

See the mail from NONAKA Kimihiro on current-users where he now get
'Cannot get path for pid' messages due too this change.

Bernd



Re: CVS commit: src/lib/libutil

2011-11-02 Thread Bernd Ernesti
Hi,

On Thu, Oct 20, 2011 at 09:37:59PM -0400, Christos Zoulas wrote:
 Module Name:  src
 Committed By: christos
 Date: Fri Oct 21 01:37:59 UTC 2011
 
 Modified Files:
   src/lib/libutil: Makefile
 
 Log Message:
 Don't use = to assing SRCS, but += so that we can remove snprintb.c,
 which was added elsewhere.

I find that a little dangerous.

Now SRCS could be defined in the environment which may cause
different behaviour like including different not wanted source
file, build errors ...

I do not know if it would work to move the include of the common
Makefile.inc at the end, propably not. And yes the common Makefile.inc
already used SRCS+= before. That alone should require to move
that include after a normal SRCS=

Bernd



Re: CVS commit: src/distrib/utils/sysinst

2011-10-30 Thread Bernd Ernesti
On Sun, Oct 30, 2011 at 12:30:57AM +, Jonathan A. Kollasch wrote:
 Module Name:  src
 Committed By: jakllsch
 Date: Sun Oct 30 00:30:57 UTC 2011
 
 Modified Files:
   src/distrib/utils/sysinst: menus.mi
 
 Log Message:
 As both of the ns-wide.wide.ad.jp and light.imasy.or.jp IPv6 resolvers
 now refuse my queries, replace them with google-public-dns-a.google.com
 and google-public-dns-b.google.com.

IMHO they should be replaced with ?.root-servers.net entries and not a with
an address of a private company.

Bernd



Re: CVS commit: src/usr.bin/unzip

2011-08-17 Thread Bernd Ernesti
On Thu, Aug 18, 2011 at 01:49:30AM +, Christos Zoulas wrote:
 In article 20110817212950.gc16...@britannica.bec.de,
 Joerg Sonnenberger  jo...@britannica.bec.de wrote:
 Did you test this change for breaking compatibility with 3rd party
 scripts that parse the output of unzip?
 
 
 I thought about that, but where does one find such scripts? Providing
 a flag to make backwards compatible output is another way of doing it,
 but is it worth it?

No, just back the change out because the output should look the same as
the 'normal' unzip does.
The change is nice but should not be done as long as the official unzip
still use the old output.

Bernd



Re: CVS commit: src/sys/dev

2011-08-01 Thread Bernd Ernesti
On Mon, Aug 01, 2011 at 11:20:28AM +, Matthias Drochner wrote:
 Module Name:  src
 Committed By: drochner
 Date: Mon Aug  1 11:20:28 UTC 2011
 
 Modified Files:
   src/sys/dev/cardbus: adv_cardbus.c ahc_cardbus.c cardbus.c cardbusreg.h
   cardbusvar.h com_cardbus.c ehci_cardbus.c fwohci_cardbus.c
   if_ath_cardbus.c if_atw_cardbus.c if_ex_cardbus.c if_fxp_cardbus.c
   if_ral_cardbus.c if_re_cardbus.c if_rtk_cardbus.c if_rtw_cardbus.c
   if_tlp_cardbus.c njata_cardbus.c njs_cardbus.c ohci_cardbus.c
   rbus_ppb.c sdhc_cardbus.c siisata_cardbus.c uhci_cardbus.c
   src/sys/dev/pci: pccbb.c
 
 Log Message:
 remove some bloat:

[..]

 -cardbus always uses 3.3V -- no need for a variable to keep track
  of the voltage

What about a pccard which can be used with a cardbus slot and so you
you get 5V cards too?

Bernd



Re: CVS commit: src

2011-07-04 Thread Bernd Ernesti
On Mon, Jul 04, 2011 at 08:21:05AM +, Emmanuel Dreyfus wrote:
 On Mon, Jul 04, 2011 at 11:09:56AM +0300, Jukka Ruohonen wrote:
  It does not seem right to import something to libc without documentation...
 
 FreeBSD did not document it, so I attempted to do it in xdr.3 (just committed)

Hmm, would that require a new MLINKS line for the new function in the Makefile?
And the other set list changes too if it is should be done.

Bernd



Re: CVS commit: src/sys/arch/amd64/conf

2011-02-19 Thread Bernd Ernesti
On Wed, Feb 16, 2011 at 03:16:58AM +, Jean-Yves Migeon wrote:
 Module Name:  src
 Committed By: jym
 Date: Wed Feb 16 03:16:58 UTC 2011
 
 Modified Files:
   src/sys/arch/amd64/conf: GENERIC INSTALL
 
 Log Message:
 Build certain file-systems and options(7) as module(7). 32 and 64 bits
 support are still builtin, as well as FFS, NFS, TMPFS, and most COMPAT
 code. Saves approx. 750kiB.
 
 Reflect this in INSTALL kernel, where we have to support more file systems
 statically.
 
 See http://mail-index.netbsd.org/port-amd64/2011/02/13/msg001318.html

Are you going to add a MONOLITHIC kernel to match i386?

Bernd



Re: /var/lock

2011-01-03 Thread Bernd Ernesti
On Mon, Jan 03, 2011 at 02:46:31PM +0100, Adam Hamsik wrote:
 
 On Jan,Monday 3 2011, at 1:21 PM, Alan Barrett wrote:
 
  On Mon, 03 Jan 2011, rud...@eq.cz wrote:
  Adam Hamsik wrote:
  Modified Files:
src/distrib/sets/lists/base: mi
src/etc/mtree: NetBSD.dist.base
  
  Log Message:
  Add /var/lock directory to base set it's used by LVM and other tools.
  Change group owner to operator to enable LVM locking for him.
  
  Why is /var/run not the right place for your needs?
  
  Also, where was this discussed?  If it was discussed, please
  update hier(7) according to the outcome of the discussion.
 
 It wasn't discussed, but there were couple of changes to dm driver not done 
 by me which weren't discussed either. Main reason for them was to allow 
 operator 
 to see lvm devices status this was last change needed. I can change it to 
 /var/run would be 
 /var/run/locks/ better place for it ? 

IMHO /var/run/lvm would be better since it is used by lvm.

Bernd



Re: CVS commit: src/sys/modules

2010-12-27 Thread Bernd Ernesti
On Mon, Dec 27, 2010 at 03:43:42PM +, Jared D. McNeill wrote:
 Module Name:  src
 Committed By: jmcneill
 Date: Mon Dec 27 15:43:41 UTC 2010
 
 Added Files:
   src/sys/modules/au8522: Makefile
   src/sys/modules/auvitek: Makefile auvitek.ioconf
   src/sys/modules/xc5k: Makefile
 
 Log Message:
 xc5k, au8522, and auvitek modules

Can you also add the new drivers to the x86 kernel configs amd64/GENERIC,
i386/ALL and i386/MONOLITHIC so they can be used?
Are they usable on other ports which have usb too?

Thanks,
Bernd



Re: CVS commit: src/external/bsd/openldap/dist

2010-12-12 Thread Bernd Ernesti
On Sun, Dec 12, 2010 at 03:25:26PM +, Adam Ciarcinski wrote:
 Module Name:  src
 Committed By: adam
 Date: Sun Dec 12 15:25:26 UTC 2010
 
 Update of /cvsroot/src/external/bsd/openldap/dist
 In directory ivanova.netbsd.org:/tmp/cvs-serv1493
 
 Log Message:
 Imported openldap-2.4.23
 
 Status:
 
 Vendor Tag:   OPENLDAP
 Release Tags: OPENLDAP_2_4_23
   
 U src/external/bsd/openldap/dist/aclocal.m4
[..]

Please include a changelog in your commit message even if it is a small
one when you import an updated version.

Bernd



Re: CVS commit: src/bin/dd

2010-11-23 Thread Bernd Ernesti
On Tue, Nov 23, 2010 at 02:42:04PM +0200, Antti Kantee wrote:
 On Tue Nov 23 2010 at 12:28:48 +, Matthias Scheler wrote:
  On Mon, Nov 22, 2010 at 09:04:28PM +, Antti Kantee wrote:
   Module Name:  src
   Committed By: pooka
   Date: Mon Nov 22 21:04:28 UTC 2010
   
   Modified Files:
 src/bin/dd: Makefile args.c dd.c dd.h extern.h position.c
   
   Log Message:
   Add two new operands: rif and rof.  They operate exactly like
   if and of with the exception that the communicate with a rump
   kernel instead of the host kernel.
  
  This makes dd unusable if only / but not /usr is mounted because
  it now depends on /usr/lib/librumpclient.so.0.
  
  Utilities in /bin and /sbin are supposed to work without
  /usr mounted.
 
 Good catch.  Fixed.  Sorry 'bout that oversight.

That doesn't resolve the concerns why this non standard options were added
to dd.

Can we go back to the previous versions for the moment and discuss it and
then do further changes?

Bernd



Re: CVS commit: src/sys/arch/powerpc/oea

2010-11-14 Thread Bernd Ernesti
On Mon, Nov 15, 2010 at 11:24:21AM +0900, Masao Uebayashi wrote:
 On Sun, Nov 14, 2010 at 05:52:51AM +, David Holland wrote:
  On Sun, Nov 14, 2010 at 03:32:44AM +, Masao Uebayashi wrote:
XXX What is the conclusion about direct vs. indirect #include from 
  headers?
  
  Every header file should include the things it requires to compile.
  Therefore, there should in principle be no cases where a header file
  (or source file) needs to #include something it doesn't itself use.
 
 This clarifies my long-unanswered question, thanks!
 
 I've (re)built about 300 kernels in the last days.  I've found:
 
 - sys/sysctl.h's struct kinfo_proc should be moved into sys/proc.h
   (I've done this locally).  Otherwise all sysctl node providers
   includes sys/proc.h and uvm/uvm_extern.h.
   (This is where I started...)
 
 - sys/syscallargs.h should be split into pieces, otherwise all its
   users have to know unrelated types (sys/mount.h, sys/cpu.h).
 
 - sys/proc.h's tsleep(), wakeup(), and friends should be moved into
   some common header, because it's widely used API.  sys/proc.h will
   be used only for struct proc related things.

What are the issues here that we need to fix this right now?

Can you please post changes and/or start a thread about all this
before you do them on tech-kern?

Bernd



Re: CVS commit: src/external/historical/nawk/dist

2010-10-17 Thread Bernd Ernesti
On Sun, Oct 17, 2010 at 06:12:23PM -0400, Christos Zoulas wrote:
 Module Name:  src
 Committed By: christos
 Date: Sun Oct 17 22:12:23 UTC 2010
 
 Modified Files:
   src/external/historical/nawk/dist: main.c
 
 Log Message:
 PR/43981: Aleksey Cheusov: awk too small limit on number -f options
 remove the limit
 should we pullup to 5.x?

So there is no real upper limit now?
I don't like that. Even 200 seems to be a very high number.

Bernd



Re: CVS commit: src/sys/kern

2010-06-10 Thread Bernd Ernesti
On Thu, Jun 10, 2010 at 07:06:26PM +, Antti Kantee wrote:
 Module Name:  src
 Committed By: pooka
 Date: Thu Jun 10 19:06:26 UTC 2010
 
 Modified Files:
   src/sys/kern: kern_proc.c
 
 Log Message:
 smoke the smoke, hack the hack, *beep* the *beep*, _KERNEL_OPT the _KERNEL_POT

Sorry but I do not count that as a valid commit message which describes
the change.

Would it be possible to use something which really describes what you
did?

Bernd



Re: CVS commit: src/sys/dev

2010-03-07 Thread Bernd Ernesti
On Sun, Mar 07, 2010 at 09:05:19AM +, SAITOH Masanobu wrote:
 Module Name:  src
 Committed By: msaitoh
 Date: Sun Mar  7 09:05:19 UTC 2010
 
 Modified Files:
   src/sys/dev/mii: igphyreg.h
   src/sys/dev/pci: if_wm.c if_wmreg.h if_wmvar.h
 
 Log Message:
 - Add code for WOL, ASF, IPMI and Intel AMT.
 - wm_enable_wakeup() is disabled by default. If you want to use WOL with
   the Magic Packet, define WM_WOL.

What do you mean with define WM_WOL?
- a kernel options
- or change somone header files?

Why is it disabled by default? Is it not stable?

Bernd



Re: CVS commit: [netbsd-5] src/sys/dev/ic

2010-03-06 Thread Bernd Ernesti
On Sat, Mar 06, 2010 at 10:10:46PM +, Stephen Borrill wrote:
 Module Name:  src
 Committed By: sborrill
 Date: Sat Mar  6 22:10:46 UTC 2010
 
 Modified Files:
   src/sys/dev/ic [netbsd-5]: ahcisata_core.c
 
 Log Message:
 Pull up the following revisions(s) (requested by bouyer in ticket #1317):
   sys/dev/ic/ahcisata_core.c: revision 1.23
 
 Move ahci_channel_start() after BSY has cleared (do not touch SError while
 BSY is asserted). Fixes random behaviour of Intel ESB2 controller with some
 models of Hitachi drives (serial console corruption/misfunction, misbehavior
 of USB controllers, crazy interrupts crashing the Xen hypervisor, etc.).

That was maybe not such a good idea to pull it up:
http://mail-index.netbsd.org/current-users/2010/03/01/msg012774.html
http://mail-index.netbsd.org/current-users/2010/03/04/msg012810.html

Bernd



tn3270 removal (was: CVS commit: src)

2010-01-16 Thread Bernd Ernesti
On Sat, Jan 16, 2010 at 03:34:26PM +, Roy Marples wrote:
 Module Name:  src
 Committed By: roy
 Date: Sat Jan 16 15:34:26 UTC 2010
[..]

 Log Message:
 Remove tn3270 from base system.
 If anyone really needs it then it can be put into pkgsrc.
 Importing c3270 into pkgsrc is probably a better option though.

Where was this discussed before?

Bernd



CVS commit: xsrc/external/mit/libFS/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:57:23 UTC 2010

Modified Files:
xsrc/external/mit/libFS/include: config.h

Log Message:
Regenerate to match current source
* VERSION updated to 1.0.2
* Commented entry added (HAVE_LIBWS2_32)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libFS/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/libXfont/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:58:24 UTC 2010

Modified Files:
xsrc/external/mit/libXfont/include: config.h

Log Message:
Regenerate to match current source
* PACKAGE_STRING, PACKAGE_VERSION, PACKAGE_VERSION_PATCHLEVEL and VERSION
  updated for 1.4.1
* Commented entry added (HAVE_LIBWS2_32)
* LT_OBJDIR is now gone


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libXfont/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/pixman/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:58:32 UTC 2010

Modified Files:
xsrc/external/mit/pixman/include: config.h

Log Message:
Regenerate to match current source
* enable HAVE_POSIX_MEMALIGN


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 xsrc/external/mit/pixman/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-ati/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:58:42 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-ati/include: config.h

Log Message:
Regenerate to match current source
* HAVE_FREE_SHADOW, HAVE_PCI_DEVICE_ENABLE, HAVE_XF86CRTCCLIPVIDEOHELPER and
  HAVE_XF86MODEBANDWIDTH are now enabled. Already changed for netbsd-5 but
  not on HEAD
* Commented entry added (HAVE_XEXTPROTO_71)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-video-ati/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-glint/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:58:55 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-glint/include: config.h

Log Message:
Regenerate to match current source
* Commented entry added (HAVE_XEXTPROTO_71)
* LT_OBJDIR is now gone


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-video-glint/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-radeonhd/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:59:05 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-radeonhd/include: config.h

Log Message:
Regenerate to match current source
* HAVE_FREE_SHADOW, HAVE_PCI_DEVICE_ENABLE and XF86CRTCFUNCS_HAS_SETMODEMAJOR
  are now enabled
* Commented entry added (HAVE_XEXTPROTO_71)


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
xsrc/external/mit/xf86-video-radeonhd/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-siliconmotion/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:59:15 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-siliconmotion/include: config.h

Log Message:
Regenerate to match current source
* HAVE_XMODES is now enabled
* Commented entry added (HAVE_XEXTPROTO_71)
* LT_OBJDIR is now gone


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xf86-video-siliconmotion/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-sis/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:59:27 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-sis/include: config.h

Log Message:
Regenerate to match current source
* Commented entry added (HAVE_XEXTPROTO_71)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-video-sis/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xf86-video-tseng/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:59:37 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-tseng/include: config.h

Log Message:
Regenerate to match current source
* LT_OBJDIR is now gone


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-video-tseng/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/xmag/include

2010-01-10 Thread Bernd Ernesti
Module Name:xsrc
Committed By:   veego
Date:   Sun Jan 10 09:59:55 UTC 2010

Modified Files:
xsrc/external/mit/xmag/include: config.h

Log Message:
Regenerate to match current source
* PACKAGE_STRING, PACKAGE_VERSION, PACKAGE_VERSION_PATCHLEVEL and VERSION
  updated for 1.0.3
* Add several defines for headers


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 xsrc/external/mit/xmag/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Re: CVS commit: src/usr.bin/make

2009-11-22 Thread Bernd Ernesti
On Thu, Nov 19, 2009 at 12:30:25AM +, Simon J. Gerraty wrote:
 Module Name:  src
 Committed By: sjg
 Date: Thu Nov 19 00:30:25 UTC 2009
 
 Modified Files:
   src/usr.bin/make: make.1 nonints.h parse.c var.c
   src/usr.bin/make/unit-tests: Makefile test.exp
 Added Files:
   src/usr.bin/make/unit-tests: unexport unexport-env
 
 Log Message:
 PR: make.unexport
 Reviewed by:
 

Hmm, this is a little unusual commit message.

Bernd



Re: CVS commit: src/sys/sys

2009-09-02 Thread Bernd Ernesti
On Wed, Sep 02, 2009 at 03:45:10PM +, Thor Lancelot Simon wrote:
 Module Name:  src
 Committed By: tls
 Date: Wed Sep  2 15:45:10 UTC 2009
 
 Modified Files:
   src/sys/sys: param.h
 
 Log Message:
 Bump __NetBSD_Version__ for previous, per ad@ -- welcome to 5.99.16.

For which previous?
There is no way to tell it from cvs log.

Bernd



Re: CVS commit: src/sys/netinet6

2009-07-25 Thread Bernd Ernesti
On Sat, Jul 25, 2009 at 11:12:09PM +, Tonnerre Lombard wrote:
 Module Name:  src
 Committed By: tonnerre
 Date: Sat Jul 25 23:12:09 UTC 2009
 
 Modified Files:
   src/sys/netinet6: nd6.c nd6_rtr.c
 
 Log Message:
 Instead of using the net.inet6.ip6.accept_rtadv sysctl for all devices,
 make net.inet6.ip6.accept_rtadv the default for individual per-device
 settings so people can use the ndp(8) utility to set per-device whether
 or not to accept route advertisements.
 
 rtadvd changes to follow.
 
 (Debated on tech-net@ before but almost two weeks passed by without any
 comment on the patch.)

There was one from David Young:
 Message-ID: 20090713160131.gg...@ojctech.com
 Date: Mon, 13 Jul 2009 11:01:31 -0500

Bernd



Re: CVS commit: src

2009-05-24 Thread Bernd Ernesti
On Sun, May 24, 2009 at 09:41:44PM +, Andrew Doran wrote:
 Module Name:  src
 Committed By: ad
 Date: Sun May 24 21:41:44 UTC 2009
 
 Modified Files:
   src/dist/ipf/ipsend: sock.c
   src/usr.bin/fstat: fstat.c
 
 Log Message:
 More changes to improve kern_descrip.c.

Hmm, is the __NetBSD__Version__ check correct in src/dist/ipf/ipsend/sock.c ?

It looks revered. You added some new code, but the check enables
the old code for -current.

IMHO the
 __NetBSD__Version__ = 599001200
should be changed to
 __NetBSD__Version__  599001200

Bernd