diff options
author | wiz <wiz@pkgsrc.org> | 2014-12-01 11:15:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-12-01 11:15:21 +0000 |
commit | 265d9727b5016c903d6c71bab900694b7e4799cd (patch) | |
tree | bfe1e58756be89f0225a9354a2738bc11583e8f5 /converters/libcdr/patches | |
parent | 42460239cc4806ea5e059ec57fad7ff3a68e67ba (diff) | |
download | pkgsrc-265d9727b5016c903d6c71bab900694b7e4799cd.tar.gz |
Update to 0.1.1:
libcdr 0.1.1
* Fix several problems found by Coverity.
* Fix crash when NULL is passed as input stream.
* Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
* Only export public symbols on Linux.
Diffstat (limited to 'converters/libcdr/patches')
-rw-r--r-- | converters/libcdr/patches/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/converters/libcdr/patches/patch-configure b/converters/libcdr/patches/patch-configure new file mode 100644 index 00000000000..85f259fc312 --- /dev/null +++ b/converters/libcdr/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2014/12/01 11:15:21 wiz Exp $ + +Fix unportable test(1) comparison operator. + +--- configure.orig 2014-11-24 14:03:55.000000000 +0000 ++++ configure +@@ -17644,7 +17644,7 @@ else + fi + + +-if test $platform_win32 == yes; then : ++if test $platform_win32 = yes; then : + + else + |