diff options
author | Niclas Zeising <zeising@FreeBSD.org> | 2018-08-01 18:30:52 +0000 |
---|---|---|
committer | Niclas Zeising <zeising@FreeBSD.org> | 2018-08-01 18:30:52 +0000 |
commit | 3fea4418eaedbc9608829e8bfe38a66d0b316df6 (patch) | |
tree | 3f0e093f76432a5f273c74b853ad3a70af65e7e1 | |
parent | 9c38e50be92c6571dbb91527752f89893aca76af (diff) | |
download | ports-3fea4418eaedbc9608829e8bfe38a66d0b316df6.tar.gz ports-3fea4418eaedbc9608829e8bfe38a66d0b316df6.zip |
Notes
-rw-r--r-- | graphics/mesa-libs/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/mesa-libs/Makefile b/graphics/mesa-libs/Makefile index 090565b0105a..f968a3835bd1 100644 --- a/graphics/mesa-libs/Makefile +++ b/graphics/mesa-libs/Makefile @@ -3,7 +3,7 @@ PORTNAME= mesa-libs PORTVERSION= ${MESAVERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics COMMENT= OpenGL libraries that support GLX and EGL clients @@ -56,6 +56,11 @@ MESA_BUILD_WRKSRC+= src/egl MESA_INSTALL_WRKSRC+= src/egl .endif +.if ${ARCH} == "i386" +# PR230239 Fix the build for i386 when WITH_LLD_IS_LD is set +LDFLAGS+=-Wl,-z,notext +.endif + .include "${MASTERDIR}/Makefile.targets" post-install: |