[Freeswitch-svn] [commit] r12788 - freeswitch/trunk/build/config

FreeSWITCH SVN mikej at freeswitch.org
Wed Mar 25 19:45:05 PDT 2009


Author: mikej
Date: Wed Mar 25 21:45:04 2009
New Revision: 12788

Log:
fix odbc detection to not try to use odbc when no headers are installed

Modified:
   freeswitch/trunk/build/config/odbc.m4

Modified: freeswitch/trunk/build/config/odbc.m4
==============================================================================
--- freeswitch/trunk/build/config/odbc.m4	(original)
+++ freeswitch/trunk/build/config/odbc.m4	Wed Mar 25 21:45:04 2009
@@ -135,7 +135,7 @@
 	fi
 
 	AC_MSG_CHECKING(whether to include odbc)
-	if test "X$ac_cv_odbc_where_lib" = "X" -a "X$ac_cv_odbc_where_inc" = "X"; then
+	if test "X$ac_cv_odbc_where_lib" = "X" -o "X$ac_cv_odbc_where_inc" = "X"; then
 	  ac_cv_found_odbc=no
 	  AC_MSG_RESULT(no)
 	else



More information about the Freeswitch-svn mailing list