diff --git a/ChangeLog b/ChangeLog index f33f84c64c7..fbd8c01daf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-12-10 Jan Djärv + + * configure.in: Check for RSVG if GNUStep is used. + 2009-12-09 Jan Djärv * configure.in: Don't check for RSVG or GConf unless X11 is used. diff --git a/configure b/configure index 79dfe0fdbdf..8372aab03c3 100755 --- a/configure +++ b/configure @@ -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" diff --git a/configure.in b/configure.in index 8320448d855..32208c76170 100644 --- a/configure.in +++ b/configure.in @@ -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"