Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv29549/crypto/finkinfo

Modified Files:
      Tag: pangocairo-branch
        evolution-data-server.info evolution-data-server.patch 
        m2crypto-python23.info 
Log Message:
new upstream mono, more validation fixes

Index: m2crypto-python23.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/m2crypto-python23.info,v
retrieving revision 1.3.2.1
retrieving revision 1.3.2.2
diff -u -d -r1.3.2.1 -r1.3.2.2
--- m2crypto-python23.info      19 Jun 2007 21:16:48 -0000      1.3.2.1
+++ m2crypto-python23.info      19 Sep 2007 17:37:41 -0000      1.3.2.2
@@ -24,5 +24,6 @@
 cp -R tests %i/share/%n
 cp -R patches %i/share/%n
 cp -R perf %i/share/%n
+find %i -type d -name CVS -exec rm -rf {} \; || :
 <<
 Description: Python-based wrappers for openssl, python2.3

Index: evolution-data-server.patch
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/evolution-data-server.patch,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- evolution-data-server.patch 20 Apr 2007 16:25:27 -0000      1.1.2.1
+++ evolution-data-server.patch 19 Sep 2007 17:37:41 -0000      1.1.2.2
@@ -1,28 +1,42 @@
-diff -Naur evolution-data-server-0.0.96-old/libdb/dist/configure 
evolution-data-server-0.0.96/libdb/dist/configure
---- evolution-data-server-0.0.96-old/libdb/dist/configure      2004-07-19 
08:52:49.000000000 -0400
-+++ evolution-data-server-0.0.96/libdb/dist/configure  2004-07-22 
18:07:35.000000000 -0400
-@@ -19856,7 +19856,7 @@
- 
- 
- 
--for ac_func in _fstati64 clock_gettime directio gettimeofday getuid
-+for ac_func in _fstati64 clock_gettime gettimeofday getuid
- do
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
- echo "$as_me:$LINENO: checking for $ac_func" >&5
-@@ -19963,7 +19963,7 @@
- 
- 
+diff -uNr 
evolution-data-server-1.12.0/calendar/libical/src/libical/icaltz-util.c 
evolution-data-server-1.12.0-new/calendar/libical/src/libical/icaltz-util.c
+--- evolution-data-server-1.12.0/calendar/libical/src/libical/icaltz-util.c    
2007-09-16 15:11:13.000000000 -0400
++++ 
evolution-data-server-1.12.0-new/calendar/libical/src/libical/icaltz-util.c     
   2007-09-19 13:06:26.000000000 -0400
+@@ -23,6 +23,8 @@
+ #include <string.h>
+ #if defined(sun) && defined(__SVR4)
+ #include <sys/byteorder.h>
++#elif defined(__APPLE__)
++#include <machine/endian.h>
+ #else
+ #include <byteswap.h>
+ #include <endian.h>
+@@ -89,8 +91,12 @@
+     if ((BYTE_ORDER == BIG_ENDIAN) && sizeof (int) == 4)
+         return *(const int *) ptr;
+     else if (BYTE_ORDER == LITTLE_ENDIAN && sizeof (int) == 4)
++#ifdef __APPLE__
++        return OSSwapBigToHostInt32(*(const int *) ptr);
++#else
+         return bswap_32 (*(const int *) ptr);
+ #endif
++#endif
+       else
+       {
+               const unsigned char *p = ptr;
+@@ -105,6 +111,9 @@
+       }
+ }
  
--for ac_func in pstat_getdynamic sched_yield select strtoul sysconf yield
-+for ac_func in sched_yield select strtoul sysconf yield
- do
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
- echo "$as_me:$LINENO: checking for $ac_func" >&5
-diff -uNr evolution-data-server-1.10.1/configure 
evolution-data-server-1.10.1-new/configure
---- evolution-data-server-1.10.1/configure     2007-04-09 08:48:16.000000000 
-0400
-+++ evolution-data-server-1.10.1-new/configure 2007-04-14 16:52:12.000000000 
-0400
-@@ -25645,7 +25645,7 @@
++#define ntohl(x)        OSSwapBigToHostInt32(x)
++#define htonl(x)        OSSwapHostToBigInt32(x)
++
+ static char *
+ zname_from_stridx (char *str, long int idx) 
+ {
+diff -uNr evolution-data-server-1.12.0/configure 
evolution-data-server-1.12.0-new/configure
+--- evolution-data-server-1.12.0/configure     2007-09-17 02:26:11.000000000 
-0400
++++ evolution-data-server-1.12.0-new/configure 2007-09-19 10:13:20.000000000 
-0400
+@@ -25693,7 +25693,7 @@
  #include <iconv.h>
  #include <stdlib.h>
  #include <string.h>
@@ -31,7 +45,7 @@
  #include <gnu/libc-version.h>
  #endif
  
-@@ -25658,7 +25658,7 @@
+@@ -25706,7 +25706,7 @@
        size_t from_len = strlen (from), utf8_len = 20;
        size_t utf8_real_len = strlen (utf8);
  
@@ -40,3 +54,35 @@
        /* glibc 2.1.2's iconv is broken in hard to test ways. */
        if (!strcmp (gnu_get_libc_version (), "2.1.2"))
                exit (1);
+diff -uNr evolution-data-server-1.12.0/libdb/dist/configure 
evolution-data-server-1.12.0-new/libdb/dist/configure
+--- evolution-data-server-1.12.0/libdb/dist/configure  2007-09-16 
15:00:15.000000000 -0400
++++ evolution-data-server-1.12.0-new/libdb/dist/configure      2007-09-19 
10:13:20.000000000 -0400
+@@ -18815,7 +18815,7 @@
+ 
+ 
+ 
+-for ac_func in _fstati64 clock_gettime directio gettimeofday getuid
++for ac_func in _fstati64 clock_gettime gettimeofday getuid
+ do
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
+@@ -18904,7 +18904,7 @@
+ 
+ 
+ 
+-for ac_func in pstat_getdynamic sched_yield select strtoul sysconf yield
++for ac_func in sched_yield select strtoul sysconf yield
+ do
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
+diff -uNr evolution-data-server-1.12.0/libedataserverui/test-name-selector.c 
evolution-data-server-1.12.0-new/libedataserverui/test-name-selector.c
+--- evolution-data-server-1.12.0/libedataserverui/test-name-selector.c 
2007-09-16 14:51:04.000000000 -0400
++++ evolution-data-server-1.12.0-new/libedataserverui/test-name-selector.c     
2007-09-19 13:20:45.000000000 -0400
+@@ -28,6 +28,7 @@
+ #include "e-name-selector-model.h"
+ #include "e-name-selector-dialog.h"
+ #include "e-name-selector-entry.h"
++#include <sys/types.h>
+ #include <gtk/gtk.h>
+ #include <camel/camel.h>
+ 

Index: evolution-data-server.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/evolution-data-server.info,v
retrieving revision 1.4.2.49
retrieving revision 1.4.2.50
diff -u -d -r1.4.2.49 -r1.4.2.50
--- evolution-data-server.info  18 Sep 2007 14:42:29 -0000      1.4.2.49
+++ evolution-data-server.info  19 Sep 2007 17:37:41 -0000      1.4.2.50
@@ -81,6 +81,8 @@
 Replaces: %N-shlibs, %N-1.8-shlibs
 Source: mirror:gnome:sources/%n/1.12/%n-%v.tar.bz2
 Source-MD5: 787cfe9d652f46395a9adce056bdb286
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/lib/pango-ft219/include/pango-1.0 
-I%p/lib/pango-ft219/include -I%p/lib/freetype219/include/freetype2 
-I%p/lib/freetype219/include -I%p/lib/fontconfig2/include -I%p/include
 NoSetLDFLAGS: true


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to