svn commit: r430733 - in branches/2017Q1/emulators/snes9x: . files
Antoine Brodin
antoine at FreeBSD.org
Fri Jan 6 19:57:33 UTC 2017
Author: antoine
Date: Fri Jan 6 19:57:31 2017
New Revision: 430733
URL: https://svnweb.freebsd.org/changeset/ports/430733
Log:
MFH: r430522
emulators/snes9x: unbreak with libc++ 3.9
unix/unix.cpp:1451:9: error: cannot initialize a variable of type 'char *' with an rvalue of type
'const char *'
char *slash = strrchr(path, SLASH_CHAR);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~
unix/unix.cpp:1452:9: error: cannot initialize a variable of type 'char *' with an rvalue of type
'const char *'
char *dot = strrchr(path, '.');
^ ~~~~~~~~~~~~~~~~~~
PR: 212343
Regressed by: https://github.com/llvm-mirror/libcxx/commit/b4aa97130b8b
Modified:
branches/2017Q1/emulators/snes9x/Makefile
branches/2017Q1/emulators/snes9x/files/patch-unix_unix.cpp
Directory Properties:
branches/2017Q1/ (props changed)
Modified: branches/2017Q1/emulators/snes9x/Makefile
==============================================================================
--- branches/2017Q1/emulators/snes9x/Makefile Fri Jan 6 19:56:11 2017 (r430732)
+++ branches/2017Q1/emulators/snes9x/Makefile Fri Jan 6 19:57:31 2017 (r430733)
@@ -3,7 +3,7 @@
PORTNAME= snes9x
PORTVERSION= 1.51
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= emulators
MASTER_SITES= http://files.ipherswipsite.com/snes9x/ \
http://www.lysator.liu.se/snes9x/${PORTVERSION}/
Modified: branches/2017Q1/emulators/snes9x/files/patch-unix_unix.cpp
==============================================================================
--- branches/2017Q1/emulators/snes9x/files/patch-unix_unix.cpp Fri Jan 6 19:56:11 2017 (r430732)
+++ branches/2017Q1/emulators/snes9x/files/patch-unix_unix.cpp Fri Jan 6 19:57:31 2017 (r430733)
@@ -417,6 +417,17 @@
#endif // defined (JOYSTICK_SUPPORT)
START_EXTERN_C
+@@ -1162,8 +1448,8 @@ void _splitpath(const char *path, char *
+ {
+ *drive = 0;
+
+- char *slash = strrchr(path, SLASH_CHAR);
+- char *dot = strrchr(path, '.');
++ const char *slash = strrchr(path, SLASH_CHAR);
++ const char *dot = strrchr(path, '.');
+
+ if (dot && slash && dot < slash)
+ {
@@ -1716,7 +2002,7 @@
}
#endif
More information about the svn-ports-all
mailing list