svn commit: r394039 - head/audio/ncmpcpp/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Aug 12 21:06:26 UTC 2015


Author: amdmi3
Date: Wed Aug 12 21:06:25 2015
New Revision: 394039
URL: https://svnweb.freebsd.org/changeset/ports/394039

Log:
  - Fix build on armv6
  
  Approved by:	portmgr blanket

Added:
  head/audio/ncmpcpp/files/patch-src_bindings.cpp   (contents, props changed)

Added: head/audio/ncmpcpp/files/patch-src_bindings.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/ncmpcpp/files/patch-src_bindings.cpp	Wed Aug 12 21:06:25 2015	(r394039)
@@ -0,0 +1,11 @@
+--- src/bindings.cpp.orig	2015-07-05 02:18:34 UTC
++++ src/bindings.cpp
+@@ -108,7 +108,7 @@ Actions::BaseAction *parseActionLine(con
+ 			// push single character into input queue
+ 			std::string arg = getEnclosedString(line, '"', '"', 0);
+ 			Key k = stringToSpecialKey(arg);
+-			auto queue = std::vector<int>{ k.getChar() };
++			auto queue = std::vector<int>{ (int)k.getChar() };
+ 			if (k != Key::noOp)
+ 				result = new Actions::PushCharacters(&Global::wFooter, std::move(queue));
+ 			else


More information about the svn-ports-all mailing list