configure.in: Check for RSVG if GNUStep is used.

This commit is contained in:
Jan Djärv 2009-12-10 19:27:37 +00:00
parent c70ccbba54
commit f1957a3361
3 changed files with 6 additions and 2 deletions

View file

@ -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.

2
configure vendored
View file

@ -11327,7 +11327,7 @@ fi
### 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"

View file

@ -1610,7 +1610,7 @@ fi
### 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"