Subject: CVS commit: pkgsrc/lang/gcc46
From: Masatake Daimon
Date: 2014-05-15 14:04:41
Message id: 20140515120441.A51E496@cvs.netbsd.org

Log Message:
PR pkg/48740 - Fix problems on Darwin

Makefile:
  See ${WRKSRC}/libgcc/config/t-slibgcc-darwin: It uses strip(1) to
  create a stub library, not just to remove symbols, so we must not
  let strip(1) be a no-op regardless of ${INSTALL_UNSTRIPPED} or the
  build fails for missing files.

patches/patch-ac:
  Remove the whitespace between $(LINKER_RPATH_FLAG) and the path.
  Otherwise the flag may be misinterpreted by linker (e.g. Apple's ld)

patches/patch-libgcc_config_t-slibgcc-darwin:
  If we don't install libgcc_s.10.[45].dylib, our gcc links binaries
  with *both* /usr/lib/libgcc_s.1.dylib and
  ${GCC_PREFIX}/lib/libgcc_s.1.dylib, which is certainly a bad thing.

Files:
RevisionActionfile
1.25modifypkgsrc/lang/gcc46/Makefile
1.16modifypkgsrc/lang/gcc46/distinfo
1.4modifypkgsrc/lang/gcc46/patches/patch-ac
1.1addpkgsrc/lang/gcc46/patches/patch-libgcc_config_t-slibgcc-darwin