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
On FreeBSD 10.x makeinfo is located in /usr/bin/makeinfo, whereas on 11.x
it is located in /usr/local/bin/makeinfo. Don't specify its full path
location like DOCS_CONFIGURE_ENV= MAKEINFO="${LOCALBASE}/bin/makeinfo"
since having it in PATH (either in /usr/bin or /usr/local/bin) suffices.
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
permitting FLANG only with RBLAS
- Only apply SONAME patches when the relevant options are chosen. This
prevents install errors when LIBR is off.
- Only permit the FLANG option when RBLAS is chosen, because FLANG causes
some configure-time checks to fail and the shared RBLAS library is fallen
back upon, but not properly packaged, which causes runtime issues.
- Bump PORTREVISION
Reported by: rhurlin@gwdg.de
Differential Revision: https://reviews.freebsd.org/D11726