diff options
author | joerg <joerg> | 2013-04-30 22:34:29 +0000 |
---|---|---|
committer | joerg <joerg> | 2013-04-30 22:34:29 +0000 |
commit | 9220e44009a4e5b82a554a02910560000f863a09 (patch) | |
tree | a4f848772326e334251e2718cca1d6a91f004dc9 /graphics | |
parent | b6703d7f233f3d95cf7abd95a030d620246967d9 (diff) | |
download | pkgsrc-9220e44009a4e5b82a554a02910560000f863a09.tar.gz |
Fix various case of missing includes due to libstdc++'s namespace
pollution.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gfract/distinfo | 4 | ||||
-rw-r--r-- | graphics/gfract/patches/patch-color.cpp | 7 | ||||
-rw-r--r-- | graphics/gimmage/distinfo | 4 | ||||
-rw-r--r-- | graphics/gimmage/patches/patch-aa | 9 |
4 files changed, 14 insertions, 10 deletions
diff --git a/graphics/gfract/distinfo b/graphics/gfract/distinfo index 4e20d263622..5444909c003 100644 --- a/graphics/gfract/distinfo +++ b/graphics/gfract/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2011/11/24 14:02:54 joerg Exp $ +$NetBSD: distinfo,v 1.10 2013/04/30 22:34:30 joerg Exp $ SHA1 (gfract-0.32.tar.gz) = f603c067c9616ebde714b72b3bda801e9906d6c3 RMD160 (gfract-0.32.tar.gz) = 6196bd3cc17c4c41bbd0b7df4cbe0691e52de521 @@ -7,5 +7,5 @@ SHA1 (gfract-palettes-0.1.tar.gz) = f05e06e6012e1b1526e0c796ca7f6617fca8ab7d RMD160 (gfract-palettes-0.1.tar.gz) = 3430c31cb5cb2317a02b1e2cf506c5ffa9601a7c Size (gfract-palettes-0.1.tar.gz) = 223648 bytes SHA1 (patch-aa) = 374c5fc29e3b3b07a5b0873ee1d042128b1ae5b8 -SHA1 (patch-color.cpp) = 442929a5c425336e93384625e10ef773dc73c80d +SHA1 (patch-color.cpp) = d40c75042bffcbcb042f1feefda6a19f55e0148c SHA1 (patch-my_png_cpp) = 3bfa0a24aa62e9b71f6bc6d7f2060b2a185a9daa diff --git a/graphics/gfract/patches/patch-color.cpp b/graphics/gfract/patches/patch-color.cpp index c8c42482188..a3896d431ae 100644 --- a/graphics/gfract/patches/patch-color.cpp +++ b/graphics/gfract/patches/patch-color.cpp @@ -1,9 +1,10 @@ -$NetBSD: patch-color.cpp,v 1.1 2011/11/24 14:02:54 joerg Exp $ +$NetBSD: patch-color.cpp,v 1.2 2013/04/30 22:34:30 joerg Exp $ ---- color.cpp.orig 2011-11-24 00:30:21.000000000 +0000 +--- color.cpp.orig 2004-08-13 15:42:29.000000000 +0000 +++ color.cpp -@@ -1,5 +1,6 @@ +@@ -1,5 +1,7 @@ #include <math.h> ++#include <stdlib.h> #include <stdio.h> +#include <string.h> #include <algorithm> diff --git a/graphics/gimmage/distinfo b/graphics/gimmage/distinfo index e6aa78f62cd..5b5d4339e9b 100644 --- a/graphics/gimmage/distinfo +++ b/graphics/gimmage/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2011/11/24 14:01:46 joerg Exp $ +$NetBSD: distinfo,v 1.3 2013/04/30 22:34:30 joerg Exp $ SHA1 (gimmage-0.2.3.tar.gz) = 732dee063553b787b65a0a5bd3d207bdb5d01df1 RMD160 (gimmage-0.2.3.tar.gz) = d3fd105390e21548cf9c83b199681b53616f3640 Size (gimmage-0.2.3.tar.gz) = 193777 bytes -SHA1 (patch-aa) = dc247e0eeeab9a102a02a47b89197a7762072403 +SHA1 (patch-aa) = ddb740f723e266d8fc6b37743ef43e6c1095c7ab diff --git a/graphics/gimmage/patches/patch-aa b/graphics/gimmage/patches/patch-aa index 2dd5aa84641..3f23a43c1b5 100644 --- a/graphics/gimmage/patches/patch-aa +++ b/graphics/gimmage/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.2 2011/11/24 14:01:46 joerg Exp $ +$NetBSD: patch-aa,v 1.3 2013/04/30 22:34:30 joerg Exp $ --- src/FileManager.cpp.orig 2007-06-26 13:51:15.000000000 +0000 +++ src/FileManager.cpp @@ -11,9 +11,12 @@ $NetBSD: patch-aa,v 1.2 2011/11/24 14:01:46 joerg Exp $ #include "FileManager.h" #include "defines.h" -@@ -30,6 +32,7 @@ extern "C" { +@@ -28,8 +30,9 @@ Copyright 2006 Bartek Kostrzewa + + extern "C" { #include <libintl.h> - // #include <unistd.h> +-// #include <unistd.h> ++#include <unistd.h> #include <sys/stat.h> +#include <string.h> } |