svn commit: r552846 - branches/2020Q4/net/dhcprelya
Dmitry Marakasov
amdmi3 at FreeBSD.org
Tue Oct 20 19:43:24 UTC 2020
Author: amdmi3
Date: Tue Oct 20 19:43:23 2020
New Revision: 552846
URL: https://svnweb.freebsd.org/changeset/ports/552846
Log:
MFH: r552824
- Fix runtime link problems with plugins
PR: 249132
Submitted by: sem at semmy.ru (maintainer)
Reported by: olexander.v.melnyk at gmail.com
Approved by: ports-secteam (joneum)
Modified:
branches/2020Q4/net/dhcprelya/Makefile
Directory Properties:
branches/2020Q4/ (props changed)
Modified: branches/2020Q4/net/dhcprelya/Makefile
==============================================================================
--- branches/2020Q4/net/dhcprelya/Makefile Tue Oct 20 19:02:37 2020 (r552845)
+++ branches/2020Q4/net/dhcprelya/Makefile Tue Oct 20 19:43:23 2020 (r552846)
@@ -3,6 +3,7 @@
PORTNAME= dhcprelya
PORTVERSION= 6.1
+PORTREVISION= 1
CATEGORIES= net
MAINTAINER= sem at semmy.ru
@@ -24,9 +25,15 @@ PLIST_FILES= sbin/${PORTNAME} lib/${PORTNAME}_log_plug
OPTIONS_DEFINE= DOCS
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000
+LDFLAGS+= -Wl,-E
+.endif
+
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}/${DOCSDIR}
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
More information about the svn-ports-branches
mailing list