Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 46340 invoked from network); 20 Jun 2006 15:20:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Jun 2006 15:20:55 -0000 Received: (qmail 31586 invoked by uid 500); 20 Jun 2006 15:20:55 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 31566 invoked by uid 500); 20 Jun 2006 15:20:54 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 31555 invoked by uid 99); 20 Jun 2006 15:20:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 08:20:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 08:20:54 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 24853410007 for ; Tue, 20 Jun 2006 15:19:31 +0000 (GMT) Message-ID: <21095709.1150816771146.JavaMail.jira@brutus> Date: Tue, 20 Jun 2006 15:19:31 +0000 (GMT+00:00) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Updated: (STDCXX-197) Shared libraries on Mac OS X (Darwin) use '.dylib' suffix. In-Reply-To: <3251451.1149541109833.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/STDCXX-197?page=all ] Martin Sebor updated STDCXX-197: -------------------------------- Component: Build Fix Version: 4.2 Version: (was: 4.2) Assign To: Martin Sebor > Shared libraries on Mac OS X (Darwin) use '.dylib' suffix. > ---------------------------------------------------------- > > Key: STDCXX-197 > URL: http://issues.apache.org/jira/browse/STDCXX-197 > Project: C++ Standard Library > Type: Bug > Components: Build > 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 > > 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. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira