diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 01:23:09 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 01:23:09 +0800 |
commit | e703f44dbb440836a6973f65842e80aa6880d836 (patch) | |
tree | dde9e90bc11c1f6da395827f617fda57458ab96c /configure.in | |
parent | f6ac018d23ac51b8fb9d99cd6a26db4bc2e604fb (diff) | |
download | gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar.gz gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar.bz2 gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar.lz gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar.xz gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.tar.zst gsoc2013-evolution-e703f44dbb440836a6973f65842e80aa6880d836.zip |
define and AC_SUBST privlibexecdir.
* configure.in: define and AC_SUBST privlibexecdir.
* evolution-shell.pc.in: Add privlibexecdir, componentdir,
evolutionuidir, and iconsdir.
svn path=/trunk/; revision=19758
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3920eb719b..602bab12dc 100644 --- a/configure.in +++ b/configure.in @@ -1135,6 +1135,10 @@ dnl ******************* dnl Special directories dnl ******************* +dnl --- If you add something here, you almost certainly need to add it +dnl --- to evolution-shell.pc.in (or camel.pc.in) as well, for use by +dnl --- connector and other external plugins. + BASE_VERSION=`echo $VERSION | awk -F. '{print $1 "." $2;}'` AC_SUBST(BASE_VERSION) AC_DEFINE_UNQUOTED(BASE_VERSION, "$BASE_VERSION", [Base version (Major.Minor)]) @@ -1142,6 +1146,9 @@ AC_DEFINE_UNQUOTED(BASE_VERSION, "$BASE_VERSION", [Base version (Major.Minor)]) privlibdir='${libdir}'/evolution/${BASE_VERSION} AC_SUBST(privlibdir) +privlibexecdir='${libexecdir}'/evolution/${BASE_VERSION} +AC_SUBST(privlibexecdir) + camel_providerdir="$privlibdir/camel-providers" AC_SUBST(camel_providerdir) |