diff options
author | Jillian Ye <jillian@cygnus> | 1998-06-23 17:59:31 +0000 |
---|---|---|
committer | Jillian Ye <jillian@cygnus> | 1998-06-23 17:59:31 +0000 |
commit | f915cc9125372be523af84c08cd4c2ba0e9c9eed (patch) | |
tree | 5da9ff4dc37d73916f2339b87f1083654578b7bd /gdb | |
parent | 8b727aa4d3571f3007f2fd3e4cd76547faf79d0b (diff) | |
download | gdb-f915cc9125372be523af84c08cd4c2ba0e9c9eed.zip gdb-f915cc9125372be523af84c08cd4c2ba0e9c9eed.tar.gz gdb-f915cc9125372be523af84c08cd4c2ba0e9c9eed.tar.bz2 |
configure.in: Add -lXext to mips_extra_libs
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 18 | ||||
-rwxr-xr-x | gdb/configure | 2 | ||||
-rw-r--r-- | gdb/configure.in | 2 |
3 files changed, 20 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6ee7386..6be9150 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,21 @@ +Tue Jun 23 12:29:53 1998 Jillian Ye <jillian@cygnus.com> + + * configure.in: Add -lXext to mips_extra_libs + +Sun Jun 21 09:31:12 1998 Ron Unrau (runrau@cygnus.com) + + * symtab.c (find_line_pc): assumed that a PC of 0 is illegal. + Changed to pass PC as arg and return 1 if valid (0 otherwise). + symtab.h: change prototype to match + symtab.c (find_line_pc_range): use new interface + breakpoint.c (resolve_sal_pc): ditto + gdbtk.c (gdb_set_bp): ditto + +Wed Jun 17 15:50:00 1998 Ron Unrau (runrau@cygnus.com) + + * parse.c (target_map_name_to_register): Check target specific + aliases *first* so that it can over-ride architectural names + Wed Jun 17 17:13:38 1998 Said Ziouani (saidz@park-street.cygnus.com) * remote-sds.c (sds_start_remote): Fix printf call. diff --git a/gdb/configure b/gdb/configure index 89f4331..d3212ee 100755 --- a/gdb/configure +++ b/gdb/configure @@ -5475,7 +5475,7 @@ if test "${with_sim_gpu2+set}" = set; then mips*-sky-*) if test -d "${withval}" then - LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11" + LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext" else echo "configure: warning: Directory ${withval} does not exist." 1>&2 fi ;; diff --git a/gdb/configure.in b/gdb/configure.in index f17e481..b1ca63d 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -453,7 +453,7 @@ AC_ARG_WITH(sim-gpu2, mips*-sky-*) if test -d "${withval}" then - LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11" + LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11 lXext" else AC_MSG_WARN([Directory ${withval} does not exist.]) fi ;; |