diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-27 16:27:00 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-27 16:27:00 +0000 |
commit | 47667109ba790dfec634e948ee93b491f215546a (patch) | |
tree | 8687d944f75a14c317f2f3463d375e3045a1b9c0 /pkgtools/libnbcompat/files | |
parent | 9ab4037b86a214a9b5af56050bec8349d60197f8 (diff) | |
download | pkgsrc-47667109ba790dfec634e948ee93b491f215546a.tar.gz |
BSIZE and BSHIFT are defined by sys/param.h on HP-UX, so undef them
first.
Diffstat (limited to 'pkgtools/libnbcompat/files')
-rw-r--r-- | pkgtools/libnbcompat/files/db/hash/hash.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgtools/libnbcompat/files/db/hash/hash.h b/pkgtools/libnbcompat/files/db/hash/hash.h index 089e921b5a5..acd9969c7c1 100644 --- a/pkgtools/libnbcompat/files/db/hash/hash.h +++ b/pkgtools/libnbcompat/files/db/hash/hash.h @@ -1,4 +1,4 @@ -/* $NetBSD: hash.h,v 1.2 2008/10/28 15:06:26 joerg Exp $ */ +/* $NetBSD: hash.h,v 1.3 2010/02/27 16:27:00 joerg Exp $ */ /* NetBSD: hash.h,v 1.15 2008/08/26 21:18:38 joerg Exp */ /*- @@ -274,6 +274,8 @@ typedef struct htab { /* Memory resident data structure */ #define REAL_KEY 4 /* Short hands for accessing structure */ +#undef BSIZE +#undef BSHIFT #define BSIZE hdr.bsize #define BSHIFT hdr.bshift #define DSIZE hdr.dsize |