diff options
author | grant <grant@pkgsrc.org> | 2004-01-14 08:59:31 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-01-14 08:59:31 +0000 |
commit | e50eabc4fcefa4d574b9f05188041aeff7425e4b (patch) | |
tree | 5f84a7bc503266de6c8f1e50c391e99586191cda /pkgtools | |
parent | 6cdd9f716eea40fa34aee911d323f65624573cde (diff) | |
download | pkgsrc-e50eabc4fcefa4d574b9f05188041aeff7425e4b.tar.gz |
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 (limited to 'pkgtools')
-rwxr-xr-x | pkgtools/libnbcompat/files/configure | 2 | ||||
-rw-r--r-- | pkgtools/libnbcompat/files/configure.ac | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/libnbcompat/files/configure b/pkgtools/libnbcompat/files/configure index ec21ca8d7f7..bfa3fbf0e43 100755 --- a/pkgtools/libnbcompat/files/configure +++ b/pkgtools/libnbcompat/files/configure @@ -8078,7 +8078,7 @@ _ACEOF 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 --git a/pkgtools/libnbcompat/files/configure.ac b/pkgtools/libnbcompat/files/configure.ac index dce11b193eb..30f9db6e0e4 100644 --- a/pkgtools/libnbcompat/files/configure.ac +++ b/pkgtools/libnbcompat/files/configure.ac @@ -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 @@ if test $pkg_use_nbcompat_statfs = yes; then 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 |