diff options
author | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:15:19 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:15:19 +0000 |
commit | 13b464b2cf346b2c8b249b1c47bf34e23ad10d55 (patch) | |
tree | d674944d6b71b6ea89a5018e0311baed50251027 | |
parent | 5385e525fe7690f4a2aab6daa5a45b554a9adee0 (diff) | |
download | gdb-13b464b2cf346b2c8b249b1c47bf34e23ad10d55.zip gdb-13b464b2cf346b2c8b249b1c47bf34e23ad10d55.tar.gz gdb-13b464b2cf346b2c8b249b1c47bf34e23ad10d55.tar.bz2 |
* config/sparc/sun4sol2.mh (XM_CLIBS): add -lsocket which is
required target ports which use sockets (like a29k-udi).
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/config/sparc/sun4sol2.mh | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1fec572..9957182 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ Fri Apr 30 16:50:38 1993 K. Richard Pixley (rich@rtl.cygnus.com) + * config/sparc/sun4sol2.mh (XM_CLIBS): add -lsocket which is + required target ports which use sockets (like a29k-udi). + * remove-udi.c (udi_wait): ifdef around SIGLOST usage. Eg, Solaris doesn't have SIGLOST so use SIGURG as a backup. diff --git a/gdb/config/sparc/sun4sol2.mh b/gdb/config/sparc/sun4sol2.mh index 7e2cb7d..fdb8ada 100644 --- a/gdb/config/sparc/sun4sol2.mh +++ b/gdb/config/sparc/sun4sol2.mh @@ -1,7 +1,7 @@ # Host: Sun 4 or Sparcstation, running Solaris 2 XDEPFILES= XM_FILE= xm-sun4sol2.h -XM_CLIBS= -lnsl +XM_CLIBS= -lsocket -lnsl NAT_FILE= nm-sysv4.h NATDEPFILES= corelow.o core-svr4.o exec.o solib.o procfs.o fork-child.o SYSV_DEFINE=-DSYSV |