From fad19051951129081c94d9ca641af6bbb1389e20 Mon Sep 17 00:00:00 2001 From: ScrumpyJack Date: Thu, 18 Aug 2016 12:58:33 +0000 Subject: testing/[various]: move to community Moves the following packages to community after successful build and testing. bogofilter corebird fbpanel hermes libdbi-drivers luufs netsurf opencpn py-sensehat rng-tools volumeicon --- testing/hermes/Utils.cpp.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 testing/hermes/Utils.cpp.patch (limited to 'testing/hermes/Utils.cpp.patch') diff --git a/testing/hermes/Utils.cpp.patch b/testing/hermes/Utils.cpp.patch deleted file mode 100644 index d5b5c16354..0000000000 --- a/testing/hermes/Utils.cpp.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- hermes-1.9/src/Utils.cpp -+++ ../Utils.cpp.modified -@@ -418,9 +418,15 @@ - { - char buf[2048]=""; - char *strerr; --// if(strerror_r(errnum,strerr,1024)!=-1) - #ifndef WIN32 -+ #ifdef __GLIBC__ - strerr=strerror_r(errnum,buf,2048); -+ #else -+ int retval = strerror_r(errnum, buf, sizeof buf); -+ strerr = buf; -+ if(retval != 0) -+ strcpy(buf, "error fetching error description"); -+ #endif - #else - strerr="Error "; - #endif //WIN32 -- cgit v1.2.3