Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Feb 2017 20:22:14 +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: r433098 - head/vietnamese/x-unikey/files
Message-ID:  <201702012022.v11KMEr6069107@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Feb  1 20:22:14 2017
New Revision: 433098
URL: https://svnweb.freebsd.org/changeset/ports/433098

Log:
  vietnamese/x-unikey: unbreak with libc++ 3.9
  
  mactab.cpp:290:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
    char * pos = strchr(item, ':');
           ^     ~~~~~~~~~~~~~~~~~
  
  Reported by:	pkg-fallout

Added:
  head/vietnamese/x-unikey/files/
  head/vietnamese/x-unikey/files/patch-src_ukengine_mactab.cpp   (contents, props changed)

Added: head/vietnamese/x-unikey/files/patch-src_ukengine_mactab.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/vietnamese/x-unikey/files/patch-src_ukengine_mactab.cpp	Wed Feb  1 20:22:14 2017	(r433098)
@@ -0,0 +1,11 @@
+--- src/ukengine/mactab.cpp.orig	2006-04-09 11:46:02 UTC
++++ src/ukengine/mactab.cpp
+@@ -287,7 +287,7 @@ int CMacroTable::addItem(const char *ite
+   char key[MAX_MACRO_KEY_LEN];
+   
+   // Parse the input item
+-  char * pos = strchr(item, ':');
++  const char * pos = strchr(item, ':');
+   if (pos == NULL)
+     return -1;
+   int keyLen = (int)(pos - item);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702012022.v11KMEr6069107>