Description: fix a FTBFS with qwt6.
Author: czerwonyd
Origin: https://aur.archlinux.org/packages/linssid#news
Last-Update: 2015-02-06
Index: linssid-2.7/qwt-lib/src/qwt_transform.cpp
===================================================================
--- linssid-2.7.orig/qwt-lib/src/qwt_transform.cpp
+++ linssid-2.7/qwt-lib/src/qwt_transform.cpp
@@ -15,10 +15,10 @@
 #endif
 
 //! Smallest allowed value for logarithmic scales: 1.0e-150
-QT_STATIC_CONST_IMPL double QwtLogTransform::LogMin = 1.0e-150;
+const double QwtLogTransform::LogMin = 1.0e-150;
 
 //! Largest allowed value for logarithmic scales: 1.0e150
-QT_STATIC_CONST_IMPL double QwtLogTransform::LogMax = 1.0e150;
+const double QwtLogTransform::LogMax = 1.0e150;
 
 //! Constructor
 QwtTransform::QwtTransform()
Index: linssid-2.7/qwt-lib/src/qwt_transform.h
===================================================================
--- linssid-2.7.orig/qwt-lib/src/qwt_transform.h
+++ linssid-2.7/qwt-lib/src/qwt_transform.h
@@ -107,8 +107,8 @@ public:
 
     virtual QwtTransform *copy() const;
 
-    QT_STATIC_CONST double LogMin;
-    QT_STATIC_CONST double LogMax;
+    static const double LogMin;
+    static const double LogMax;
 };
 
 /*!
