svn commit: r415334 - head/multimedia/dvdstyler/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon May 16 15:20:05 UTC 2016


Author: amdmi3
Date: Mon May 16 15:20:04 2016
New Revision: 415334
URL: https://svnweb.freebsd.org/changeset/ports/415334

Log:
  - Fix build
  
  Approved by:	portmgr blanket

Added:
  head/multimedia/dvdstyler/files/patch-wxVillaLib_thumb__md5.cpp   (contents, props changed)

Added: head/multimedia/dvdstyler/files/patch-wxVillaLib_thumb__md5.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/dvdstyler/files/patch-wxVillaLib_thumb__md5.cpp	Mon May 16 15:20:04 2016	(r415334)
@@ -0,0 +1,13 @@
+--- wxVillaLib/thumb_md5.cpp.orig	2014-02-25 11:08:27 UTC
++++ wxVillaLib/thumb_md5.cpp
+@@ -334,8 +334,8 @@ char* escape_string(const char *string)
+ 
+         if (!ACCEPTABLE_CHAR (c)) {
+             *q++ = HEX_ESCAPE; /* means hex coming */
+-            *q++ = hex[c >> 4];
+-            *q++ = hex[c & 15];
++            *q++ = ::hex[c >> 4];
++            *q++ = ::hex[c & 15];
+         } else {
+             *q++ = c;
+         }


More information about the svn-ports-head mailing list