From: Fred Fish Date: Tue, 19 Nov 1991 18:54:38 +0000 (+0000) Subject: Change SYSV to USG to match current usage in source. Add USGr4 to list X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=f30114ea7b11f13812ffa026886f4fe9f96e11ab;p=deliverable%2Fbinutils-gdb.git Change SYSV to USG to match current usage in source. Add USGr4 to list of defines to check for to use style directory access. --- diff --git a/readline/ChangeLog b/readline/ChangeLog index 56cf39ad51..25f6a190f1 100644 --- a/readline/ChangeLog +++ b/readline/ChangeLog @@ -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 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 diff --git a/readline/Makefile.in b/readline/Makefile.in index 2bf3b209bb..a3e16d7810 100644 --- a/readline/Makefile.in +++ b/readline/Makefile.in @@ -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 diff --git a/readline/readline.c b/readline/readline.c index f4ae40e586..817ef97fad 100644 --- a/readline/readline.c +++ b/readline/readline.c @@ -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 # define direct dirent # if defined (_POSIX_VERSION)