remove some configuration parameters
authorMarc Teitelbaum <marc@ucbvax.Berkeley.EDU>
Thu, 16 Jul 1992 00:11:13 +0000 (16:11 -0800)
committerMarc Teitelbaum <marc@ucbvax.Berkeley.EDU>
Thu, 16 Jul 1992 00:11:13 +0000 (16:11 -0800)
SCCS-vsn: bin/sh/shell.h 5.6

usr/src/bin/sh/shell.h

index be8ce2b..d8d809c 100644 (file)
@@ -7,14 +7,13 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)shell.h     5.5 (Berkeley) %G%
+ *     @(#)shell.h     5.6 (Berkeley) %G%
  */
 
 /*
  * The follow should be set to reflect the type of system you have:
  *     JOBS -> 1 if you have Berkeley job control, 0 otherwise.
  *     SYMLINKS -> 1 if your system includes symbolic links, 0 otherwise.
  */
 
 /*
  * The follow should be set to reflect the type of system you have:
  *     JOBS -> 1 if you have Berkeley job control, 0 otherwise.
  *     SYMLINKS -> 1 if your system includes symbolic links, 0 otherwise.
- *     DIRENT -> 1 if your system has the SVR3 directory(3X) routines.
  *     SHORTNAMES -> 1 if your linker cannot handle long names.
  *     define BSD if you are running 4.2 BSD or later.
  *     define SYSV if you are running under System V.
  *     SHORTNAMES -> 1 if your linker cannot handle long names.
  *     define BSD if you are running 4.2 BSD or later.
  *     define SYSV if you are running under System V.
@@ -28,8 +27,9 @@
 
 #define JOBS 1
 #define SYMLINKS 1
 
 #define JOBS 1
 #define SYMLINKS 1
-#define DIRENT 1
-#define BSD
+#ifndef BSD
+#define BSD 1
+#endif
 #define DEBUG 1
 
 #ifdef __STDC__
 #define DEBUG 1
 
 #ifdef __STDC__