diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-04-10 15:48:53 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-04-10 15:48:53 +0000 |
commit | 0bc97bbfdc6d92fa6ae65ddaf30eeb0787a5bc21 (patch) | |
tree | 927f7816e2cf2ce7e52247f300afb71ef80e2a61 | |
parent | - Remove outdated OSVERSION check, simplify by using IGNORE helper (diff) |
- Remove obsolete OSVERSION condition
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=438181
-rw-r--r-- | www/nghttp2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 6de157c09457..e0f3526ff5b4 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -78,7 +78,7 @@ post-configure: @cd ${WRKSRC}/lib/.libs/ && ${AR} x ${LOCALBASE}/lib/libnghttp2.a # Disable thread_local support for hosts without __cxa_thread_atexit() # See PR/192320 for details -.if (${OSVERSION} < 1003506) || ((${OSVERSION} >= 1100000) && (${OSVERSION} < 1100122)) || (${OSVERSION} == 1100500) +.if ${OPSYS} == FreeBSD && ((${OSVERSION} < 1003506) || (${OSVERSION} == 1100500)) @${REINPLACE_CMD} -e '/HAVE_THREAD_LOCAL/d' ${WRKSRC}/config.h .endif |