From cd75a45fc98b686fc180feb3209bbfd2e1c4413b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 23 May 2001 19:21:12 +0000 Subject: Remove reference to verify-evolution-install.sh since it doesn't work any * README: Remove reference to verify-evolution-install.sh since it doesn't work any more. * configure.in (EVO_CHECK_LIB): allow this to take a max version too, mostly so we can bound the allowable gal versions for releases, but also to require libxml < 2.0. (OpenSSL): Fixicate to work on NetBSD (OpenSSL in /usr, no libdl). svn path=/trunk/; revision=9951 --- ChangeLog | 10 +++++++++ README | 7 +------ configure.in | 67 +++++++++++++++++++++++++++++++++++++++++------------------- 3 files changed, 57 insertions(+), 27 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0d659beeaa..4a0fb7975d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2001-05-23 Dan Winship + + * README: Remove reference to verify-evolution-install.sh since it + doesn't work any more. + + * configure.in (EVO_CHECK_LIB): allow this to take a max version + too, mostly so we can bound the allowable gal versions for + releases, but also to require libxml < 2.0. + (OpenSSL): Fixicate to work on NetBSD (OpenSSL in /usr, no libdl). + 2001-05-23 Kjartan Maraas * tools/killev: s/evolution-vcard-import/evolution-vcard-importer diff --git a/README b/README index 208e99b18c..27c9fcb7b2 100644 --- a/README +++ b/README @@ -26,12 +26,7 @@ There is also an #evolution IRC channel on irc.gnome.org. IF IT DOESN'T WORK ------------------ -Did you read the "How to build" section below? :-) - -If you have built Evolution and it doesn't work, or you can't get it -or one of its dependencies to compile, try running the -"verify-evolution-install.sh" script in the tools/ subdirectory. It -may be able to figure out what went wrong. +Did you read the "How to build" section below? If the configure script complains that you don't have a library that you know you have installed, it usually means either that you've diff --git a/configure.in b/configure.in index dcf504bba4..fc0edf8a9c 100644 --- a/configure.in +++ b/configure.in @@ -13,11 +13,12 @@ AC_SUBST(VERSION) AC_DEFUN(EVO_CHECK_LIB, [ dispname="$1" - dispvers="$2" - pkgname="$3" + pkgname="$2" + minvers="$3" + maxvers="$4" + + AC_MSG_CHECKING(for $dispname) - AC_MSG_CHECKING(for $dispname >= $dispvers) - cmpvers=`echo $dispvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` if gnome-config --libs $pkgname > /dev/null 2>&1; then pkgvers=`gnome-config --modversion $pkgname | sed -e 's/^[[^0-9]]*//'` else @@ -26,10 +27,30 @@ AC_DEFUN(EVO_CHECK_LIB, [ AC_MSG_RESULT($pkgvers found) pkgvers=`echo $pkgvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` - if test "$pkgvers" -lt $cmpvers; then - AC_MSG_ERROR([ + cmpminvers=`echo $minvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` + cmpmaxvers=`echo $maxvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` + ok=yes + if test "$pkgvers" -lt $cmpminvers; then + ok=no + elif test -n "$maxvers" -a "$pkgvers" -ge $cmpmaxvers; then + ok=no + fi + if test $ok = no; then + case $maxvers in + "") + dispvers="$minvers or higher" + ;; + $minvers) + dispvers="$minvers (exactly)" + ;; + *) + dispvers="$minvers or higher, but less than $maxvers," + ;; + esac + + AC_MSG_ERROR([ "" -"You need $dispname $dispvers or later to build Evolution" +"You need $dispname $dispvers to build Evolution" "If you think you already have this installed, consult the README."]) fi ]) @@ -64,7 +85,7 @@ AM_ACLOCAL_INCLUDE(macros) GNOME_INIT() GNOME_COMPILE_WARNINGS GNOME_X_CHECKS -EVO_CHECK_LIB(gnome-libs, 1.2.9, gnome) +EVO_CHECK_LIB(gnome-libs, gnome, 1.2.9) ALL_LINGUAS="az ca da de el en_GB es fi fr ga gl hu it ja ko lt nl nn no pl pt pt_BR ru sk sl sv tr uk" AM_GNOME_GETTEXT @@ -304,16 +325,16 @@ fi dnl *************** dnl GNOME Libraries dnl *************** -EVO_CHECK_LIB(Bonobo, 0.37, bonobox) -EVO_CHECK_LIB(OAF, 0.6.2, oaf) -EVO_CHECK_LIB(libglade, 0.14, libglade) -EVO_CHECK_LIB(gdk-pixbuf with GNOME canvas support, 0.9.0, gnomecanvaspixbuf) -EVO_CHECK_LIB(GAL, 0.7.99.3, gal) +EVO_CHECK_LIB(Bonobo, bonobox, 1.0.3) +EVO_CHECK_LIB(OAF, oaf, 0.6.2) +EVO_CHECK_LIB(libglade, libglade, 0.14) +EVO_CHECK_LIB(gdk-pixbuf with GNOME canvas support, gnomecanvaspixbuf, 0.9.0) +EVO_CHECK_LIB(GAL, gal, 0.7.99.3) dnl FIXME: really a post-0.9.3 version (as of April 25) is needed for dnl changes in Editor.idl (menesis) -EVO_CHECK_LIB(GtkHTML, 0.9.3, gtkhtml) -EVO_CHECK_LIB(GNOME-VFS, 0.4.2, vfs) -EVO_CHECK_LIB(libxml, 1.8.10, xml) +EVO_CHECK_LIB(GtkHTML, gtkhtml, 0.9.3) +EVO_CHECK_LIB(GNOME-VFS, vfs, 1.0) +EVO_CHECK_LIB(libxml, xml, 1.8.10, 2.0) @@ -682,19 +703,23 @@ AC_ARG_WITH(openssl-libs, [ --with-openssl-libs=PREFIX Location of OpenSSL msg_openssl="no" if test "x${with_openssl_libs}" != "xno" -a "x${have_openssl_includes}" != "xno"; then LDFLAGS_save="$LDFLAGS" - + + case $with_openssl_libs in + ""|-L*) ;; + *) $with_openssl_libs="-L$with_openssl_libs" ;; + esac + + AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="") AC_CACHE_CHECK([for OpenSSL libraries], openssl_libs, [ -dnl How can we test to see if we need to link to libld for sure?? -dnl RedHat 6.2 seems to need to but Debian Woody doesn't - LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto -ldl" + LDFLAGS="$LDFLAGS $with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" AC_TRY_LINK_FUNC(SSL_read, openssl_libs="yes", openssl_libs="no") LDFLAGS="$LDFLAGS_save" ]) if test "x${openssl_libs}" != "xno"; then AC_DEFINE(HAVE_OPENSSL) msg_openssl="yes" - OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto -ldl" + OPENSSL_LDFLAGS="$with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" else OPENSSL_CFLAGS="" OPENSSL_LDFLAGS="" -- cgit v1.2.3