Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -1,17 +1,15 @@
$NetBSD: patch-src_object.c,v 1.2 2014/01/02 17:26:19 fhajny Exp $
$NetBSD: patch-src_object.c,v 1.3 2015/04/13 11:33:35 fhajny Exp $
Add MirBSD support.
--- src/object.c.orig Wed Aug 28 09:36:00 2013
--- src/object.c.orig 2015-04-01 14:01:44.000000000 +0000
+++ src/object.c
@@ -450,7 +450,11 @@ int getLongDoubleFromObject(robj *o, lon
redisAssertWithInfo(NULL,o,o->type == REDIS_STRING);
if (o->encoding == REDIS_ENCODING_RAW) {
errno = 0;
+#ifdef __MirBSD__
+ value = (long double)strtod(o->ptr, &eptr);
+#else
value = strtold(o->ptr, &eptr);
+#endif
if (isspace(((char*)o->ptr)[0]) || eptr[0] != '\0' ||
errno == ERANGE || isnan(value))
return REDIS_ERR;
@@ -32,7 +32,7 @@
#include <math.h>
#include <ctype.h>
-#ifdef __CYGWIN__
+#if defined(__CYGWIN__) || defined(__MirBSD__)
#define strtold(a,b) ((long double)strtod((a),(b)))
#endif