pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/tcl



Module Name:    pkgsrc
Committed By:   kamil
Date:           Wed Oct  2 14:50:25 UTC 2019

Modified Files:
        pkgsrc/lang/tcl: Makefile

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.105 -r1.106 pkgsrc/lang/tcl/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/tcl/Makefile
diff -u pkgsrc/lang/tcl/Makefile:1.105 pkgsrc/lang/tcl/Makefile:1.106
--- pkgsrc/lang/tcl/Makefile:1.105      Tue Oct  1 19:17:08 2019
+++ pkgsrc/lang/tcl/Makefile    Wed Oct  2 14:50:25 2019
@@ -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



Home | Main Index | Thread Index | Old Index