pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/py-qt3-base Make this package build with gcc-4 by ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4136879e009f
branches:  trunk
changeset: 509908:4136879e009f
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Sat Mar 18 03:01:45 2006 +0000

description:
Make this package build with gcc-4 by type-casting explicitly.

diffstat:

 x11/py-qt3-base/distinfo         |   4 +++-
 x11/py-qt3-base/patches/patch-ad |  13 +++++++++++++
 x11/py-qt3-base/patches/patch-ae |  13 +++++++++++++
 3 files changed, 29 insertions(+), 1 deletions(-)

diffs (49 lines):

diff -r 2f7bbf5322ed -r 4136879e009f x11/py-qt3-base/distinfo
--- a/x11/py-qt3-base/distinfo  Sat Mar 18 01:07:55 2006 +0000
+++ b/x11/py-qt3-base/distinfo  Sat Mar 18 03:01:45 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2006/03/03 16:33:51 reed Exp $
+$NetBSD: distinfo,v 1.12 2006/03/18 03:01:45 minskim Exp $
 
 SHA1 (PyQt-mac-gpl-3.15.1.tar.gz) = 6e3afafd93b89e571da94401c4c16e0c09fe7431
 RMD160 (PyQt-mac-gpl-3.15.1.tar.gz) = 663907b22fb245dc0472d7462e278b9d5564aa80
@@ -9,3 +9,5 @@
 SHA1 (patch-aa) = 425ff917b8dd3c345bf86e49ccf7f91c5688e77a
 SHA1 (patch-ab) = 46cf5b2eb3481a9f5a1264f11abc57421c4d47a0
 SHA1 (patch-ac) = c3cd88ef6119f224920c0b8e6852b35052e6751a
+SHA1 (patch-ad) = 1f6b420cc3df3d02315d72387dcf4dee62ef57f6
+SHA1 (patch-ae) = beebdfe165b3a34fd0a394eb33806610d00ff6a6
diff -r 2f7bbf5322ed -r 4136879e009f x11/py-qt3-base/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/py-qt3-base/patches/patch-ad  Sat Mar 18 03:01:45 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2006/03/18 03:01:45 minskim Exp $
+
+--- qt/sipqtQThread.cpp.orig   2006-03-17 14:51:33.000000000 -0800
++++ qt/sipqtQThread.cpp
+@@ -92,7 +92,7 @@ static PyObject *meth_QThread_currentThr
+               {
+                       void *sipRes;
+ 
+-                      sipRes = QThread::currentThread();
++                      sipRes = (void *)QThread::currentThread();
+ 
+                       return sipConvertFromVoidPtr(sipRes);
+               }
diff -r 2f7bbf5322ed -r 4136879e009f x11/py-qt3-base/patches/patch-ae
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/py-qt3-base/patches/patch-ae  Sat Mar 18 03:01:45 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2006/03/18 03:01:45 minskim Exp $
+
+--- qt/sipqtQCursor.cpp.orig   2006-03-17 14:51:35.000000000 -0800
++++ qt/sipqtQCursor.cpp
+@@ -158,7 +158,7 @@ static PyObject *meth_QCursor_handle(PyO
+               {
+                       void *sipRes;
+ 
+-                      sipRes = sipCpp -> QCursor::handle();
++                      sipRes = (void *) sipCpp -> QCursor::handle();
+ 
+                       return sipConvertFromVoidPtr(sipRes);
+               }



Home | Main Index | Thread Index | Old Index