]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 1 Jun 2010 18:42:49 +0000 (18:42 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 1 Jun 2010 18:42:49 +0000 (18:42 +0000)
config/config.h.in
config/configure.xml
configure
configure.ac
magick/magick-config.h
magick/version.h

index 59350409c9686ab9bb55831fc309ad18ce67a300..2814622d90f18cd0a68d24e43aed4c5d89c14682 100644 (file)
 /* The size of `size_t', as computed by sizeof. */
 #undef SIZEOF_SIZE_T
 
+/* The size of `ssize_t', as computed by sizeof. */
+#undef SIZEOF_SSIZE_T
+
 /* The size of `unsigned int', as computed by sizeof. */
 #undef SIZEOF_UNSIGNED_INT
 
index ddbfe37bc2ab1db07df424e838da95c76ea63ebe..a32851684e1985bd27ee588ec425625d7fe51355 100644 (file)
@@ -9,7 +9,7 @@
   <configure name="NAME" value="ImageMagick"/>
   <configure name="LIB_VERSION" value="0x662"/>
   <configure name="LIB_VERSION_NUMBER" value="6,6,2,2"/>
-  <configure name="RELEASE_DATE" value="2010-05-31"/>
+  <configure name="RELEASE_DATE" value="2010-06-01"/>
   <configure name="CONFIGURE" value="./configure "/>
   <configure name="PREFIX" value="/usr/local"/>
   <configure name="EXEC-PREFIX" value="/usr/local"/>
index 3fb2b7708260fe683d792741a645dcb37d50e3f2..020a3c5217443bdf7304916fd261b7b72bda57e6 100755 (executable)
--- a/configure
+++ b/configure
@@ -22105,6 +22105,42 @@ _ACEOF
 
 
 
+# Obtain size of ssize_t and define as SIZEOF_SSIZE_T
+# The cast to long int works around a bug in the HP C Compiler
+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
+# This bug is HP SR number 8606223364.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of ssize_t" >&5
+$as_echo_n "checking size of ssize_t... " >&6; }
+if test "${ac_cv_sizeof_ssize_t+set}" = set; then :
+  $as_echo_n "(cached) " >&6
+else
+  if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (ssize_t))" "ac_cv_sizeof_ssize_t"        "$ac_includes_default"; then :
+
+else
+  if test "$ac_cv_type_ssize_t" = yes; then
+     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+{ as_fn_set_status 77
+as_fn_error "cannot compute sizeof (ssize_t)
+See \`config.log' for more details." "$LINENO" 5; }; }
+   else
+     ac_cv_sizeof_ssize_t=0
+   fi
+fi
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_ssize_t" >&5
+$as_echo "$ac_cv_sizeof_ssize_t" >&6; }
+
+
+
+cat >>confdefs.h <<_ACEOF
+#define SIZEOF_SSIZE_T $ac_cv_sizeof_ssize_t
+_ACEOF
+
+
+
 # Obtain size of an unsigned int pointer and define as SIZEOF_UNSIGNED_INTP
 # The cast to long int works around a bug in the HP C Compiler
 # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
index 787a4e592348dc452b3819dfdab4dcff6ab57b30..96a9a2e53d878e7e24a20c90e944169c0fef4307 100755 (executable)
@@ -871,6 +871,9 @@ AC_CHECK_SIZEOF(off_t)
 # Obtain size of size_t and define as SIZEOF_SIZE_T
 AC_CHECK_SIZEOF(size_t)
 
+# Obtain size of ssize_t and define as SIZEOF_SSIZE_T
+AC_CHECK_SIZEOF(ssize_t)
+
 # Obtain size of an unsigned int pointer and define as SIZEOF_UNSIGNED_INTP
 AC_CHECK_SIZEOF(unsigned int*)
 
index bf4fdb8356cb9bbd6ddc56030ac21d73b5a84cc9..eb92a8efa3b6fb99a92bdfb36e9710bdd01d90b3 100644 (file)
 #define MAGICKCORE_SIZEOF_SIZE_T 8
 #endif
 
+/* The size of `ssize_t', as computed by sizeof. */
+#ifndef MAGICKCORE_SIZEOF_SSIZE_T
+#define MAGICKCORE_SIZEOF_SSIZE_T 8
+#endif
+
 /* The size of `unsigned int', as computed by sizeof. */
 #ifndef MAGICKCORE_SIZEOF_UNSIGNED_INT
 #define MAGICKCORE_SIZEOF_UNSIGNED_INT 4
index ab91dde924a856d5a3bdf716ba94cf360d3add4d..c028e9739ceb20cbe614df55474bb7a14cded9bd 100644 (file)
@@ -33,8 +33,8 @@ extern "C" {
 #define MagickLibAddendum  "-2"
 #define MagickLibInterface  3
 #define MagickLibMinInterface  3
-#define MagickReleaseDate  "2010-05-31"
-#define MagickChangeDate   "20100528"
+#define MagickReleaseDate  "2010-06-01"
+#define MagickChangeDate   "20100531"
 #define MagickAuthoritativeURL  "http://www.imagemagick.org"
 #define MagickHomeURL  "file:///usr/local/share/doc/ImageMagick-6.6.2/index.html"
 #if (MAGICKCORE_QUANTUM_DEPTH == 8)