From owner-freebsd-ports@FreeBSD.ORG Wed Apr 6 14:28:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC02A16A4CE; Wed, 6 Apr 2005 14:28:58 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AA9543D45; Wed, 6 Apr 2005 14:28:57 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from i2.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) with ESMTP id j36ESujB031874; Wed, 6 Apr 2005 16:28:56 +0200 Received: (from stolz@localhost)j36ESutv064226; Wed, 6 Apr 2005 16:28:56 +0200 (CEST) (envelope-from stolz) Date: Wed, 6 Apr 2005 16:28:56 +0200 From: Volker Stolz To: "B. Levin" Message-ID: <20050406142856.GA64222@i2.informatik.rwth-aachen.de> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.8i cc: ports@FreeBSD.org cc: pav@FreeBSD.org Subject: Re: xpaint is broken on freebsd 4.11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Apr 2005 14:28:58 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In gmane.os.freebsd.devel.ports, you wrote: > misc.c: In function `mousewheelScroll': > misc.c : 675 : structure has no member named `scroll_mode' The attached patch works on 4.11 here, please test. Pav, does it work with xorg, too? Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME It's a million to one chance, but it just might work. --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="xpaint.patch" Index: files/patch-Imakefile =================================================================== RCS file: /usr/freebsdcvs/cvs-ports/ports/graphics/xpaint/files/patch-Imakefile,v retrieving revision 1.4 diff -u -r1.4 patch-Imakefile --- files/patch-Imakefile 3 Apr 2005 21:39:28 -0000 1.4 +++ files/patch-Imakefile 6 Apr 2005 14:24:46 -0000 @@ -1,6 +1,14 @@ ---- Imakefile.orig Sun Mar 20 06:37:39 2005 -+++ Imakefile Mon Mar 21 13:27:05 2005 -@@ -98,7 +98,7 @@ +--- Imakefile.orig Sun Mar 20 21:15:32 2005 ++++ Imakefile Wed Apr 6 16:17:16 2005 +@@ -13,6 +13,7 @@ + "-DSHAREDIR=\"$(SHAREDIR)\"" \ + "-DXAPPLOADDIR=\"$(XAPPLOADDIR)\"" \ + "-DXPAINT_VERSION=\"$(VERSION)\"" \ ++ "-DARROW_SCROLLBAR" \ + + #ifdef LPCCMD + DEFINES += "-DLPCCMD=\"$(LPCCMD)\"" +@@ -98,7 +99,7 @@ #endif DEPLIBS = always xpaint.man XPaint.ad @@ -9,7 +17,7 @@ SUBDIRS = rw -@@ -148,7 +148,7 @@ +@@ -148,7 +149,7 @@ xaw:: -$(RM) $(XAWDEPENDS) @@ -18,7 +26,7 @@ echo "XAWLIB_DEFINES = -DXAWPLAIN" > Local.xawdefs echo "SYS_LIBRARIES = XawClientLibs -lm" >> Local.xawdefs xmkmf -a ; make -@@ -160,7 +160,7 @@ +@@ -160,7 +161,7 @@ xaw3d:: -$(RM) $(XAWDEPENDS) @@ -27,7 +35,7 @@ echo "XAWLIB_DEFINES = -DXAW3D" > Local.xawdefs echo "SYS_LIBRARIES = -lXaw3d -L." >> Local.xawdefs xmkmf ; cd rw ; xmkmf ; cd .. ; make -@@ -171,7 +171,7 @@ +@@ -171,7 +172,7 @@ xaw3dg:: -$(RM) $(XAWDEPENDS) @@ -36,7 +44,7 @@ echo "XAWLIB_DEFINES = -DXAW3D -DXAW3DG" > Local.xawdefs echo "SYS_LIBRARIES = -lXaw3d -L." >> Local.xawdefs xmkmf ; cd rw ; xmkmf ; cd .. ; make -@@ -182,7 +182,7 @@ +@@ -182,7 +183,7 @@ nextaw:: -$(RM) $(XAWDEPENDS) @@ -45,7 +53,7 @@ echo "XAWLIB_DEFINES = -DXAW3D" > Local.xawdefs echo "SYS_LIBRARIES = -lneXtaw -L." >> Local.xawdefs xmkmf ; cd rw ; xmkmf ; cd .. ; make -@@ -193,7 +193,7 @@ +@@ -193,7 +194,7 @@ xaw95:: -$(RM) $(XAWDEPENDS) @@ -54,7 +62,7 @@ echo "XAWLIB_DEFINES = -DXAW95" > Local.xawdefs echo "SYS_LIBRARIES = -lXaw95 -L." >> Local.xawdefs xmkmf -a ; make -@@ -225,7 +225,7 @@ +@@ -225,7 +226,7 @@ XPAINT_PRINT_COMMAND "$(PRINT_COMMAND)" \ XPAINT_POSTSCRIPT_VIEWER "$(POSTSCRIPT_VIEWER)" \ XPAINT_EXTERN_VIEWER "$(EXTERN_VIEWER)" --SUOF0GtieIMvvwua--