rmagick 1.9.0 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

data/ChangeLog CHANGED
@@ -1,3 +1,23 @@
1
+ RMagick 1.9.1
2
+ o Fixed bug #2157, Image#total_colors is now an alias of Image#number_colors
3
+ o Fixed bug #2155, Image#dispose= now accepts a DisposeType enum, #dispose
4
+ now returns a DisposeType enum.
5
+ o Fixed bug #2156, Image#properties no longer returns garbage for the property
6
+ name and value.
7
+ o Fixed bug #2190, Image#compose now returns a CompositeOperator
8
+ o Fixed bug #2191, Image#composite no longer abends when called with 0 arguments
9
+ o Fixed bug #2213, ImageList#montage method no longer leaves the imagelist corrupt
10
+ after raising an ImageMagickError
11
+ o Feature #2159, added GrayChannel ChannelType enum value, BlendCompositeOp and
12
+ ColorBurnCompositeOp CompositeOperator enum values, RLECompression CompressionType
13
+ enum value, deprecate RunlengthCompression
14
+ o Feature #2172, added optional argument to crop and crop! to reset the saved
15
+ page offsets after cropping
16
+ o Deprecated Image#channel_threshold. This method is deprecated in ImageMagick.
17
+ o Feature #2373, change Image#import_pixels to accept a pixel data buffer as well
18
+ as a pixel data array. (Thanks to Ara T. Howard for this suggestion!)
19
+ o Fixed to compile without errors with ImageMagick 6.2.4-4.
20
+
1
21
  RMagick 1.9.0
2
22
  o Added Image#monitor=, Image::Info#monitor=. Deprecated Magick.set_monitor.
3
23
  o Fixed bug #2070, support color names with embedded spaces
@@ -1,14 +1,14 @@
1
1
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
2
  <html>
3
3
  <head>
4
- <title>RMagick 1.9.0 README</title>
4
+ <title>RMagick 1.9.1 README</title>
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
6
  <meta name="GENERATOR" content="BlueCloth">
7
7
  </head>
8
8
  <body>
9
- <h1>RMagick 1.9.0 README</h1>
9
+ <h1>RMagick 1.9.1 README</h1>
10
10
 
11
- <h2>07/15/05</h2>
11
+ <h2>09/07/05</h2>
12
12
 
13
13
  <h2>Table Of Contents</h2>
14
14
 
@@ -42,7 +42,7 @@ ImageMagick and GraphicsMagick image processing libraries.</p>
42
42
 
43
43
  <p><strong>Author:</strong> Tim Hunter</p>
44
44
 
45
- <p><strong>Email:</strong> <a href="&#109;&#x61;&#x69;&#108;&#x74;&#111;:&#x72;&#x6D;a&#x67;&#x69;&#x63;&#x6B;&#064;&#x72;&#x75;by&#102;&#x6F;&#x72;&#x67;&#101;.&#111;&#x72;&#x67;">&#x72;&#x6D;a&#x67;&#x69;&#x63;&#x6B;&#064;&#x72;&#x75;by&#102;&#x6F;&#x72;&#x67;&#101;.&#111;&#x72;&#x67;</a></p>
45
+ <p><strong>Email:</strong> <a href="&#x6D;a&#105;&#108;&#x74;&#x6F;:&#114;&#109;&#x61;&#x67;&#105;&#099;&#x6B;&#064;&#114;&#x75;&#x62;&#x79;&#x66;&#x6F;r&#x67;&#101;&#x2E;&#x6F;&#x72;&#x67;">&#114;&#109;&#x61;&#x67;&#105;&#099;&#x6B;&#064;&#114;&#x75;&#x62;&#x79;&#x66;&#x6F;r&#x67;&#101;&#x2E;&#x6F;&#x72;&#x67;</a></p>
46
46
 
47
47
  <p><strong>RubyForge:</strong> <a href="http://rubyforge.org/projects/rmagick/">http://rubyforge.org/projects/rmagick/</a></p>
48
48
 
@@ -218,7 +218,7 @@ addition to the regular options, there are a few RMagick-specific options:</p>
218
218
 
219
219
  <h4 id="scripts">Running the <code>configure</code> and <code>make</code> scripts</h4>
220
220
 
221
- <p>De-compress the RMagick-1.9.0.tar.gz archive and enter the top
221
+ <p>De-compress the RMagick-1.9.1.tar.gz archive and enter the top
222
222
  directory. Then type:</p>
223
223
 
224
224
  <pre><code>$ ./configure &lt;configuration options&gt;
@@ -239,9 +239,9 @@ $ make clean
239
239
 
240
240
  <p>When make is running the examples, if you get a message like this:</p>
241
241
 
242
- <pre><code>/home/you/RMagick-1.9.0/lib/RMagick.rb:11:in `require': libMagick.so.0:
242
+ <pre><code>/home/you/RMagick-1.9.1/lib/RMagick.rb:11:in `require': libMagick.so.0:
243
243
  cannot open shared object file: No such file or directory -
244
- /home/you/RMagick-1.9.0/ext/RMagick/RMagick.so (LoadError)
244
+ /home/you/RMagick-1.9.1/ext/RMagick/RMagick.so (LoadError)
245
245
  </code></pre>
246
246
 
247
247
  <p>you probably do not have the directory in which the ImageMagick or GraphicsMagick
@@ -261,7 +261,7 @@ systems, see the documentation for the dynamic loading facility.</p>
261
261
 
262
262
  <p>When make is running the examples, if you get a message like this:</p>
263
263
 
264
- <pre><code>hook /home/me/src/RMagick-1.9.0/./post-setup.rb failed:
264
+ <pre><code>hook /home/me/src/RMagick-1.9.1/./post-setup.rb failed:
265
265
  No such file or directory - "/tmp/rmagick6872.6"
266
266
  </code></pre>
267
267
 
data/README.txt CHANGED
@@ -1,6 +1,6 @@
1
- RMagick 1.9.0 README
1
+ RMagick 1.9.1 README
2
2
  ================================
3
- 07/15/05
3
+ 09/07/05
4
4
  --------
5
5
 
6
6
  Table Of Contents
@@ -188,7 +188,7 @@ addition to the regular options, there are a few RMagick-specific options:
188
188
 
189
189
  <h4 id="scripts">Running the <code>configure</code> and <code>make</code> scripts</h4>
190
190
 
191
- De-compress the RMagick-1.9.0.tar.gz archive and enter the top
191
+ De-compress the RMagick-1.9.1.tar.gz archive and enter the top
192
192
  directory. Then type:
193
193
 
194
194
  $ ./configure <configuration options>
@@ -206,9 +206,9 @@ The message can also refer to "libGraphicsMagick". Typically this message means
206
206
  #### Cannot open shared object file
207
207
  When make is running the examples, if you get a message like this:
208
208
 
209
- /home/you/RMagick-1.9.0/lib/RMagick.rb:11:in `require': libMagick.so.0:
209
+ /home/you/RMagick-1.9.1/lib/RMagick.rb:11:in `require': libMagick.so.0:
210
210
  cannot open shared object file: No such file or directory -
211
- /home/you/RMagick-1.9.0/ext/RMagick/RMagick.so (LoadError)
211
+ /home/you/RMagick-1.9.1/ext/RMagick/RMagick.so (LoadError)
212
212
 
213
213
  you probably do not have the directory in which the ImageMagick or GraphicsMagick
214
214
  library is installed in your load path. An easy way to fix this is to define the
@@ -225,7 +225,7 @@ systems, see the documentation for the dynamic loading facility.
225
225
  #### No such file or directory - "/tmp/rmagick6872.6"
226
226
  When make is running the examples, if you get a message like this:
227
227
 
228
- hook /home/me/src/RMagick-1.9.0/./post-setup.rb failed:
228
+ hook /home/me/src/RMagick-1.9.1/./post-setup.rb failed:
229
229
  No such file or directory - "/tmp/rmagick6872.6"
230
230
 
231
231
  you probably do not have a temporary directory environment variable set. Set
data/configure CHANGED
@@ -1,6 +1,6 @@
1
1
  #! /bin/sh
2
2
  # Guess values for system-dependent variables and create Makefiles.
3
- # Generated by GNU Autoconf 2.59 for RMagick 1.9.0.
3
+ # Generated by GNU Autoconf 2.59 for RMagick 1.9.1.
4
4
  #
5
5
  # Report bugs to <rmagick@rubyforge.org>.
6
6
  #
@@ -268,9 +268,9 @@ SHELL=${CONFIG_SHELL-/bin/sh}
268
268
 
269
269
  # Identity of this package.
270
270
  PACKAGE_NAME='RMagick'
271
- PACKAGE_TARNAME='RMagick-1.9.0.tar.gz'
272
- PACKAGE_VERSION='1.9.0'
273
- PACKAGE_STRING='RMagick 1.9.0'
271
+ PACKAGE_TARNAME='RMagick-1.9.1.tar.gz'
272
+ PACKAGE_VERSION='1.9.1'
273
+ PACKAGE_STRING='RMagick 1.9.1'
274
274
  PACKAGE_BUGREPORT='rmagick@rubyforge.org'
275
275
 
276
276
  # Factoring default headers for most tests.
@@ -779,7 +779,7 @@ if test "$ac_init_help" = "long"; then
779
779
  # Omit some internal or obsolete options to make the list less imposing.
780
780
  # This message is too long to be a string in the A/UX 3.1 sh.
781
781
  cat <<_ACEOF
782
- \`configure' configures RMagick 1.9.0 to adapt to many kinds of systems.
782
+ \`configure' configures RMagick 1.9.1 to adapt to many kinds of systems.
783
783
 
784
784
  Usage: $0 [OPTION]... [VAR=VALUE]...
785
785
 
@@ -836,7 +836,7 @@ fi
836
836
 
837
837
  if test -n "$ac_init_help"; then
838
838
  case $ac_init_help in
839
- short | recursive ) echo "Configuration of RMagick 1.9.0:";;
839
+ short | recursive ) echo "Configuration of RMagick 1.9.1:";;
840
840
  esac
841
841
  cat <<\_ACEOF
842
842
 
@@ -981,7 +981,7 @@ fi
981
981
  test -n "$ac_init_help" && exit 0
982
982
  if $ac_init_version; then
983
983
  cat <<\_ACEOF
984
- RMagick configure 1.9.0
984
+ RMagick configure 1.9.1
985
985
  generated by GNU Autoconf 2.59
986
986
 
987
987
  Copyright (C) 2003 Free Software Foundation, Inc.
@@ -995,7 +995,7 @@ cat >&5 <<_ACEOF
995
995
  This file contains any messages produced by compilers while
996
996
  running configure, to aid debugging if configure makes a mistake.
997
997
 
998
- It was created by RMagick $as_me 1.9.0, which was
998
+ It was created by RMagick $as_me 1.9.1, which was
999
999
  generated by GNU Autoconf 2.59. Invocation command line was
1000
1000
 
1001
1001
  $ $0 $@
@@ -4233,7 +4233,8 @@ done
4233
4233
 
4234
4234
 
4235
4235
 
4236
- for ac_func in CompareImageChannels PreviewImage SetImageColorspace
4236
+
4237
+ for ac_func in CompareImageChannels PreviewImage SetImageColorspace GetNextImageAttribute
4237
4238
  do
4238
4239
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4239
4240
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -6720,6 +6721,127 @@ _ACEOF
6720
6721
  fi
6721
6722
 
6722
6723
 
6724
+ echo "$as_me:$LINENO: checking for Image.storage_class" >&5
6725
+ echo $ECHO_N "checking for Image.storage_class... $ECHO_C" >&6
6726
+ if test "${ac_cv_member_Image_storage_class+set}" = set; then
6727
+ echo $ECHO_N "(cached) $ECHO_C" >&6
6728
+ else
6729
+ cat >conftest.$ac_ext <<_ACEOF
6730
+ /* confdefs.h. */
6731
+ _ACEOF
6732
+ cat confdefs.h >>conftest.$ac_ext
6733
+ cat >>conftest.$ac_ext <<_ACEOF
6734
+ /* end confdefs.h. */
6735
+ #include <stdio.h>
6736
+ #if HAVE_SYS_TYPES_H
6737
+ #include <sys/types.h>
6738
+ #endif
6739
+ #include "magick/api.h"
6740
+
6741
+ int
6742
+ main ()
6743
+ {
6744
+ static Image ac_aggr;
6745
+ if (ac_aggr.storage_class)
6746
+ return 0;
6747
+ ;
6748
+ return 0;
6749
+ }
6750
+ _ACEOF
6751
+ rm -f conftest.$ac_objext
6752
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6753
+ (eval $ac_compile) 2>conftest.er1
6754
+ ac_status=$?
6755
+ grep -v '^ *+' conftest.er1 >conftest.err
6756
+ rm -f conftest.er1
6757
+ cat conftest.err >&5
6758
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6759
+ (exit $ac_status); } &&
6760
+ { ac_try='test -z "$ac_c_werror_flag"
6761
+ || test ! -s conftest.err'
6762
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6763
+ (eval $ac_try) 2>&5
6764
+ ac_status=$?
6765
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6766
+ (exit $ac_status); }; } &&
6767
+ { ac_try='test -s conftest.$ac_objext'
6768
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6769
+ (eval $ac_try) 2>&5
6770
+ ac_status=$?
6771
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6772
+ (exit $ac_status); }; }; then
6773
+ ac_cv_member_Image_storage_class=yes
6774
+ else
6775
+ echo "$as_me: failed program was:" >&5
6776
+ sed 's/^/| /' conftest.$ac_ext >&5
6777
+
6778
+ cat >conftest.$ac_ext <<_ACEOF
6779
+ /* confdefs.h. */
6780
+ _ACEOF
6781
+ cat confdefs.h >>conftest.$ac_ext
6782
+ cat >>conftest.$ac_ext <<_ACEOF
6783
+ /* end confdefs.h. */
6784
+ #include <stdio.h>
6785
+ #if HAVE_SYS_TYPES_H
6786
+ #include <sys/types.h>
6787
+ #endif
6788
+ #include "magick/api.h"
6789
+
6790
+ int
6791
+ main ()
6792
+ {
6793
+ static Image ac_aggr;
6794
+ if (sizeof ac_aggr.storage_class)
6795
+ return 0;
6796
+ ;
6797
+ return 0;
6798
+ }
6799
+ _ACEOF
6800
+ rm -f conftest.$ac_objext
6801
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6802
+ (eval $ac_compile) 2>conftest.er1
6803
+ ac_status=$?
6804
+ grep -v '^ *+' conftest.er1 >conftest.err
6805
+ rm -f conftest.er1
6806
+ cat conftest.err >&5
6807
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6808
+ (exit $ac_status); } &&
6809
+ { ac_try='test -z "$ac_c_werror_flag"
6810
+ || test ! -s conftest.err'
6811
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6812
+ (eval $ac_try) 2>&5
6813
+ ac_status=$?
6814
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6815
+ (exit $ac_status); }; } &&
6816
+ { ac_try='test -s conftest.$ac_objext'
6817
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6818
+ (eval $ac_try) 2>&5
6819
+ ac_status=$?
6820
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6821
+ (exit $ac_status); }; }; then
6822
+ ac_cv_member_Image_storage_class=yes
6823
+ else
6824
+ echo "$as_me: failed program was:" >&5
6825
+ sed 's/^/| /' conftest.$ac_ext >&5
6826
+
6827
+ ac_cv_member_Image_storage_class=no
6828
+ fi
6829
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6830
+ fi
6831
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6832
+ fi
6833
+ echo "$as_me:$LINENO: result: $ac_cv_member_Image_storage_class" >&5
6834
+ echo "${ECHO_T}$ac_cv_member_Image_storage_class" >&6
6835
+ if test $ac_cv_member_Image_storage_class = yes; then
6836
+
6837
+ cat >>confdefs.h <<_ACEOF
6838
+ #define HAVE_IMAGE_STORAGE_CLASS 1
6839
+ _ACEOF
6840
+
6841
+
6842
+ fi
6843
+
6844
+
6723
6845
  # Don't use AC_CHECK_MEMBERS!
6724
6846
  echo "$as_me:$LINENO: checking for Image.extract_info" >&5
6725
6847
  echo $ECHO_N "checking for Image.extract_info... $ECHO_C" >&6
@@ -7437,6 +7559,71 @@ _ACEOF
7437
7559
 
7438
7560
  fi
7439
7561
 
7562
+ echo "$as_me:$LINENO: checking for GrayChannel enum value" >&5
7563
+ echo $ECHO_N "checking for GrayChannel enum value... $ECHO_C" >&6
7564
+ if test "${rm_cv_enum_graychannel+set}" = set; then
7565
+ echo $ECHO_N "(cached) $ECHO_C" >&6
7566
+ else
7567
+ cat >conftest.$ac_ext <<_ACEOF
7568
+ /* confdefs.h. */
7569
+ _ACEOF
7570
+ cat confdefs.h >>conftest.$ac_ext
7571
+ cat >>conftest.$ac_ext <<_ACEOF
7572
+ /* end confdefs.h. */
7573
+ #include <stdio.h>
7574
+ #if HAVE_SYS_TYPES_H
7575
+ #include <sys/types.h>
7576
+ #endif
7577
+ #include "magick/api.h"
7578
+ int
7579
+ main ()
7580
+ {
7581
+ ChannelType x; x = GrayChannel
7582
+ ;
7583
+ return 0;
7584
+ }
7585
+ _ACEOF
7586
+ rm -f conftest.$ac_objext
7587
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7588
+ (eval $ac_compile) 2>conftest.er1
7589
+ ac_status=$?
7590
+ grep -v '^ *+' conftest.er1 >conftest.err
7591
+ rm -f conftest.er1
7592
+ cat conftest.err >&5
7593
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7594
+ (exit $ac_status); } &&
7595
+ { ac_try='test -z "$ac_c_werror_flag"
7596
+ || test ! -s conftest.err'
7597
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7598
+ (eval $ac_try) 2>&5
7599
+ ac_status=$?
7600
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7601
+ (exit $ac_status); }; } &&
7602
+ { ac_try='test -s conftest.$ac_objext'
7603
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7604
+ (eval $ac_try) 2>&5
7605
+ ac_status=$?
7606
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7607
+ (exit $ac_status); }; }; then
7608
+ rm_cv_enum_graychannel='yes'
7609
+ else
7610
+ echo "$as_me: failed program was:" >&5
7611
+ sed 's/^/| /' conftest.$ac_ext >&5
7612
+
7613
+ rm_cv_enum_graychannel='no'
7614
+ fi
7615
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7616
+ fi
7617
+ echo "$as_me:$LINENO: result: $rm_cv_enum_graychannel" >&5
7618
+ echo "${ECHO_T}$rm_cv_enum_graychannel" >&6
7619
+
7620
+ if test "$rm_cv_enum_graychannel" = yes; then
7621
+ cat >>confdefs.h <<\_ACEOF
7622
+ #define HAVE_GRAYCHANNEL 1
7623
+ _ACEOF
7624
+
7625
+ fi
7626
+
7440
7627
  echo "$as_me:$LINENO: checking for AllChannels enum value" >&5
7441
7628
  echo $ECHO_N "checking for AllChannels enum value... $ECHO_C" >&6
7442
7629
  if test "${rm_cv_enum_allchannels+set}" = set; then
@@ -7632,6 +7819,71 @@ _ACEOF
7632
7819
 
7633
7820
  fi
7634
7821
 
7822
+ echo "$as_me:$LINENO: checking for QuantumPixel enum value" >&5
7823
+ echo $ECHO_N "checking for QuantumPixel enum value... $ECHO_C" >&6
7824
+ if test "${rm_cv_enum_quantumpixel+set}" = set; then
7825
+ echo $ECHO_N "(cached) $ECHO_C" >&6
7826
+ else
7827
+ cat >conftest.$ac_ext <<_ACEOF
7828
+ /* confdefs.h. */
7829
+ _ACEOF
7830
+ cat confdefs.h >>conftest.$ac_ext
7831
+ cat >>conftest.$ac_ext <<_ACEOF
7832
+ /* end confdefs.h. */
7833
+ #include <stdio.h>
7834
+ #if HAVE_SYS_TYPES_H
7835
+ #include <sys/types.h>
7836
+ #endif
7837
+ #include "magick/api.h"
7838
+ int
7839
+ main ()
7840
+ {
7841
+ GravityType x; x = QuantumPixel
7842
+ ;
7843
+ return 0;
7844
+ }
7845
+ _ACEOF
7846
+ rm -f conftest.$ac_objext
7847
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7848
+ (eval $ac_compile) 2>conftest.er1
7849
+ ac_status=$?
7850
+ grep -v '^ *+' conftest.er1 >conftest.err
7851
+ rm -f conftest.er1
7852
+ cat conftest.err >&5
7853
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7854
+ (exit $ac_status); } &&
7855
+ { ac_try='test -z "$ac_c_werror_flag"
7856
+ || test ! -s conftest.err'
7857
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7858
+ (eval $ac_try) 2>&5
7859
+ ac_status=$?
7860
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7861
+ (exit $ac_status); }; } &&
7862
+ { ac_try='test -s conftest.$ac_objext'
7863
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7864
+ (eval $ac_try) 2>&5
7865
+ ac_status=$?
7866
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7867
+ (exit $ac_status); }; }; then
7868
+ rm_cv_enum_quantumpixel='yes'
7869
+ else
7870
+ echo "$as_me: failed program was:" >&5
7871
+ sed 's/^/| /' conftest.$ac_ext >&5
7872
+
7873
+ rm_cv_enum_quantumpixel='no'
7874
+ fi
7875
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7876
+ fi
7877
+ echo "$as_me:$LINENO: result: $rm_cv_enum_quantumpixel" >&5
7878
+ echo "${ECHO_T}$rm_cv_enum_quantumpixel" >&6
7879
+
7880
+ if test "$rm_cv_enum_quantumpixel" = yes; then
7881
+ cat >>confdefs.h <<\_ACEOF
7882
+ #define HAVE_QUANTUMPIXEL 1
7883
+ _ACEOF
7884
+
7885
+ fi
7886
+
7635
7887
  if test "$rm_have_getimagequantumdepth" = yes; then
7636
7888
  # IM 6.0.5 changed the number of arguments to GetImageQuantumDepth.
7637
7889
  echo "$as_me:$LINENO: checking if GetImageQuantumDepth has only 1 argument" >&5
@@ -8454,7 +8706,7 @@ _ASBOX
8454
8706
  } >&5
8455
8707
  cat >&5 <<_CSEOF
8456
8708
 
8457
- This file was extended by RMagick $as_me 1.9.0, which was
8709
+ This file was extended by RMagick $as_me 1.9.1, which was
8458
8710
  generated by GNU Autoconf 2.59. Invocation command line was
8459
8711
 
8460
8712
  CONFIG_FILES = $CONFIG_FILES
@@ -8514,7 +8766,7 @@ _ACEOF
8514
8766
 
8515
8767
  cat >>$CONFIG_STATUS <<_ACEOF
8516
8768
  ac_cs_version="\\
8517
- RMagick config.status 1.9.0
8769
+ RMagick config.status 1.9.1
8518
8770
  configured by $0, generated by GNU Autoconf 2.59,
8519
8771
  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
8520
8772