cardcommander.cpp:48:47: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
"cardcommander v0.4 (part of libchipcard v"k_CHIPCARD_VERSION_STRING")\n"\
Reported by: pkg-fallout
hbcixml.cpp:67:37: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
MYNAME " v1.99 (part of AqHBCI v"AQHBCI_VERSION_STRING")\n"\
Reported by: pkg-fallout
Use a different distfile that has a properly versioned directory. The checksum
has changed, but there are no file changes, only the WRKSRC has been renamed
from the confusing "libcoverart-{PROJECT_VERSION}" to "libcoverart-1.0.0".
Reported by: pkg-fallout [1]
./helper/cinnabar-helper.c:405:2: warning: implicit declaration of function 'DIFF_OPT_SET' is invalid in C99 [-Wimplicit-function-declaration]
DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
^
./helper/cinnabar-helper.c:405:30: error: use of undeclared identifier 'RECURSIVE'
DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
^
Changes: c3e5bce...826f1d8
Reported by: pkg-fallout
Details:
- Update to upstream version 20.0.0
a.o. removal of deprecated options in command line clients, see
Changelog: https://mkvtoolnix.download/doc/NEWS.md
- QT version now requires textproc/cmark
src/bomns.cpp:565:22: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
src/bomns.cpp:565:22: note: insert an explicit cast to silence this issue
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
static_cast<Sint16>( )
src/bomns.cpp:565:26: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
src/bomns.cpp:565:26: note: insert an explicit cast to silence this issue
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
static_cast<Sint16>( )
Reported by: pkg-fallout
display/display.cpp:371:17: error: non-constant-expression cannot be narrowed from type 'Uint16' (aka 'unsigned short') to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect r = { x, y, w, h };
^
display/display.cpp:371:17: note: insert an explicit cast to silence this issue
SDL_Rect r = { x, y, w, h };
^
static_cast<Sint16>( )
display/display.cpp:391:48: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
TTF_Font * fontTitle = TTF_OpenFont(DATADIR"/"FONT_FILE, (height / fSize));
^
display/display.cpp:560:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
( ( dh.w - sSize ) / dp.w ) + ( i * dh.x ),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
display/display.cpp:583:6: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
wText,
^~~~~
[...]
Reported by: pkg-fallout
In file included from engine/net/scanner.cpp:1:
In file included from engine/src/config.h:33:
In file included from ./mrt/xml.h:23:
/usr/include/c++/v1/map:629:15: error: object of type 'std::__1::pair<const mrt::Socket::addr, Scanner::Host>' cannot be assigned because its copy assignment operator is implicitly deleted
{__nc = __v.__cc; return *this;}
^
/usr/include/c++/v1/__tree:1645:35: note: in instantiation of member function 'std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>::operator=' requested here
__cache->__value_ = *__first;
^
/usr/include/c++/v1/__tree:1575:9: note: in instantiation of function template specialization 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::__assign_multi<std::__1::__tree_const_iterator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__tree_node<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, void *> *, long> >' requested here
__assign_multi(__t.begin(), __t.end());
^
/usr/include/c++/v1/map:912:21: note: in instantiation of member function 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here
__tree_ = __m.__tree_;
^
engine/net/scanner.cpp:256:8: note: in instantiation of member function 'std::__1::map<const mrt::Socket::addr, Scanner::Host, std::__1::less<const mrt::Socket::addr>, std::__1::allocator<std::__1::pair<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here
hosts = _hosts;
^
/usr/include/c++/v1/utility:325:5: note: copy assignment operator is implicitly deleted because 'pair<const mrt::Socket::addr, Scanner::Host>' has a user-declared move constructor
pair(pair&&) = default;
^
Reported by: pkg-fallout
- Update to 0.34;
- Drop SPICE_SLAVE block as the slave port was removed (see
r459530 for details);
- Explicitly add libepoxy and opus to LIB_DEPENDS as they're
unconditionally enabled if found by configure script;
- Add LZ4 option for liblz4 support (enabled by default);
- Drop NOAUDIO option: the older --with-audio configure flag
that allowed to choose one of gstreamer, pulse, auto or none
is now deprecated and it's possible to choose backends independently.
Also, not as it's possible to have both gstreamer and pulse,
enable both by default;
- When gstreamer is enabled for audio, also enable it for video;
- Pet portlint.
PR: 225028 (based on)
Submitted by: maintainer
Ui.cpp:174:18: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'int' in initializer list [-Wc++11-narrowing]
return (Dot){maxlen+1,splits.size()};
^~~~~~~~
Reported by: pkg-fallout
creature/Uniquem.cpp:628:11: error: cannot initialize return object of type 'int' with an rvalue of
type 'nullptr_t'
return NULL;
^~~~
/usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL'
#define NULL nullptr
^~~~~~~
Reported by: pkg-fallout
fileman.cpp:296:33: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
uint8_t sizes[3]={ CLIENT_NFS,strlen(filename)+1,strlen(mode)+1};
^~~~~~~~~~~~~~~~~~
hmi.cpp:302:97: error: non-constant-expression cannot be narrowed from type 'int' to 'uint8_t'
(aka 'unsigned char') in initializer list [-Wc++11-narrowing]
...0x54, 0x68, 0x64, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, (num_tracks + 1), 0x00, 0xC0 };
^~~~~~~~~~~~~~~~
Reported by: pkg-fallout
In file included from Seat.cpp:37:
./Bitmaps.h:47:46: error: constant expression evaluates to 128 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
^~~~
./Bitmaps.h:47:46: note: insert an explicit cast to silence this issue
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
^~~~
static_cast<char>( )
Seat.cpp:256:18: error: no matching function for call to 'XCreateBitmapFromData'
s_map[i] = XCreateBitmapFromData(_dpy,
^~~~~~~~~~~~~~~~~~~~~
/usr/local/include/X11/Xlib.h:1604:15: note: candidate function not viable: no known conversion from
'const unsigned char [2018]' to 'const char *' for 3rd argument
extern Pixmap XCreateBitmapFromData(
^
Reported by: pkg-fallout
spice-gtk dropped support of the old style Python bindings (non-gir based)
quite some time ago [1]. So keeping this port no longer makes sense as
it's not different from the master port.
1: 0917002c48
http-auth-nginx-module to 7e028a5
http_auth_ldap to 42d195d
fastdfs-nginx-module to 85347be
headers-more-nginx-module to 55fbdab
nginx-dav-ext-module to 0.1.0
nginx-eval-module to 582bd25
nchan (aka push) to 1.1.14
nginx-push-stream-module to 0.5.4
nginx_tarantool to 9e38881
nginx-upload-progress-module to 0.9.2
nginx_upstream_check_module to 9aecf15
nginx-video-thumbextractor-module to 0.9.0
drizzle-nginx-module to 0.1.10
ngx_dynamic_upstream to 0.1.6
encrypted-session-nginx-module to 0.07
nginx-gridfs mongo-c-driver to 0.4
lua-nginx-module to 0.10.11
ModSecurity to 3.0.0
ModSecurity-nginx to c0ae166
naxsi to 0.55.3
rds-csv-nginx-module to 0.08
redis2-nginx-module to 0.14
ginx-rtmp-module to 1.2.1
set-misc-nginx-module to cda7e50
nginx-sflow-module to f15c87f
nginx-http-shibboleth to f07bf3c
ngx_small_light zo 0.9.2
srcache-nginx-module to 0.31
njs to 4ed8a0b
ngx_brotli to 47550a2
- Bump PORTREVISION
Approved by: mentors (implicit)
MFH: 2018Q1
Patch by Stephen Hurd, seems to be ignored upstream. The new patch describes
what it does and why it is needed.
PR: 208570
Submitted by: Stephen Hurd
Reported by: Stephen Hurd
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13992