diff options
author | Hiroyuki Ikezoe <poincare@ikezoe.net> | 2007-07-28 22:32:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-07-28 22:32:06 +0800 |
commit | 02272f56cd47ac81c7c42c0954ed8c0e0d4f3526 (patch) | |
tree | 9f838af5231d624fefcb709a3f250d5325faf28c /configure.in | |
parent | 6baf4d9bcc8fac7d3ac4442ffa54138f9670b20f (diff) | |
download | gsoc2013-evolution-02272f56cd47ac81c7c42c0954ed8c0e0d4f3526.tar.gz gsoc2013-evolution-02272f56cd47ac81c7c42c0954ed8c0e0d4f3526.tar.zst gsoc2013-evolution-02272f56cd47ac81c7c42c0954ed8c0e0d4f3526.zip |
Enable configure option for support exchange-operatoion.
2007-07-28 Hiroyuki Ikezoe <poincare@ikezoe.net>
* configure.in: Enable configure option for support
exchange-operatoion.
svn path=/trunk/; revision=33865
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index d20dcf492f..2ac607c1ff 100644 --- a/configure.in +++ b/configure.in @@ -179,8 +179,8 @@ PKG_CHECK_MODULES(EVOLUTION_DATA_SERVER, libecal-$EDS_PACKAGE >= eds_minimum_version libedataserver-$EDS_PACKAGE >= eds_minimum_version libedataserverui-$EDS_PACKAGE >= eds_minimum_version - libegroupwise-$EDS_PACKAGE >= eds_minimum_version - libexchange-storage-$EDS_PACKAGE >= eds_minimum_version]) + libegroupwise-$EDS_PACKAGE >= eds_minimum_version]) + dnl ****************************** dnl iconv checking @@ -1674,7 +1674,8 @@ if echo ${plugins_enabled} | grep "new-mail-notify" > /dev/null ; then fi if echo ${plugins_enabled} | grep "exchange-operations" > /dev/null ; then - if ${PKG_CONFIG} --exists libexchange-storage-$EDS_PACKAGE ; then + PKG_CHECK_MODULES(LIBEXCHANGESTORAGE, libexchange-storare-$EDS_PACKAGE >= eds_minimum_version, have_libexchange="yes", have_libexchange="no") + if test "x$have_libexchange" = "xyes"; then dnl ************************************************** dnl * Exchange Operations plugin dnl ************************************************** |