Hello community,

here is the log from the commit of package WindowMaker for openSUSE:Factory 
checked in at 2015-02-01 12:30:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/WindowMaker (Old)
 and      /work/SRC/openSUSE:Factory/.WindowMaker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "WindowMaker"

Changes:
--------
--- /work/SRC/openSUSE:Factory/WindowMaker/WindowMaker.changes  2014-11-11 
01:11:58.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.WindowMaker.new/WindowMaker.changes     
2015-02-01 12:30:17.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Jan 27 18:11:07 UTC 2015 - [email protected]
+
+- Update wm-giflib.patch to support giflib-5.1
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ WindowMaker.spec ++++++
--- /var/tmp/diff_new_pack.BuBcfP/_old  2015-02-01 12:30:18.000000000 +0100
+++ /var/tmp/diff_new_pack.BuBcfP/_new  2015-02-01 12:30:18.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package WindowMaker
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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

++++++ wm-giflib.patch ++++++
--- /var/tmp/diff_new_pack.BuBcfP/_old  2015-02-01 12:30:18.000000000 +0100
+++ /var/tmp/diff_new_pack.BuBcfP/_new  2015-02-01 12:30:18.000000000 +0100
@@ -86,7 +86,7 @@
  WPrefs.app/editmenu.c           |    4 ++++
  WPrefs.app/main.c               |    4 ++++
  WPrefs.app/xmodifier.c          |    4 ++++
- configure.ac                    |    5 +++--
+ configure.ac                    |    4 +++-
  src/actions.c                   |    4 ++++
  src/appicon.c                   |    4 ++++
  src/application.c               |    4 ++++
@@ -161,12 +161,12 @@
  wmlib/event.c                   |    4 ++++
  wmlib/menu.c                    |    4 ++++
  wrlib/alpha_combine.c           |    4 ++++
- wrlib/gif.c                     |   26 +++++++++++++++++++++++---
+ wrlib/load_gif.c                |    7 +++++--
  wrlib/tests/testdraw.c          |    4 ++++
  wrlib/tests/testgrad.c          |    4 ++++
  wrlib/tests/testrot.c           |    4 ++++
  wrlib/tests/view.c              |    4 ++++
- 167 files changed, 686 insertions(+), 5 deletions(-)
+ 167 files changed, 668 insertions(+), 3 deletions(-)
 
 Index: WindowMaker-0.95.6/WINGs/Examples/colorpick.c
 ===================================================================
@@ -2497,6 +2497,39 @@
  #include "wraster.h"
  
  void RCombineAlpha(unsigned char *d, unsigned char *s, int s_has_alpha,
+Index: WindowMaker-0.95.6/wrlib/load_gif.c
+===================================================================
+--- WindowMaker-0.95.6.orig/wrlib/load_gif.c
++++ WindowMaker-0.95.6/wrlib/load_gif.c
+@@ -27,6 +27,10 @@
+ #include <string.h>
+ 
+ #include <gif_lib.h>
++#if defined(GIFLIB_MAJOR) && (GIFLIB_MAJOR > 5 || (GIFLIB_MAJOR >= 5 && 
GIFLIB_MINOR >= 1))
++#else
++#     define DGifCloseFile(a, b) DGifCloseFile(a)
++#endif
+ 
+ #include "wraster.h"
+ #include "imgformat.h"
+@@ -81,7 +84,7 @@ RImage *RLoadGIF(const char *file, int i
+       }
+ 
+       if (gif->SWidth < 1 || gif->SHeight < 1) {
+-              DGifCloseFile(gif);
++              DGifCloseFile(gif, NULL);
+               RErrorCode = RERR_BADIMAGEFILE;
+               return NULL;
+       }
+@@ -216,7 +219,7 @@ RImage *RLoadGIF(const char *file, int i
+               free(buffer);
+ 
+       if (gif)
+-              DGifCloseFile(gif);
++              DGifCloseFile(gif, NULL);
+ 
+       return image;
+ }
 Index: WindowMaker-0.95.6/wrlib/tests/testdraw.c
 ===================================================================
 --- WindowMaker-0.95.6.orig/wrlib/tests/testdraw.c

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

Reply via email to