Date: Fri, 18 Nov 2016 03:34:24 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426307 - head/graphics/zphoto/files Message-ID: <201611180334.uAI3YOPU067603@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Nov 18 03:34:24 2016 New Revision: 426307 URL: https://svnweb.freebsd.org/changeset/ports/426307 Log: graphics/zphoto: unbreak with libc++ 3.9 image.cpp:557:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *suffix1 = strrchr(src, '.'); ^ ~~~~~~~~~~~~~~~~~~ image.cpp:558:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *suffix2 = strrchr(dest, '.'); ^ ~~~~~~~~~~~~~~~~~~ PR: 212343 Reported by: antoine (via exp-run) Added: head/graphics/zphoto/files/patch-image.cpp (contents, props changed) Added: head/graphics/zphoto/files/patch-image.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/zphoto/files/patch-image.cpp Fri Nov 18 03:34:24 2016 (r426307) @@ -0,0 +1,13 @@ +--- image.cpp.orig 2004-07-20 16:48:11 UTC ++++ image.cpp +@@ -554,8 +554,8 @@ restore_mtime (const char *file_name, ti + static int + convert_needed_p (const char *src, const char *dest) + { +- char *suffix1 = strrchr(src, '.'); +- char *suffix2 = strrchr(dest, '.'); ++ const char *suffix1 = strrchr(src, '.'); ++ const char *suffix2 = strrchr(dest, '.'); + + return strcmp(suffix1, suffix2) != 0; + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611180334.uAI3YOPU067603>