[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r2317: Suggest Qt >= QT_MIN_VERSION when whining about an old Qt. (vidalia/trunk)



Author: edmanm
Date: 2008-01-22 22:49:38 -0500 (Tue, 22 Jan 2008)
New Revision: 2317

Modified:
   vidalia/trunk/VidaliaMacros.cmake
Log:
Suggest Qt >= QT_MIN_VERSION when whining about an old Qt.


Modified: vidalia/trunk/VidaliaMacros.cmake
===================================================================
--- vidalia/trunk/VidaliaMacros.cmake	2008-01-22 16:18:55 UTC (rev 2316)
+++ vidalia/trunk/VidaliaMacros.cmake	2008-01-23 03:49:38 UTC (rev 2317)
@@ -28,7 +28,7 @@
 )
 if (NOT QT_LRELEASE_EXECUTABLE)
   message(FATAL_ERROR
-    "Vidalia could not find lrelease. Please make sure Qt >= 4.1 is installed."
+    "Vidalia could not find lrelease. Please make sure Qt >= ${QT_MIN_VERSION} is installed."
   )
 endif(NOT QT_LRELEASE_EXECUTABLE)
 
@@ -39,7 +39,7 @@
 )
 if (NOT QT_LUPDATE_EXECUTABLE)
   message(FATAL_ERROR
-    "Vidalia could not find lupdate. Please make sure Qt >= 4.1 is installed."
+    "Vidalia could not find lupdate. Please make sure Qt >= ${QT_MIN_VERSION} is installed."
   )
 endif(NOT QT_LUPDATE_EXECUTABLE)