Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 17051 invoked from network); 20 May 2008 20:19:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 May 2008 20:19:16 -0000 Received: (qmail 86119 invoked by uid 500); 20 May 2008 20:19:17 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 86107 invoked by uid 500); 20 May 2008 20:19:17 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 86096 invoked by uid 99); 20 May 2008 20:19:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 13:19:17 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 20:18:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D6D3A234C123 for ; Tue, 20 May 2008 13:18:55 -0700 (PDT) Message-ID: <935811716.1211314735878.JavaMail.jira@brutus> Date: Tue, 20 May 2008 13:18:55 -0700 (PDT) From: "Eric Lemings (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Closed: (STDCXX-197) [Mac OS X] wrong shared library suffix MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eric Lemings closed STDCXX-197. ------------------------------- > [Mac OS X] wrong shared library suffix > -------------------------------------- > > Key: STDCXX-197 > URL: https://issues.apache.org/jira/browse/STDCXX-197 > Project: C++ Standard Library > Issue Type: Bug > Components: Build > Affects Versions: 4.1.3, 4.1.4 > Environment: Darwin cyphrus.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 > Reporter: Eric Lemings > Assignee: Martin Sebor > Fix For: 4.2.0 > > > Shared libraries on Mac OS X (Darwin) use '.dylib' suffix instead of the traditional '.so' suffix on most Unix systems. > Proposed patch: > Index: etc/config/gcc.config > =================================================================== > --- etc/config/gcc.config (revision 411913) > +++ etc/config/gcc.config (working copy) > @@ -138,6 +138,10 @@ > SHARED_SUFFIX = .sl > endif > > +ifeq ($(OSNAME),Darwin) > + SHARED_SUFFIX = .dylib > +endif > + > STATIC_CXXFLAGS = > STATIC_CPPFLAGS = > STATIC_LDFLAGS = -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.