- Drop the gamecontrollerdb.txt patch since controller mappings cannot
be shared reliably between FreeBSD systems [1]
- Drop patch for inverting the joystick Y-axis based on the invert
mouse setting
Changes: https://github.com/OpenMW/openmw/releases/tag/openmw-0.42.0
PR: 218289 [1]
If mysql is used instead of sqlite, teamspeak can fail to start because
mysql sometimes starts after teamspeak. As a fix, a new option has been
added that will add mysql to REQUIRES and set mysql server as a depend.
Reported by: Dries Michiels <driesmp@hotmail.com>
Reviewed by: lifanov (mentor)
Approved by: lifanov (mentor)
Differential Revision: https://reviews.freebsd.org/D11681
This fixes the build with GCC >= 6, which use C++11 by default. This version of
anyterm is not compatible with C++11.
PR: 219296
Approved by: Douglas Thrift <douglas@douglasthrift.net>
- Convert to options helpers
- Add missing dependencies found by stage-qa
- Remove USE_GCC it's only needed for ATLAS option and is
handled by USES=fortran now
- Fix build with ATLAS=on by providing correct lapack libs
- Remove obvious comments
Former maintainer has requested to drop maintainership also, so put it in
ports@FreeBSD.org's pool.
PR: 213298
Submitted by: Allison Nicole Reid <root at cooltrainer org>
Approved by: adamw (Phabricator), jpaetzel (IRC)
Differential Revision: https://reviews.freebsd.org/D11445
$ methane
/usr/local/lib/libclan23SWRender-2.3.so.1: Undefined symbol "_ZN9CL_System20detect_cpu_extensionENS_19CL_CPU_ExtensionX86E"
Pointy hat to: jbeich
drive is a tiny program to pull or push Google Drive files.
drive was originally developed by Burcu Dogan while working on the Google Drive
team. Since she is very busy and no longer able to maintain it, I took over
drive on Thursday, 1st January 2015. This repository contains the latest version
of the code.
WWW: https://github.com/odeke-em/drive
This module implements RFC 2822 parser and formatter of email addresses and
groups. It parses an input string from email headers which contain a list of
email addresses or a groups of email addresses (like From, To, Cc, Bcc,
Reply-To, Sender, ...). Also it can generate a string value for those headers
from a list of email addresses objects.
Parser and formatter functionality is implemented in XS and uses shared code
from Dovecot IMAP server.
It is a drop-in replacement for the Email::Address module which has several
security issues. Existing applications that use Email::Address module could be
easily switched to Email::Address::XS module. In most cases only changing use
Email::Address to use Email::Address::XS and replacing every Email::Address
occurrence with Email::Address::XS is sufficient.
So unlike Email::Address, this module does not use regular expressions for
parsing but instead native XS implementation parses input string sequentially
according to RFC 2822 grammar.
Additionally it has support also for named groups and so can be use instead of
the Email::Address::List module.
WWW: http://search.cpan.org/dist/Email-Address-XS/
In file included from Unix/clanapp.cpp:32:
In file included from ../../Sources/API/App/clanapp.h:35:
../../Sources/API/App/../Core/Text/string_types.h:64:9: error: explicit specialization of
non-template class 'hash'
class hash<CL_String> : hash<const CL_String::char_type*>
^ ~~~~~~~~~~~
../../Sources/API/App/../Core/Text/string_types.h:64:27: error: unknown template name 'hash'
class hash<CL_String> : hash<const CL_String::char_type*>
^
../../Sources/API/App/../Core/Text/string_types.h:69:16: error: expected '(' for function-style cast
or type construction
return hash<const CL_String::char_type*>::operator()(keyval.c_str());
~~~~^
../../Sources/API/App/../Core/Text/string_types.h:69:17: error: expected expression
return hash<const CL_String::char_type*>::operator()(keyval.c_str());
^
4 errors generated.
Pointy hat to: jbeich