1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

- Update to 5.1.0

This commit is contained in:
Pietro Cerutti 2012-01-03 09:36:00 +00:00
parent 96ab3580bf
commit 40caa8a9d9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288461
3 changed files with 14 additions and 3 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= ucommon
PORTVERSION= 5.0.7
PORTVERSION= 5.1.0
CATEGORIES= devel
MASTER_SITES= GNU
MASTER_SITE_SUBDIR= commoncpp

View File

@ -1,2 +1,2 @@
SHA256 (ucommon-5.0.7.tar.gz) = de4e8bb603dd3d8556e5732483277d47222f36a46c23a4d4c1b709b3b8fc247f
SIZE (ucommon-5.0.7.tar.gz) = 768085
SHA256 (ucommon-5.1.0.tar.gz) = c60589df263c535896069a31878e0e5e601dc124826cb3c478cb6df969598d94
SIZE (ucommon-5.1.0.tar.gz) = 769809

View File

@ -0,0 +1,11 @@
--- commoncpp/exception.cpp.orig 2012-01-03 10:17:46.000000000 +0100
+++ commoncpp/exception.cpp 2012-01-03 10:19:18.000000000 +0100
@@ -89,7 +89,7 @@
if ( !_systemErrorString )
_systemErrorString = new char[errStrSize];
#ifndef _MSWINDOWS_
-#if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE
+#if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && defined(_GNU_SOURCE)
strerror_r(_systemError, _systemErrorString, errStrSize);
return _systemErrorString;
#else