[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[Evolution] E-D-S from SVN HEAD fails to build
- From: Paul Smith <psmith gnu org>
- To: Evolution <evolution-list gnome org>
- Subject: [Evolution] E-D-S from SVN HEAD fails to build
- Date: Wed, 01 Aug 2007 11:25:40 -0400
Hi all;
I just tried to build SVN head and the latest evolution-data-server rev
7907 fails to build with an autogen error:
Running autoheader...
Running automake-1.7...
SUBDIRS: variable `zoneinfo_dir' is used but `zoneinfo_dir' is undefined
autogen failed!
The attached patch fixes the problem, although I'm not saying it's the
best way to solve it.
Cheers.
--
-----------------------------------------------------------------------------
Paul D. Smith <psmith gnu org> http://make.paulandlesley.org
"Please remain calm--I may be mad, but I am a professional."--Mad Scientist
Index: calendar/libical/configure.in
===================================================================
--- calendar/libical/configure.in (revision 614)
+++ calendar/libical/configure.in (working copy)
@@ -43,7 +43,10 @@
if test "x$os_win32" = "xyes"; then
zoneinfo_dir="zoneinfo"
+else
+ zoneinfo_dir=""
fi
+AC_SUBST(zoneinfo_dir)
dnl *** bdb4 support
Index: calendar/libical/Makefile.am
===================================================================
--- calendar/libical/Makefile.am (revision 614)
+++ calendar/libical/Makefile.am (working copy)
@@ -1,3 +1,4 @@
+zoneinfo_dir = @zoneinfo_dir@
EXTRA_DIST = \
ChangeLog \
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]