CXX garbage_collector.lo
garbage_collector.cc:176:38: error: no member named 'min' in namespace 'std'
min_timestamp = std::min(qst, min_timestamp);
~~~~~^
garbage_collector.cc:180:36: error: no member named 'min' in namespace 'std'
min_offline = std::min(oft, min_offline);
~~~~~^
2 errors generated.
Reported by: pkg-fallout
service_identity is an optional dependency that hasn't yet been added
to setup.py upstream as an extras_require [1]
Create a VERIFY option to make the dependency optional, as it adds
a decent number [~9] of subsequent dependencies that aren't needed
in most cases.
Set the VERIFY option to be a OPTIONS_DEFAULT *for now* since a few
consumers (and their ports) bail out with an error if its not installed
(deluge) [2].
For these cases, the port should instead depend on service_identity
directly, as in www/calendarserver.
While I'm here:
- Strip shared libraries
- Tweak COMMENT
[1] http://twistedmatrix.com/trac/ticket/3696
[2] http://svnweb.freebsd.org/ports?view=revision&revision=375833
Approved by: python (hat)
Strip ending / (slash) when copying hicolor directory to avoid
installing icons under a theme with empty name. This should unbreak
expanding Icon in .desktop file by gtk_icon_theme_lookup_icon().
While here, add missing / to WWW per Porter's Handbook.
Note, the historic behavior of |cp -R foo/ bar| == |cp -R foo/. bar|
was disabled by NetBSD and OpenBSD years ago to match POSIX. Other
cp(1) implementations don't seem to be affected.
<ChangeLog>
--[ Redis 3.0.0 RC4 (version 2.9.104) ] Release date: 13 feb 2015
Upgrade urgency: High for Redis if you use LRU eviction, low otherwise.
This is the 4th release candidate of Redis 3.0.0, it fixes problems with
LRU eviction that are not present in older release (2.8.x is not affected)
and adds new tools to inspect latency and load-test LRU.
>> General changes
* [FIX] redis-cli CSV output NIL spurious newline removed. (Matt Collier)
* [FIX] Memory efficiency test in unit test is now much faster: it affacted
the total "make test" execution time in a bad way. (Salvatore
Sanfilippo)
* [FIX] Fixes and improvements to dict.c and LRU eviction. Redis 3.0.0 new
LRU eviction had bugs creating high latency spikes when LRU was
happening during the keys dictionary rehashing. This bug is not
present into 2.8, was 3.0 specific. As a side effect of this issue
dict.c is now improved, and LRU algorithm is more precise (better
approximates true LRU). This was a joint effort, see issue
#2306 for details. (Oran Agra, Sun He, Salvatore Sanfilippo).
Thanks to Charsyam for spotting an integer overflow.
* [NEW] New latency tool: redis-cli --latency-dist is able to show an
xterm-256 based spectrum of latencies over time. (Salvatore Sanfilippo)
* [NEW] redis-cli --lru-test implemented (cache workload simulator). (Salvatore
Sanfilippo)
* [NEW] redis-cli --stat now shows LOAD when Redis is loading data.
* [NEW] Support "1G" etc. units in CONFIG SET. (Chris Lamb, Salvatore
Sanfilippo)
>> Cluster changes
* None.
>> Sentinel changes
* None.
</ChangeLog>
- Make __FreeBSD_versoin check actually work
- Implement OS::GetCurrnetThreadId on FreeBSD 8
- Move DragonFly's condtional to its own #elif for clarity
- Add NetBSD conditional for reference
Differential Revision: https://reviews.freebsd.org/D1857
Submitted by: jbeich
Reviewed by: marino, myself
MFH: 2015Q1
A while back, the happily building paraview stopped building because
libGL was updated. The other ports that suffered breakage for the same
reasons were updated to the latest API. Paraviews libGL callouts were
never fixed, so this port never should not have had it's BROKEN definition
removed as it was not fixed despite the claim. It's still breaking on all
platforms including DragonFly on clang, gcc47 and gcc50. Errors from
FreeBSD look like:
In file included from /wrkdirs/usr/ports/science/paraview/work/ParaView-
v4.1.0/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx:31:
In file included from /usr/local/include/GL/glx.h:333:
/usr/local/include/GL/glxext.h:480:143: error: unknown type name 'GLintptr'
typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
/usr/local/include/GL/glxext.h:480:186: error: unknown type name
'GLsizeiptr'; did you mean 'GLsizei'?
typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
- Remove GH_PROJECT, GH_TAGNAME - they are set to correct values
by ports framework by default
PR: 197292 [1]
Submitted by: lapo@lapo.it (maintainer) [1]
- Fix building issue when using custom port options
- Fix problem with agentzh modules moved by upstream to openresty repo
- Convert to @dir usage
- Add LICENSE FILE
- Pet portlint
PR: 196002