Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jul 2014 10:17:25 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r363564 - head/devel/ncurses
Message-ID:  <201407311017.s6VAHPBO002772@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Jul 31 10:17:25 2014
New Revision: 363564
URL: http://svnweb.freebsd.org/changeset/ports/363564
QAT: https://qat.redports.org/buildarchive/r363564/

Log:
  Prehistoric ld(1) (in FreeBSD 8) ldscript support is not fully compatible with
  medieval ld(1) (in FreeBSD 9+) or modern ld(1).
  Falls back into the regular symlink
  The issues solved by the ldscript is anyway not affecting the caveld(1) because it
  is anyway overlinking all over the place

Modified:
  head/devel/ncurses/Makefile

Modified: head/devel/ncurses/Makefile
==============================================================================
--- head/devel/ncurses/Makefile	Thu Jul 31 10:06:07 2014	(r363563)
+++ head/devel/ncurses/Makefile	Thu Jul 31 10:17:25 2014	(r363564)
@@ -124,10 +124,12 @@ post-install:
 . for f in ${DOCS}
 	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
 . endfor
+.if ${OSTYP} != FreeBSD || ${OSVERSION} > 900000
 	${RM} -f ${STAGEDIR}${PREFIX}/lib/libncurses.so \
 		${STAGEDIR}${PREFIX}/lib/libncursesw.so
 	${ECHO} "INPUT(libncurses.so.${RELEASE:R} AS_NEEDED(-ltinfo))" > ${STAGEDIR}${PREFIX}/lib/libncurses.so
 	${ECHO} "INPUT(libncursesw.so.${RELEASE:R} AS_NEEDED(-ltinfow))" > ${STAGEDIR}${PREFIX}/lib/libncursesw.so
+.endif
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.5.9
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407311017.s6VAHPBO002772>