forked from stephanemagnenat/homebrew-kf5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kf5-kdeclarative.rb
44 lines (34 loc) · 1.2 KB
/
kf5-kdeclarative.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require "formula"
class Kf5Kdeclarative < Formula
url "http://download.kde.org/stable/frameworks/5.16/kdeclarative-5.16.0.tar.xz"
sha1 "5c1843fcf4f3022811a805690b794f9839e1b008"
homepage "http://www.kde.org/"
head 'git://anongit.kde.org/kdeclarative.git'
depends_on "cmake" => :build
depends_on "haraldf/kf5/kf5-extra-cmake-modules" => :build
depends_on "qt5" => "with-d-bus"
depends_on "libepoxy"
depends_on "haraldf/kf5/kf5-kio"
depends_on "haraldf/kf5/kf5-kpackage"
patch :DATA
def install
args = std_cmake_args
args << "-DCMAKE_CXX_FLAGS='-D_DARWIN_C_SOURCE'"
args << "-DCMAKE_C_FLAGS='-D_DARWIN_C_SOURCE'"
args << "-DCMAKE_REQUIRED_DEFINITIONS='-D_DARWIN_C_SOURCE'"
system "cmake", ".", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end
__END__
diff --git a/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp b/src/qmlcontrols/kquickcontrolsaddons
index 67ce63a..22934ad 100644
--- a/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp
+++ b/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp
@@ -47,6 +47,8 @@
#include <QuickAddons/ManagedTextureNode>
+#include <cmath>
+
//completely arbitrary
static int s_defaultSampleSize = 40;