summaryrefslogtreecommitdiff
path: root/net/powerdns/patches/patch-modules_luabackend_luabackend.hh
blob: 7ea743214fb18a8daba809b1a1b0f8183733afec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-modules_luabackend_luabackend.hh,v 1.1 2014/12/10 14:50:09 fhajny Exp $

u_int32_t not defined on SunOS.
--- modules/luabackend/luabackend.hh.orig	2014-02-04 11:33:04.000000000 +0000
+++ modules/luabackend/luabackend.hh
@@ -17,6 +17,9 @@ using std::string;
 
 //#undef L
 
+#ifdef __sun
+typedef uint32_t u_int32_t;
+#endif
 
 
 class LUAException {