pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/libnbcompat libnbcompat: Explicitly avoid Sun...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9d313407a126
branches:  trunk
changeset: 311299:9d313407a126
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Tue Aug 07 12:04:36 2018 +0000

description:
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.

diffstat:

 pkgtools/libnbcompat/inplace.mk |  7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r c5713e15d05f -r 9d313407a126 pkgtools/libnbcompat/inplace.mk
--- a/pkgtools/libnbcompat/inplace.mk   Tue Aug 07 11:15:41 2018 +0000
+++ b/pkgtools/libnbcompat/inplace.mk   Tue Aug 07 12:04:36 2018 +0000
@@ -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 @@
 .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