Date: Mon, 9 Dec 2013 10:21:56 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335961 - in head/x11-toolkits/fox17: . files Message-ID: <201312091021.rB9ALu9s042398@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Mon Dec 9 10:21:55 2013 New Revision: 335961 URL: http://svnweb.freebsd.org/changeset/ports/335961 Log: - Update to 1.7.44 Changes: * Updated FXJSON JavaScript Object Notation I/O class:- removed limits to token size in both input and output operations (formerly limited to buffersize). * Minor changes to FXVariant:- added some missing API's, removed toChar() as its useless. Added has() to determine if key is present in case FXVariant is a map. * Simplified FXFile and other FXIO subclasses a bit to remove redundant implementations. * Added FXIOBuffer, an FXIO device that serializes to/from a memory buffer. * FXRanged, FXRangef: now check intersect() results a bit differently. * Ray to FXSpheref, FXSphered intersection test changed to allow origin inside sphere possibility. * Fixed small bug in wc2nc(). * Possible buffer overrun in FXDir fixed. * Added class FXStringMap. * Changed some API's in FXDictionary. Added erase() API to allow removal of slot already located. This is faster, and needed for successful subclassing. * FXStat problem fixed on Windows. Deleted: head/x11-toolkits/fox17/files/patch-warnings Modified: head/x11-toolkits/fox17/Makefile head/x11-toolkits/fox17/distinfo head/x11-toolkits/fox17/files/patch-bugs head/x11-toolkits/fox17/pkg-plist Modified: head/x11-toolkits/fox17/Makefile ============================================================================== --- head/x11-toolkits/fox17/Makefile Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/Makefile Mon Dec 9 10:21:55 2013 (r335961) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fox -PORTVERSION= 1.7.43 +PORTVERSION= 1.7.44 CATEGORIES= x11-toolkits MASTER_SITES= http://ftp.fox-toolkit.org/pub/ \ ftp://ftp.fox-toolkit.org/pub/ Modified: head/x11-toolkits/fox17/distinfo ============================================================================== --- head/x11-toolkits/fox17/distinfo Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/distinfo Mon Dec 9 10:21:55 2013 (r335961) @@ -1,2 +1,2 @@ -SHA256 (fox-1.7.43.tar.gz) = 6d3c41c431d01179866b114f24cd749a9aef8ef8dab1dec4f657895107eb70ee -SIZE (fox-1.7.43.tar.gz) = 5077930 +SHA256 (fox-1.7.44.tar.gz) = 1fbead78847d2a2c6ae8a18a5317713f2ef36d4ebeddacf5d097b915e4728b4c +SIZE (fox-1.7.44.tar.gz) = 5251615 Modified: head/x11-toolkits/fox17/files/patch-bugs ============================================================================== --- head/x11-toolkits/fox17/files/patch-bugs Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/files/patch-bugs Mon Dec 9 10:21:55 2013 (r335961) @@ -1,14 +1,3 @@ ---- adie/FindInFiles.cpp.orig 2013-09-18 16:55:45.000000000 +0200 -+++ adie/FindInFiles.cpp 2013-09-18 16:57:42.000000000 +0200 -@@ -434,7 +434,7 @@ - - // File list double clicked - long FindInFiles::onCmdFileDblClicked(FXObject*,FXSelector,void* ptr){ -- FXint index=(FXint)(FXival)ptr; -+ index=(FXint)(FXival)ptr; - return 1; - } - --- tests/parallel.cpp.orig 2013-09-18 16:31:08.000000000 +0200 +++ tests/parallel.cpp 2013-09-18 16:55:25.000000000 +0200 @@ -146,6 +145,7 @@ Modified: head/x11-toolkits/fox17/pkg-plist ============================================================================== --- head/x11-toolkits/fox17/pkg-plist Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/pkg-plist Mon Dec 9 10:21:55 2013 (r335961) @@ -164,6 +164,7 @@ include/fox-%%MAJORVER%%/FXICOImage.h include/fox-%%MAJORVER%%/FXIFFIcon.h include/fox-%%MAJORVER%%/FXIFFImage.h include/fox-%%MAJORVER%%/FXIO.h +include/fox-%%MAJORVER%%/FXIOBuffer.h include/fox-%%MAJORVER%%/FXIODevice.h include/fox-%%MAJORVER%%/FXIcon.h include/fox-%%MAJORVER%%/FXIconDict.h @@ -288,6 +289,7 @@ include/fox-%%MAJORVER%%/FXStatusLine.h include/fox-%%MAJORVER%%/FXStream.h include/fox-%%MAJORVER%%/FXString.h include/fox-%%MAJORVER%%/FXStringDict.h +include/fox-%%MAJORVER%%/FXStringMap.h include/fox-%%MAJORVER%%/FXSwitcher.h include/fox-%%MAJORVER%%/FXSystem.h include/fox-%%MAJORVER%%/FXTGAIcon.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312091021.rB9ALu9s042398>