From owner-cvs-gnu Sun Apr 2 06:12:48 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id GAA03575 for cvs-gnu-outgoing; Sun, 2 Apr 1995 06:12:48 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id GAA03521; Sun, 2 Apr 1995 06:11:15 -0700 Date: Sun, 2 Apr 1995 06:11:15 -0700 From: Bruce Evans Message-Id: <199504021311.GAA03521@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/perl/usub curses.mus Sender: cvs-gnu-owner@freebsd.org Precedence: bulk bde 95/04/02 06:11:14 Modified: gnu/usr.bin/perl/usub curses.mus Log: Fix compiler warnings: don't declare enum types as static. From owner-cvs-gnu Sun Apr 2 09:02:02 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA03030 for cvs-gnu-outgoing; Sun, 2 Apr 1995 09:02:02 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA03014; Sun, 2 Apr 1995 09:00:33 -0700 Date: Sun, 2 Apr 1995 09:00:33 -0700 From: Bill Paul Message-Id: <199504021600.JAA03014@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/yppush Makefile yppush.c Sender: cvs-gnu-owner@freebsd.org Precedence: bulk wpaul 95/04/02 09:00:32 Modified: gnu/usr.bin/yppush Makefile yppush.c Log: Make yppush compile again when obj directory exists. *groan* From owner-cvs-gnu Sun Apr 2 10:02:57 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA04557 for cvs-gnu-outgoing; Sun, 2 Apr 1995 10:02:57 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA04529; Sun, 2 Apr 1995 10:01:33 -0700 Date: Sun, 2 Apr 1995 10:01:33 -0700 From: Bill Paul Message-Id: <199504021701.KAA04529@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/libexec/ypxfr yp_xdr.c Sender: cvs-gnu-owner@freebsd.org Precedence: bulk wpaul 95/04/02 10:01:32 Modified: gnu/libexec/ypxfr yp_xdr.c Log: Removed code from yp_xdr.c module that now lives in libc. (Unfortunately, ypxfr can't easily be reduced down to one file like yppush because it needs to do certain special things (such as binding to a specific machine (the NIS master)) which the yp_*() functions in libc don't allow. From owner-cvs-gnu Sun Apr 2 13:03:22 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA09497 for cvs-gnu-outgoing; Sun, 2 Apr 1995 13:03:22 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA09443; Sun, 2 Apr 1995 13:01:56 -0700 Date: Sun, 2 Apr 1995 13:01:56 -0700 From: Bill Paul Message-Id: <199504022001.NAA09443@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/yppush Makefile yppush.c Sender: cvs-gnu-owner@freebsd.org Precedence: bulk wpaul 95/04/02 13:01:54 Modified: gnu/usr.bin/yppush Makefile yppush.c Log: Add back some stuff to yppush.c that I was a little over-zealous in removing. Also do away with compiling yp_svc.c: yppush doesn't need it. From owner-cvs-gnu Sun Apr 2 13:29:51 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA10323 for cvs-gnu-outgoing; Sun, 2 Apr 1995 13:29:51 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA10276; Sun, 2 Apr 1995 13:28:16 -0700 Date: Sun, 2 Apr 1995 13:28:16 -0700 From: Bill Paul Message-Id: <199504022028.NAA10276@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/yppush Makefile Sender: cvs-gnu-owner@freebsd.org Precedence: bulk wpaul 95/04/02 13:28:13 Modified: gnu/usr.bin/yppush Makefile Log: Take yp_svc.c out of CLEANFILES rule. From owner-cvs-gnu Mon Apr 3 08:04:44 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id IAA10650 for cvs-gnu-outgoing; Mon, 3 Apr 1995 08:04:44 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id IAA10639; Mon, 3 Apr 1995 08:04:31 -0700 Date: Mon, 3 Apr 1995 08:04:31 -0700 From: Nate Williams Message-Id: <199504031504.IAA10639@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/cvs/cvs lock.c Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/03 08:04:30 Modified: gnu/usr.bin/cvs/cvs lock.c Log: The conditional in unlock() stats the master lock file (expensive) before it has determined whether or not removing it is even appropriate. i.e. if cleanup_lckdir is set. The enclosed patch shuffles around the conditional, and it clears cleanup_lckdir in clear_lock(), so the sprintf()/stat() is only performed when it is really needed. This patch is relative to my last one that introduced clear_lock(). Submitted by: "J.T. Conklin" From owner-cvs-gnu Tue Apr 4 20:23:47 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA01170 for cvs-gnu-outgoing; Tue, 4 Apr 1995 20:23:47 -0700 Received: (from wpaul@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA01155; Tue, 4 Apr 1995 20:23:41 -0700 Date: Tue, 4 Apr 1995 20:23:41 -0700 From: Bill Paul Message-Id: <199504050323.UAA01155@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.sbin/ypserv yp_svc.c ypserv.8 Sender: cvs-gnu-owner@freebsd.org Precedence: bulk wpaul 95/04/04 20:23:40 Modified: gnu/usr.sbin/ypserv yp_svc.c ypserv.8 Log: Added a new feature from Peter Eriksson's latest release of ypserv (0.13): register ourselves as an NIS version 1 UDP server to pacify older SunOS 4 ypbinds that seem to insist on having one around. All this does is allow ypserv to respond to DOMAIN_NONACK requests that are periodically transmitted by ypbind: the server will not actually work as an NIS v1 server in any other way. Unlike the mainline code, which implements this as a compile-time option, this feature can be turned on with the newly-added -k flag at runtime. Bunped version number to 0.13. (What the hell.) Updated the man page to reflect this change, also made a couple of small edits to reflect the recent changes in the /etc/rc* setup. From owner-cvs-gnu Thu Apr 6 22:08:32 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA22727 for cvs-gnu-outgoing; Thu, 6 Apr 1995 22:08:32 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA22717 ; Thu, 6 Apr 1995 22:08:30 -0700 Date: Thu, 6 Apr 1995 22:08:30 -0700 From: Nate Williams Message-Id: <199504070508.WAA22717@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/ld lib.c Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/06 22:08:29 Modified: gnu/usr.bin/ld lib.c Log: Back out my change to enforce command line linker order due to underlying bugs which are caused by mixing static/shared libraries with this change in place. The shlib code is not capable of supporting this feature in it's present state and will need significant modifications in order to do so. From owner-cvs-gnu Thu Apr 6 22:13:43 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA22884 for cvs-gnu-outgoing; Thu, 6 Apr 1995 22:13:43 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA22873 ; Thu, 6 Apr 1995 22:13:27 -0700 Date: Thu, 6 Apr 1995 22:13:27 -0700 From: Nate Williams Message-Id: <199504070513.WAA22873@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/gdb/gdb compat_que.c Makefile Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/06 22:13:27 Modified: gnu/usr.bin/gdb/gdb Makefile Added: gnu/usr.bin/gdb/gdb compat_que.c Log: Because -lcompat defines the same symbols as -lgnuregex and the weakness of the linker to enforce linking of modules in command line order it is not possible to link gdb shared with -lcompat. *HACK ALERT* Removed -lcompat from LDADD and bring in the necessary functions out of libcompat as a source module until the linker can be fixed. From owner-cvs-gnu Sat Apr 8 10:50:53 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19525 for cvs-gnu-outgoing; Sat, 8 Apr 1995 10:50:53 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19515 ; Sat, 8 Apr 1995 10:50:51 -0700 Date: Sat, 8 Apr 1995 10:50:51 -0700 From: Nate Williams Message-Id: <199504081750.KAA19515@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/cvs/examples Makefile Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/08 10:50:51 Added: gnu/usr.bin/cvs/examples Makefile Log: Added Makefile for example files. They are now installed in /usr/share/examples/cvs for use by the cvsinit script. From owner-cvs-gnu Sat Apr 8 10:51:44 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19576 for cvs-gnu-outgoing; Sat, 8 Apr 1995 10:51:44 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19566 ; Sat, 8 Apr 1995 10:51:43 -0700 Date: Sat, 8 Apr 1995 10:51:43 -0700 From: Nate Williams Message-Id: <199504081751.KAA19566@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/cvs Makefile Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/08 10:51:42 Modified: gnu/usr.bin/cvs Makefile Log: Added examples to the SUBDIRS. From owner-cvs-gnu Sat Apr 8 11:01:37 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA19760 for cvs-gnu-outgoing; Sat, 8 Apr 1995 11:01:37 -0700 Received: (from nate@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA19746 ; Sat, 8 Apr 1995 11:01:31 -0700 Date: Sat, 8 Apr 1995 11:01:31 -0700 From: Nate Williams Message-Id: <199504081801.LAA19746@freefall.cdrom.com> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/cvs/cvsinit cvsinit.sh Sender: cvs-gnu-owner@freebsd.org Precedence: bulk nate 95/04/08 11:01:31 Modified: gnu/usr.bin/cvs/cvsinit cvsinit.sh Log: Remind users about advanced examples that exist in /usr/share/examples/cvs and fix minor typo where I set '-x' which caused a very verbose cvsinit script.