pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/libnbcompat/files relax the requirement for a...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c4724a1f8180
branches:  trunk
changeset: 466264:c4724a1f8180
user:      grant <grant%pkgsrc.org@localhost>
date:      Wed Jan 14 08:59:31 2004 +0000

description:
relax the requirement for a >= 64bit off_t to enable long long
support, as some systems with a < 64bit off_t have long long support.

diffstat:

 pkgtools/libnbcompat/files/configure    |  2 +-
 pkgtools/libnbcompat/files/configure.ac |  4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diffs (30 lines):

diff -r 123e8bd30dff -r c4724a1f8180 pkgtools/libnbcompat/files/configure
--- a/pkgtools/libnbcompat/files/configure      Wed Jan 14 08:58:41 2004 +0000
+++ b/pkgtools/libnbcompat/files/configure      Wed Jan 14 08:59:31 2004 +0000
@@ -8078,7 +8078,7 @@
        LIBOBJS="$LIBOBJS statfs.$ac_objext"
 fi
 
-if test $ac_cv_type_long_long = yes -a $ac_cv_sizeof_off_t -ge 8; then
+if test $ac_cv_type_long_long = yes; then
 
 
        echo "$as_me:$LINENO: checking *printf() support for %lld" >&5
diff -r 123e8bd30dff -r c4724a1f8180 pkgtools/libnbcompat/files/configure.ac
--- a/pkgtools/libnbcompat/files/configure.ac   Wed Jan 14 08:58:41 2004 +0000
+++ b/pkgtools/libnbcompat/files/configure.ac   Wed Jan 14 08:59:31 2004 +0000
@@ -1,4 +1,4 @@
-dnl $NetBSD: configure.ac,v 1.34 2003/12/19 22:45:14 grant Exp $
+dnl $NetBSD: configure.ac,v 1.35 2004/01/14 08:59:31 grant Exp $
 
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
@@ -216,7 +216,7 @@
        AC_LIBOBJ(statfs)
 fi
 
-if test $ac_cv_type_long_long = yes -a $ac_cv_sizeof_off_t -ge 8; then
+if test $ac_cv_type_long_long = yes; then
 
 dnl            We assume that if sprintf() supports %lld or %qd,
 dnl            then all of *printf() does. If not, disable long long



Home | Main Index | Thread Index | Old Index