mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
19 lines
696 B
Plaintext
19 lines
696 B
Plaintext
$NetBSD: patch-ba,v 1.1 2010/07/31 21:09:14 dholland Exp $
|
|
|
|
Avoid conflict between configure script, which #defines u_int64_t on
|
|
the command line, and db.h, which provides it on platforms where it's
|
|
missing. PR 42805.
|
|
|
|
(Upstream ought to switch to using uint64_t and stdint.h.)
|
|
|
|
--- dns_resolv.c.orig 2009-01-13 04:42:46.000000000 +0000
|
|
+++ dns_resolv.c
|
|
@@ -61,6 +61,7 @@
|
|
#include <sys/stat.h>
|
|
#include <sys/time.h>
|
|
#include <sys/wait.h>
|
|
+#undef u_int64_t
|
|
#include <db.h> /* DB header ****************/
|
|
#include "webalizer.h" /* main header */
|
|
#include "lang.h" /* language declares */
|