[idms-dbma-devel]: COMMIT - r86 - trunk
Status: Pre-Alpha
Brought to you by:
nkukard
|
From: <sv...@li...> - 2005-03-22 09:17:48
|
Author: nkukard
Date: 2005-03-22 09:17:20 +0000 (Tue, 22 Mar 2005)
New Revision: 86
Modified:
trunk/aclocal.m4
trunk/configure
trunk/configure.ac
Log:
* Clarified what versions of glib & libxml are required
Modified: trunk/aclocal.m4
===================================================================
--- trunk/aclocal.m4 2005-03-22 09:00:31 UTC (rev 85)
+++ trunk/aclocal.m4 2005-03-22 09:17:20 UTC (rev 86)
@@ -32,6 +32,9 @@
gmodule)
pkg_config_args="$pkg_config_args gmodule-2.0"
;;
+ gmodule-no-export)
+ pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
+ ;;
gobject)
pkg_config_args="$pkg_config_args gobject-2.0"
;;
Modified: trunk/configure
===================================================================
--- trunk/configure 2005-03-22 09:00:31 UTC (rev 85)
+++ trunk/configure 2005-03-22 09:17:20 UTC (rev 86)
@@ -22197,6 +22197,9 @@
gmodule)
pkg_config_args="$pkg_config_args gmodule-2.0"
;;
+ gmodule-no-export)
+ pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
+ ;;
gobject)
pkg_config_args="$pkg_config_args gobject-2.0"
;;
@@ -22261,7 +22264,7 @@
no_glib=yes
fi
- min_glib_version=2.0.0
+ min_glib_version=2.4.0
echo "$as_me:$LINENO: checking for GLIB - version >= $min_glib_version" >&5
echo $ECHO_N "checking for GLIB - version >= $min_glib_version... $ECHO_C" >&6
@@ -22503,7 +22506,9 @@
if test x"$have_glib" = x"no"
then
- echo "ERROR: GLib >= 2.0.0 required"
+ echo
+ echo "* - ERROR -"
+ echo "* glib >= 2.4.0 required, this includes the development libraries and headers"
exit 1
fi
@@ -22585,7 +22590,7 @@
echo "${ECHO_T}no" >&6
fi
- min_xml_version=2.0.0
+ min_xml_version=2.6.0
echo "$as_me:$LINENO: checking for libxml - version >= $min_xml_version" >&5
echo $ECHO_N "checking for libxml - version >= $min_xml_version... $ECHO_C" >&6
no_xml=""
@@ -22813,7 +22818,9 @@
if test x"$have_xml" = x"no"
then
- echo "ERROR: libXML >= 2.0.0 required"
+ echo
+ echo "* - ERROR -"
+ echo "* libxml >= 2.6.0 required, this includes the development libraries and headers"
exit 1
fi
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2005-03-22 09:00:31 UTC (rev 85)
+++ trunk/configure.ac 2005-03-22 09:17:20 UTC (rev 86)
@@ -63,17 +63,21 @@
AC_CHECK_FLEX_VER(2.5.27)
-AM_PATH_GLIB_2_0(2.0.0,have_glib=yes,have_glib=no,gthread)
+AM_PATH_GLIB_2_0(2.4.0,have_glib=yes,have_glib=no,gthread)
if test x"$have_glib" = x"no"
then
- echo "ERROR: GLib >= 2.0.0 required"
+ echo
+ echo "* - ERROR -"
+ echo "* glib >= 2.4.0 required, this includes the development libraries and headers"
exit 1
fi
-AM_PATH_XML2(2.0.0,have_xml=yes,have_xml=no)
+AM_PATH_XML2(2.6.0,have_xml=yes,have_xml=no)
if test x"$have_xml" = x"no"
then
- echo "ERROR: libXML >= 2.0.0 required"
+ echo
+ echo "* - ERROR -"
+ echo "* libxml >= 2.6.0 required, this includes the development libraries and headers"
exit 1
fi
|