-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqwt.patch
90 lines (72 loc) · 3.13 KB
/
qwt.patch
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
diff --git a/qwtconfig.pri b/qwtconfig.pri
index b8f534f..58f307a 100644
--- a/qwtconfig.pri
+++ b/qwtconfig.pri
@@ -86,7 +86,7 @@ QWT_CONFIG += QwtPlot
# classes. It can't be enabled without also enabling QwtPlot
######################################################################
-QWT_CONFIG += QwtPolar
+# QWT_CONFIG += QwtPolar
######################################################################
# QwtWidgets enables all classes, that are needed to use the all other
@@ -100,7 +100,7 @@ QWT_CONFIG += QwtWidgets
# export a plot to a SVG document
######################################################################
-QWT_CONFIG += QwtSvg
+# QWT_CONFIG += QwtSvg
######################################################################
# If you want to use a OpenGL plot canvas
@@ -114,7 +114,7 @@ QWT_CONFIG += QwtOpenGL
# Otherwise you have to build it from the designer directory.
######################################################################
-QWT_CONFIG += QwtDesigner
+# QWT_CONFIG += QwtDesigner
######################################################################
# Compile all Qwt classes into the designer plugin instead
@@ -129,7 +129,7 @@ QWT_CONFIG += QwtDesigner
######################################################################
win32 {
- QWT_CONFIG += QwtDesignerSelfContained
+# QWT_CONFIG += QwtDesignerSelfContained
}
######################################################################
@@ -137,7 +137,7 @@ win32 {
# Otherwise you have to build them from the examples directory.
######################################################################
-QWT_CONFIG += QwtExamples
+# QWT_CONFIG += QwtExamples
######################################################################
# The playground is primarily intended for the Qwt development
@@ -148,14 +148,14 @@ QWT_CONFIG += QwtExamples
# Otherwise you have to build them from the playground directory.
######################################################################
-QWT_CONFIG += QwtPlayground
+# QWT_CONFIG += QwtPlayground
######################################################################
# If you want to auto build the tests, enable the line below
# Otherwise you have to build them from the tests directory.
######################################################################
-QWT_CONFIG += QwtTests
+# QWT_CONFIG += QwtTests
######################################################################
# When Qt has been built as framework qmake wants
diff --git a/src/qwt_global.h b/src/qwt_global.h
index cb06423..6e1a289 100644
--- a/src/qwt_global.h
+++ b/src/qwt_global.h
@@ -24,7 +24,9 @@
#pragma warning(disable: 4250)
#endif // _MSC_VER
-#ifdef QWT_DLL
+// No matter how hard I tried on Windows & MSVC I was not able
+// to pass QWT_DLL properly to export symbols. Use brute force.
+// #ifdef QWT_DLL
#if defined( QWT_MAKEDLL ) // create a Qwt DLL library
#define QWT_EXPORT Q_DECL_EXPORT
@@ -32,7 +34,7 @@
#define QWT_EXPORT Q_DECL_IMPORT
#endif
-#endif // QWT_DLL
+// #endif // QWT_DLL
#ifndef QWT_EXPORT
#define QWT_EXPORT