From owner-freebsd-ports Thu May 18 01:53:58 1995 Return-Path: ports-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id BAA00807 for ports-outgoing; Thu, 18 May 1995 01:53:58 -0700 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id BAA00750 ; Thu, 18 May 1995 01:53:15 -0700 Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.12/jtpda-5.0) with ESMTP id KAA20411 ; Thu, 18 May 1995 10:53:10 +0200 Received: from (roberto@localhost) by blaise.ibp.fr (8.6.12/jtpda-5.0) id KAA18765 ; Thu, 18 May 1995 10:53:09 +0200 From: roberto@blaise.ibp.fr (Ollivier Robert) Message-Id: <199505180853.KAA18765@blaise.ibp.fr> Subject: Re: tcsh 6.06 To: hsu@freefall.cdrom.com (Jeffrey Hsu) Date: Thu, 18 May 1995 10:53:09 +0200 (MET DST) Cc: ports@freefall.cdrom.com In-Reply-To: <199505172050.NAA14132@freefall.cdrom.com> from "Jeffrey Hsu" at May 17, 95 01:50:45 pm X-Operating-System: FreeBSD BUILT-19950501 ctm#617 X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 1916 Sender: ports-owner@FreeBSD.org Precedence: bulk > *** ./sh.exp.c.0 Sat May 13 13:49:16 1995 > --- ./sh.exp.c Tue May 16 01:11:51 1995 > *************** > *** 155,161 **** > * and they define _SC_NGROUPS_MAX without having sysconf > */ > # undef _SC_NGROUPS_MAX > ! # ifdef __NetBSD__ > # define GID_T gid_t > # else > # define GID_T int > --- 155,161 ---- > * and they define _SC_NGROUPS_MAX without having sysconf > */ > # undef _SC_NGROUPS_MAX > ! # if defined(__NetBSD__) || __FreeBSD__ == 2 > # define GID_T gid_t The GUIDELINES way is beter : #if (defined(BSD) && (BSD >= 199306)) as it will catch both NetBSD and FreeBSD with the same stone. > *** ./config_f.h.0 Sat May 13 13:49:12 1995 > --- ./config_f.h Tue May 16 01:28:12 1995 > *************** > *** 75,81 **** > /* > * VIDEFAULT Make the VI mode editor the default > */ > ! #undef VIDEFAULT > > /* > * KAI use "bye" command and rename "log" to "watchlog" > --- 75,81 ---- > /* > * VIDEFAULT Make the VI mode editor the default > */ > ! #define VIDEFAULT I can't agree :-) > /* > * DOTLAST put "." last in the default path, for security reasons > */ > ! #undef DOTLAST I don't agree either as it is useful for Joe User. Note that it is not done for root even with this defined. > --- 104,110 ---- > * on the name of the tty, and environment. > * Does not make sense in the modern window systems! > */ > ! #undef AUTOLOGOUT On most systems (SunOS and FreeBSD at least) it detects that it is running under some window system (probably by looking at DISPLAY) and does not log out the user. > * successful, set $REMOTEHOST to the name or address of the > * host > */ > ! #undef REMOTEHOST Why ?? It is useful... -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@FreeBSD.ORG FreeBSD keltia 2.0-BUILT-19950503 #3: Wed May 3 19:53:04 MET DST 1995