From: nge Date: Tue, 6 Oct 2009 14:05:43 +0000 (+0000) Subject: To see which libxml2 we're using in configure log X-Git-Tag: V5_1_3rc1~13 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a0f412fcdbcc86a47d04a4765a561432308dae57;p=modules%2Fkernel.git To see which libxml2 we're using in configure log --- diff --git a/salome_adm/unix/config_files/check_libxml.m4 b/salome_adm/unix/config_files/check_libxml.m4 index d5104cd42..a9bba03a3 100644 --- a/salome_adm/unix/config_files/check_libxml.m4 +++ b/salome_adm/unix/config_files/check_libxml.m4 @@ -39,11 +39,14 @@ then LOCAL_INCLUDES="-I$LIBXML_DIR/include/libxml2" if test "x$LIBXML_DIR" = "x/usr" then + AC_MSG_NOTICE(Trying native Libxml2...) LOCAL_LIBS="-lxml2" else + AC_MSG_NOTICE(Trying Libxml2 from $LIBXML_DIR ...) LOCAL_LIBS="-L$LIBXML_DIR/lib -lxml2" fi else + AC_MSG_NOTICE(Trying native Libxml2...) LOCAL_INCLUDES="-I/usr/include/libxml2" LOCAL_LIBS="-lxml2" fi