changes for SVR3.2
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 19 Apr 1993 18:34:55 +0000 (18:34 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 19 Apr 1993 18:34:55 +0000 (18:34 +0000)
bfd/ChangeLog
bfd/hosts/hp300.h
bfd/hosts/i386isc.h
bfd/hosts/i386v.h
gdb/ChangeLog
gdb/configure.in
gdb/i387-tdep.c
readline/ChangeLog

index 881a374b4805ff2be89befbdcdf9bfc5e525d3c9..945a303bfbe217c4497967740530a49d3cf6adff 100644 (file)
@@ -1,5 +1,10 @@
 Mon Apr 19 06:09:41 1993  Jim Kingdon  (kingdon@cygnus.com)
 
+       * bfd-in.h: Insert comment about SVR3 compiler warnings.
+
+       * hosts/{hp300,i386isc,i386v}.h: Remove unused #defines of {r,}index
+       (bfd uses strchr and the broken SVR3.2 cpp loses with the defines).
+
        * libbfd.c: bfd_put*: Remove casts to bfd_vma.
 
 Fri Apr 16 17:49:27 1993  Jim Kingdon  (kingdon@cygnus.com)
index 8e5cc63ce0c983a309a6d896d94c9190068edfb5..e9d764a740016f071b150453832ddaa4df004607 100644 (file)
@@ -33,14 +33,6 @@ rename(from, to)
 }
 #endif
 
-/*
- * Might not need these. Leave them out for now.
- *
-#include <string.h>
-#define index(s,c)             strchr(s,c)
-#define rindex(s,c)            strrchr(s,c)
- */
-
 /* EXACT TYPES */
 typedef char int8e_type;
 typedef unsigned char uint8e_type;
index c16cf9c8c0fd76a07c024bf7d754f1bd0d75f328..67d74f740c729ab5ec8b49e4887fee8883ce6e11 100644 (file)
@@ -28,8 +28,6 @@
 #define bzero(s,n)             memset(s,0,n)
 
 #include <string.h>
-#define index(s,c)             strchr(s,c)
-#define rindex(s,c)            strrchr(s,c)
 
 #ifndef DONTDECLARE_MALLOC
 extern PTR  EXFUN(malloc,(unsigned));
index d6b0063127e1d21b0de94b98a82484f22850391c..a971991d02b11ca200625d7a09b5475803c11995 100644 (file)
@@ -26,8 +26,6 @@
 #define bzero(s,n)             memset(s,0,n)
 
 #include <string.h>
-#define index(s,c)             strchr(s,c)
-#define rindex(s,c)            strrchr(s,c)
 
 #ifndef DONTDECLARE_MALLOC
 extern PTR  EXFUN(malloc,(unsigned));
index 4f3801a8271aa62dbacb531711c8ae4b403df6a5..1b5c316cb4878c0e8b56685bf4ec5f41eb3b4d11 100644 (file)
@@ -1,3 +1,11 @@
+Mon Apr 19 11:13:34 1993  Jim Kingdon  (kingdon@cygnus.com)
+
+       * i387-tdep.c: Remove unused #includes.
+
+       * configure.in: Match i[34]86-*-sysv3.2 not i[34]86-*-sysv32.
+
+       * config/i386/nm-i386v.h: Define NO_PTRACE_H.
+
 Sun Apr 18 10:39:35 1993  Jim Kingdon  (kingdon@cygnus.com)
 
        * xcoffread.c: Nuke NO_DEFINE_SYMBOL code.  There is no going back.
index dac8c1fc12c36db3ad0a6024efaf0f9166751054..db75a4f45c7cf1c7d4db7af9faf417e06aafb36f 100644 (file)
@@ -46,7 +46,7 @@ i[34]86-*-sco3.2v4*)  gdb_host=i386sco4 ;;
 i[34]86-*-sco*)                gdb_host=i386sco ;;
 i[34]86-*-solaris*)    gdb_host=i386sol2 ;;
 i[34]86-*-sunos*)      gdb_host=sun386 ;;
-i[34]86-*-sysv32)      gdb_host=i386v32 ;;
+i[34]86-*-sysv3.2)     gdb_host=i386v32 ;;
 i[34]86-*-sysv4*)      gdb_host=i386v4 ;;
 i[34]86-*-sysv*)       gdb_host=i386v ;;
 
index a93052d6d49b37ba5ec2fbe3c275162c3d12eb8a..b0f00880bd14a982526ca9b53de498bdd36d435b 100644 (file)
@@ -24,21 +24,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "gdbcore.h"
 #include "ieee-float.h"
 
-#ifdef USG
-#include <sys/types.h>
-#endif
-
-#include <sys/param.h>
-#include <signal.h>
-#include <sys/user.h>
-#include <sys/ioctl.h>
-#include <fcntl.h>
-
-#include <sys/file.h>
-#include <sys/stat.h>
-
-#include <sys/reg.h>
-
 struct ext_format ext_format_i387 = {
 /* tot sbyte smask expbyte     manbyte */
    10, 9,    0x80, 9,8,                4,0             /* i387 */
index 25dcc02171249d1abfdc0214305d53d1de571159..be85a773176418d7e707d12a81f4b3037fa0d15d 100644 (file)
@@ -1,3 +1,10 @@
+Sat Apr 17 00:40:12 1993  Jim Kingdon  (kingdon at calvin)
+
+       * readline.c, history.c: Don't include sys/types.h; sysdep.h does.
+
+       * config/mh-sysv: Define TIOCGWINSZ_BROKEN.
+       readline.c: Check it.
+
 Wed Mar 24 02:06:15 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
 
        * Makefile.in: add installcheck & dvi targets
@@ -5,7 +12,8 @@ Wed Mar 24 02:06:15 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
 Fri Mar 12 18:36:53 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
 
        * configure.in: recognize *-*-solaris2* instead of *-*-solaris* (a
-       number of people want to call SunOS 4.1.2 "solaris1.0" and get it right)
+       number of people want to call SunOS 4.1.2 "solaris1.0"
+       and get it right)
 
 Tue Mar  2 21:25:36 1993  Fred Fish  (fnf@cygnus.com)
 
This page took 0.032878 seconds and 4 git commands to generate.