emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115430: Fix librsvg build on MS-Windows.


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r115430: Fix librsvg build on MS-Windows.
Date: Sun, 08 Dec 2013 19:29:11 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115430
revision-id: address@hidden
parent: address@hidden
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sun 2013-12-08 21:28:29 +0200
message:
  Fix librsvg build on MS-Windows.
  
   configure.ac (HAVE_RSVG) [mingw32]: Don't link against librsvg statically.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-12-08 08:53:49 +0000
+++ b/ChangeLog 2013-12-08 19:28:29 +0000
@@ -1,3 +1,8 @@
+2013-12-08  Eli Zaretskii  <address@hidden>
+
+       * configure.ac (HAVE_RSVG) [mingw32]: Don't link against librsvg
+       statically.
+
 2013-12-08  Paul Eggert  <address@hidden>
 
        * configure.ac: Simplify supression of GTK deprecation warning.

=== modified file 'configure.ac'
--- a/configure.ac      2013-12-08 08:53:49 +0000
+++ b/configure.ac      2013-12-08 19:28:29 +0000
@@ -2136,6 +2136,10 @@
     if test $HAVE_RSVG = yes; then
       AC_DEFINE(HAVE_RSVG, 1, [Define to 1 if using librsvg.])
       CFLAGS="$CFLAGS $RSVG_CFLAGS"
+      # Windows loads librsvg dynamically
+      if test "${opsys}" = "mingw32"; then
+               RSVG_LIBS=
+      fi
       LIBS="$RSVG_LIBS $LIBS"
     fi
   fi


reply via email to

[Prev in Thread] Current Thread [Next in Thread]