aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fdbb069ade4..98899fb5e96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
2
3 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
4
12009-01-22 Dan Nicolaescu <dann@ics.uci.edu> 52009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * configure.in: Add support for m68k-*-netbsd. 7 * configure.in: Add support for m68k-*-netbsd.
diff --git a/configure.in b/configure.in
index 228d20c6e04..11657348523 100644
--- a/configure.in
+++ b/configure.in
@@ -1497,7 +1497,7 @@ fi
1497 1497
1498### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. 1498### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified.
1499HAVE_RSVG=no 1499HAVE_RSVG=no
1500if test "${HAVE_X11}" = "yes"; then 1500if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes"; then
1501 if test "${with_rsvg}" != "no"; then 1501 if test "${with_rsvg}" != "no"; then
1502 RSVG_REQUIRED=2.0.0 1502 RSVG_REQUIRED=2.0.0
1503 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED" 1503 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"