List:Commits« Previous MessageNext Message »
From:jbalint Date:December 7 2007 10:54am
Subject:Connector/ODBC 3.51 commit: r934 - branches/guffert
View as plain text  
Modified:
   branches/guffert/configure.in
Log:
move SQLGetPrivateProfileStringW test before other ODBC checks. wasn't adding HAVE_xxx
macro in myconf.h


Modified: branches/guffert/configure.in
===================================================================
--- branches/guffert/configure.in	2007-12-07 05:38:52 UTC (rev 933)
+++ branches/guffert/configure.in	2007-12-07 09:54:03 UTC (rev 934)
@@ -679,6 +679,11 @@
 #                                                                 #
 ###################################################################
 
+dnl Check for SQLGetPrivateProfileStringW
+if test "x$enable_odbcinstlink" != "xno" ; then
+  AC_CHECK_FUNCS(SQLGetPrivateProfileStringW)
+fi
+
 # Function SQLParamOptions() is deprecated in ODBC 3
 AC_MSG_CHECKING([if SQLParamOptions() 2nd and 3rd arg is compatible with SQLULEN])
 AC_COMPILE_IFELSE(
@@ -775,11 +780,6 @@
   [ AC_MSG_RESULT([no]) ])
 ])
 
-dnl Check for SQLGetPrivateProfileStringW
-if test "x$enable_odbcinstlink" != "xno" ; then
-  AC_CHECK_FUNCS(SQLGetPrivateProfileStringW)
-fi
-
 ###################################################################
 #                                                                 #
 # Generate Makefiles                                              #

Thread
Connector/ODBC 3.51 commit: r934 - branches/guffertjbalint7 Dec