diff options
author | adam <adam> | 2010-11-11 20:54:39 +0000 |
---|---|---|
committer | adam <adam> | 2010-11-11 20:54:39 +0000 |
commit | e98d56b48cdd4ca198a425df6232bea3139f2ab2 (patch) | |
tree | b57329dbc8928d4cb0b925bf5144c3016e92dabc /converters/wv/Makefile | |
parent | 2adadac6d4c987ecab884c9edd693012b235671b (diff) | |
download | pkgsrc-e98d56b48cdd4ca198a425df6232bea3139f2ab2.tar.gz |
Changes 1.2.9:
* Restore binary compatibility again, 1.2.8 broke it
Changes 1.2.8:
* Fix bug 10025: Segfault trying to parse certain word documents
* Fix bug 12746: Tables not imported from MS Word documents
* Fix Bug 11433 wvWare hangs on this seemingly blank word doc
* Buildfix: Remove unused LINK_WIN32_DLL check
* Buildfix: link with -no-undefined
Changes 1.2.7:
* Bug 12353: Regression: newlines not imported anymore
* Cross building improvements
* Fix build issue: 'libtool: link: `-::-' is not valid version information'
* Bug 12353: configure.ac in 1.2.6 release says 1.2.5
Changes 1.2.6:
Important:
* Restore the soversion major to the value of 1.2.4 because ABI didn't change.
Fixes:
* Bug 11547: unportable test construct.
* Fix typos in wvWare's help message.
* Fix a few mis-matched wvMalloc/malloc/wvFree/free combinations. Use glib to
allocate and free all of our memory.
* Bug 9355: a NULL pointer was causing a crash.
* Bug 9705: Default font alignment in paragraph was incorrect.
* Bug 10125: Crash in the PAP handling.
* Fix a memory leak in wvRTF.
* Bug 12034: Fix a huge performance issue while loading images.
* Fix invalid writes in wvConfig.c
Diffstat (limited to 'converters/wv/Makefile')
-rw-r--r-- | converters/wv/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/converters/wv/Makefile b/converters/wv/Makefile index c9ec05cdcb5..7c1827d0670 100644 --- a/converters/wv/Makefile +++ b/converters/wv/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.67 2010/06/13 22:44:00 wiz Exp $ +# $NetBSD: Makefile,v 1.68 2010/11/11 20:54:39 adam Exp $ -DISTNAME= wv-1.2.5 -PKGREVISION= 3 +DISTNAME= wv-1.2.9 CATEGORIES= converters -MASTER_SITES= http://www.abiword.com/downloads/wv/1.2.5/ +MASTER_SITES= http://www.abiword.com/downloads/wv/${PKGVERSION_NOREV}/ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://wvware.sourceforge.net/ @@ -15,11 +14,11 @@ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake pkg-config GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-libwmf=${BUILDLINK_PREFIX.libwmf} CONFIGURE_ARGS+= --with-libiconv=${BUILDLINK_PREFIX.libiconv} +CONFIGURE_ARGS+= --with-libwmf=${BUILDLINK_PREFIX.libwmf} CONFIGURE_ARGS+= --with-libxml2=${BUILDLINK_PREFIX.libxml2} -CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib} CONFIGURE_ARGS+= --with-png=${BUILDLINK_PREFIX.png} +CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib} PKGCONFIG_OVERRIDE+= wv-1.0.pc.in |