diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-01-04 01:06:49 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-01-04 01:06:49 +0800 |
commit | 35c2e924fb42c40faceb06c6ff4d7a400a8ddea2 (patch) | |
tree | 0c4d0c1f381f4e3e76b7e77408205f35afe358fa /mail | |
parent | d25310f9b4145788c026d4bcec327bf8f633e309 (diff) | |
download | freebsd-ports-gnome-35c2e924fb42c40faceb06c6ff4d7a400a8ddea2.tar.gz freebsd-ports-gnome-35c2e924fb42c40faceb06c6ff4d7a400a8ddea2.tar.zst freebsd-ports-gnome-35c2e924fb42c40faceb06c6ff4d7a400a8ddea2.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.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/notmuch/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mail/notmuch/Makefile b/mail/notmuch/Makefile index ba5c4a449b73..afc31670e1d7 100644 --- a/mail/notmuch/Makefile +++ b/mail/notmuch/Makefile @@ -68,12 +68,6 @@ MUTT_USE= PERL=yes RUBY_USE= RUBY=yes ZSH_CONFIGURE_WITH= zsh-completion -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 1000000 -CONFIGURE_ENV= zlib_cflags="" zlib_ldflags="-lz" PKG_CONFIG_PATH="" -.endif - do-build-MUTT-on: ${MAKE_CMD} -C ${WRKSRC}/contrib/notmuch-mutt all ${GZIP_CMD} ${WRKSRC}/contrib/notmuch-mutt/notmuch-mutt.1 @@ -86,4 +80,4 @@ post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.4.4.0 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |