Hello community,

here is the log from the commit of package i4l-base for openSUSE:Factory 
checked in at 2015-09-19 06:52:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/i4l-base (Old)
 and      /work/SRC/openSUSE:Factory/.i4l-base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "i4l-base"

Changes:
--------
--- /work/SRC/openSUSE:Factory/i4l-base/i4l-base.changes        2015-07-05 
17:57:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.i4l-base.new/i4l-base.changes   2015-09-19 
06:52:32.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Sep  9 09:27:15 UTC 2015 - dims...@opensuse.org
+
+- Add isdn4k-ncurses-6.0-accessors.patch: Fix build against
+  NCurses 6.0 with OPAQUE_WINDOW set to 1.
+
+-------------------------------------------------------------------

New:
----
  isdn4k-ncurses-6.0-accessors.patch

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

Other differences:
------------------
++++++ i4l-base.spec ++++++
--- /var/tmp/diff_new_pack.99Qd8C/_old  2015-09-19 06:52:33.000000000 +0200
+++ /var/tmp/diff_new_pack.99Qd8C/_new  2015-09-19 06:52:33.000000000 +0200
@@ -68,6 +68,7 @@
 Patch34:        vboxbeep-pie.patch
 Patch35:        isdnctrl-pie.patch
 Patch36:        divactrl_2.1-dialog.patch
+Patch37:        isdn4k-ncurses-6.0-accessors.patch
 # fix build with newer automake
 Patch50:        isdn4k-utils-automake-1_13.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -231,6 +232,9 @@
 %patch11 -p1
 %patch12 -p0
 popd
+pushd ../isdn4k-utils
+%patch37 -p1
+popd
 %patch50 -p1
 
 %build

++++++ isdn4k-ncurses-6.0-accessors.patch ++++++
Index: isdn4k-utils/vbox/src/vbox.c
===================================================================
--- isdn4k-utils.orig/vbox/src/vbox.c
+++ isdn4k-utils/vbox/src/vbox.c
@@ -1801,9 +1801,9 @@ static void set_window_background(WINDOW
 
        wattrset(win, col);
 
-       for (y = 0; y < (win->_maxy + 1); y++)
+       for (y = 0; y < (getmaxy(win) + 1); y++)
        {
-               mvwhline(win, y, 0, ' ', (win->_maxx + 1));
+               mvwhline(win, y, 0, ' ', (getmaxx(win) + 1));
        }
 }
 

Reply via email to