From patchwork Wed Jul 20 06:23:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yaakov (Cygwin/X)" X-Patchwork-Id: 105587 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 94AE8B6F74 for ; Wed, 20 Jul 2011 16:23:28 +1000 (EST) Received: (qmail 19087 invoked by alias); 20 Jul 2011 06:23:26 -0000 Received: (qmail 19079 invoked by uid 22791); 20 Jul 2011 06:23:25 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-yx0-f175.google.com (HELO mail-yx0-f175.google.com) (209.85.213.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 20 Jul 2011 06:23:02 +0000 Received: by yxi19 with SMTP id 19so2381690yxi.20 for ; Tue, 19 Jul 2011 23:23:02 -0700 (PDT) Received: by 10.236.79.73 with SMTP id h49mr7187890yhe.125.1311142982092; Tue, 19 Jul 2011 23:23:02 -0700 (PDT) Received: from [127.0.0.1] (S0106000cf16f58b1.wp.shawcable.net [174.5.115.130]) by mx.google.com with ESMTPS id v25sm1860147yhk.22.2011.07.19.23.23.00 (version=SSLv3 cipher=OTHER); Tue, 19 Jul 2011 23:23:01 -0700 (PDT) Subject: [PATCH] cygwin/mingw: update LIBGCJ_SONAME From: "Yaakov (Cygwin/X)" To: gcc-patches@gcc.gnu.org Date: Wed, 20 Jul 2011 01:23:09 -0500 Message-ID: <1311142990.7796.38.camel@YAAKOV04> Mime-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org libgcj's soversion was updated two weeks ago but LIBGCJ_SONAME was not updated accordingly. I have sent a separate patch to java-patches@ to add a comment to libjava/libtool-version to avoid this omission in the future. Patch attached. Yaakov Cygwin Ports 2011-07-20 Yaakov Selkowitz * config/i386/cygwin.h (LIBGCJ_SONAME): Update. * config/i386/mingw32.h (LIBGCJ_SONAME): Update. Index: config/i386/cygwin.h =================================================================== --- config/i386/cygwin.h (revision 176494) +++ config/i386/cygwin.h (working copy) @@ -136,5 +136,5 @@ #define LIBGCC_SONAME "cyggcc_s" LIBGCC_EH_EXTN "-1.dll" /* We should find a way to not have to update this manually. */ -#define LIBGCJ_SONAME "cyggcj" /*LIBGCC_EH_EXTN*/ "-12.dll" +#define LIBGCJ_SONAME "cyggcj" /*LIBGCC_EH_EXTN*/ "-13.dll" Index: config/i386/mingw32.h =================================================================== --- config/i386/mingw32.h (revision 176494) +++ config/i386/mingw32.h (working copy) @@ -233,5 +233,5 @@ #define LIBGCC_SONAME "libgcc_s" LIBGCC_EH_EXTN "-1.dll" /* We should find a way to not have to update this manually. */ -#define LIBGCJ_SONAME "libgcj" /*LIBGCC_EH_EXTN*/ "-12.dll" +#define LIBGCJ_SONAME "libgcj" /*LIBGCC_EH_EXTN*/ "-13.dll"