AtomicParsley.cpp:1450:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* orig_suffix = strrchr(originating_file, '.');
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:4467:10: error: assigning to 'char *' from incompatible type 'const char *'
suffix = strrchr(filePath, '.');
^ ~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:4483:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* file_name = strrchr(filePath, '/');
^ ~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:5009:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* suffix = strrchr(m4aFile, '.');
^ ~~~~~~~~~~~~~~~~~~~~~
PR: 212343
Reported by: antoine (via exp-run)
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr