From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27218 invoked by alias); 26 Apr 2012 04:08:53 -0000 Received: (qmail 27208 invoked by uid 22791); 26 Apr 2012 04:08:52 -0000 X-SWARE-Spam-Status: No, hits=-6.7 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 26 Apr 2012 04:08:37 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q3Q48bWg031844 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Apr 2012 00:08:37 -0400 Received: from spoyarek (vpn-227-215.phx2.redhat.com [10.3.227.215]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q3Q48Z7e007435 for ; Thu, 26 Apr 2012 00:08:36 -0400 Date: Thu, 26 Apr 2012 04:08:00 -0000 From: Siddhesh Poyarekar To: libc-ports@sourceware.org Subject: [PATCH] Move definition of libgcc_s soname to shlib-versions Message-ID: <20120426093925.74d6c2a5@spoyarek> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/Mj4Y.1lOghkZRcRl0=8kNsc" Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-04/txt/msg00163.txt.bz2 --MP_/Mj4Y.1lOghkZRcRl0=8kNsc Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 486 Hi, I just committed the change to move LIBGCC_S_SO soname definition from libgcc_s.h to shlib-versions into the core tree. Attached patch needs to be applied to the ports tree to allow m68k and hppa to build against the new changes. Regards, Siddhesh ChangeLog: 2012-04-26 Siddhesh Poyarekar * sysdeps/hppa/libgcc_s.h: Remove. * sysdeps/hppa/shlib-versions: Add libgcc_s. * sysdeps/m68k/libgcc_s.h: Remove. * sysdeps/m68k/shlib-versions: Add libgcc_s. --MP_/Mj4Y.1lOghkZRcRl0=8kNsc Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-Move-libgcc_s-soname-to-shlib-versions.patch Content-length: 1075 diff --git a/sysdeps/hppa/libgcc_s.h b/sysdeps/hppa/libgcc_s.h deleted file mode 100644 index 8dd1d72..0000000 --- a/sysdeps/hppa/libgcc_s.h +++ /dev/null @@ -1,2 +0,0 @@ -/* Name of libgcc_s library provided by gcc. */ -#define LIBGCC_S_SO "libgcc_s.so.4" diff --git a/sysdeps/hppa/shlib-versions b/sysdeps/hppa/shlib-versions index 5a1a865..6b9225c 100644 --- a/sysdeps/hppa/shlib-versions +++ b/sysdeps/hppa/shlib-versions @@ -5,3 +5,5 @@ hppa.*-.*-.* libc=6 GLIBC_2.2 hppa.*-.*-.* ld=ld.so.1 GLIBC_2.2 hppa-.*-.* libBrokenLocale=1 GLIBC_2.2 + +hppa.*-.*-.* libgcc_s=4 diff --git a/sysdeps/m68k/libgcc_s.h b/sysdeps/m68k/libgcc_s.h deleted file mode 100644 index 8523ad1..0000000 --- a/sysdeps/m68k/libgcc_s.h +++ /dev/null @@ -1,2 +0,0 @@ -/* Name of libgcc_s library provided by gcc, m68k version. */ -#define LIBGCC_S_SO "libgcc_s.so.2" diff --git a/sysdeps/m68k/shlib-versions b/sysdeps/m68k/shlib-versions new file mode 100644 index 0000000..b65b00b --- /dev/null +++ b/sysdeps/m68k/shlib-versions @@ -0,0 +1 @@ +m68k-.*-linux.* libgcc_s=2 -- 1.7.7.6 --MP_/Mj4Y.1lOghkZRcRl0=8kNsc--