Date: Thu, 31 Jul 2014 12:51:20 +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: r363582 - in head/x11-toolkits/fox17: . files Message-ID: <201407311251.s6VCpKJ9075474@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Thu Jul 31 12:51:19 2014 New Revision: 363582 URL: http://svnweb.freebsd.org/changeset/ports/363582 QAT: https://qat.redports.org/buildarchive/r363582/ Log: - Update to 1.7.49 Changes: * Major API changes to FXThreadPool: mostly, much more sane implementation, and optional FXCompletion parameter passed to perform wait on subset of tasks; see FXCompletion notes below. * Added FXCompletion synchronization object. FXCompletion is now used in FXTaskGroup, FXThreadPool, but can also be used in your own programs whenever one thread needs to await the completion of multiple worker threads. * Fixed bug in FXJSON parser: properly stop parsing at offending character. * Byte order mark handling fix in FXJSON parser. * Added toChars() API to FXVariant; it returns empty string unless variant is of type string. This is very similar to asChars(), except that toChars() is safe (always returns a non-NULL pointer). * Renamed toPointer() to toPtr() in FXVariant for consistency. * FXParallel implementation changes: don't kick off tasks via FXThreadPool in ParallelFor if there's only one task. Also, split ParallelFor into a number of pieces corresponding to the number of threads available in the FXThreadPool, unless this number is passed explicitly. * Ensured FXParallelForFunctor's are aligned in ParallelFor. * Updated VC++ 2008 Visual Studio project files. - Remove a patch that was applied upstream Deleted: head/x11-toolkits/fox17/files/patch-include_FXParallel.h Modified: head/x11-toolkits/fox17/Makefile head/x11-toolkits/fox17/distinfo head/x11-toolkits/fox17/pkg-plist Modified: head/x11-toolkits/fox17/Makefile ============================================================================== --- head/x11-toolkits/fox17/Makefile Thu Jul 31 12:41:08 2014 (r363581) +++ head/x11-toolkits/fox17/Makefile Thu Jul 31 12:51:19 2014 (r363582) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fox -PORTVERSION= 1.7.48 +PORTVERSION= 1.7.49 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 Thu Jul 31 12:41:08 2014 (r363581) +++ head/x11-toolkits/fox17/distinfo Thu Jul 31 12:51:19 2014 (r363582) @@ -1,2 +1,2 @@ -SHA256 (fox-1.7.48.tar.gz) = 90e011aa83eed8a1b3ffe1c1571cb5de41fae8162c7ae01e22697f98aeaa9b7f -SIZE (fox-1.7.48.tar.gz) = 5334145 +SHA256 (fox-1.7.49.tar.gz) = 2435c56cde3ba6617c638af4f3bac39e8f4d5dd5a5c6d0805d274c7ba05c520c +SIZE (fox-1.7.49.tar.gz) = 5336321 Modified: head/x11-toolkits/fox17/pkg-plist ============================================================================== --- head/x11-toolkits/fox17/pkg-plist Thu Jul 31 12:41:08 2014 (r363581) +++ head/x11-toolkits/fox17/pkg-plist Thu Jul 31 12:51:19 2014 (r363582) @@ -11,12 +11,12 @@ lib/libCHART-%%MAJORVER%%.a lib/libCHART-%%MAJORVER%%.la lib/libCHART-%%MAJORVER%%.so lib/libCHART-%%MAJORVER%%.so.0 -lib/libCHART-%%MAJORVER%%.so.0.0.48 +lib/libCHART-%%MAJORVER%%.so.0.0.49 lib/libFOX-%%MAJORVER%%.a lib/libFOX-%%MAJORVER%%.la lib/libFOX-%%MAJORVER%%.so lib/libFOX-%%MAJORVER%%.so.0 -lib/libFOX-%%MAJORVER%%.so.0.0.48 +lib/libFOX-%%MAJORVER%%.so.0.0.49 include/fox-%%MAJORVER%%/FX4Splitter.h include/fox-%%MAJORVER%%/FX7Segment.h include/fox-%%MAJORVER%%/FX885910Codec.h @@ -49,6 +49,7 @@ include/fox-%%MAJORVER%%/FXBitmap.h include/fox-%%MAJORVER%%/FXBitmapFrame.h include/fox-%%MAJORVER%%/FXBitmapView.h include/fox-%%MAJORVER%%/FXButton.h +include/fox-%%MAJORVER%%/FXCompletion.h include/fox-%%MAJORVER%%/FXCP1250Codec.h include/fox-%%MAJORVER%%/FXCP1251Codec.h include/fox-%%MAJORVER%%/FXCP1252Codec.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407311251.s6VCpKJ9075474>