XULRunner is a runtime environment for applications using the XML User Interface Language, XUL. It is the successor of the "Gecko" runtime environment. This package tracks 17.0.x extended support release.
24 lines
635 B
C
24 lines
635 B
C
$NetBSD: patch-gfx_skia_src_sfnt_SkOTTable__name.h,v 1.1 2013/01/10 16:17:10 ryoon Exp $
|
|
|
|
* Fix build with NetBSD 5's gcc
|
|
|
|
--- gfx/skia/src/sfnt/SkOTTable_name.h.orig 2012-11-29 04:44:13.000000000 +0000
|
|
+++ gfx/skia/src/sfnt/SkOTTable_name.h
|
|
@@ -12,7 +12,7 @@
|
|
#include "SkOTTableTypes.h"
|
|
#include "SkTypedEnum.h"
|
|
|
|
-#pragma pack(push, 1)
|
|
+#pragma pack(1)
|
|
|
|
struct SkOTTableName {
|
|
SK_OT_USHORT format;
|
|
@@ -493,7 +493,7 @@ struct SkOTTableNameRecord {
|
|
SK_OT_USHORT offset; //From start of storage area.
|
|
};
|
|
|
|
-#pragma pack(pop)
|
|
+#pragma pack()
|
|
|
|
|
|
SK_COMPILE_ASSERT(sizeof(SkOTTableName) == 6, sizeof_SkOTTableName_not_6);
|