]> ToastFreeware Gitweb - toast/confclerk.git/blobdiff - src/global.pri
Exchange "where" and "when" lines in conference dialog.
[toast/confclerk.git] / src / global.pri
index 6ecf01e3314c8d6dee3c30bd24201a3efa356d4b..64ee3fe86c822b84d1a8b9eb5219b636a72853aa 100644 (file)
@@ -4,7 +4,7 @@
 # USAGE: include(./global.pri)
 
 # VERSION
-VERSION = 0.6.1
+VERSION = 0.6.5
 DEFINES += VERSION=\\\"$$VERSION\\\"
 
 # Define 'MAEMO' specific CONFIG/DEFINE
@@ -24,3 +24,12 @@ contains( DISTRO, [Ii]nternet ) {
     }
 }
 
+# gcc 4.2.1 on Maemo doesn't understand anything newer then c++98.
+# make sure we explicitly add the flag even when building
+# with a modern compiler.
+# Only under Qt4 because Qt5 needs c++11
+unix: {
+    equals( QT_MAJOR_VERSION, 4 ) {
+        QMAKE_CXXFLAGS += -std=c++98
+    }
+}