aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-12-18 01:59:47 +0800
committerDan Winship <danw@src.gnome.org>2001-12-18 01:59:47 +0800
commitd55058d6634181451751970ee40eca0b4c99040a (patch)
tree157519e6ccf775565a2c60fc49e2afb44a05d0b8 /configure.in
parentbdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a (diff)
downloadgsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar.gz
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar.bz2
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar.lz
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar.xz
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.tar.zst
gsoc2013-evolution-d55058d6634181451751970ee40eca0b4c99040a.zip
only use major and minor version in the camel providerdir, not micro and nano
svn path=/trunk/; revision=15121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index a4abf735e6..cb5f9d1a1c 100644
--- a/configure.in
+++ b/configure.in
@@ -648,6 +648,9 @@ CAMEL_LIBS="`gnome-config --libs gal xml` $THREADS_LIBS"
AC_SUBST(CAMEL_CFLAGS)
AC_SUBST(CAMEL_LIBS)
+camel_providerdir='$(libdir)/evolution/camel-providers/'$EVOLUTION_MAJOR_VERSION.$EVOLUTION_MINOR_VERSION
+AC_SUBST(camel_providerdir)
+
MAILER_CFLAGS="`gnome-config --cflags gtkhtml libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal bonobo_conf bonobox bonobox_print vfs oaf` $THREADS_CFLAGS"
MAILER_LIBS="`gnome-config --libs gtkhtml libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal bonobo_conf bonobox bonobox_print vfs oaf` $THREADS_LIBS"
AC_SUBST(MAILER_CFLAGS)
@@ -767,7 +770,8 @@ if test x${with_krb4:=no} != xno; then
msg_krb4=yes
if test -f "$with_krb4/include/krb.h" -o -f "$with_krb4/include/port-sockets.h"; then
KRB4_CFLAGS="-I$with_krb4/include"
- else
+ fi
+ if test -d "$with_krb4/include/kerberosIV"; then
KRB4_CFLAGS="-I$with_krb4/include/kerberosIV"
fi
KRB4_LDFLAGS="-L$with_krb4/lib $ac_cv_lib_kerberos4"