From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23751 invoked by alias); 6 Sep 2004 12:33:34 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23730 invoked from network); 6 Sep 2004 12:33:29 -0000 Received: from unknown (HELO server7.nfra.nl) (192.87.1.57) by sourceware.org with SMTP; 6 Sep 2004 12:33:29 -0000 Received: from juw15.nfra.nl [10.87.8.15] by server7.nfra.nl; Mon, 06 Sep 2004 14:32:32 +0200 Received: from juw15.nfra.nl (localhost [127.0.0.1]) by juw15.nfra.nl (8.12.2+Sun/8.11.1) with ESMTP id i86CWpCu023420 for ; Mon, 6 Sep 2004 14:32:51 +0200 (CEST) Received: (from kettenis@localhost) by juw15.nfra.nl (8.12.2+Sun/8.12.2/Submit) id i86CWpiK023417; Mon, 6 Sep 2004 14:32:51 +0200 (CEST) Date: Mon, 06 Sep 2004 12:33:00 -0000 Message-Id: <200409061232.i86CWpiK023417@juw15.nfra.nl> From: Mark Kettenis To: gdb-patches@sources.redhat.com Subject: [PATCH] Fix unload.exp on Solaris X-SW-Source: 2004-09/txt/msg00100.txt.bz2 Tested on sparc-sun-solaris2.9. Committed as obvious, Mark Index: testsuite/ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/testsuite/ChangeLog,v retrieving revision 1.1025 diff -u -p -r1.1025 ChangeLog --- testsuite/ChangeLog 5 Sep 2004 04:46:24 -0000 1.1025 +++ testsuite/ChangeLog 6 Sep 2004 11:07:14 -0000 @@ -1,3 +1,7 @@ +2004-09-06 Mark Kettenis + + * gdb.base/unload.exp: Link with -dl on *-*-solaris*. + 2004-09-05 Michael Chastain * config/hppro.exp: Removed. Index: testsuite/gdb.base/unload.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/unload.exp,v retrieving revision 1.3 diff -u -p -r1.3 unload.exp --- testsuite/gdb.base/unload.exp 1 Sep 2004 23:26:43 -0000 1.3 +++ testsuite/gdb.base/unload.exp 6 Sep 2004 11:07:14 -0000 @@ -49,6 +49,7 @@ set dl_lib_flag "" switch -glob [istarget] { "hppa*-hp-hpux*" { } "*-*-linux*" { set dl_lib_flag "libs=-ldl" } + "*-*-solaris*" { set dl_lib_flag "libs=-ldl" } default { } }