1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-18 11:10:32 -04:00
ports/net/linknx/files/patch-src_suncalc.cpp
Tobias Kortkamp d0545614d4 net/linknx: Fix build with Clang 6
objectcontroller.cpp:659:27: error: non-constant-expression cannot be narrowed from type 'int' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
    uint8_t buf[2] = { 0, (isWrite ? 0x80 : 0x40) | (getBoolObjectValue() ? 1 : 0) };
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

http://beefy12.nyi.freebsd.org/data/head-amd64-default/p479076_s338486/logs/errors/linknx-0.0.1.32.log

PR:		230897
Submitted by:	tobik
Approved by:	bkoenig@alpha-tierchen.de (maintainer timeout, 2 weeks)
2018-09-09 07:10:25 +00:00

27 lines
830 B
C++

In file included from suncalc.cpp:47:
/usr/include/c++/v1/math.h:733:39: error: no member named 'fabsf' in the global
namespace; did you mean simply 'fabsf'?
abs(float __lcpp_x) _NOEXCEPT {return ::fabsf(__lcpp_x);}
^~
--- src/suncalc.cpp.orig 2018-08-25 18:51:49 UTC
+++ src/suncalc.cpp
@@ -25,8 +25,6 @@
#include "suncalc.h"
#include "services.h"
-namespace suncalc
-{
/*
SUNRISET.C - computes Sun rise/set times, start/end of twilight, and
@@ -49,6 +47,9 @@ Released to the public domain by Paul Schlyter, Decemb
#include <stdlib.h>
#include <getopt.h>
#include <string.h>
+
+namespace suncalc
+{
/* A macro to compute the number of days elapsed since 2000 Jan 0.0 */
/* (which is equal to 1999 Dec 31, 0h UT) */