aboutsummaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2020-03-19 23:02:30 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2020-03-19 23:02:30 +0000
commit29a23b8db46037b11c05515ac5fdf5943629c024 (patch)
tree232716313097cfa367290f99641e117ac715906f /devel
parent850bd11e4dd14835c3d7d84a80d5181003732149 (diff)
downloadports-29a23b8db46037b11c05515ac5fdf5943629c024.tar.gz
ports-29a23b8db46037b11c05515ac5fdf5943629c024.zip
Clean up LLD_UNSAFE from openal-soft ports
After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and can drop LLD_UNSAFE from openal-soft ports. LLD can link them fine now but some ports needs a little help on i386 (-Wl,-znotext). PR: 226980 Reviewed by: jbeich (earlier version) Differential Revision: https://reviews.freebsd.org/D23030
Notes
Notes: svn path=/head/; revision=528750
Diffstat (limited to 'devel')
-rw-r--r--devel/love07/Makefile2
-rw-r--r--devel/love08/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/love07/Makefile b/devel/love07/Makefile
index f7d18173235f..5bdf2f04296a 100644
--- a/devel/love07/Makefile
+++ b/devel/love07/Makefile
@@ -32,7 +32,7 @@ GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 \
-I${LUA_INCDIR} `${SDL_CONFIG} --cflags`
LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR}
-LLD_UNSAFE= yes
+LDFLAGS_i386= -Wl,-znotext
CONFIGURE_ARGS= --bindir=${PREFIX}/bin --libdir=${PREFIX}/lib \
--program-suffix=07
WRKSRC= ${WRKDIR}/love-HEAD
diff --git a/devel/love08/Makefile b/devel/love08/Makefile
index 2e3935c566fb..668f436939b4 100644
--- a/devel/love08/Makefile
+++ b/devel/love08/Makefile
@@ -30,7 +30,7 @@ GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 \
-I${LUA_INCDIR} `${SDL_CONFIG} --cflags`
LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR}
-LLD_UNSAFE= yes
+LDFLAGS_i386= -Wl,-znotext
CONFIGURE_ARGS= --bindir=${PREFIX}/bin --libdir=${PREFIX}/lib \
--program-suffix=08
WRKSRC= ${WRKDIR}/love-${PORTVERSION}