diff options
author | kamil <kamil@pkgsrc.org> | 2019-10-02 14:50:25 +0000 |
---|---|---|
committer | kamil <kamil@pkgsrc.org> | 2019-10-02 14:50:25 +0000 |
commit | 61e58f8549937071bbf7244b8f889d482dedf504 (patch) | |
tree | 8417a7ab29569c9bbecc746cbe1868f9369cb28f /lang | |
parent | aa2e577f5fdbe2b72f0020163f410504184a2c7d (diff) | |
download | pkgsrc-61e58f8549937071bbf7244b8f889d482dedf504.tar.gz |
tcl: Disable false positive detection of gethostbyaddr_r/NetBSD
gethostbyaddr_r is an internal libc symbol, not to be used in 3rd party
software.
Proper fix merged upstream:
https://core.tcl-lang.org/tcl/info/16768d65f0
Diffstat (limited to 'lang')
-rw-r--r-- | lang/tcl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/tcl/Makefile b/lang/tcl/Makefile index 309ca2369b6..ac3be107fca 100644 --- a/lang/tcl/Makefile +++ b/lang/tcl/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.105 2019/10/01 19:17:08 rillig Exp $ +# $NetBSD: Makefile,v 1.106 2019/10/02 14:50:25 kamil Exp $ DISTNAME= tcl${TCL_VERSION}-src PKGNAME= tcl-${TCL_VERSION} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -38,6 +38,7 @@ CONFIGURE_ARGS+= --enable-64bit .endif CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyname_r=no +CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyaddr_r=no SUBST_CLASSES+= tcl-config SUBST_STAGE.tcl-config= post-build |