List:Commits« Previous MessageNext Message »
From:jwinstead Date:August 3 2007 8:48pm
Subject:Connector/ODBC 3.51 commit: r637 - branches/guffert
View as plain text  
Modified:
   branches/guffert/MYODBC_MYSQL.h
Log:
Guffert requires 4.1 client library or later.


Modified: branches/guffert/MYODBC_MYSQL.h
===================================================================
--- branches/guffert/MYODBC_MYSQL.h	2007-08-03 17:04:00 UTC (rev 636)
+++ branches/guffert/MYODBC_MYSQL.h	2007-08-03 18:48:05 UTC (rev 637)
@@ -1,8 +1,6 @@
 #ifndef MYODBC_MYSQL_H
 #define MYODBC_MYSQL_H
 
-#define MIN_MYSQL_VERSION 40000L
-
 #ifdef __cplusplus
 extern "C"
 {
@@ -16,8 +14,9 @@
 #include <m_string.h>
 #include <mysqld_error.h>
 
+#define MIN_MYSQL_VERSION 40100L
 #if MYSQL_VERSION_ID < MIN_MYSQL_VERSION
-error "MyODBC need a newer version of the MYSQL client library to compile"
+# error "Connector/ODBC requires v4.1 (or later) of the MySQL client library"
 #endif
 
 #ifdef THREAD

Thread
Connector/ODBC 3.51 commit: r637 - branches/guffertjwinstead3 Aug