[arch-commits] Commit in xaw3d/trunk (PKGBUILD xaw3d.patch)

andyrtr at archlinux.org andyrtr at archlinux.org
Fri Mar 30 14:25:51 UTC 2012


    Date: Friday, March 30, 2012 @ 10:25:50
  Author: andyrtr
Revision: 154649

upgpkg: xaw3d 1.6.2-1

upstream update 1.6.2

Modified:
  xaw3d/trunk/PKGBUILD
Deleted:
  xaw3d/trunk/xaw3d.patch

-------------+
 PKGBUILD    |    4 ++--
 xaw3d.patch |   30 ------------------------------
 2 files changed, 2 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2012-03-30 13:49:41 UTC (rev 154648)
+++ PKGBUILD	2012-03-30 14:25:50 UTC (rev 154649)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger <eric at archlinux.org>
 
 pkgname=xaw3d
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="Three-D Athena widgets"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('xorg-util-macros')
 options=('!libtool')
 source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
-sha256sums=('9cd43caabb9e17d7d06c6e156cace9f7b7849c60662f61561dbf44c1eea10971')
+sha1sums=('0b1db72e9d5be0edae57cda213860c0289fac12f')
 
 build() {
   cd "${srcdir}/libXaw3d-${pkgver}"

Deleted: xaw3d.patch
===================================================================
--- xaw3d.patch	2012-03-30 13:49:41 UTC (rev 154648)
+++ xaw3d.patch	2012-03-30 14:25:50 UTC (rev 154649)
@@ -1,30 +0,0 @@
-diff -up Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c
---- Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig	2003-02-10 18:22:26.000000000 +0100
-+++ Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c	2008-10-06 10:07:46.000000000 +0200
-@@ -1087,7 +1087,11 @@ static void NotifyThumb (w, event, param
-     Cardinal *num_params;	/* unused */
- {
-     register ScrollbarWidget sbw = (ScrollbarWidget) w;
--    float top = sbw->scrollbar.top;
-+    union {
-+	XtPointer pt;
-+	float	  top;
-+    } foo;
-+    foo.top = sbw->scrollbar.top;
- 
- #ifndef XAW_ARROW_SCROLLBARS
-     if (sbw->scrollbar.direction == 0) return; /* if no StartScroll */
-@@ -1116,10 +1120,10 @@ static void NotifyThumb (w, event, param
-     /* Removed the dependancy on scrollbar arrows. Xterm as distributed in
-        X11R6.6 by The XFree86 Project wants this correction, with or without
-        the arrows. */
--    top += 0.0001;
-+    foo.top += 0.0001;
- /* #endif */
--    XtCallCallbacks (w, XtNthumbProc, *(XtPointer*)&top);
--    XtCallCallbacks (w, XtNjumpProc, (XtPointer)&top);
-+    XtCallCallbacks (w, XtNthumbProc, foo.pt);
-+    XtCallCallbacks (w, XtNjumpProc, (XtPointer)&sbw->scrollbar.top);
- }
- 
- 




More information about the arch-commits mailing list