10_rsvg-gz.patch 711 B

123456789101112131415161718192021
  1. Description: Revert ABI breakage
  2. Provide the rsvg_handle_new_gz function.
  3. Do not provide the C prototype to force
  4. applications using it to use rsvg_handle_new instead.
  5. Author: Josselin Mouette <joss@debian.org>
  6. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348920
  7. Index: librsvg-2.40.0/rsvg-gobject.c
  8. ===================================================================
  9. --- librsvg-2.40.0.orig/rsvg-gobject.c 2013-10-14 23:15:46.004777056 +0200
  10. +++ librsvg-2.40.0/rsvg-gobject.c 2013-10-14 23:15:46.004777056 +0200
  11. @@ -377,3 +377,9 @@
  12. "flags", flags,
  13. NULL);
  14. }
  15. +
  16. +RsvgHandle *
  17. +rsvg_handle_new_gz (void)
  18. +{
  19. + return rsvg_handle_new ();
  20. +}