imagemagick:native: fix build error with space
authorFrederik Sdun <frederik.sdun@googlemail.com>
Thu, 15 Oct 2009 19:22:02 +0000 (19:22 +0000)
committerMartin Jansa <Martin.Jansa@gmail.com>
Thu, 7 Jan 2010 12:11:33 +0000 (13:11 +0100)
Signed-off-by: Frederik 'playya' Sdun <Frederik.Sdun@googlemail.com>
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
recipes/imagemagick/files/fix_open_file.patch [new file with mode: 0644]
recipes/imagemagick/imagemagick_6.3.5-10.bb

diff --git a/recipes/imagemagick/files/fix_open_file.patch b/recipes/imagemagick/files/fix_open_file.patch
new file mode 100644 (file)
index 0000000..8374e1e
--- /dev/null
@@ -0,0 +1,12 @@
+diff -rup ImageMagick-6.3.5.orig/magick/delegate.c ImageMagick-6.3.5/magick/delegate.c
+--- ImageMagick-6.3.5.orig/magick/delegate.c   2009-10-15 18:40:06.000000000 +0200
++++ ImageMagick-6.3.5/magick/delegate.c        2009-10-15 18:23:10.000000000 +0200
+@@ -769,7 +769,7 @@ static void CopyDelegateFile(const char 
+   /*
+     Copy source file to destination.
+   */
+-  destination_file=open(destination,O_WRONLY | O_BINARY | O_CREAT);
++  destination_file=open(destination, O_BINARY | O_CREAT, O_WRONLY);
+   if (destination_file == -1)
+     return;
+   source_file=open(source,O_RDONLY | O_BINARY);
index cf9e82f..8bd25e9 100644 (file)
@@ -2,12 +2,13 @@ DESCRIPTION = "ImageMagick is an image convertion tools"
 SECTION = "console/utils"
 LICENSE = "GPL"
 DEPENDS = "tiff"
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "ftp://ftp.nluug.nl/pub/ImageMagick/ImageMagick-${PV}.tar.bz2 \
            file://PerlMagic_MakePatch;patch=1 \
            file://makefile-am.patch;patch=1 \
-           file://binconfig-fixes.patch;patch=1 "
+           file://binconfig-fixes.patch;patch=1 \
+          file://fix_open_file.patch;patch=1 "
 
 IMVER = "6.3.5"