Mercurial > emacs
changeset 106525:12138f085fa7
configure.in: Check for RSVG if GNUStep is used.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Thu, 10 Dec 2009 19:27:37 +0000 |
parents | 4116dfcc94b0 |
children | 9a6c9ef9321f |
files | ChangeLog configure configure.in |
diffstat | 3 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Dec 10 19:25:36 2009 +0000 +++ b/ChangeLog Thu Dec 10 19:27:37 2009 +0000 @@ -1,3 +1,7 @@ +2009-12-10 Jan Djärv <jan.h.d@swipnet.se> + + * configure.in: Check for RSVG if GNUStep is used. + 2009-12-09 Jan Djärv <jan.h.d@swipnet.se> * configure.in: Don't check for RSVG or GConf unless X11 is used.
--- a/configure Thu Dec 10 19:25:36 2009 +0000 +++ b/configure Thu Dec 10 19:27:37 2009 +0000 @@ -11327,7 +11327,7 @@ ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. HAVE_RSVG=no -if test "${HAVE_X11}" = "yes"; then +if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then if test "${with_rsvg}" != "no"; then RSVG_REQUIRED=2.11.0 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
--- a/configure.in Thu Dec 10 19:25:36 2009 +0000 +++ b/configure.in Thu Dec 10 19:27:37 2009 +0000 @@ -1610,7 +1610,7 @@ ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. HAVE_RSVG=no -if test "${HAVE_X11}" = "yes"; then +if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then if test "${with_rsvg}" != "no"; then RSVG_REQUIRED=2.11.0 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"