[evolution-patches] e-d-s calendar build fix



I had to apply the attached patch to get the e-d-s tarball to build for
Fedora.  Looks like this change may have broken it:
http://cvs.gnome.org/viewcvs/libical/src/libical/vsnprintf.c?r1=1.2&r2=1.3

(the non-WIN32 build would be getting its definition of HAVE_SNPRINTF
from config.h but never included it, and hence would always act as if it
were undefined)

OK to commit (with appropriate ChangeLog?)

Dave
--- evolution-data-server-1.3.8/calendar/libical/src/libical/vsnprintf.c.fix-libical-vsnprintf.c	2005-08-23 19:39:58.000000000 -0400
+++ evolution-data-server-1.3.8/calendar/libical/src/libical/vsnprintf.c	2005-08-23 19:40:43.000000000 -0400
@@ -1,7 +1,9 @@
-#if !defined(WIN32) && !defined(HAVE_SNPRINTF)
+#if !defined(WIN32) 
 
 #include "config.h"
 
+#if !defined(HAVE_SNPRINTF)
+
 /*
  * Revision 12: http://theos.com/~deraadt/snprintf.c
  *
@@ -170,3 +172,4 @@
 }
 
 #endif
+#endif


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]