aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Shaw <joe@ximian.com>2002-12-20 01:40:55 +0800
committerJoe Shaw <joeshaw@src.gnome.org>2002-12-20 01:40:55 +0800
commit05a87528f21322c1acd478e073583cde1dd9d43b (patch)
tree6f68bf90d7cc1b096468e24ff53e9bd198ed2bee
parentfccdec8c5e0ce21d8a7efb7797e6c71e77691ecd (diff)
downloadgsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar.gz
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar.bz2
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar.lz
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar.xz
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.tar.zst
gsoc2013-evolution-05a87528f21322c1acd478e073583cde1dd9d43b.zip
Add AC_CONFIG_AUX_DIR(..) so it looks for ylwrap in the toplevel evolution
2002-12-19 Joe Shaw <joe@ximian.com> * configure.in: Add AC_CONFIG_AUX_DIR(..) so it looks for ylwrap in the toplevel evolution directory and not our directory. Fixes the build for automake >= 1.5 svn path=/trunk/; revision=19169
-rw-r--r--libical/ChangeLog6
-rw-r--r--libical/configure.in4
2 files changed, 10 insertions, 0 deletions
diff --git a/libical/ChangeLog b/libical/ChangeLog
index 115ca75374..89bfaf11ed 100644
--- a/libical/ChangeLog
+++ b/libical/ChangeLog
@@ -1,3 +1,9 @@
+2002-12-19 Joe Shaw <joe@ximian.com>
+
+ * configure.in: Add AC_CONFIG_AUX_DIR(..) so it looks for ylwrap in
+ the toplevel evolution directory and not our directory. Fixes the
+ build for automake >= 1.5
+
2002-11-26 Rodrigo Moya <rodrigo@ximian.com>
* src/libical/icalyacc.y: added missing ';' for new bison to not
diff --git a/libical/configure.in b/libical/configure.in
index a07b8be2b3..71b5183831 100644
--- a/libical/configure.in
+++ b/libical/configure.in
@@ -3,6 +3,10 @@ AC_INIT(src)
AM_INIT_AUTOMAKE(libical-evolution,0.23a)
AM_CONFIG_HEADER(config.h)
+dnl Set the aux dir to .. (the toplevel evolution directory) so ylwrap
+dnl is found in the correct directory for automake >= 1.5
+AC_CONFIG_AUX_DIR(..)
+
dnl Initialize maintainer mode
AM_MAINTAINER_MODE