diff --git a/config/configure.xml b/config/configure.xml
index 7540883..8963298 100644
--- a/config/configure.xml
+++ b/config/configure.xml
@@ -9,7 +9,7 @@
<configure name="NAME" value="ImageMagick"/>
<configure name="LIB_VERSION" value="0x656"/>
<configure name="LIB_VERSION_NUMBER" value="6,5,6,5"/>
- <configure name="RELEASE_DATE" value="2009-09-24"/>
+ <configure name="RELEASE_DATE" value="2009-09-25"/>
<configure name="CONFIGURE" value="./configure "/>
<configure name="PREFIX" value="/usr/local"/>
<configure name="EXEC-PREFIX" value="/usr/local"/>
diff --git a/configure b/configure
index 9de057b..2a3be67 100755
--- a/configure
+++ b/configure
Binary files differ
diff --git a/configure.ac b/configure.ac
index ceb1442..4d2ba37 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1798,6 +1798,7 @@
[with_gslib=$withval],
[with_gslib='no'])
+gslib_framework='no'
if test "$with_gslib" != 'yes'; then
DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gslib=$with_gslib "
fi
@@ -1808,7 +1809,7 @@
AC_MSG_RESULT([-------------------------------------------------------------])
AC_MSG_CHECKING([for Ghostscript])
AC_MSG_RESULT([])
- framework=0;
+ framework=0
failed=0
passed=0
AC_CHECK_HEADER(ghostscript/iapi.h,passed=`expr $passed + 1`,
@@ -1825,6 +1826,7 @@
else
if test $framework -gt 0; then
GS_LIBS='-framework Ghostscript'
+ gslib_framework='yes'
AC_MSG_RESULT([yes, using framework.])
else
AC_MSG_RESULT([yes, using library.])
@@ -2629,7 +2631,7 @@
POVDelegateDefault='povray'
if test "$native_win32_build" = 'yes'; then
PSDelegateDefault='gswin32c'
-elif test $framework -gt 0; then
+elif test "$gslib_framework" = 'yes'; then
PSDelegateDefault='gsc'
else
PSDelegateDefault='gs'
diff --git a/magick/version.h b/magick/version.h
index f0d7eae..1c8c1bd 100644
--- a/magick/version.h
+++ b/magick/version.h
@@ -31,7 +31,7 @@
#define MagickLibVersionText "6.5.6"
#define MagickLibVersionNumber 2,0,0
#define MagickLibSubversion "-5"
-#define MagickReleaseDate "2009-09-24"
+#define MagickReleaseDate "2009-09-25"
#define MagickChangeDate "20090922"
#define MagickAuthoritativeURL "http://www.imagemagick.org"
#define MagickHomeURL "file:///usr/local/share/doc/ImageMagick-6.5.6/index.html"