Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 2019 10:07:28 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515097 - head/astro/garmindev/files
Message-ID:  <201910211007.x9LA7Suq080942@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Oct 21 10:07:28 2019
New Revision: 515097
URL: https://svnweb.freebsd.org/changeset/ports/515097

Log:
  astro/garmindev: fix build on powerpc and arm
  
  char is unsigned on those architectures.
  
  PR:		241115
  Approved by:	cmt@burggraben.net (maintainer timeout), linimon (mentor)

Added:
  head/astro/garmindev/files/
  head/astro/garmindev/files/patch-src_EtrexH_CDevice.cpp   (contents, props changed)
  head/astro/garmindev/files/patch-src_EtrexLegendC_CDevice.cpp   (contents, props changed)
  head/astro/garmindev/files/patch-src_GPSMap60CSx_CDevice.cpp   (contents, props changed)

Added: head/astro/garmindev/files/patch-src_EtrexH_CDevice.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/astro/garmindev/files/patch-src_EtrexH_CDevice.cpp	Mon Oct 21 10:07:28 2019	(r515097)
@@ -0,0 +1,11 @@
+--- src/EtrexH/CDevice.cpp.orig	2019-10-07 13:16:44 UTC
++++ src/EtrexH/CDevice.cpp
+@@ -47,7 +47,7 @@ callback ( state,0,cancel,0,message )
+ 
+ namespace EtrexH
+ {
+-    static const char _clrtbl[1024]= {
++    static const signed char _clrtbl[1024]= {
+         -127,-127,-127,0,-60,-60,-60,0,90,90,90,0,0,0,0,0,-117,0,0,0,
+         -76,0,0,0,-43,0,0,0,-1,0,0,0,0,48,0,0,32,48,0,0,
+         65,48,0,0,106,48,0,0,-117,48,0,0,-76,48,0,0,-43,48,0,0,

Added: head/astro/garmindev/files/patch-src_EtrexLegendC_CDevice.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/astro/garmindev/files/patch-src_EtrexLegendC_CDevice.cpp	Mon Oct 21 10:07:28 2019	(r515097)
@@ -0,0 +1,11 @@
+--- src/EtrexLegendC/CDevice.cpp.orig	2019-10-07 13:15:56 UTC
++++ src/EtrexLegendC/CDevice.cpp
+@@ -37,7 +37,7 @@ using namespace std;
+ namespace EtrexLegendC
+ {
+ 
+-    static const char _clrtbl[1024]= {
++    static const signed char _clrtbl[1024]= {
+         0,0,0,0,32,0,0,0,65,0,0,0,106,0,0,0,-117,0,0,0,
+         -76,0,0,0,-43,0,0,0,-1,0,0,0,0,48,0,0,32,48,0,0,
+         65,48,0,0,106,48,0,0,-117,48,0,0,-76,48,0,0,-43,48,0,0,

Added: head/astro/garmindev/files/patch-src_GPSMap60CSx_CDevice.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/astro/garmindev/files/patch-src_GPSMap60CSx_CDevice.cpp	Mon Oct 21 10:07:28 2019	(r515097)
@@ -0,0 +1,11 @@
+--- src/GPSMap60CSx/CDevice.cpp.orig	2019-10-07 12:13:59 UTC
++++ src/GPSMap60CSx/CDevice.cpp
+@@ -43,7 +43,7 @@ using namespace std;
+ namespace GPSMap60CSx
+ {
+ 
+-    static const char _clrtbl[1024]= {
++    static const signed char _clrtbl[1024]= {
+         0,0,0,0,32,0,0,0,65,0,0,0,106,0,0,0,-117,0,0,0,
+         -76,0,0,0,-43,0,0,0,-1,0,0,0,0,48,0,0,32,48,0,0,
+         65,48,0,0,106,48,0,0,-117,48,0,0,-76,48,0,0,-43,48,0,0,



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