pkgsrc/misc/openoffice3/patches/patch-ab
tnn f1a7ab9b38 Try harder to work around typedef mess in
extensions/source/plugin/inc/plugin/unx/plugcon.hxx
This will hopefully fix the build failure reported here:
http://mail-index.netbsd.org/tech-pkg/2009/09/17/msg003902.html
2009-09-18 11:38:56 +00:00

14 lines
357 B
Text

$NetBSD: patch-ab,v 1.1 2009/09/18 11:38:56 tnn Exp $
--- np_sdk/mozsrc/nptypes.h.orig 2009-09-18 12:22:10.000000000 +0200
+++ np_sdk/mozsrc/nptypes.h
@@ -0,0 +1,9 @@
+#ifndef NPTYPES_H
+#define NPTYPES_H
+#include <stdint.h>
+#include <stdbool.h>
+typedef int16_t int16;
+typedef uint16_t uint16;
+typedef int32_t int32;
+typedef uint32_t uint32;
+#endif