summaryrefslogtreecommitdiff
path: root/pkgtools/libnbcompat/files/Makefile.in
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-08-10 18:47:55 +0000
committerjlam <jlam@pkgsrc.org>2004-08-10 18:47:55 +0000
commit079bcd07793956378f9ebf04474c78e7301433a3 (patch)
tree32753b0965e47ff024be03929a92b7cd91b3d48a /pkgtools/libnbcompat/files/Makefile.in
parentb6c39ecb231772a7bd0e81030f67724a3fb6d129 (diff)
downloadpkgsrc-079bcd07793956378f9ebf04474c78e7301433a3.tar.gz
Update pkgtools/libnbcompat to 20040809. Changes from version 20040805
include: * Re-adding a default value for pkg_use_nbcompat_vis; this was causing the configure script to fail on platforms that had funky versions of vis(). This should fix reported problems on Solaris 8 and on IRIX 5.3. * Added setgroupent() and setpassent() compatibility functions so that pwcache.c will build without complaining about an incompatible pointer type assignment. * Remove unused tests for <arpa/nameser.h>, <netdb.h>, h_errno and hstrerror(). These were originally used to bootstrap lukemftp, but tnftp doesn't need libnbcompat to build nowadays, so we don't need these anymore. * Cleanup: in cases where we test for a function using AC_REPLACE_FUNCS, move the function prototype into a nbcompat header that is the same name as the NetBSD header that contains that declaration, and include that file in place of the original one within nbcompat.h. This version has been tested to build on the following systems: FreeBSD-4.8/i386 NetBSD-1.6.2/i386 FreeBSD-5.2.1/i386 NetBSD-2.0_BETA/i386 IRIX 6.5 Red Hat Linux 8.0 MacOS X 10.3.4 Solaris 8 MacOS X 10.3.5 Solaris 9
Diffstat (limited to 'pkgtools/libnbcompat/files/Makefile.in')
-rw-r--r--pkgtools/libnbcompat/files/Makefile.in34
1 files changed, 28 insertions, 6 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in
index 588fc042748..614f5feb37b 100644
--- a/pkgtools/libnbcompat/files/Makefile.in
+++ b/pkgtools/libnbcompat/files/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.23 2004/08/06 16:55:09 jlam Exp $
+# $NetBSD: Makefile.in,v 1.24 2004/08/10 18:47:55 jlam Exp $
#
srcdir= @srcdir@
@@ -19,11 +19,33 @@ RANLIB= @RANLIB@
LIB= libnbcompat.a
-INCS= nbcompat.h nbcompat/err.h nbcompat/fnmatch.h nbcompat/fts.h \
- nbcompat/getopt.h nbcompat/glob.h nbcompat/md5.h \
- nbcompat/nbconfig.h nbcompat/nbtypes.h nbcompat/poll.h \
- nbcompat/queue.h nbcompat/rmd160.h nbcompat/sha1.h \
- nbcompat/statvfs.h nbcompat/vis.h
+INCS= nbcompat.h \
+ nbcompat/err.h \
+ nbcompat/fnmatch.h \
+ nbcompat/fts.h \
+ nbcompat/getopt.h \
+ nbcompat/glob.h \
+ nbcompat/grp.h \
+ nbcompat/limits.h \
+ nbcompat/md5.h \
+ nbcompat/nbconfig.h \
+ nbcompat/nbtypes.h \
+ nbcompat/paths.h \
+ nbcompat/poll.h \
+ nbcompat/pwd.h \
+ nbcompat/queue.h \
+ nbcompat/rmd160.h \
+ nbcompat/sha1.h \
+ nbcompat/stat.h \
+ nbcompat/statvfs.h \
+ nbcompat/stdio.h \
+ nbcompat/stdlib.h \
+ nbcompat/string.h \
+ nbcompat/time.h \
+ nbcompat/tzfile.h \
+ nbcompat/unistd.h \
+ nbcompat/util.h \
+ nbcompat/vis.h
# always use our local glob() implementation.
OBJS= glob.o @LIBOBJS@