pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/tcl85



Module Name:    pkgsrc
Committed By:   kamil
Date:           Wed Oct  2 14:53:41 UTC 2019

Modified Files:
        pkgsrc/lang/tcl85: Makefile

Log Message:
tcl85: Disable false positive detection of gethostby*_r/NetBSD

gethostbyaddr_r and gethostbyname_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


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/tcl85/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/tcl85/Makefile
diff -u pkgsrc/lang/tcl85/Makefile:1.2 pkgsrc/lang/tcl85/Makefile:1.3
--- pkgsrc/lang/tcl85/Makefile:1.2      Thu Mar  3 21:16:46 2016
+++ pkgsrc/lang/tcl85/Makefile  Wed Oct  2 14:53:41 2019
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2016/03/03 21:16:46 bsiegert Exp $
+# $NetBSD: Makefile,v 1.3 2019/10/02 14:53:41 kamil Exp $
 
 DISTNAME=      tcl${TCL_VERSION}-src
 PKGNAME=       tcl-${TCL_VERSION}
+PKGREVISION=   1
 CATEGORIES=    lang
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=tcl/}
 
@@ -33,6 +34,9 @@ TEST_TARGET=          test
 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
 SUBST_FILES.tcl-config=        unix/tclConfig.sh



Home | Main Index | Thread Index | Old Index