diff options
author | joerg <joerg@pkgsrc.org> | 2013-05-04 12:59:45 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-05-04 12:59:45 +0000 |
commit | ff508e86bcd6a36f918a470be36a479f2ccfbb60 (patch) | |
tree | 9cbfc1fe003470fab96bf2cf0fa419937d4ce84e /math/cln | |
parent | cec8ad4ba226725fd4524a22b3a3d8e9defebc09 (diff) | |
download | pkgsrc-ff508e86bcd6a36f918a470be36a479f2ccfbb60.tar.gz |
Add a bunch of missing includes hidden by libstdc++ namespace pollution.
Diffstat (limited to 'math/cln')
-rw-r--r-- | math/cln/distinfo | 3 | ||||
-rw-r--r-- | math/cln/patches/patch-include_cln_exception.h | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/math/cln/distinfo b/math/cln/distinfo index 9f2d21562a9..6a5f65e0ea9 100644 --- a/math/cln/distinfo +++ b/math/cln/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.10 2012/06/14 08:24:14 asau Exp $ +$NetBSD: distinfo,v 1.11 2013/05/04 12:59:47 joerg Exp $ SHA1 (cln-1.3.2.tar.bz2) = c30dca80e75f45e2107f233075e6d0339ea884b0 RMD160 (cln-1.3.2.tar.bz2) = 8644a278e99c3e15ebf83f5e641758bdecad8b23 Size (cln-1.3.2.tar.bz2) = 1275638 bytes +SHA1 (patch-include_cln_exception.h) = 2d7ec63ee174793ad69ae3b54599f1c347b20c9f diff --git a/math/cln/patches/patch-include_cln_exception.h b/math/cln/patches/patch-include_cln_exception.h new file mode 100644 index 00000000000..79bea78edcb --- /dev/null +++ b/math/cln/patches/patch-include_cln_exception.h @@ -0,0 +1,12 @@ +$NetBSD: patch-include_cln_exception.h,v 1.1 2013/05/04 12:59:47 joerg Exp $ + +--- include/cln/exception.h.orig 2013-05-04 00:51:47.000000000 +0000 ++++ include/cln/exception.h +@@ -4,6 +4,7 @@ + #define _CL_EXCEPTION_H + + #include <stdexcept> ++#include <string> + + namespace cln { + |