fvwm2/fvwm-rsvg.patch
Michael Vetter 136796c6ef Accepting request 417830 from home:WernerFink:branches:X11:windowmanagers
- Update to 2.6.6
  * fvwm features:
  - Support for Russian from Ivan Gayevskiy.
  - EnvMatch supports infostore variables.
  - The option "forget" to the Maximize command allows to
    unmaximize a window without changing its size and position.
  - Windows shaded to a corner (NW, NE, SW, SE) are reduced to a
    small square.
  - New option "!raise" to the WarpToWindow command.
  - The new extended variables $[wa.x], $[wa.y], $[wa.width],
    $[wa.height] can be used to get the geometry of the EWMH
    working area, and $[dwa.x], $[dwa.y], $[dwa.width],
    $[dwa.height] can be used to get the geometry of the EWMH
    dynamic working area.
  - The Resize commands accept "wa" or "da" as a suffix of the
    width or height value.  If present, the value is a percentage
    of the width or height of the EWMH working area or the EWMH
    dynamic working area.
  - Fvwm is much more resilient against applications that flood the
    window manager with repeated events.
  * New module features:
  - FvwmForm supports separator lines.
  - New FvwmIconMan options:
      IconAndSelectButton
      IconAndSelectColorset
  * Bug fixes:
  - Provide a wrapper for the deprecation of XKeycodeToKeysym and
    use XkbKeycodeToKeysym() where appropriate.
  - fvwm-menu-desktop is re-written and provides better support of
    the XDG menu specification.

OBS-URL: https://build.opensuse.org/request/show/417830
OBS-URL: https://build.opensuse.org/package/show/X11:windowmanagers/fvwm2?expand=0&rev=33
2016-08-08 12:44:57 +00:00

47 lines
1.3 KiB
Diff

---
configure | 1 -
configure.ac | 1 -
libs/Fsvg.h | 11 -----------
3 files changed, 13 deletions(-)
--- configure.ac
+++ configure.ac 2016-08-02 15:14:24.251904702 +0000
@@ -941,7 +941,6 @@ if test x"$with_rsvg" = xyes ; then
LIBS="$LIBS $rsvg_LIBS"
AC_TRY_RUN([
#include <librsvg/rsvg.h>
- #include <librsvg/rsvg-cairo.h>
int main() {
RsvgHandle *rsvg;
g_type_init();
--- configure
+++ configure 2016-08-02 15:14:24.255904627 +0000
@@ -9746,7 +9746,6 @@ else
/* end confdefs.h. */
#include <librsvg/rsvg.h>
- #include <librsvg/rsvg-cairo.h>
int main() {
RsvgHandle *rsvg;
g_type_init();
--- libs/Fsvg.h
+++ libs/Fsvg.h 2016-08-02 15:15:16.350925785 +0000
@@ -15,17 +15,6 @@
#if USE_SVG
# include <librsvg/rsvg.h>
-/* TA: (2013-05-07): If the version is >= 2.36.2 then we no longer include
- * the rsvg-cairo header. It is now only necessary with RSvg to include
- * <rsvg.h> and nothing else.
- */
-# if defined (LIBRSVG_CHECK_VERSION)
-# if LIBRSVG_CHECK_VERSION (2, 36, 1)
-# include <librsvg/rsvg-cairo.h>
-# endif
-# else
-# include <librsvg/rsvg-cairo.h>
-# endif
typedef RsvgDimensionData FRsvgDimensionData;
typedef RsvgHandle FRsvgHandle;
typedef cairo_surface_t Fcairo_surface_t;