List:Commits« Previous MessageNext Message »
From:jwinstead Date:February 7 2007 11:21pm
Subject:Connector/ODBC 3.51 commit: r155 - trunk
View as plain text  
Modified:
   trunk/configure.in
Log:
Default to /usr for iODBC and unixODBC when no directory is specified


Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2007-02-07 22:17:04 UTC (rev 154)
+++ trunk/configure.in	2007-02-07 23:21:15 UTC (rev 155)
@@ -557,6 +557,12 @@
 ],
 [ use_iODBC="" ])
 
+# Default to /usr if not specified
+if test "x$iodbc" = "x" -o "x$iodbc" = "xyes"
+then
+  iodbc="/usr";
+fi
+
 if test "x$use_iODBC" = "xyes"
 then
 
@@ -631,7 +637,7 @@
 AC_DEFINE([USE_UNIXODBC], [1], [use unixODBC])
 
 # Default to /usr if not specified
-if test "x$unixODBC" = "x"
+if test "x$unixODBC" = "x" -o "x$unixODBC" = "xyes"
 then
   unixODBC="/usr";
 fi

Thread
Connector/ODBC 3.51 commit: r155 - trunkjwinstead8 Feb