diff options
author | adam <adam> | 2010-09-07 19:04:15 +0000 |
---|---|---|
committer | adam <adam> | 2010-09-07 19:04:15 +0000 |
commit | ea4e037fa133df272076f54e6ef5c1bc8a97b466 (patch) | |
tree | de4c63f484ef09d76a071d33a9f8809b07b049c4 /mail/gmime/Makefile | |
parent | 6fe7c25bcb5f9ac2b6973431f4120a40b361a167 (diff) | |
download | pkgsrc-ea4e037fa133df272076f54e6ef5c1bc8a97b466.tar.gz |
Changes 2.4.18:
GMime 2.4 has had a number of API changes since GMime 2.2. To start, ALL public
APIs that used to use off_t in GMime 2.2 now use gint64 so that the API and ABI
do not change based on whether or not large file support is enabled.
In addition, all of the functions marked as deprecated in 2.0 and 2.2 were
removed (usually they had equivalent functionality in a parent class).
Many functions have also been renamed for better clarity and/or consistency.
For convenience, GMime 2.4 source packages include a shell-script to aid in
porting applications using GMime 2.2 (should work for most GMime 2.0
applications as well) to the 2.4 API. You can find this script under the
tools/ directory, named `gmime-port-2-2-to-2-4.sh'.
This script won't fix everything, but it should help quite a bit.
Diffstat (limited to 'mail/gmime/Makefile')
-rw-r--r-- | mail/gmime/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mail/gmime/Makefile b/mail/gmime/Makefile index 11fcb9d3404..073e0aa3c57 100644 --- a/mail/gmime/Makefile +++ b/mail/gmime/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.25 2010/02/11 15:44:29 wiz Exp $ -# +# $NetBSD: Makefile,v 1.26 2010/09/07 19:04:15 adam Exp $ -DISTNAME= gmime-2.2.25 -PKGREVISION= 1 +DISTNAME= gmime-2.4.18 CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gmime/2.2/} +MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gmime/2.4/} +EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://spruce.sourceforge.net/gmime/ @@ -21,7 +20,7 @@ USE_TOOLS+= gmake pkg-config GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-gtk-doc=no CONFIGURE_ARGS+= --disable-mono -PKGCONFIG_OVERRIDE+= gmime-2.0.pc.in +PKGCONFIG_OVERRIDE+= gmime-2.4.pc.in TEST_TARGET= check .include "options.mk" |