diff options
author | Peter Williams <peterw@ximian.com> | 2002-07-15 22:43:16 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2002-07-15 22:43:16 +0800 |
commit | b9f0e2bb93c07bedea09b81cabe72977d500454c (patch) | |
tree | 890fcc0a557e310ec2a2a3befa2ad1b15f46c510 /configure.in | |
parent | d925578fa8b6a6216bb29b08765f84e99c5d91cf (diff) | |
download | gsoc2013-evolution-b9f0e2bb93c07bedea09b81cabe72977d500454c.tar.gz gsoc2013-evolution-b9f0e2bb93c07bedea09b81cabe72977d500454c.tar.zst gsoc2013-evolution-b9f0e2bb93c07bedea09b81cabe72977d500454c.zip |
Define a versioned library directory that we can use for things that are
2002-07-10 Peter Williams <peterw@ximian.com>
* configure.in (privlibdir): Define a versioned library directory that we can
use for things that are ABI-sensitive: camel providers, importers... Define
camel_providerder in terms of this, resulting in a new location for the
providers. Camel will have to be rebuilt for it to get the new
-D flag.
mail:
2002-07-10 Peter Williams <peterw@ximian.com>
* Makefile.am (importerdir): Define this in terms of the new
privlibdir, again resulting in a new directory name.
* importers/Makefile.am (importersdir): Here too.
svn path=/trunk/; revision=17457
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 93a9b6fc31..81cd2773e0 100644 --- a/configure.in +++ b/configure.in @@ -1134,7 +1134,14 @@ AC_SUBST(EVOLUTION_CALENDAR_CONDUIT_LIBS) dnl --- evolution-mail flags -camel_providerdir='$(libdir)/evolution/camel-providers/'$EVOLUTION_MAJOR_VERSION.$EVOLUTION_MINOR_VERSION +dnl ****************************** +dnl Versioned library files +dnl ****************************** + +privlibdir='$(pkglibdir)/'$EVOLUTION_MAJOR_VERSION.$EVOLUTION_MINOR_VERSION +AC_SUBST(privlibdir) + +camel_providerdir="$privlibdir/camel-providers" AC_SUBST(camel_providerdir) EVO_SET_COMPILE_FLAGS(EVOLUTION_MAIL, $FULL_GNOME_DEPS, $GCONF_CFLAGS $THREADS_CFLAGS, $GCONF_LIBS $THREADS_LIBS) |