Hello community,

here is the log from the commit of package ImageMagick for openSUSE:11.3
checked in at Fri Sep 9 16:14:38 CEST 2011.



--------
--- old-versions/11.3/UPDATES/all/ImageMagick/ImageMagick.changes       
2010-07-29 14:26:23.000000000 +0200
+++ 11.3/ImageMagick/ImageMagick.changes        2011-09-06 17:33:09.000000000 
+0200
@@ -1,0 +2,5 @@
+Tue Sep  6 15:17:03 UTC 2011 - [email protected]
+
+- fixed wrong error messages [bnc#673303]
+
+-------------------------------------------------------------------

calling whatdependson for 11.3-i586


New:
----
  ImageMagick-6.6.1.0-reason-error-message.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ImageMagick.spec ++++++
--- /var/tmp/diff_new_pack.fGUpt1/_old  2011-09-09 16:13:59.000000000 +0200
+++ /var/tmp/diff_new_pack.fGUpt1/_new  2011-09-09 16:13:59.000000000 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ImageMagick (Version 6.6.1.0)
+# spec file for package ImageMagick
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,7 @@
 Group:          Productivity/Graphics/Other
 AutoReqProv:    on
 Version:        6.6.1.0
-Release:        4.<RELEASE1>
+Release:        4.<RELEASE3>
 %define source_version 6.6.1-0
 %define libver  3
 Summary:        Viewer and Converter for Images
@@ -44,6 +44,7 @@
 Patch2:         ImageMagick-%{version}-doc.patch
 Patch3:         ImageMagick-%{version}-units.patch
 Patch4:         ImageMagick-%{version}-grayscale.patch
+Patch5:         ImageMagick-%{version}-reason-error-message.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %package -n perl-PerlMagick
@@ -123,6 +124,7 @@
 %patch2
 %patch3 -p1
 %patch4 -p1
+%patch5
 
 %build
 %define system_ltdl 0

++++++ ImageMagick-6.6.1.0-reason-error-message.patch ++++++
--- magick/exception.c  2011-09-06 15:31:15.000000000 +0200
+++ magick/exception.c  2011-09-06 17:11:20.000000000 +0200
@@ -458,7 +458,11 @@ MagickExport char *GetExceptionMessage(c
     exception[MaxTextExtent];
 
 #if defined(MAGICKCORE_HAVE_STRERROR_R)
-  (void) strerror_r(error,exception,sizeof(exception));
+  #if !defined(_GNU_SOURCE)
+    (void) strerror_r(error,exception,sizeof(exception));
+  #else
+    (void) CopyMagickString(exception,strerror_r(error, exception, 
sizeof(exception)),sizeof(exception));
+  #endif
 #else
   (void) CopyMagickString(exception,strerror(error),sizeof(exception));
 #endif

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to