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 Versions: 4.1.3, 4.1.4, 4.2 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 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