pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/libnbcompat



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Aug  7 12:04:36 UTC 2018

Modified Files:
        pkgsrc/pkgtools/libnbcompat: inplace.mk

Log Message:
libnbcompat: Explicitly avoid SunOS fts(3C) for now.

It is not currently largefile aware, leading to issues described in
PR#53489.  This will be resolved upstream but it will take a while for
everyone to catch up.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/pkgtools/libnbcompat/inplace.mk

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

Modified files:

Index: pkgsrc/pkgtools/libnbcompat/inplace.mk
diff -u pkgsrc/pkgtools/libnbcompat/inplace.mk:1.13 pkgsrc/pkgtools/libnbcompat/inplace.mk:1.14
--- pkgsrc/pkgtools/libnbcompat/inplace.mk:1.13 Thu Dec  3 14:37:30 2015
+++ pkgsrc/pkgtools/libnbcompat/inplace.mk      Tue Aug  7 12:04:36 2018
@@ -1,4 +1,4 @@
-# $NetBSD: inplace.mk,v 1.13 2015/12/03 14:37:30 jperkin Exp $
+# $NetBSD: inplace.mk,v 1.14 2018/08/07 12:04:36 jperkin Exp $
 #
 # This file should not be included directly. Use USE_FEATURES instead.
 #
@@ -43,6 +43,11 @@ NBCOMPAT_CONFIGURE_ARGS+=    --build=${NATI
 .endif
 NBCOMPAT_CONFIGURE_ARGS+=      --host=${MACHINE_GNU_PLATFORM:Q}
 
+# The illumos fts(3) implementation is not (as of August 2018) largefile aware
+.if ${OPSYS} == "SunOS"
+CONFIGURE_ENV+=        ac_cv_func_fts_open=no
+.endif
+
 pre-configure: libnbcompat-build
 .PHONY: libnbcompat-build
 libnbcompat-build:



Home | Main Index | Thread Index | Old Index