Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 May 1995 10:53:09 +0200 (MET DST)
From:      roberto@blaise.ibp.fr (Ollivier Robert)
To:        hsu@freefall.cdrom.com (Jeffrey Hsu)
Cc:        ports@freefall.cdrom.com
Subject:   Re: tcsh 6.06
Message-ID:  <199505180853.KAA18765@blaise.ibp.fr>
In-Reply-To: <199505172050.NAA14132@freefall.cdrom.com> from "Jeffrey Hsu" at May 17, 95 01:50:45 pm

next in thread | previous in thread | raw e-mail | index | archive | help
> *** ./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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199505180853.KAA18765>