altered the MyDDAS tests to automatically enable cut-c, if necessary

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1470 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
tiagosoares 2005-11-24 15:31:57 +00:00
parent 681717eecb
commit a170002981

18
configure vendored
View File

@ -2414,7 +2414,7 @@ _ACEOF
echo "--"
echo "--"
echo "--"
echo "-- Theres no Devel Libraries for MySQL or ODBC"
echo "-- There\'s no devel libraries for MySQL or ODBC"
echo "--"
echo "--"
echo "--"
@ -6423,11 +6423,6 @@ case "$orparallelism" in
;;
esac
if test "$cut_c" = "yes"
then
YAP_EXTRAS="$YAP_EXTRAS -DCUT_C=1"
fi
if test "$ac_cv_lib_mysql_myddas" = "yes"
then
if test "$cut_c" = "no"
@ -6441,11 +6436,12 @@ if test "$ac_cv_lib_mysql_myddas" = "yes"
echo "The MyDDAS interface makes no sense without cut-c"
echo "Please contact tiagosoares@ncc.up.pt for help"
echo
echo "Enabling cut-c"
echo
echo "********************************************************"
echo
echo
exit
cut_c="yes"
fi
YAP_EXTRAS="$YAP_EXTRAS -DMYDDAS_MYSQL"
fi
@ -6463,11 +6459,12 @@ if test "$ac_cv_lib_odbc_myddas" = "yes"
echo "The MyDDAS interface makes no sense without cut-c"
echo "Please contact tiagosoares@ncc.up.pt for help"
echo
echo "Enabling cut-c"
echo
echo "********************************************************"
echo
echo
exit
cut_c="yes"
fi
YAP_EXTRAS="$YAP_EXTRAS -DMYDDAS_ODBC"
fi
@ -6477,6 +6474,11 @@ if test "$myddas_stats" = "yes"
YAP_EXTRAS="$YAP_EXTRAS -DMYDDAS_STATS"
fi
if test "$cut_c" = "yes"
then
YAP_EXTRAS="$YAP_EXTRAS -DCUT_C=1"
fi
if test "$tabling" = "yes"
then
YAP_EXTRAS="$YAP_EXTRAS -DTABLING=1"