diff options
author | joerg <joerg@pkgsrc.org> | 2008-10-28 17:57:36 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-10-28 17:57:36 +0000 |
commit | 749b8be0966aba3e60ee6014adbb6797e37606c9 (patch) | |
tree | 32db395b4f989d27aaad8b72816732989081c474 /pkgtools | |
parent | 80795a291954ffc726a28f75fd814c8f9d10a12b (diff) | |
download | pkgsrc-749b8be0966aba3e60ee6014adbb6797e37606c9.tar.gz |
Use nbcompat/paths.h, Solaris is missing paths.h. From Uwe Klaus.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/files/db/btree/bt_open.c | 6 | ||||
-rw-r--r-- | pkgtools/libnbcompat/files/db/hash/hash_page.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/libnbcompat/files/db/btree/bt_open.c b/pkgtools/libnbcompat/files/db/btree/bt_open.c index 923f9773887..3f11b60f159 100644 --- a/pkgtools/libnbcompat/files/db/btree/bt_open.c +++ b/pkgtools/libnbcompat/files/db/btree/bt_open.c @@ -1,4 +1,4 @@ -/* $NetBSD: bt_open.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */ +/* $NetBSD: bt_open.c,v 1.2 2008/10/28 17:57:36 joerg Exp $ */ /* NetBSD: bt_open.c,v 1.24 2008/09/11 12:58:00 joerg Exp */ /*- @@ -36,7 +36,7 @@ #include <nbcompat.h> #include <nbcompat/cdefs.h> -__RCSID("$NetBSD: bt_open.c,v 1.1 2008/10/10 00:21:43 joerg Exp $"); +__RCSID("$NetBSD: bt_open.c,v 1.2 2008/10/28 17:57:36 joerg Exp $"); /* * Implementation of btree access method for 4.4BSD. @@ -57,7 +57,7 @@ __RCSID("$NetBSD: bt_open.c,v 1.1 2008/10/10 00:21:43 joerg Exp $"); #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <paths.h> +#include <nbcompat/paths.h> #include <nbcompat/db.h> #include "btree.h" diff --git a/pkgtools/libnbcompat/files/db/hash/hash_page.c b/pkgtools/libnbcompat/files/db/hash/hash_page.c index 8a4bba639e7..c2ae67e8196 100644 --- a/pkgtools/libnbcompat/files/db/hash/hash_page.c +++ b/pkgtools/libnbcompat/files/db/hash/hash_page.c @@ -1,4 +1,4 @@ -/* $NetBSD: hash_page.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */ +/* $NetBSD: hash_page.c,v 1.2 2008/10/28 17:57:36 joerg Exp $ */ /* NetBSD: hash_page.c,v 1.23 2008/09/11 12:58:00 joerg Exp */ /*- @@ -36,7 +36,7 @@ #include <nbcompat.h> #include <nbcompat/cdefs.h> -__RCSID("$NetBSD: hash_page.c,v 1.1 2008/10/10 00:21:43 joerg Exp $"); +__RCSID("$NetBSD: hash_page.c,v 1.2 2008/10/28 17:57:36 joerg Exp $"); /* * PACKAGE: hashing @@ -63,7 +63,7 @@ __RCSID("$NetBSD: hash_page.c,v 1.1 2008/10/10 00:21:43 joerg Exp $"); #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <paths.h> +#include <nbcompat/paths.h> #include <assert.h> #include <nbcompat/db.h> |