configure.in: Add -lXext to mips_extra_libs
authorJillian Ye <jillian@cygnus>
Tue, 23 Jun 1998 17:59:31 +0000 (17:59 +0000)
committerJillian Ye <jillian@cygnus>
Tue, 23 Jun 1998 17:59:31 +0000 (17:59 +0000)
gdb/ChangeLog
gdb/configure
gdb/configure.in
sim/mips/configure.in

index 6ee7386da220cf1fe8db71821dd6ee98a309045c..6be91502c3e6c4eb30572a71160c71ce765aab26 100644 (file)
@@ -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.
index 89f4331e134ee457f9685b3a5405ba103c1e0f8e..d3212ee2b37d0e22f3b2fe9ec2f140f29a274a21 100755 (executable)
@@ -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 ;;
index f17e481191496d7782da10bcd6af09dcef5e7c8d..b1ca63d12d5ae16a3939e29bf997fb85d66a0084 100644 (file)
@@ -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 ;;
index 702a7e633398a8b4a72947d5501b90b43a58bdd0..975832602f561a3779034c5530bb3f3cb5001bf9 100644 (file)
@@ -261,7 +261,7 @@ AC_ARG_WITH(sim-gpu2,
 [if test -d "${withval}"
 then
   SIM_SUBTARGET="${SIM_SUBTARGET} -DSKY_GPU2 -I${withval}/include"
-  mips_extra_libs="-L${withval}/lib -lgpu2 -L${x_libraries} -lX11"
+  mips_extra_libs="-L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext"
 else
   AC_MSG_ERROR("Directory ${withval} does not exist.");
 fi])dnl