diff options
author | drochner <drochner@pkgsrc.org> | 2007-09-28 13:11:29 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-09-28 13:11:29 +0000 |
commit | f37c4a2343e009f2ca9fe6409b41dfd9b670172e (patch) | |
tree | 95274e1596880c08532aa6dd2f87d60f99b42c22 /x11/qt2-libs | |
parent | d34ad79ba863fcfd420fcb0d46718c5a59259b2b (diff) | |
download | pkgsrc-f37c4a2343e009f2ca9fe6409b41dfd9b670172e.tar.gz |
fix compilation on NetBSD-4+ (seen in bulk build)
Diffstat (limited to 'x11/qt2-libs')
-rw-r--r-- | x11/qt2-libs/distinfo | 3 | ||||
-rw-r--r-- | x11/qt2-libs/patches/patch-ar | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/qt2-libs/distinfo b/x11/qt2-libs/distinfo index 96b76bea06a..5f3fcff9e77 100644 --- a/x11/qt2-libs/distinfo +++ b/x11/qt2-libs/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2006/01/05 21:22:13 joerg Exp $ +$NetBSD: distinfo,v 1.17 2007/09/28 13:11:29 drochner Exp $ SHA1 (qt-x11-2.3.1.tar.gz) = f1403700fe80fbfb125ec84731d0dfe9c576c823 RMD160 (qt-x11-2.3.1.tar.gz) = b579018cfa5782d2f8b94b0846c35bce3a09dfa4 @@ -19,3 +19,4 @@ SHA1 (patch-am) = ebbc184b095e2adcf81461472f4723d515167a9e SHA1 (patch-ao) = 9e9be92054f4b73c973f63d4a8524ac30a4bbb44 SHA1 (patch-ap) = 1895d85163bcb8246cf4b8a4a692d16e7d876506 SHA1 (patch-aq) = cf7ece73766d43f68343f45b984516bae21822ad +SHA1 (patch-ar) = e595c7a5aeba6730294412db4d85fe1ff9ac3f79 diff --git a/x11/qt2-libs/patches/patch-ar b/x11/qt2-libs/patches/patch-ar new file mode 100644 index 00000000000..37a2b92a59f --- /dev/null +++ b/x11/qt2-libs/patches/patch-ar @@ -0,0 +1,13 @@ +$NetBSD: patch-ar,v 1.1 2007/09/28 13:11:29 drochner Exp $ + +--- src/tools/qvaluestack.h.orig 2001-06-13 10:53:47.000000000 +0200 ++++ src/tools/qvaluestack.h +@@ -54,7 +54,7 @@ public: + { + T elem( this->last() ); + if ( !this->isEmpty() ) +- remove( this->fromLast() ); ++ this->remove( this->fromLast() ); + return elem; + } + T& top() { return this->last(); } |