diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2017-01-03 17:06:49 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2017-01-03 17:06:49 +0000 |
commit | 32d56ae68ad7efb4b83498c52a7f820e54887b87 (patch) | |
tree | 0c4d0c1f381f4e3e76b7e77408205f35afe358fa /games/easyrpg-player/Makefile | |
parent | 83e003bfd421cc4ecbb8824e54e6e3e53f32f8c4 (diff) | |
download | ports-32d56ae68ad7efb4b83498c52a7f820e54887b87.tar.gz ports-32d56ae68ad7efb4b83498c52a7f820e54887b87.zip |
Assume "pkg-config zlib" works after 9.x reached EOL
Many ports passed ZLIB_CFLAGS="-I/usr/include" ZLIB_LIBS="-L/usr/lib -lz"
which is unsafe at least with lang/gcc* that override some system headers
and have newer libgcc_s.so that our old version in base may not be
forward-compatible with.
Notes
Notes:
svn path=/head/; revision=430483
Diffstat (limited to 'games/easyrpg-player/Makefile')
-rw-r--r-- | games/easyrpg-player/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/games/easyrpg-player/Makefile b/games/easyrpg-player/Makefile index 691bbeaeb42c..841327ce58ff 100644 --- a/games/easyrpg-player/Makefile +++ b/games/easyrpg-player/Makefile @@ -38,16 +38,10 @@ PORTDOCS= AUTHORS README OPTIONS_DEFINE= DOCS -.include <bsd.port.pre.mk> - -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 -CONFIGURE_ENV+= ZLIB_CFLAGS=" " ZLIB_LIBS=-lz -.endif - post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor -.include <bsd.port.post.mk> +.include <bsd.port.mk> |