diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-11-20 14:20:03 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-11-20 14:20:03 +0000 |
commit | 4dc189f66235488baba6c924573e94a74e196f8f (patch) | |
tree | 5154c4b6c63833890a1bac217c60518b969d6796 /mail/evolution/files | |
parent | Update to 0.16.1. (diff) |
Update to 0.99.2.
Notes
Notes:
svn path=/head/; revision=50261
Diffstat (limited to 'mail/evolution/files')
-rw-r--r-- | mail/evolution/files/patch-libical::src::libical::icallangbind.c | 15 | ||||
-rw-r--r-- | mail/evolution/files/patch-libversit::vcc.y | 14 | ||||
-rw-r--r-- | mail/evolution/files/patch-libversit::vobject.c | 14 | ||||
-rw-r--r-- | mail/evolution/files/patch-po::Makefile.in.in | 14 |
4 files changed, 57 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-libical::src::libical::icallangbind.c b/mail/evolution/files/patch-libical::src::libical::icallangbind.c new file mode 100644 index 000000000000..4d3402387be1 --- /dev/null +++ b/mail/evolution/files/patch-libical::src::libical::icallangbind.c @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- libical/src/libical/icallangbind.c 2001/11/20 12:10:52 1.1 ++++ libical/src/libical/icallangbind.c 2001/11/20 12:11:22 +@@ -22,7 +22,9 @@ + #include "icalproperty.h" + #include "icalerror.h" + #include "icalmemory.h" ++#ifdef HAVE_MALLOC_H + #include <malloc.h> ++#endif + #include <string.h> + + int* icallangbind_new_array(int size){ diff --git a/mail/evolution/files/patch-libversit::vcc.y b/mail/evolution/files/patch-libversit::vcc.y new file mode 100644 index 000000000000..0514266ef18d --- /dev/null +++ b/mail/evolution/files/patch-libversit::vcc.y @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- libversit/vcc.y 2001/11/20 12:31:59 1.1 ++++ libversit/vcc.y 2001/11/20 12:32:39 +@@ -107,7 +107,7 @@ + #endif + + #include <string.h> +-#ifndef __MWERKS__ ++#ifdef HAVE_MALLOC_H + #include <malloc.h> + #endif + #include <stdio.h> diff --git a/mail/evolution/files/patch-libversit::vobject.c b/mail/evolution/files/patch-libversit::vobject.c new file mode 100644 index 000000000000..fe28ce1ca511 --- /dev/null +++ b/mail/evolution/files/patch-libversit::vobject.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- libversit/vobject.c 2001/11/20 12:33:21 1.1 ++++ libversit/vobject.c 2001/11/20 12:33:50 +@@ -42,7 +42,7 @@ + * vobject, and convert a vobject into its textual representation. + */ + +-#ifndef MWERKS ++#ifdef HAVE_MALLOC_H + #include <malloc.h> + #endif + diff --git a/mail/evolution/files/patch-po::Makefile.in.in b/mail/evolution/files/patch-po::Makefile.in.in new file mode 100644 index 000000000000..52ce64727053 --- /dev/null +++ b/mail/evolution/files/patch-po::Makefile.in.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- po/Makefile.in.in 2001/11/20 13:17:31 1.1 ++++ po/Makefile.in.in 2001/11/20 13:17:42 +@@ -106,7 +106,7 @@ + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ +- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ++ lang=`echo $$cat | sed 's/\.mo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then \ |