Change SYSV to USG to match current usage in source. Add USGr4 to list
authorFred Fish <fnf@specifix.com>
Tue, 19 Nov 1991 18:54:38 +0000 (18:54 +0000)
committerFred Fish <fnf@specifix.com>
Tue, 19 Nov 1991 18:54:38 +0000 (18:54 +0000)
of defines to check for to use <dirent.h> style directory access.

readline/ChangeLog
readline/Makefile.in
readline/readline.c

index 56cf39ad512c476e53c42478500c23953016361d..25f6a190f154d66786d6cc134dec51269f126b53 100644 (file)
@@ -1,3 +1,13 @@
+Tue Nov 19 10:49:17 1991  Fred Fish  (fnf at cygnus.com)
+
+       * Makefile.in, config/hm-sysv, config/hm-sco:  Change SYSV to
+       USG to match current usage.
+
+       * readline.c:  Add USGr4 to list of defined things to check for
+       to use <dirent.h> style directory access.
+
+       * config/hm-svr4:  New file for System V Release 4 (USGr4).
+
 Mon Nov 18 23:59:52 1991  Stu Grossman  (grossman at cygnus.com)
 
        * readline.c (filename_completion_function):  use struct dirent
index 2bf3b209bb47ad13141642604bd2ad48a989bb20..a3e16d781031016607126a9021b8354c68cb10a9 100644 (file)
@@ -39,7 +39,7 @@ READLINE_DEFINES = $(TYPES) -DVI_MODE
 MINUS_G=-g
 DEBUG_FLAGS = $(MINUS_G)
 LDFLAGS = $(DEBUG_FLAGS) 
-CFLAGS = $(DEBUG_FLAGS) $(SYSV) -I.
+CFLAGS = $(DEBUG_FLAGS) $(USG) -I.
 
 # A good alternative is gcc -traditional.
 #CC = gcc -traditional
index f4ae40e586269ceaeb5c7b94e37c3e39ef214787..817ef97fad0969ade746b9cf5dd6309f8c1d6944 100644 (file)
@@ -119,7 +119,7 @@ struct passwd *getpwuid (), *getpwent ();
 
 /* #define HACK_TERMCAP_MOTION */
 
-#if defined (_POSIX_VERSION) || defined (USGr3)
+#if defined (_POSIX_VERSION) || defined (USGr3) || defined (USGr4)
 #  include <dirent.h>
 #  define direct dirent
 #  if defined (_POSIX_VERSION)
This page took 0.030186 seconds and 4 git commands to generate.