rmagick 1.9.3 → 1.10.0

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.

Files changed (62) hide show
  1. data/ChangeLog +18 -0
  2. data/README.html +12 -12
  3. data/README.txt +10 -10
  4. data/configure +728 -367
  5. data/configure.ac +134 -69
  6. data/doc/comtasks.html +11 -3
  7. data/doc/constants.html +162 -40
  8. data/doc/draw.html +2 -2
  9. data/doc/ex/crop_resized.rb +10 -0
  10. data/doc/ex/get_type_metrics.rb +26 -22
  11. data/doc/ex/vignette.rb +19 -0
  12. data/doc/ilist.html +0 -5
  13. data/doc/image1.html +219 -49
  14. data/doc/image2.html +115 -47
  15. data/doc/image3.html +105 -23
  16. data/doc/imageattrs.html +4 -23
  17. data/doc/imusage.html +1 -1
  18. data/doc/index.html +8 -9
  19. data/doc/info.html +23 -3
  20. data/doc/magick.html +1 -1
  21. data/doc/rvg.html +1 -1
  22. data/doc/rvgclip.html +1 -1
  23. data/doc/rvggroup.html +1 -1
  24. data/doc/rvgimage.html +1 -1
  25. data/doc/rvgpattern.html +1 -1
  26. data/doc/rvgshape.html +1 -1
  27. data/doc/rvgstyle.html +1 -1
  28. data/doc/rvgtext.html +3 -3
  29. data/doc/rvgtspan.html +1 -1
  30. data/doc/rvgtut.html +119 -101
  31. data/doc/rvguse.html +1 -1
  32. data/doc/rvgxform.html +1 -1
  33. data/doc/struct.html +17 -11
  34. data/doc/usage.html +22 -4
  35. data/examples/histogram.rb +48 -12
  36. data/examples/spinner.rb +49 -0
  37. data/ext/RMagick/MANIFEST +4 -1
  38. data/ext/RMagick/rmagick.h +62 -33
  39. data/ext/RMagick/rmagick_config.h.in +28 -31
  40. data/ext/RMagick/rmdraw.c +14 -6
  41. data/ext/RMagick/rmfill.c +2 -2
  42. data/ext/RMagick/rmilist.c +8 -36
  43. data/ext/RMagick/rmimage.c +370 -97
  44. data/ext/RMagick/rminfo.c +6 -6
  45. data/ext/RMagick/rmmain.c +114 -25
  46. data/ext/RMagick/rmutil.c +98 -35
  47. data/lib/RMagick.rb +17 -2
  48. data/lib/rvg/clippath.rb +2 -2
  49. data/lib/rvg/container.rb +2 -2
  50. data/lib/rvg/describable.rb +2 -2
  51. data/lib/rvg/embellishable.rb +2 -2
  52. data/lib/rvg/misc.rb +3 -3
  53. data/lib/rvg/paint.rb +2 -2
  54. data/lib/rvg/pathdata.rb +2 -2
  55. data/lib/rvg/rvg.rb +2 -2
  56. data/lib/rvg/stretchable.rb +2 -2
  57. data/lib/rvg/stylable.rb +2 -2
  58. data/lib/rvg/text.rb +2 -2
  59. data/lib/rvg/transformable.rb +2 -2
  60. data/lib/rvg/units.rb +2 -2
  61. data/rmagick.gemspec +1 -1
  62. metadata +362 -353
data/ChangeLog CHANGED
@@ -1,3 +1,21 @@
1
+ RMagick 1.10.0
2
+ o Added add_noise_channel method to Image class (available with ImageMagick 6.2.5)
3
+ o Added vignette method to the Image class (available with ImageMagick 6.2.6)
4
+ o Added crop_resize method to the Image class (thanks to Jerret Taylor for
5
+ the suggestion and original code)
6
+ o Added export_pixels_to_str method to the Image class
7
+ o Provided default arguments to Image#export_pixels
8
+ o Added "order" option to Image#ordered_dither
9
+ o Added cyan, magenta, yellow, and black attribute accessors to the Pixel class
10
+ o Added CineonLogRGBColorspace, LABColorspace, Rec601LumaColorspace,
11
+ Rec601YCbCrColorspace, Rec709LumaColorspace, Rec709YCbCrColorspace,
12
+ LogColorspace enumerators to the ColorspaceType enumeration class.
13
+ o Fixed bug #2844, Image#to_blob exits if the image is a 0x0 JPEG
14
+ o Fixed bug #2688, Image#annotate, Draw#get_multiline_type_metrics handle
15
+ newline characters properly
16
+ o Tested with ImageMagick 6.2.6
17
+ o Removed support for all versions of ImageMagick prior to 6.0.0
18
+
1
19
  RMagick 1.9.3
2
20
  o Feature #2521, add Image#distortion_channel method
3
21
  o Fixed bug #2546, ImageList#to_blob builds multi-image blobs again. (ImageMagick 6.2.0
@@ -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.3 README</title>
4
+ <title>RMagick 1.10.0 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.3 README</h1>
9
+ <h1>RMagick 1.10.0 README</h1>
10
10
 
11
- <h2>10/17/05</h2>
11
+ <h2>01/21/06</h2>
12
12
 
13
13
  <h2>Table Of Contents</h2>
14
14
 
@@ -42,13 +42,13 @@ 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;&#097;&#x69;&#x6C;&#116;&#x6F;:&#x72;&#x6D;&#x61;&#103;&#105;&#099;&#107;&#064;&#114;&#117;&#098;&#121;&#x66;&#x6F;&#x72;&#x67;&#101;&#046;&#x6F;&#x72;&#x67;">&#x72;&#x6D;&#x61;&#103;&#105;&#099;&#107;&#064;&#114;&#117;&#098;&#121;&#x66;&#x6F;&#x72;&#x67;&#101;&#046;&#x6F;&#x72;&#x67;</a></p>
45
+ <p><strong>Email:</strong> <a href="&#109;&#x61;&#105;&#x6C;&#116;&#111;:&#x72;&#x6D;&#097;&#103;&#105;&#099;&#107;&#064;&#x72;&#117;&#098;y&#102;&#111;&#x72;&#x67;&#x65;&#046;o&#114;&#x67;">&#x72;&#x6D;&#097;&#103;&#105;&#099;&#107;&#064;&#x72;&#117;&#098;y&#102;&#111;&#x72;&#x67;&#x65;&#046;o&#114;&#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
 
49
49
  <h2 id="prereq">Prerequisites</h2>
50
50
 
51
- <p><strong>O/S:</strong> Linux, Sun Solaris, Cygwin, FreeBSD, MS Windows 98 and later.</p>
51
+ <p><strong>O/S:</strong> Linux, Sun Solaris, Cygwin, FreeBSD, OS X.</p>
52
52
 
53
53
  <p><strong>Ruby</strong> 1.6.7 or later. You can get Ruby from <a href="http://www.ruby-lang.org">http://www.ruby-lang.org</a>.</p>
54
54
 
@@ -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.3.tar.gz archive and enter the top
221
+ <p>De-compress the RMagick-1.10.0.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,16 +239,16 @@ $ 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.3/lib/RMagick.rb:11:in `require': libMagick.so.0:
242
+ <pre><code>/home/you/RMagick-1.10.0/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.3/ext/RMagick/RMagick.so (LoadError)
244
+ /home/you/RMagick-1.10.0/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
248
248
  library is installed in your load path. An easy way to fix this is to define the
249
- directory in the LD<em>LIBRARY</em>PATH environment variable. For example, suppose you
249
+ directory in the LD_LIBRARY_PATH environment variable. For example, suppose you
250
250
  installed the GraphicsMagick library libGraphicsMagick.so in /usr/local/lib.
251
- (By default this is where it is installed.) Create the LD<em>LIBRARY</em>PATH variable
251
+ (By default this is where it is installed.) Create the LD_LIBRARY_PATH variable
252
252
  like this:</p>
253
253
 
254
254
  <pre><code>export LD_LIBRARY_PATH=/usr/local/lib
@@ -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.3/./post-setup.rb failed:
264
+ <pre><code>hook /home/me/src/RMagick-1.10.0/./post-setup.rb failed:
265
265
  No such file or directory - "/tmp/rmagick6872.6"
266
266
  </code></pre>
267
267
 
@@ -384,7 +384,7 @@ to their respective authors or distributors.</p>
384
384
  <h2 id="license">License</h2>
385
385
 
386
386
  <blockquote>
387
- <p>Copyright � 2005 by Timothy P. Hunter</p>
387
+ <p>Copyright � 2006 by Timothy P. Hunter</p>
388
388
 
389
389
  <p>Permission is hereby granted, free of charge, to any person obtaining a
390
390
  copy of this software and associated documentation files (the "Software"),
data/README.txt CHANGED
@@ -1,6 +1,6 @@
1
- RMagick 1.9.3 README
1
+ RMagick 1.10.0 README
2
2
  ================================
3
- 10/17/05
3
+ 01/21/06
4
4
  --------
5
5
 
6
6
  Table Of Contents
@@ -38,7 +38,7 @@ __RubyForge:__ <http://rubyforge.org/projects/rmagick/>
38
38
 
39
39
  <h2 id="prereq">Prerequisites</h2>
40
40
 
41
- __O/S:__ Linux, Sun Solaris, Cygwin, FreeBSD, MS Windows 98 and later.
41
+ __O/S:__ Linux, Sun Solaris, Cygwin, FreeBSD, OS X.
42
42
 
43
43
  __Ruby__ 1.6.7 or later. You can get Ruby from <http://www.ruby-lang.org>.
44
44
 
@@ -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.3.tar.gz archive and enter the top
191
+ De-compress the RMagick-1.10.0.tar.gz archive and enter the top
192
192
  directory. Then type:
193
193
 
194
194
  $ ./configure <configuration options>
@@ -206,15 +206,15 @@ 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.3/lib/RMagick.rb:11:in `require': libMagick.so.0:
209
+ /home/you/RMagick-1.10.0/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.3/ext/RMagick/RMagick.so (LoadError)
211
+ /home/you/RMagick-1.10.0/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
215
- directory in the LD_LIBRARY_PATH environment variable. For example, suppose you
215
+ directory in the LD\_LIBRARY\_PATH environment variable. For example, suppose you
216
216
  installed the GraphicsMagick library libGraphicsMagick.so in /usr/local/lib.
217
- (By default this is where it is installed.) Create the LD_LIBRARY_PATH variable
217
+ (By default this is where it is installed.) Create the LD\_LIBRARY\_PATH variable
218
218
  like this:
219
219
 
220
220
  export LD_LIBRARY_PATH=/usr/local/lib
@@ -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.3/./post-setup.rb failed:
228
+ hook /home/me/src/RMagick-1.10.0/./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
@@ -337,7 +337,7 @@ Thanks to
337
337
 
338
338
  <h2 id="license">License</h2>
339
339
 
340
- > Copyright � 2005 by Timothy P. Hunter
340
+ > Copyright � 2006 by Timothy P. Hunter
341
341
  >
342
342
  > Permission is hereby granted, free of charge, to any person obtaining a
343
343
  > copy of this software and associated documentation files (the "Software"),
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.3.
3
+ # Generated by GNU Autoconf 2.59 for RMagick 1.10.0.
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.3.tar.gz'
272
- PACKAGE_VERSION='1.9.3'
273
- PACKAGE_STRING='RMagick 1.9.3'
271
+ PACKAGE_TARNAME='RMagick-1.10.0.tar.gz'
272
+ PACKAGE_VERSION='1.10.0'
273
+ PACKAGE_STRING='RMagick 1.10.0'
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.3 to adapt to many kinds of systems.
782
+ \`configure' configures RMagick 1.10.0 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.3:";;
839
+ short | recursive ) echo "Configuration of RMagick 1.10.0:";;
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.3
984
+ RMagick configure 1.10.0
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.3, which was
998
+ It was created by RMagick $as_me 1.10.0, which was
999
999
  generated by GNU Autoconf 2.59. Invocation command line was
1000
1000
 
1001
1001
  $ $0 $@
@@ -2430,6 +2430,13 @@ echo "$as_me: error: Can't install RMagick. Can't find Magick-config or Graphics
2430
2430
  Magick-config )
2431
2431
  MAGICKNAME=ImageMagick
2432
2432
  MAGICKLIB=Magick
2433
+ MAGICKVERS=`${MAGICKCONFIG} --version | tr -d .`
2434
+ if test $MAGICKVERS -lt 600; then
2435
+ MAGICKVERS=`${MAGICKCONFIG} --version`
2436
+ { { echo "$as_me:$LINENO: error: Can't install RMagick. You must have ImageMagick 6.0.0 or later installed. Your version of ImageMagick is ${MAGICKVERS}" >&5
2437
+ echo "$as_me: error: Can't install RMagick. You must have ImageMagick 6.0.0 or later installed. Your version of ImageMagick is ${MAGICKVERS}" >&2;}
2438
+ { (exit 1); exit 1; }; }
2439
+ fi
2433
2440
  ;;
2434
2441
  GraphicsMagick-config )
2435
2442
  MAGICKNAME=GraphicsMagick
@@ -3292,9 +3299,7 @@ LIBS="${LIBS} `${MAGICKCONFIG} --libs`"
3292
3299
 
3293
3300
  # What ImageMagick/GraphicsMagick functions?
3294
3301
 
3295
-
3296
-
3297
- for ac_func in AdaptiveThresholdImage AppendImageToList LevelImageChannel
3302
+ for ac_func in AcquireMagickMemory
3298
3303
  do
3299
3304
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3300
3305
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -3396,14 +3401,11 @@ fi
3396
3401
  done
3397
3402
 
3398
3403
 
3399
-
3400
-
3401
- for ac_func in ThumbnailImage RemoveFirstImageFromList GetNextImageInList
3402
- do
3403
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3404
- echo "$as_me:$LINENO: checking for $ac_func" >&5
3405
- echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
3406
- if eval "test \"\${$as_ac_var+set}\" = set"; then
3404
+ # We need to be able to query this later in the configure script, so set a shell variable here
3405
+ # as well as defining a symbol.
3406
+ echo "$as_me:$LINENO: checking for AcquireStringInfo" >&5
3407
+ echo $ECHO_N "checking for AcquireStringInfo... $ECHO_C" >&6
3408
+ if test "${ac_cv_func_AcquireStringInfo+set}" = set; then
3407
3409
  echo $ECHO_N "(cached) $ECHO_C" >&6
3408
3410
  else
3409
3411
  cat >conftest.$ac_ext <<_ACEOF
@@ -3412,12 +3414,12 @@ _ACEOF
3412
3414
  cat confdefs.h >>conftest.$ac_ext
3413
3415
  cat >>conftest.$ac_ext <<_ACEOF
3414
3416
  /* end confdefs.h. */
3415
- /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3417
+ /* Define AcquireStringInfo to an innocuous variant, in case <limits.h> declares AcquireStringInfo.
3416
3418
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
3417
- #define $ac_func innocuous_$ac_func
3419
+ #define AcquireStringInfo innocuous_AcquireStringInfo
3418
3420
 
3419
3421
  /* System header to define __stub macros and hopefully few prototypes,
3420
- which can conflict with char $ac_func (); below.
3422
+ which can conflict with char AcquireStringInfo (); below.
3421
3423
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3422
3424
  <limits.h> exists even on freestanding compilers. */
3423
3425
 
@@ -3427,7 +3429,7 @@ cat >>conftest.$ac_ext <<_ACEOF
3427
3429
  # include <assert.h>
3428
3430
  #endif
3429
3431
 
3430
- #undef $ac_func
3432
+ #undef AcquireStringInfo
3431
3433
 
3432
3434
  /* Override any gcc2 internal prototype to avoid an error. */
3433
3435
  #ifdef __cplusplus
@@ -3436,14 +3438,14 @@ extern "C"
3436
3438
  #endif
3437
3439
  /* We use char because int might match the return type of a gcc2
3438
3440
  builtin and then its argument prototype would still apply. */
3439
- char $ac_func ();
3441
+ char AcquireStringInfo ();
3440
3442
  /* The GNU C library defines this for functions which it implements
3441
3443
  to always fail with ENOSYS. Some functions are actually named
3442
3444
  something starting with __ and the normal name is an alias. */
3443
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
3445
+ #if defined (__stub_AcquireStringInfo) || defined (__stub___AcquireStringInfo)
3444
3446
  choke me
3445
3447
  #else
3446
- char (*f) () = $ac_func;
3448
+ char (*f) () = AcquireStringInfo;
3447
3449
  #endif
3448
3450
  #ifdef __cplusplus
3449
3451
  }
@@ -3452,7 +3454,7 @@ char (*f) () = $ac_func;
3452
3454
  int
3453
3455
  main ()
3454
3456
  {
3455
- return f != $ac_func;
3457
+ return f != AcquireStringInfo;
3456
3458
  ;
3457
3459
  return 0;
3458
3460
  }
@@ -3479,31 +3481,36 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3479
3481
  ac_status=$?
3480
3482
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
3481
3483
  (exit $ac_status); }; }; then
3482
- eval "$as_ac_var=yes"
3484
+ ac_cv_func_AcquireStringInfo=yes
3483
3485
  else
3484
3486
  echo "$as_me: failed program was:" >&5
3485
3487
  sed 's/^/| /' conftest.$ac_ext >&5
3486
3488
 
3487
- eval "$as_ac_var=no"
3489
+ ac_cv_func_AcquireStringInfo=no
3488
3490
  fi
3489
3491
  rm -f conftest.err conftest.$ac_objext \
3490
3492
  conftest$ac_exeext conftest.$ac_ext
3491
3493
  fi
3492
- echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3493
- echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3494
- if test `eval echo '${'$as_ac_var'}'` = yes; then
3495
- cat >>confdefs.h <<_ACEOF
3496
- #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
3494
+ echo "$as_me:$LINENO: result: $ac_cv_func_AcquireStringInfo" >&5
3495
+ echo "${ECHO_T}$ac_cv_func_AcquireStringInfo" >&6
3496
+ if test $ac_cv_func_AcquireStringInfo = yes; then
3497
+ rm_have_acquirestringinfo=yes
3498
+ else
3499
+ rm_have_acquirestringinfo=no
3500
+ fi
3501
+
3502
+ if test "$rm_have_acquirestringinfo" = yes; then
3503
+ cat >>confdefs.h <<\_ACEOF
3504
+ #define HAVE_ACQUIRESTRINGINFO 1
3497
3505
  _ACEOF
3498
3506
 
3499
3507
  fi
3500
- done
3501
3508
 
3502
3509
 
3503
3510
 
3504
3511
 
3505
3512
 
3506
- for ac_func in SetLogFormat XImportImage ExportImagePixels ImportImagePixels
3513
+ for ac_func in AdaptiveThresholdImage AddDefinitions AddNoiseImageChannel BilevelImageChannel
3507
3514
  do
3508
3515
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3509
3516
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -3607,7 +3614,8 @@ done
3607
3614
 
3608
3615
 
3609
3616
 
3610
- for ac_func in ThresholdImageChannel RandomChannelThresholdImage StripImage
3617
+
3618
+ for ac_func in BlackThresholdImage BlurImageChannel CompareImageChannels ConvolveImageChannel
3611
3619
  do
3612
3620
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3613
3621
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -3711,7 +3719,7 @@ done
3711
3719
 
3712
3720
 
3713
3721
 
3714
- for ac_func in AcquireMagickMemory BlackThresholdImage WhiteThresholdImage
3722
+ for ac_func in EvaluateImageChannel ExportImagePixels FuzzyColorCompare
3715
3723
  do
3716
3724
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3717
3725
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -3814,8 +3822,7 @@ done
3814
3822
 
3815
3823
 
3816
3824
 
3817
-
3818
- for ac_func in GetMagickInfoArray GetColorInfoArray GetLocaleExceptionMessage
3825
+ for ac_func in GammaImageChannel GaussianBlurImageChannel
3819
3826
  do
3820
3827
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3821
3828
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -3918,9 +3925,7 @@ done
3918
3925
 
3919
3926
 
3920
3927
 
3921
-
3922
-
3923
- for ac_func in GetMagickGeometry ParseSizeGeometry TintImage GetColorHistogram
3928
+ for ac_func in GetColorHistogram GetColorInfoArray
3924
3929
  do
3925
3930
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
3926
3931
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -4022,15 +4027,11 @@ fi
4022
4027
  done
4023
4028
 
4024
4029
 
4025
-
4026
-
4027
-
4028
- for ac_func in GetImageHistogram FuzzyColorCompare GetImageProfile GetNextImageProfile
4029
- do
4030
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4031
- echo "$as_me:$LINENO: checking for $ac_func" >&5
4032
- echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4033
- if eval "test \"\${$as_ac_var+set}\" = set"; then
4030
+ # We need to be able to query these symbols later in the configure script, so set a shell
4031
+ # variable here as well as defining symbols.
4032
+ echo "$as_me:$LINENO: checking for GetColorInfoList" >&5
4033
+ echo $ECHO_N "checking for GetColorInfoList... $ECHO_C" >&6
4034
+ if test "${ac_cv_func_GetColorInfoList+set}" = set; then
4034
4035
  echo $ECHO_N "(cached) $ECHO_C" >&6
4035
4036
  else
4036
4037
  cat >conftest.$ac_ext <<_ACEOF
@@ -4039,12 +4040,12 @@ _ACEOF
4039
4040
  cat confdefs.h >>conftest.$ac_ext
4040
4041
  cat >>conftest.$ac_ext <<_ACEOF
4041
4042
  /* end confdefs.h. */
4042
- /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4043
+ /* Define GetColorInfoList to an innocuous variant, in case <limits.h> declares GetColorInfoList.
4043
4044
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
4044
- #define $ac_func innocuous_$ac_func
4045
+ #define GetColorInfoList innocuous_GetColorInfoList
4045
4046
 
4046
4047
  /* System header to define __stub macros and hopefully few prototypes,
4047
- which can conflict with char $ac_func (); below.
4048
+ which can conflict with char GetColorInfoList (); below.
4048
4049
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4049
4050
  <limits.h> exists even on freestanding compilers. */
4050
4051
 
@@ -4054,7 +4055,7 @@ cat >>conftest.$ac_ext <<_ACEOF
4054
4055
  # include <assert.h>
4055
4056
  #endif
4056
4057
 
4057
- #undef $ac_func
4058
+ #undef GetColorInfoList
4058
4059
 
4059
4060
  /* Override any gcc2 internal prototype to avoid an error. */
4060
4061
  #ifdef __cplusplus
@@ -4063,14 +4064,14 @@ extern "C"
4063
4064
  #endif
4064
4065
  /* We use char because int might match the return type of a gcc2
4065
4066
  builtin and then its argument prototype would still apply. */
4066
- char $ac_func ();
4067
+ char GetColorInfoList ();
4067
4068
  /* The GNU C library defines this for functions which it implements
4068
4069
  to always fail with ENOSYS. Some functions are actually named
4069
4070
  something starting with __ and the normal name is an alias. */
4070
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4071
+ #if defined (__stub_GetColorInfoList) || defined (__stub___GetColorInfoList)
4071
4072
  choke me
4072
4073
  #else
4073
- char (*f) () = $ac_func;
4074
+ char (*f) () = GetColorInfoList;
4074
4075
  #endif
4075
4076
  #ifdef __cplusplus
4076
4077
  }
@@ -4079,7 +4080,7 @@ char (*f) () = $ac_func;
4079
4080
  int
4080
4081
  main ()
4081
4082
  {
4082
- return f != $ac_func;
4083
+ return f != GetColorInfoList;
4083
4084
  ;
4084
4085
  return 0;
4085
4086
  }
@@ -4106,30 +4107,34 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4106
4107
  ac_status=$?
4107
4108
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
4108
4109
  (exit $ac_status); }; }; then
4109
- eval "$as_ac_var=yes"
4110
+ ac_cv_func_GetColorInfoList=yes
4110
4111
  else
4111
4112
  echo "$as_me: failed program was:" >&5
4112
4113
  sed 's/^/| /' conftest.$ac_ext >&5
4113
4114
 
4114
- eval "$as_ac_var=no"
4115
+ ac_cv_func_GetColorInfoList=no
4115
4116
  fi
4116
4117
  rm -f conftest.err conftest.$ac_objext \
4117
4118
  conftest$ac_exeext conftest.$ac_ext
4118
4119
  fi
4119
- echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
4120
- echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4121
- if test `eval echo '${'$as_ac_var'}'` = yes; then
4122
- cat >>confdefs.h <<_ACEOF
4123
- #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
4120
+ echo "$as_me:$LINENO: result: $ac_cv_func_GetColorInfoList" >&5
4121
+ echo "${ECHO_T}$ac_cv_func_GetColorInfoList" >&6
4122
+ if test $ac_cv_func_GetColorInfoList = yes; then
4123
+ rm_have_getcolorinfolist=yes
4124
+ else
4125
+ rm_have_getcolorinfolist=no
4126
+ fi
4127
+
4128
+ if test "$rm_have_getcolorinfolist" = yes; then
4129
+ cat >>confdefs.h <<\_ACEOF
4130
+ #define HAVE_GETCOLORINFOLIST 1
4124
4131
  _ACEOF
4125
4132
 
4126
4133
  fi
4127
- done
4128
4134
 
4129
4135
 
4130
4136
 
4131
-
4132
- for ac_func in GetImageChannelDepth GetImageChannelExtrema GetImageChannelMean
4137
+ for ac_func in GetImageChannelDepth GetImageChannelDistortion
4133
4138
  do
4134
4139
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4135
4140
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -4232,9 +4237,7 @@ done
4232
4237
 
4233
4238
 
4234
4239
 
4235
-
4236
-
4237
- for ac_func in CompareImageChannels PreviewImage SetImageColorspace GetNextImageAttribute
4240
+ for ac_func in GetImageChannelExtrema GetImageChannelMean
4238
4241
  do
4239
4242
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4240
4243
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -4336,11 +4339,13 @@ fi
4336
4339
  done
4337
4340
 
4338
4341
 
4339
- # We need to be able to query this later in the configure script, so set a shell variable here
4340
- # as well as defining a symbol.
4341
- echo "$as_me:$LINENO: checking for AcquireStringInfo" >&5
4342
- echo $ECHO_N "checking for AcquireStringInfo... $ECHO_C" >&6
4343
- if test "${ac_cv_func_AcquireStringInfo+set}" = set; then
4342
+
4343
+ for ac_func in GetImageHistogram GetImageProfile
4344
+ do
4345
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4346
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
4347
+ echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4348
+ if eval "test \"\${$as_ac_var+set}\" = set"; then
4344
4349
  echo $ECHO_N "(cached) $ECHO_C" >&6
4345
4350
  else
4346
4351
  cat >conftest.$ac_ext <<_ACEOF
@@ -4349,12 +4354,12 @@ _ACEOF
4349
4354
  cat confdefs.h >>conftest.$ac_ext
4350
4355
  cat >>conftest.$ac_ext <<_ACEOF
4351
4356
  /* end confdefs.h. */
4352
- /* Define AcquireStringInfo to an innocuous variant, in case <limits.h> declares AcquireStringInfo.
4357
+ /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4353
4358
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
4354
- #define AcquireStringInfo innocuous_AcquireStringInfo
4359
+ #define $ac_func innocuous_$ac_func
4355
4360
 
4356
4361
  /* System header to define __stub macros and hopefully few prototypes,
4357
- which can conflict with char AcquireStringInfo (); below.
4362
+ which can conflict with char $ac_func (); below.
4358
4363
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4359
4364
  <limits.h> exists even on freestanding compilers. */
4360
4365
 
@@ -4364,7 +4369,7 @@ cat >>conftest.$ac_ext <<_ACEOF
4364
4369
  # include <assert.h>
4365
4370
  #endif
4366
4371
 
4367
- #undef AcquireStringInfo
4372
+ #undef $ac_func
4368
4373
 
4369
4374
  /* Override any gcc2 internal prototype to avoid an error. */
4370
4375
  #ifdef __cplusplus
@@ -4373,14 +4378,14 @@ extern "C"
4373
4378
  #endif
4374
4379
  /* We use char because int might match the return type of a gcc2
4375
4380
  builtin and then its argument prototype would still apply. */
4376
- char AcquireStringInfo ();
4381
+ char $ac_func ();
4377
4382
  /* The GNU C library defines this for functions which it implements
4378
4383
  to always fail with ENOSYS. Some functions are actually named
4379
4384
  something starting with __ and the normal name is an alias. */
4380
- #if defined (__stub_AcquireStringInfo) || defined (__stub___AcquireStringInfo)
4385
+ #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4381
4386
  choke me
4382
4387
  #else
4383
- char (*f) () = AcquireStringInfo;
4388
+ char (*f) () = $ac_func;
4384
4389
  #endif
4385
4390
  #ifdef __cplusplus
4386
4391
  }
@@ -4389,7 +4394,7 @@ char (*f) () = AcquireStringInfo;
4389
4394
  int
4390
4395
  main ()
4391
4396
  {
4392
- return f != AcquireStringInfo;
4397
+ return f != $ac_func;
4393
4398
  ;
4394
4399
  return 0;
4395
4400
  }
@@ -4416,30 +4421,26 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4416
4421
  ac_status=$?
4417
4422
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
4418
4423
  (exit $ac_status); }; }; then
4419
- ac_cv_func_AcquireStringInfo=yes
4424
+ eval "$as_ac_var=yes"
4420
4425
  else
4421
4426
  echo "$as_me: failed program was:" >&5
4422
4427
  sed 's/^/| /' conftest.$ac_ext >&5
4423
4428
 
4424
- ac_cv_func_AcquireStringInfo=no
4429
+ eval "$as_ac_var=no"
4425
4430
  fi
4426
4431
  rm -f conftest.err conftest.$ac_objext \
4427
4432
  conftest$ac_exeext conftest.$ac_ext
4428
4433
  fi
4429
- echo "$as_me:$LINENO: result: $ac_cv_func_AcquireStringInfo" >&5
4430
- echo "${ECHO_T}$ac_cv_func_AcquireStringInfo" >&6
4431
- if test $ac_cv_func_AcquireStringInfo = yes; then
4432
- rm_have_acquirestringinfo=yes
4433
- else
4434
- rm_have_acquirestringinfo=no
4435
- fi
4436
-
4437
- if test "$rm_have_acquirestringinfo" = yes; then
4438
- cat >>confdefs.h <<\_ACEOF
4439
- #define HAVE_ACQUIRESTRINGINFO 1
4434
+ echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
4435
+ echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4436
+ if test `eval echo '${'$as_ac_var'}'` = yes; then
4437
+ cat >>confdefs.h <<_ACEOF
4438
+ #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
4440
4439
  _ACEOF
4441
4440
 
4442
4441
  fi
4442
+ done
4443
+
4443
4444
 
4444
4445
  # We need to be able to query this later in the configure script, so set a shell variable here
4445
4446
  # as well as defining a symbol.
@@ -4548,8 +4549,7 @@ fi
4548
4549
 
4549
4550
 
4550
4551
 
4551
-
4552
- for ac_func in BilevelImageChannel GammaImageChannel NegateImageChannel
4552
+ for ac_func in GetImageStatistics GetMagickInfoArray
4553
4553
  do
4554
4554
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4555
4555
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -4651,14 +4651,9 @@ fi
4651
4651
  done
4652
4652
 
4653
4653
 
4654
-
4655
-
4656
- for ac_func in SetImageOption AddDefinitions GrayscalePseudoClassImage
4657
- do
4658
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4659
- echo "$as_me:$LINENO: checking for $ac_func" >&5
4660
- echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4661
- if eval "test \"\${$as_ac_var+set}\" = set"; then
4654
+ echo "$as_me:$LINENO: checking for GetMagickInfoList" >&5
4655
+ echo $ECHO_N "checking for GetMagickInfoList... $ECHO_C" >&6
4656
+ if test "${ac_cv_func_GetMagickInfoList+set}" = set; then
4662
4657
  echo $ECHO_N "(cached) $ECHO_C" >&6
4663
4658
  else
4664
4659
  cat >conftest.$ac_ext <<_ACEOF
@@ -4667,12 +4662,12 @@ _ACEOF
4667
4662
  cat confdefs.h >>conftest.$ac_ext
4668
4663
  cat >>conftest.$ac_ext <<_ACEOF
4669
4664
  /* end confdefs.h. */
4670
- /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4665
+ /* Define GetMagickInfoList to an innocuous variant, in case <limits.h> declares GetMagickInfoList.
4671
4666
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
4672
- #define $ac_func innocuous_$ac_func
4667
+ #define GetMagickInfoList innocuous_GetMagickInfoList
4673
4668
 
4674
4669
  /* System header to define __stub macros and hopefully few prototypes,
4675
- which can conflict with char $ac_func (); below.
4670
+ which can conflict with char GetMagickInfoList (); below.
4676
4671
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4677
4672
  <limits.h> exists even on freestanding compilers. */
4678
4673
 
@@ -4682,7 +4677,7 @@ cat >>conftest.$ac_ext <<_ACEOF
4682
4677
  # include <assert.h>
4683
4678
  #endif
4684
4679
 
4685
- #undef $ac_func
4680
+ #undef GetMagickInfoList
4686
4681
 
4687
4682
  /* Override any gcc2 internal prototype to avoid an error. */
4688
4683
  #ifdef __cplusplus
@@ -4691,14 +4686,14 @@ extern "C"
4691
4686
  #endif
4692
4687
  /* We use char because int might match the return type of a gcc2
4693
4688
  builtin and then its argument prototype would still apply. */
4694
- char $ac_func ();
4689
+ char GetMagickInfoList ();
4695
4690
  /* The GNU C library defines this for functions which it implements
4696
4691
  to always fail with ENOSYS. Some functions are actually named
4697
4692
  something starting with __ and the normal name is an alias. */
4698
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4693
+ #if defined (__stub_GetMagickInfoList) || defined (__stub___GetMagickInfoList)
4699
4694
  choke me
4700
4695
  #else
4701
- char (*f) () = $ac_func;
4696
+ char (*f) () = GetMagickInfoList;
4702
4697
  #endif
4703
4698
  #ifdef __cplusplus
4704
4699
  }
@@ -4707,7 +4702,7 @@ char (*f) () = $ac_func;
4707
4702
  int
4708
4703
  main ()
4709
4704
  {
4710
- return f != $ac_func;
4705
+ return f != GetMagickInfoList;
4711
4706
  ;
4712
4707
  return 0;
4713
4708
  }
@@ -4734,30 +4729,35 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4734
4729
  ac_status=$?
4735
4730
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
4736
4731
  (exit $ac_status); }; }; then
4737
- eval "$as_ac_var=yes"
4732
+ ac_cv_func_GetMagickInfoList=yes
4738
4733
  else
4739
4734
  echo "$as_me: failed program was:" >&5
4740
4735
  sed 's/^/| /' conftest.$ac_ext >&5
4741
4736
 
4742
- eval "$as_ac_var=no"
4737
+ ac_cv_func_GetMagickInfoList=no
4743
4738
  fi
4744
4739
  rm -f conftest.err conftest.$ac_objext \
4745
4740
  conftest$ac_exeext conftest.$ac_ext
4746
4741
  fi
4747
- echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
4748
- echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4749
- if test `eval echo '${'$as_ac_var'}'` = yes; then
4750
- cat >>confdefs.h <<_ACEOF
4751
- #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
4742
+ echo "$as_me:$LINENO: result: $ac_cv_func_GetMagickInfoList" >&5
4743
+ echo "${ECHO_T}$ac_cv_func_GetMagickInfoList" >&6
4744
+ if test $ac_cv_func_GetMagickInfoList = yes; then
4745
+ rm_have_getmagickinfolist=yes
4746
+ else
4747
+ rm_have_getmagickinfolist=no
4748
+ fi
4749
+
4750
+ if test "$rm_have_getmagickinfolist" = yes; then
4751
+ cat >>confdefs.h <<\_ACEOF
4752
+ #define HAVE_GETMAGICKINFOLIST 1
4752
4753
  _ACEOF
4753
4754
 
4754
4755
  fi
4755
- done
4756
4756
 
4757
4757
 
4758
4758
 
4759
4759
 
4760
- for ac_func in RadialBlurImage RandomThresholdImageChannel SeparateImageChannel
4760
+ for ac_func in GetMultilineTypeMetrics GetNextImageAttribute GetNextImageProfile
4761
4761
  do
4762
4762
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4763
4763
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -4859,13 +4859,9 @@ fi
4859
4859
  done
4860
4860
 
4861
4861
 
4862
-
4863
- for ac_func in QuantumOperatorRegionImage GetImageStatistics
4864
- do
4865
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4866
- echo "$as_me:$LINENO: checking for $ac_func" >&5
4867
- echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4868
- if eval "test \"\${$as_ac_var+set}\" = set"; then
4862
+ echo "$as_me:$LINENO: checking for GetTypeInfoList" >&5
4863
+ echo $ECHO_N "checking for GetTypeInfoList... $ECHO_C" >&6
4864
+ if test "${ac_cv_func_GetTypeInfoList+set}" = set; then
4869
4865
  echo $ECHO_N "(cached) $ECHO_C" >&6
4870
4866
  else
4871
4867
  cat >conftest.$ac_ext <<_ACEOF
@@ -4874,12 +4870,12 @@ _ACEOF
4874
4870
  cat confdefs.h >>conftest.$ac_ext
4875
4871
  cat >>conftest.$ac_ext <<_ACEOF
4876
4872
  /* end confdefs.h. */
4877
- /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4873
+ /* Define GetTypeInfoList to an innocuous variant, in case <limits.h> declares GetTypeInfoList.
4878
4874
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
4879
- #define $ac_func innocuous_$ac_func
4875
+ #define GetTypeInfoList innocuous_GetTypeInfoList
4880
4876
 
4881
4877
  /* System header to define __stub macros and hopefully few prototypes,
4882
- which can conflict with char $ac_func (); below.
4878
+ which can conflict with char GetTypeInfoList (); below.
4883
4879
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4884
4880
  <limits.h> exists even on freestanding compilers. */
4885
4881
 
@@ -4889,7 +4885,7 @@ cat >>conftest.$ac_ext <<_ACEOF
4889
4885
  # include <assert.h>
4890
4886
  #endif
4891
4887
 
4892
- #undef $ac_func
4888
+ #undef GetTypeInfoList
4893
4889
 
4894
4890
  /* Override any gcc2 internal prototype to avoid an error. */
4895
4891
  #ifdef __cplusplus
@@ -4898,14 +4894,14 @@ extern "C"
4898
4894
  #endif
4899
4895
  /* We use char because int might match the return type of a gcc2
4900
4896
  builtin and then its argument prototype would still apply. */
4901
- char $ac_func ();
4897
+ char GetTypeInfoList ();
4902
4898
  /* The GNU C library defines this for functions which it implements
4903
4899
  to always fail with ENOSYS. Some functions are actually named
4904
4900
  something starting with __ and the normal name is an alias. */
4905
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4901
+ #if defined (__stub_GetTypeInfoList) || defined (__stub___GetTypeInfoList)
4906
4902
  choke me
4907
4903
  #else
4908
- char (*f) () = $ac_func;
4904
+ char (*f) () = GetTypeInfoList;
4909
4905
  #endif
4910
4906
  #ifdef __cplusplus
4911
4907
  }
@@ -4914,7 +4910,7 @@ char (*f) () = $ac_func;
4914
4910
  int
4915
4911
  main ()
4916
4912
  {
4917
- return f != $ac_func;
4913
+ return f != GetTypeInfoList;
4918
4914
  ;
4919
4915
  return 0;
4920
4916
  }
@@ -4941,32 +4937,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4941
4937
  ac_status=$?
4942
4938
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
4943
4939
  (exit $ac_status); }; }; then
4944
- eval "$as_ac_var=yes"
4940
+ ac_cv_func_GetTypeInfoList=yes
4945
4941
  else
4946
4942
  echo "$as_me: failed program was:" >&5
4947
4943
  sed 's/^/| /' conftest.$ac_ext >&5
4948
4944
 
4949
- eval "$as_ac_var=no"
4945
+ ac_cv_func_GetTypeInfoList=no
4950
4946
  fi
4951
4947
  rm -f conftest.err conftest.$ac_objext \
4952
4948
  conftest$ac_exeext conftest.$ac_ext
4953
4949
  fi
4954
- echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
4955
- echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4956
- if test `eval echo '${'$as_ac_var'}'` = yes; then
4957
- cat >>confdefs.h <<_ACEOF
4958
- #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
4950
+ echo "$as_me:$LINENO: result: $ac_cv_func_GetTypeInfoList" >&5
4951
+ echo "${ECHO_T}$ac_cv_func_GetTypeInfoList" >&6
4952
+ if test $ac_cv_func_GetTypeInfoList = yes; then
4953
+ rm_have_gettypeinfolist=yes
4954
+ else
4955
+ rm_have_gettypeinfolist=no
4956
+ fi
4957
+
4958
+ if test "$rm_have_gettypeinfolist" = yes; then
4959
+ cat >>confdefs.h <<\_ACEOF
4960
+ #define HAVE_GETTYPEINFOLIST 1
4959
4961
  _ACEOF
4960
4962
 
4961
4963
  fi
4962
- done
4963
4964
 
4964
4965
 
4965
- # We need to be able to query these symbols later in the configure script, so set a shell
4966
- # variable here as well as defining symbols.
4967
- echo "$as_me:$LINENO: checking for GetColorInfoList" >&5
4968
- echo $ECHO_N "checking for GetColorInfoList... $ECHO_C" >&6
4969
- if test "${ac_cv_func_GetColorInfoList+set}" = set; then
4966
+
4967
+
4968
+ for ac_func in GrayscalePseudoClassImage ImagesToBlob ImportImagePixels
4969
+ do
4970
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
4971
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
4972
+ echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4973
+ if eval "test \"\${$as_ac_var+set}\" = set"; then
4970
4974
  echo $ECHO_N "(cached) $ECHO_C" >&6
4971
4975
  else
4972
4976
  cat >conftest.$ac_ext <<_ACEOF
@@ -4975,12 +4979,12 @@ _ACEOF
4975
4979
  cat confdefs.h >>conftest.$ac_ext
4976
4980
  cat >>conftest.$ac_ext <<_ACEOF
4977
4981
  /* end confdefs.h. */
4978
- /* Define GetColorInfoList to an innocuous variant, in case <limits.h> declares GetColorInfoList.
4982
+ /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4979
4983
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
4980
- #define GetColorInfoList innocuous_GetColorInfoList
4984
+ #define $ac_func innocuous_$ac_func
4981
4985
 
4982
4986
  /* System header to define __stub macros and hopefully few prototypes,
4983
- which can conflict with char GetColorInfoList (); below.
4987
+ which can conflict with char $ac_func (); below.
4984
4988
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4985
4989
  <limits.h> exists even on freestanding compilers. */
4986
4990
 
@@ -4990,7 +4994,7 @@ cat >>conftest.$ac_ext <<_ACEOF
4990
4994
  # include <assert.h>
4991
4995
  #endif
4992
4996
 
4993
- #undef GetColorInfoList
4997
+ #undef $ac_func
4994
4998
 
4995
4999
  /* Override any gcc2 internal prototype to avoid an error. */
4996
5000
  #ifdef __cplusplus
@@ -4999,14 +5003,14 @@ extern "C"
4999
5003
  #endif
5000
5004
  /* We use char because int might match the return type of a gcc2
5001
5005
  builtin and then its argument prototype would still apply. */
5002
- char GetColorInfoList ();
5006
+ char $ac_func ();
5003
5007
  /* The GNU C library defines this for functions which it implements
5004
5008
  to always fail with ENOSYS. Some functions are actually named
5005
5009
  something starting with __ and the normal name is an alias. */
5006
- #if defined (__stub_GetColorInfoList) || defined (__stub___GetColorInfoList)
5010
+ #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5007
5011
  choke me
5008
5012
  #else
5009
- char (*f) () = GetColorInfoList;
5013
+ char (*f) () = $ac_func;
5010
5014
  #endif
5011
5015
  #ifdef __cplusplus
5012
5016
  }
@@ -5015,7 +5019,7 @@ char (*f) () = GetColorInfoList;
5015
5019
  int
5016
5020
  main ()
5017
5021
  {
5018
- return f != GetColorInfoList;
5022
+ return f != $ac_func;
5019
5023
  ;
5020
5024
  return 0;
5021
5025
  }
@@ -5042,34 +5046,35 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5042
5046
  ac_status=$?
5043
5047
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5044
5048
  (exit $ac_status); }; }; then
5045
- ac_cv_func_GetColorInfoList=yes
5049
+ eval "$as_ac_var=yes"
5046
5050
  else
5047
5051
  echo "$as_me: failed program was:" >&5
5048
5052
  sed 's/^/| /' conftest.$ac_ext >&5
5049
5053
 
5050
- ac_cv_func_GetColorInfoList=no
5054
+ eval "$as_ac_var=no"
5051
5055
  fi
5052
5056
  rm -f conftest.err conftest.$ac_objext \
5053
5057
  conftest$ac_exeext conftest.$ac_ext
5054
5058
  fi
5055
- echo "$as_me:$LINENO: result: $ac_cv_func_GetColorInfoList" >&5
5056
- echo "${ECHO_T}$ac_cv_func_GetColorInfoList" >&6
5057
- if test $ac_cv_func_GetColorInfoList = yes; then
5058
- rm_have_getcolorinfolist=yes
5059
- else
5060
- rm_have_getcolorinfolist=no
5061
- fi
5062
-
5063
- if test "$rm_have_getcolorinfolist" = yes; then
5064
- cat >>confdefs.h <<\_ACEOF
5065
- #define HAVE_GETCOLORINFOLIST 1
5059
+ echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
5060
+ echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
5061
+ if test `eval echo '${'$as_ac_var'}'` = yes; then
5062
+ cat >>confdefs.h <<_ACEOF
5063
+ #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
5066
5064
  _ACEOF
5067
5065
 
5068
5066
  fi
5067
+ done
5069
5068
 
5070
- echo "$as_me:$LINENO: checking for GetTypeInfoList" >&5
5071
- echo $ECHO_N "checking for GetTypeInfoList... $ECHO_C" >&6
5072
- if test "${ac_cv_func_GetTypeInfoList+set}" = set; then
5069
+
5070
+
5071
+
5072
+ for ac_func in IsColorSimilar NegateImageChannel NormalizeImageChannel
5073
+ do
5074
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5075
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
5076
+ echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
5077
+ if eval "test \"\${$as_ac_var+set}\" = set"; then
5073
5078
  echo $ECHO_N "(cached) $ECHO_C" >&6
5074
5079
  else
5075
5080
  cat >conftest.$ac_ext <<_ACEOF
@@ -5078,12 +5083,12 @@ _ACEOF
5078
5083
  cat confdefs.h >>conftest.$ac_ext
5079
5084
  cat >>conftest.$ac_ext <<_ACEOF
5080
5085
  /* end confdefs.h. */
5081
- /* Define GetTypeInfoList to an innocuous variant, in case <limits.h> declares GetTypeInfoList.
5086
+ /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5082
5087
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
5083
- #define GetTypeInfoList innocuous_GetTypeInfoList
5088
+ #define $ac_func innocuous_$ac_func
5084
5089
 
5085
5090
  /* System header to define __stub macros and hopefully few prototypes,
5086
- which can conflict with char GetTypeInfoList (); below.
5091
+ which can conflict with char $ac_func (); below.
5087
5092
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5088
5093
  <limits.h> exists even on freestanding compilers. */
5089
5094
 
@@ -5093,7 +5098,7 @@ cat >>conftest.$ac_ext <<_ACEOF
5093
5098
  # include <assert.h>
5094
5099
  #endif
5095
5100
 
5096
- #undef GetTypeInfoList
5101
+ #undef $ac_func
5097
5102
 
5098
5103
  /* Override any gcc2 internal prototype to avoid an error. */
5099
5104
  #ifdef __cplusplus
@@ -5102,14 +5107,14 @@ extern "C"
5102
5107
  #endif
5103
5108
  /* We use char because int might match the return type of a gcc2
5104
5109
  builtin and then its argument prototype would still apply. */
5105
- char GetTypeInfoList ();
5110
+ char $ac_func ();
5106
5111
  /* The GNU C library defines this for functions which it implements
5107
5112
  to always fail with ENOSYS. Some functions are actually named
5108
5113
  something starting with __ and the normal name is an alias. */
5109
- #if defined (__stub_GetTypeInfoList) || defined (__stub___GetTypeInfoList)
5114
+ #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5110
5115
  choke me
5111
5116
  #else
5112
- char (*f) () = GetTypeInfoList;
5117
+ char (*f) () = $ac_func;
5113
5118
  #endif
5114
5119
  #ifdef __cplusplus
5115
5120
  }
@@ -5118,7 +5123,7 @@ char (*f) () = GetTypeInfoList;
5118
5123
  int
5119
5124
  main ()
5120
5125
  {
5121
- return f != GetTypeInfoList;
5126
+ return f != $ac_func;
5122
5127
  ;
5123
5128
  return 0;
5124
5129
  }
@@ -5145,34 +5150,36 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5145
5150
  ac_status=$?
5146
5151
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5147
5152
  (exit $ac_status); }; }; then
5148
- ac_cv_func_GetTypeInfoList=yes
5153
+ eval "$as_ac_var=yes"
5149
5154
  else
5150
5155
  echo "$as_me: failed program was:" >&5
5151
5156
  sed 's/^/| /' conftest.$ac_ext >&5
5152
5157
 
5153
- ac_cv_func_GetTypeInfoList=no
5158
+ eval "$as_ac_var=no"
5154
5159
  fi
5155
5160
  rm -f conftest.err conftest.$ac_objext \
5156
5161
  conftest$ac_exeext conftest.$ac_ext
5157
5162
  fi
5158
- echo "$as_me:$LINENO: result: $ac_cv_func_GetTypeInfoList" >&5
5159
- echo "${ECHO_T}$ac_cv_func_GetTypeInfoList" >&6
5160
- if test $ac_cv_func_GetTypeInfoList = yes; then
5161
- rm_have_gettypeinfolist=yes
5162
- else
5163
- rm_have_gettypeinfolist=no
5164
- fi
5165
-
5166
- if test "$rm_have_gettypeinfolist" = yes; then
5167
- cat >>confdefs.h <<\_ACEOF
5168
- #define HAVE_GETTYPEINFOLIST 1
5163
+ echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
5164
+ echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
5165
+ if test `eval echo '${'$as_ac_var'}'` = yes; then
5166
+ cat >>confdefs.h <<_ACEOF
5167
+ #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
5169
5168
  _ACEOF
5170
5169
 
5171
5170
  fi
5171
+ done
5172
5172
 
5173
- echo "$as_me:$LINENO: checking for GetMagickInfoList" >&5
5174
- echo $ECHO_N "checking for GetMagickInfoList... $ECHO_C" >&6
5175
- if test "${ac_cv_func_GetMagickInfoList+set}" = set; then
5173
+
5174
+
5175
+
5176
+
5177
+ for ac_func in ParseSizeGeometry PosterizeImage PreviewImage QuantumOperatorRegionImage
5178
+ do
5179
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5180
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
5181
+ echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
5182
+ if eval "test \"\${$as_ac_var+set}\" = set"; then
5176
5183
  echo $ECHO_N "(cached) $ECHO_C" >&6
5177
5184
  else
5178
5185
  cat >conftest.$ac_ext <<_ACEOF
@@ -5181,12 +5188,12 @@ _ACEOF
5181
5188
  cat confdefs.h >>conftest.$ac_ext
5182
5189
  cat >>conftest.$ac_ext <<_ACEOF
5183
5190
  /* end confdefs.h. */
5184
- /* Define GetMagickInfoList to an innocuous variant, in case <limits.h> declares GetMagickInfoList.
5191
+ /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5185
5192
  For example, HP-UX 11i <limits.h> declares gettimeofday. */
5186
- #define GetMagickInfoList innocuous_GetMagickInfoList
5193
+ #define $ac_func innocuous_$ac_func
5187
5194
 
5188
5195
  /* System header to define __stub macros and hopefully few prototypes,
5189
- which can conflict with char GetMagickInfoList (); below.
5196
+ which can conflict with char $ac_func (); below.
5190
5197
  Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5191
5198
  <limits.h> exists even on freestanding compilers. */
5192
5199
 
@@ -5196,7 +5203,7 @@ cat >>conftest.$ac_ext <<_ACEOF
5196
5203
  # include <assert.h>
5197
5204
  #endif
5198
5205
 
5199
- #undef GetMagickInfoList
5206
+ #undef $ac_func
5200
5207
 
5201
5208
  /* Override any gcc2 internal prototype to avoid an error. */
5202
5209
  #ifdef __cplusplus
@@ -5205,14 +5212,14 @@ extern "C"
5205
5212
  #endif
5206
5213
  /* We use char because int might match the return type of a gcc2
5207
5214
  builtin and then its argument prototype would still apply. */
5208
- char GetMagickInfoList ();
5215
+ char $ac_func ();
5209
5216
  /* The GNU C library defines this for functions which it implements
5210
5217
  to always fail with ENOSYS. Some functions are actually named
5211
5218
  something starting with __ and the normal name is an alias. */
5212
- #if defined (__stub_GetMagickInfoList) || defined (__stub___GetMagickInfoList)
5219
+ #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5213
5220
  choke me
5214
5221
  #else
5215
- char (*f) () = GetMagickInfoList;
5222
+ char (*f) () = $ac_func;
5216
5223
  #endif
5217
5224
  #ifdef __cplusplus
5218
5225
  }
@@ -5221,7 +5228,7 @@ char (*f) () = GetMagickInfoList;
5221
5228
  int
5222
5229
  main ()
5223
5230
  {
5224
- return f != GetMagickInfoList;
5231
+ return f != $ac_func;
5225
5232
  ;
5226
5233
  return 0;
5227
5234
  }
@@ -5248,35 +5255,30 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5248
5255
  ac_status=$?
5249
5256
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5250
5257
  (exit $ac_status); }; }; then
5251
- ac_cv_func_GetMagickInfoList=yes
5258
+ eval "$as_ac_var=yes"
5252
5259
  else
5253
5260
  echo "$as_me: failed program was:" >&5
5254
5261
  sed 's/^/| /' conftest.$ac_ext >&5
5255
5262
 
5256
- ac_cv_func_GetMagickInfoList=no
5263
+ eval "$as_ac_var=no"
5257
5264
  fi
5258
5265
  rm -f conftest.err conftest.$ac_objext \
5259
5266
  conftest$ac_exeext conftest.$ac_ext
5260
5267
  fi
5261
- echo "$as_me:$LINENO: result: $ac_cv_func_GetMagickInfoList" >&5
5262
- echo "${ECHO_T}$ac_cv_func_GetMagickInfoList" >&6
5263
- if test $ac_cv_func_GetMagickInfoList = yes; then
5264
- rm_have_getmagickinfolist=yes
5265
- else
5266
- rm_have_getmagickinfolist=no
5267
- fi
5268
-
5269
- if test "$rm_have_getmagickinfolist" = yes; then
5270
- cat >>confdefs.h <<\_ACEOF
5271
- #define HAVE_GETMAGICKINFOLIST 1
5268
+ echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
5269
+ echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
5270
+ if test `eval echo '${'$as_ac_var'}'` = yes; then
5271
+ cat >>confdefs.h <<_ACEOF
5272
+ #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
5272
5273
  _ACEOF
5273
5274
 
5274
5275
  fi
5276
+ done
5275
5277
 
5276
5278
 
5277
5279
 
5278
5280
 
5279
- for ac_func in EvaluateImageChannel PosterizeImage GaussianBlurImageChannel
5281
+ for ac_func in RadialBlurImage RandomChannelThresholdImage RandomThresholdImageChannel
5280
5282
  do
5281
5283
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5282
5284
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5380,7 +5382,7 @@ done
5380
5382
 
5381
5383
 
5382
5384
 
5383
- for ac_func in ConvolveImageChannel SpliceImage SharpenImageChannel
5385
+ for ac_func in SeparateImageChannel SepiaToneImage SetImageBackgroundColor
5384
5386
  do
5385
5387
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5386
5388
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5484,7 +5486,7 @@ done
5484
5486
 
5485
5487
 
5486
5488
 
5487
- for ac_func in SetImageChannelDepth BlurImageChannel GetMultilineTypeMetrics
5489
+ for ac_func in SetImageChannelDepth SetImageColorspace SetImageOption
5488
5490
  do
5489
5491
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5490
5492
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5588,7 +5590,7 @@ done
5588
5590
 
5589
5591
 
5590
5592
 
5591
- for ac_func in NormalizeImageChannel UnsharpMaskImageChannel ShadowImage
5593
+ for ac_func in SetImageProgressMonitor ShadowImage SharpenImageChannel
5592
5594
  do
5593
5595
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5594
5596
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5692,7 +5694,7 @@ done
5692
5694
 
5693
5695
 
5694
5696
 
5695
- for ac_func in SepiaToneImage SigmoidalContrastImageChannel SetImageProgressMonitor
5697
+ for ac_func in SigmoidalContrastImageChannel SpliceImage StripImage
5696
5698
  do
5697
5699
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5698
5700
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5795,7 +5797,7 @@ done
5795
5797
 
5796
5798
 
5797
5799
 
5798
- for ac_func in GetImageChannelDistortion ImagesToBlob
5800
+ for ac_func in ThresholdImageChannel TintImage
5799
5801
  do
5800
5802
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5801
5803
  echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -5897,12 +5899,15 @@ fi
5897
5899
  done
5898
5900
 
5899
5901
 
5900
- # What typedefs?
5901
5902
 
5902
- # Need a separate test for this so we can set an env. variable to test below.
5903
- echo "$as_me:$LINENO: checking for MagickBooleanType" >&5
5904
- echo $ECHO_N "checking for MagickBooleanType... $ECHO_C" >&6
5905
- if test "${ac_cv_type_MagickBooleanType+set}" = set; then
5903
+
5904
+
5905
+ for ac_func in UnsharpMaskImageChannel VignetteImage WhiteThresholdImage XImportImage
5906
+ do
5907
+ as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
5908
+ echo "$as_me:$LINENO: checking for $ac_func" >&5
5909
+ echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
5910
+ if eval "test \"\${$as_ac_var+set}\" = set"; then
5906
5911
  echo $ECHO_N "(cached) $ECHO_C" >&6
5907
5912
  else
5908
5913
  cat >conftest.$ac_ext <<_ACEOF
@@ -5911,26 +5916,54 @@ _ACEOF
5911
5916
  cat confdefs.h >>conftest.$ac_ext
5912
5917
  cat >>conftest.$ac_ext <<_ACEOF
5913
5918
  /* end confdefs.h. */
5914
- #include <stdio.h>
5915
- #if HAVE_SYS_TYPES_H
5916
- #include <sys/types.h>
5917
- #endif
5918
- #include "magick/api.h"
5919
+ /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5920
+ For example, HP-UX 11i <limits.h> declares gettimeofday. */
5921
+ #define $ac_func innocuous_$ac_func
5922
+
5923
+ /* System header to define __stub macros and hopefully few prototypes,
5924
+ which can conflict with char $ac_func (); below.
5925
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5926
+ <limits.h> exists even on freestanding compilers. */
5927
+
5928
+ #ifdef __STDC__
5929
+ # include <limits.h>
5930
+ #else
5931
+ # include <assert.h>
5932
+ #endif
5933
+
5934
+ #undef $ac_func
5935
+
5936
+ /* Override any gcc2 internal prototype to avoid an error. */
5937
+ #ifdef __cplusplus
5938
+ extern "C"
5939
+ {
5940
+ #endif
5941
+ /* We use char because int might match the return type of a gcc2
5942
+ builtin and then its argument prototype would still apply. */
5943
+ char $ac_func ();
5944
+ /* The GNU C library defines this for functions which it implements
5945
+ to always fail with ENOSYS. Some functions are actually named
5946
+ something starting with __ and the normal name is an alias. */
5947
+ #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5948
+ choke me
5949
+ #else
5950
+ char (*f) () = $ac_func;
5951
+ #endif
5952
+ #ifdef __cplusplus
5953
+ }
5954
+ #endif
5919
5955
 
5920
5956
  int
5921
5957
  main ()
5922
5958
  {
5923
- if ((MagickBooleanType *) 0)
5924
- return 0;
5925
- if (sizeof (MagickBooleanType))
5926
- return 0;
5959
+ return f != $ac_func;
5927
5960
  ;
5928
5961
  return 0;
5929
5962
  }
5930
5963
  _ACEOF
5931
- rm -f conftest.$ac_objext
5932
- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5933
- (eval $ac_compile) 2>conftest.er1
5964
+ rm -f conftest.$ac_objext conftest$ac_exeext
5965
+ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5966
+ (eval $ac_link) 2>conftest.er1
5934
5967
  ac_status=$?
5935
5968
  grep -v '^ *+' conftest.er1 >conftest.err
5936
5969
  rm -f conftest.er1
@@ -5944,39 +5977,39 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5944
5977
  ac_status=$?
5945
5978
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5946
5979
  (exit $ac_status); }; } &&
5947
- { ac_try='test -s conftest.$ac_objext'
5980
+ { ac_try='test -s conftest$ac_exeext'
5948
5981
  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5949
5982
  (eval $ac_try) 2>&5
5950
5983
  ac_status=$?
5951
5984
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
5952
5985
  (exit $ac_status); }; }; then
5953
- ac_cv_type_MagickBooleanType=yes
5986
+ eval "$as_ac_var=yes"
5954
5987
  else
5955
5988
  echo "$as_me: failed program was:" >&5
5956
5989
  sed 's/^/| /' conftest.$ac_ext >&5
5957
5990
 
5958
- ac_cv_type_MagickBooleanType=no
5959
- fi
5960
- rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5991
+ eval "$as_ac_var=no"
5961
5992
  fi
5962
- echo "$as_me:$LINENO: result: $ac_cv_type_MagickBooleanType" >&5
5963
- echo "${ECHO_T}$ac_cv_type_MagickBooleanType" >&6
5964
- if test $ac_cv_type_MagickBooleanType = yes; then
5965
- rm_have_magickbooleantype=yes
5966
- else
5967
- rm_have_magickbooleantype=no
5993
+ rm -f conftest.err conftest.$ac_objext \
5994
+ conftest$ac_exeext conftest.$ac_ext
5968
5995
  fi
5969
-
5970
- if test "$rm_have_magickbooleantype" = yes; then
5971
- cat >>confdefs.h <<\_ACEOF
5972
- #define HAVE_MAGICKBOOLEANTYPE 1
5996
+ echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
5997
+ echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
5998
+ if test `eval echo '${'$as_ac_var'}'` = yes; then
5999
+ cat >>confdefs.h <<_ACEOF
6000
+ #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
5973
6001
  _ACEOF
5974
6002
 
5975
6003
  fi
6004
+ done
6005
+
5976
6006
 
5977
- echo "$as_me:$LINENO: checking for DisposeType" >&5
5978
- echo $ECHO_N "checking for DisposeType... $ECHO_C" >&6
5979
- if test "${ac_cv_type_DisposeType+set}" = set; then
6007
+ # What typedefs?
6008
+
6009
+ # Need a separate test for this so we can set an env. variable to test below.
6010
+ echo "$as_me:$LINENO: checking for MagickBooleanType" >&5
6011
+ echo $ECHO_N "checking for MagickBooleanType... $ECHO_C" >&6
6012
+ if test "${ac_cv_type_MagickBooleanType+set}" = set; then
5980
6013
  echo $ECHO_N "(cached) $ECHO_C" >&6
5981
6014
  else
5982
6015
  cat >conftest.$ac_ext <<_ACEOF
@@ -5986,17 +6019,17 @@ cat confdefs.h >>conftest.$ac_ext
5986
6019
  cat >>conftest.$ac_ext <<_ACEOF
5987
6020
  /* end confdefs.h. */
5988
6021
  #include <stdio.h>
5989
- #if HAVE_SYS_TYPES_H
5990
- #include <sys/types.h>
5991
- #endif
5992
- #include "magick/api.h"
6022
+ #if HAVE_SYS_TYPES_H
6023
+ #include <sys/types.h>
6024
+ #endif
6025
+ #include "magick/api.h"
5993
6026
 
5994
6027
  int
5995
6028
  main ()
5996
6029
  {
5997
- if ((DisposeType *) 0)
6030
+ if ((MagickBooleanType *) 0)
5998
6031
  return 0;
5999
- if (sizeof (DisposeType))
6032
+ if (sizeof (MagickBooleanType))
6000
6033
  return 0;
6001
6034
  ;
6002
6035
  return 0;
@@ -6024,25 +6057,30 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6024
6057
  ac_status=$?
6025
6058
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6026
6059
  (exit $ac_status); }; }; then
6027
- ac_cv_type_DisposeType=yes
6060
+ ac_cv_type_MagickBooleanType=yes
6028
6061
  else
6029
6062
  echo "$as_me: failed program was:" >&5
6030
6063
  sed 's/^/| /' conftest.$ac_ext >&5
6031
6064
 
6032
- ac_cv_type_DisposeType=no
6065
+ ac_cv_type_MagickBooleanType=no
6033
6066
  fi
6034
6067
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6035
6068
  fi
6036
- echo "$as_me:$LINENO: result: $ac_cv_type_DisposeType" >&5
6037
- echo "${ECHO_T}$ac_cv_type_DisposeType" >&6
6038
- if test $ac_cv_type_DisposeType = yes; then
6069
+ echo "$as_me:$LINENO: result: $ac_cv_type_MagickBooleanType" >&5
6070
+ echo "${ECHO_T}$ac_cv_type_MagickBooleanType" >&6
6071
+ if test $ac_cv_type_MagickBooleanType = yes; then
6072
+ rm_have_magickbooleantype=yes
6073
+ else
6074
+ rm_have_magickbooleantype=no
6075
+ fi
6039
6076
 
6040
- cat >>confdefs.h <<_ACEOF
6041
- #define HAVE_DISPOSETYPE 1
6077
+ if test "$rm_have_magickbooleantype" = yes; then
6078
+ cat >>confdefs.h <<\_ACEOF
6079
+ #define HAVE_MAGICKBOOLEANTYPE 1
6042
6080
  _ACEOF
6043
6081
 
6044
-
6045
6082
  fi
6083
+
6046
6084
  echo "$as_me:$LINENO: checking for magick_int64_t" >&5
6047
6085
  echo $ECHO_N "checking for magick_int64_t... $ECHO_C" >&6
6048
6086
  if test "${ac_cv_type_magick_int64_t+set}" = set; then
@@ -6408,10 +6446,130 @@ cat >>conftest.$ac_ext <<_ACEOF
6408
6446
  int
6409
6447
  main ()
6410
6448
  {
6411
- if ((MagickSizeType *) 0)
6412
- return 0;
6413
- if (sizeof (MagickSizeType))
6414
- return 0;
6449
+ if ((MagickSizeType *) 0)
6450
+ return 0;
6451
+ if (sizeof (MagickSizeType))
6452
+ return 0;
6453
+ ;
6454
+ return 0;
6455
+ }
6456
+ _ACEOF
6457
+ rm -f conftest.$ac_objext
6458
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6459
+ (eval $ac_compile) 2>conftest.er1
6460
+ ac_status=$?
6461
+ grep -v '^ *+' conftest.er1 >conftest.err
6462
+ rm -f conftest.er1
6463
+ cat conftest.err >&5
6464
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6465
+ (exit $ac_status); } &&
6466
+ { ac_try='test -z "$ac_c_werror_flag"
6467
+ || test ! -s conftest.err'
6468
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6469
+ (eval $ac_try) 2>&5
6470
+ ac_status=$?
6471
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6472
+ (exit $ac_status); }; } &&
6473
+ { ac_try='test -s conftest.$ac_objext'
6474
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6475
+ (eval $ac_try) 2>&5
6476
+ ac_status=$?
6477
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6478
+ (exit $ac_status); }; }; then
6479
+ ac_cv_type_MagickSizeType=yes
6480
+ else
6481
+ echo "$as_me: failed program was:" >&5
6482
+ sed 's/^/| /' conftest.$ac_ext >&5
6483
+
6484
+ ac_cv_type_MagickSizeType=no
6485
+ fi
6486
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6487
+ fi
6488
+ echo "$as_me:$LINENO: result: $ac_cv_type_MagickSizeType" >&5
6489
+ echo "${ECHO_T}$ac_cv_type_MagickSizeType" >&6
6490
+ if test $ac_cv_type_MagickSizeType = yes; then
6491
+
6492
+ cat >>confdefs.h <<_ACEOF
6493
+ #define HAVE_MAGICKSIZETYPE 1
6494
+ _ACEOF
6495
+
6496
+
6497
+ fi
6498
+
6499
+
6500
+
6501
+ echo "$as_me:$LINENO: checking for ExceptionInfo.module" >&5
6502
+ echo $ECHO_N "checking for ExceptionInfo.module... $ECHO_C" >&6
6503
+ if test "${ac_cv_member_ExceptionInfo_module+set}" = set; then
6504
+ echo $ECHO_N "(cached) $ECHO_C" >&6
6505
+ else
6506
+ cat >conftest.$ac_ext <<_ACEOF
6507
+ /* confdefs.h. */
6508
+ _ACEOF
6509
+ cat confdefs.h >>conftest.$ac_ext
6510
+ cat >>conftest.$ac_ext <<_ACEOF
6511
+ /* end confdefs.h. */
6512
+ #include <stdio.h>
6513
+ #if HAVE_SYS_TYPES_H
6514
+ #include <sys/types.h>
6515
+ #endif
6516
+ #include "magick/api.h"
6517
+
6518
+ int
6519
+ main ()
6520
+ {
6521
+ static ExceptionInfo ac_aggr;
6522
+ if (ac_aggr.module)
6523
+ return 0;
6524
+ ;
6525
+ return 0;
6526
+ }
6527
+ _ACEOF
6528
+ rm -f conftest.$ac_objext
6529
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6530
+ (eval $ac_compile) 2>conftest.er1
6531
+ ac_status=$?
6532
+ grep -v '^ *+' conftest.er1 >conftest.err
6533
+ rm -f conftest.er1
6534
+ cat conftest.err >&5
6535
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6536
+ (exit $ac_status); } &&
6537
+ { ac_try='test -z "$ac_c_werror_flag"
6538
+ || test ! -s conftest.err'
6539
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6540
+ (eval $ac_try) 2>&5
6541
+ ac_status=$?
6542
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6543
+ (exit $ac_status); }; } &&
6544
+ { ac_try='test -s conftest.$ac_objext'
6545
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6546
+ (eval $ac_try) 2>&5
6547
+ ac_status=$?
6548
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
6549
+ (exit $ac_status); }; }; then
6550
+ ac_cv_member_ExceptionInfo_module=yes
6551
+ else
6552
+ echo "$as_me: failed program was:" >&5
6553
+ sed 's/^/| /' conftest.$ac_ext >&5
6554
+
6555
+ cat >conftest.$ac_ext <<_ACEOF
6556
+ /* confdefs.h. */
6557
+ _ACEOF
6558
+ cat confdefs.h >>conftest.$ac_ext
6559
+ cat >>conftest.$ac_ext <<_ACEOF
6560
+ /* end confdefs.h. */
6561
+ #include <stdio.h>
6562
+ #if HAVE_SYS_TYPES_H
6563
+ #include <sys/types.h>
6564
+ #endif
6565
+ #include "magick/api.h"
6566
+
6567
+ int
6568
+ main ()
6569
+ {
6570
+ static ExceptionInfo ac_aggr;
6571
+ if (sizeof ac_aggr.module)
6572
+ return 0;
6415
6573
  ;
6416
6574
  return 0;
6417
6575
  }
@@ -6438,21 +6596,23 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6438
6596
  ac_status=$?
6439
6597
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6440
6598
  (exit $ac_status); }; }; then
6441
- ac_cv_type_MagickSizeType=yes
6599
+ ac_cv_member_ExceptionInfo_module=yes
6442
6600
  else
6443
6601
  echo "$as_me: failed program was:" >&5
6444
6602
  sed 's/^/| /' conftest.$ac_ext >&5
6445
6603
 
6446
- ac_cv_type_MagickSizeType=no
6604
+ ac_cv_member_ExceptionInfo_module=no
6447
6605
  fi
6448
6606
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6449
6607
  fi
6450
- echo "$as_me:$LINENO: result: $ac_cv_type_MagickSizeType" >&5
6451
- echo "${ECHO_T}$ac_cv_type_MagickSizeType" >&6
6452
- if test $ac_cv_type_MagickSizeType = yes; then
6608
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6609
+ fi
6610
+ echo "$as_me:$LINENO: result: $ac_cv_member_ExceptionInfo_module" >&5
6611
+ echo "${ECHO_T}$ac_cv_member_ExceptionInfo_module" >&6
6612
+ if test $ac_cv_member_ExceptionInfo_module = yes; then
6453
6613
 
6454
6614
  cat >>confdefs.h <<_ACEOF
6455
- #define HAVE_MAGICKSIZETYPE 1
6615
+ #define HAVE_EXCEPTIONINFO_MODULE 1
6456
6616
  _ACEOF
6457
6617
 
6458
6618
 
@@ -6460,9 +6620,9 @@ fi
6460
6620
 
6461
6621
 
6462
6622
 
6463
- echo "$as_me:$LINENO: checking for ExceptionInfo.module" >&5
6464
- echo $ECHO_N "checking for ExceptionInfo.module... $ECHO_C" >&6
6465
- if test "${ac_cv_member_ExceptionInfo_module+set}" = set; then
6623
+ echo "$as_me:$LINENO: checking for Image.orientation" >&5
6624
+ echo $ECHO_N "checking for Image.orientation... $ECHO_C" >&6
6625
+ if test "${ac_cv_member_Image_orientation+set}" = set; then
6466
6626
  echo $ECHO_N "(cached) $ECHO_C" >&6
6467
6627
  else
6468
6628
  cat >conftest.$ac_ext <<_ACEOF
@@ -6480,8 +6640,8 @@ cat >>conftest.$ac_ext <<_ACEOF
6480
6640
  int
6481
6641
  main ()
6482
6642
  {
6483
- static ExceptionInfo ac_aggr;
6484
- if (ac_aggr.module)
6643
+ static Image ac_aggr;
6644
+ if (ac_aggr.orientation)
6485
6645
  return 0;
6486
6646
  ;
6487
6647
  return 0;
@@ -6509,7 +6669,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6509
6669
  ac_status=$?
6510
6670
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6511
6671
  (exit $ac_status); }; }; then
6512
- ac_cv_member_ExceptionInfo_module=yes
6672
+ ac_cv_member_Image_orientation=yes
6513
6673
  else
6514
6674
  echo "$as_me: failed program was:" >&5
6515
6675
  sed 's/^/| /' conftest.$ac_ext >&5
@@ -6529,8 +6689,8 @@ cat >>conftest.$ac_ext <<_ACEOF
6529
6689
  int
6530
6690
  main ()
6531
6691
  {
6532
- static ExceptionInfo ac_aggr;
6533
- if (sizeof ac_aggr.module)
6692
+ static Image ac_aggr;
6693
+ if (sizeof ac_aggr.orientation)
6534
6694
  return 0;
6535
6695
  ;
6536
6696
  return 0;
@@ -6558,33 +6718,32 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6558
6718
  ac_status=$?
6559
6719
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6560
6720
  (exit $ac_status); }; }; then
6561
- ac_cv_member_ExceptionInfo_module=yes
6721
+ ac_cv_member_Image_orientation=yes
6562
6722
  else
6563
6723
  echo "$as_me: failed program was:" >&5
6564
6724
  sed 's/^/| /' conftest.$ac_ext >&5
6565
6725
 
6566
- ac_cv_member_ExceptionInfo_module=no
6726
+ ac_cv_member_Image_orientation=no
6567
6727
  fi
6568
6728
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6569
6729
  fi
6570
6730
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6571
6731
  fi
6572
- echo "$as_me:$LINENO: result: $ac_cv_member_ExceptionInfo_module" >&5
6573
- echo "${ECHO_T}$ac_cv_member_ExceptionInfo_module" >&6
6574
- if test $ac_cv_member_ExceptionInfo_module = yes; then
6732
+ echo "$as_me:$LINENO: result: $ac_cv_member_Image_orientation" >&5
6733
+ echo "${ECHO_T}$ac_cv_member_Image_orientation" >&6
6734
+ if test $ac_cv_member_Image_orientation = yes; then
6575
6735
 
6576
6736
  cat >>confdefs.h <<_ACEOF
6577
- #define HAVE_EXCEPTIONINFO_MODULE 1
6737
+ #define HAVE_IMAGE_ORIENTATION 1
6578
6738
  _ACEOF
6579
6739
 
6580
6740
 
6581
6741
  fi
6582
6742
 
6583
6743
 
6584
-
6585
- echo "$as_me:$LINENO: checking for Image.orientation" >&5
6586
- echo $ECHO_N "checking for Image.orientation... $ECHO_C" >&6
6587
- if test "${ac_cv_member_Image_orientation+set}" = set; then
6744
+ echo "$as_me:$LINENO: checking for ImageInfo.orientation" >&5
6745
+ echo $ECHO_N "checking for ImageInfo.orientation... $ECHO_C" >&6
6746
+ if test "${ac_cv_member_ImageInfo_orientation+set}" = set; then
6588
6747
  echo $ECHO_N "(cached) $ECHO_C" >&6
6589
6748
  else
6590
6749
  cat >conftest.$ac_ext <<_ACEOF
@@ -6602,7 +6761,7 @@ cat >>conftest.$ac_ext <<_ACEOF
6602
6761
  int
6603
6762
  main ()
6604
6763
  {
6605
- static Image ac_aggr;
6764
+ static ImageInfo ac_aggr;
6606
6765
  if (ac_aggr.orientation)
6607
6766
  return 0;
6608
6767
  ;
@@ -6631,7 +6790,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6631
6790
  ac_status=$?
6632
6791
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6633
6792
  (exit $ac_status); }; }; then
6634
- ac_cv_member_Image_orientation=yes
6793
+ ac_cv_member_ImageInfo_orientation=yes
6635
6794
  else
6636
6795
  echo "$as_me: failed program was:" >&5
6637
6796
  sed 's/^/| /' conftest.$ac_ext >&5
@@ -6651,7 +6810,7 @@ cat >>conftest.$ac_ext <<_ACEOF
6651
6810
  int
6652
6811
  main ()
6653
6812
  {
6654
- static Image ac_aggr;
6813
+ static ImageInfo ac_aggr;
6655
6814
  if (sizeof ac_aggr.orientation)
6656
6815
  return 0;
6657
6816
  ;
@@ -6680,23 +6839,23 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6680
6839
  ac_status=$?
6681
6840
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
6682
6841
  (exit $ac_status); }; }; then
6683
- ac_cv_member_Image_orientation=yes
6842
+ ac_cv_member_ImageInfo_orientation=yes
6684
6843
  else
6685
6844
  echo "$as_me: failed program was:" >&5
6686
6845
  sed 's/^/| /' conftest.$ac_ext >&5
6687
6846
 
6688
- ac_cv_member_Image_orientation=no
6847
+ ac_cv_member_ImageInfo_orientation=no
6689
6848
  fi
6690
6849
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6691
6850
  fi
6692
6851
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6693
6852
  fi
6694
- echo "$as_me:$LINENO: result: $ac_cv_member_Image_orientation" >&5
6695
- echo "${ECHO_T}$ac_cv_member_Image_orientation" >&6
6696
- if test $ac_cv_member_Image_orientation = yes; then
6853
+ echo "$as_me:$LINENO: result: $ac_cv_member_ImageInfo_orientation" >&5
6854
+ echo "${ECHO_T}$ac_cv_member_ImageInfo_orientation" >&6
6855
+ if test $ac_cv_member_ImageInfo_orientation = yes; then
6697
6856
 
6698
6857
  cat >>confdefs.h <<_ACEOF
6699
- #define HAVE_IMAGE_ORIENTATION 1
6858
+ #define HAVE_IMAGEINFO_ORIENTATION 1
6700
6859
  _ACEOF
6701
6860
 
6702
6861
 
@@ -7011,9 +7170,74 @@ _ACEOF
7011
7170
 
7012
7171
  fi
7013
7172
 
7014
- echo "$as_me:$LINENO: checking for ImageInfo.number_scenes" >&5
7015
- echo $ECHO_N "checking for ImageInfo.number_scenes... $ECHO_C" >&6
7016
- if test "${rm_cv_member_ImageInfo_number_scenes+set}" = set; then
7173
+ echo "$as_me:$LINENO: checking for HSBColorspace enum value" >&5
7174
+ echo $ECHO_N "checking for HSBColorspace enum value... $ECHO_C" >&6
7175
+ if test "${rm_cv_enum_hsbcolorspace+set}" = set; then
7176
+ echo $ECHO_N "(cached) $ECHO_C" >&6
7177
+ else
7178
+ cat >conftest.$ac_ext <<_ACEOF
7179
+ /* confdefs.h. */
7180
+ _ACEOF
7181
+ cat confdefs.h >>conftest.$ac_ext
7182
+ cat >>conftest.$ac_ext <<_ACEOF
7183
+ /* end confdefs.h. */
7184
+ #include <stdio.h>
7185
+ #if HAVE_SYS_TYPES_H
7186
+ #include <sys/types.h>
7187
+ #endif
7188
+ #include "magick/api.h"
7189
+ int
7190
+ main ()
7191
+ {
7192
+ ColorspaceType x; x = HSBColorspace
7193
+ ;
7194
+ return 0;
7195
+ }
7196
+ _ACEOF
7197
+ rm -f conftest.$ac_objext
7198
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7199
+ (eval $ac_compile) 2>conftest.er1
7200
+ ac_status=$?
7201
+ grep -v '^ *+' conftest.er1 >conftest.err
7202
+ rm -f conftest.er1
7203
+ cat conftest.err >&5
7204
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7205
+ (exit $ac_status); } &&
7206
+ { ac_try='test -z "$ac_c_werror_flag"
7207
+ || test ! -s conftest.err'
7208
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7209
+ (eval $ac_try) 2>&5
7210
+ ac_status=$?
7211
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7212
+ (exit $ac_status); }; } &&
7213
+ { ac_try='test -s conftest.$ac_objext'
7214
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7215
+ (eval $ac_try) 2>&5
7216
+ ac_status=$?
7217
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7218
+ (exit $ac_status); }; }; then
7219
+ rm_cv_enum_hsbcolorspace='yes'
7220
+ else
7221
+ echo "$as_me: failed program was:" >&5
7222
+ sed 's/^/| /' conftest.$ac_ext >&5
7223
+
7224
+ rm_cv_enum_hsbcolorspace='no'
7225
+ fi
7226
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7227
+ fi
7228
+ echo "$as_me:$LINENO: result: $rm_cv_enum_hsbcolorspace" >&5
7229
+ echo "${ECHO_T}$rm_cv_enum_hsbcolorspace" >&6
7230
+
7231
+ if test "$rm_cv_enum_hsbcolorspace" = yes; then
7232
+ cat >>confdefs.h <<\_ACEOF
7233
+ #define HAVE_HSBCOLORSPACE 1
7234
+ _ACEOF
7235
+
7236
+ fi
7237
+
7238
+ echo "$as_me:$LINENO: checking for CineonLogRGBColorspace enum value" >&5
7239
+ echo $ECHO_N "checking for CineonLogRGBColorspace enum value... $ECHO_C" >&6
7240
+ if test "${rm_cv_enum_cineonlogrgbcolorspace+set}" = set; then
7017
7241
  echo $ECHO_N "(cached) $ECHO_C" >&6
7018
7242
  else
7019
7243
  cat >conftest.$ac_ext <<_ACEOF
@@ -7022,16 +7246,145 @@ _ACEOF
7022
7246
  cat confdefs.h >>conftest.$ac_ext
7023
7247
  cat >>conftest.$ac_ext <<_ACEOF
7024
7248
  /* end confdefs.h. */
7249
+ #include <stdio.h>
7250
+ #if HAVE_SYS_TYPES_H
7251
+ #include <sys/types.h>
7252
+ #endif
7253
+ #include "magick/api.h"
7254
+ int
7255
+ main ()
7256
+ {
7257
+ ColorspaceType x; x = CineonLogRGBColorspace
7258
+ ;
7259
+ return 0;
7260
+ }
7261
+ _ACEOF
7262
+ rm -f conftest.$ac_objext
7263
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7264
+ (eval $ac_compile) 2>conftest.er1
7265
+ ac_status=$?
7266
+ grep -v '^ *+' conftest.er1 >conftest.err
7267
+ rm -f conftest.er1
7268
+ cat conftest.err >&5
7269
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7270
+ (exit $ac_status); } &&
7271
+ { ac_try='test -z "$ac_c_werror_flag"
7272
+ || test ! -s conftest.err'
7273
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7274
+ (eval $ac_try) 2>&5
7275
+ ac_status=$?
7276
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7277
+ (exit $ac_status); }; } &&
7278
+ { ac_try='test -s conftest.$ac_objext'
7279
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7280
+ (eval $ac_try) 2>&5
7281
+ ac_status=$?
7282
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7283
+ (exit $ac_status); }; }; then
7284
+ rm_cv_enum_cineonlogrgbcolorspace='yes'
7285
+ else
7286
+ echo "$as_me: failed program was:" >&5
7287
+ sed 's/^/| /' conftest.$ac_ext >&5
7288
+
7289
+ rm_cv_enum_cineonlogrgbcolorspace='no'
7290
+ fi
7291
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7292
+ fi
7293
+ echo "$as_me:$LINENO: result: $rm_cv_enum_cineonlogrgbcolorspace" >&5
7294
+ echo "${ECHO_T}$rm_cv_enum_cineonlogrgbcolorspace" >&6
7295
+
7296
+ if test "$rm_cv_enum_cineonlogrgbcolorspace" = yes; then
7297
+ cat >>confdefs.h <<\_ACEOF
7298
+ #define HAVE_CINEONLOGRGBCOLORSPACE 1
7299
+ _ACEOF
7300
+
7301
+ fi
7025
7302
 
7303
+ echo "$as_me:$LINENO: checking for LABColorspace enum value" >&5
7304
+ echo $ECHO_N "checking for LABColorspace enum value... $ECHO_C" >&6
7305
+ if test "${rm_cv_enum_labcolorspace+set}" = set; then
7306
+ echo $ECHO_N "(cached) $ECHO_C" >&6
7307
+ else
7308
+ cat >conftest.$ac_ext <<_ACEOF
7309
+ /* confdefs.h. */
7310
+ _ACEOF
7311
+ cat confdefs.h >>conftest.$ac_ext
7312
+ cat >>conftest.$ac_ext <<_ACEOF
7313
+ /* end confdefs.h. */
7314
+ #include <stdio.h>
7026
7315
  #if HAVE_SYS_TYPES_H
7027
7316
  #include <sys/types.h>
7028
7317
  #endif
7318
+ #include "magick/api.h"
7319
+ int
7320
+ main ()
7321
+ {
7322
+ ColorspaceType x; x = LABColorspace
7323
+ ;
7324
+ return 0;
7325
+ }
7326
+ _ACEOF
7327
+ rm -f conftest.$ac_objext
7328
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7329
+ (eval $ac_compile) 2>conftest.er1
7330
+ ac_status=$?
7331
+ grep -v '^ *+' conftest.er1 >conftest.err
7332
+ rm -f conftest.er1
7333
+ cat conftest.err >&5
7334
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7335
+ (exit $ac_status); } &&
7336
+ { ac_try='test -z "$ac_c_werror_flag"
7337
+ || test ! -s conftest.err'
7338
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7339
+ (eval $ac_try) 2>&5
7340
+ ac_status=$?
7341
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7342
+ (exit $ac_status); }; } &&
7343
+ { ac_try='test -s conftest.$ac_objext'
7344
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7345
+ (eval $ac_try) 2>&5
7346
+ ac_status=$?
7347
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
7348
+ (exit $ac_status); }; }; then
7349
+ rm_cv_enum_labcolorspace='yes'
7350
+ else
7351
+ echo "$as_me: failed program was:" >&5
7352
+ sed 's/^/| /' conftest.$ac_ext >&5
7353
+
7354
+ rm_cv_enum_labcolorspace='no'
7355
+ fi
7356
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7357
+ fi
7358
+ echo "$as_me:$LINENO: result: $rm_cv_enum_labcolorspace" >&5
7359
+ echo "${ECHO_T}$rm_cv_enum_labcolorspace" >&6
7360
+
7361
+ if test "$rm_cv_enum_labcolorspace" = yes; then
7362
+ cat >>confdefs.h <<\_ACEOF
7363
+ #define HAVE_LABCOLORSPACE 1
7364
+ _ACEOF
7365
+
7366
+ fi
7367
+
7368
+ echo "$as_me:$LINENO: checking for Rec601LumaColorspace enum value" >&5
7369
+ echo $ECHO_N "checking for Rec601LumaColorspace enum value... $ECHO_C" >&6
7370
+ if test "${rm_cv_enum_rec601lumacolorspace+set}" = set; then
7371
+ echo $ECHO_N "(cached) $ECHO_C" >&6
7372
+ else
7373
+ cat >conftest.$ac_ext <<_ACEOF
7374
+ /* confdefs.h. */
7375
+ _ACEOF
7376
+ cat confdefs.h >>conftest.$ac_ext
7377
+ cat >>conftest.$ac_ext <<_ACEOF
7378
+ /* end confdefs.h. */
7029
7379
  #include <stdio.h>
7380
+ #if HAVE_SYS_TYPES_H
7381
+ #include <sys/types.h>
7382
+ #endif
7030
7383
  #include "magick/api.h"
7031
7384
  int
7032
7385
  main ()
7033
7386
  {
7034
- ImageInfo i; i.number_scenes = 0;
7387
+ ColorspaceType x; x = Rec601LumaColorspace
7035
7388
  ;
7036
7389
  return 0;
7037
7390
  }
@@ -7058,27 +7411,28 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7058
7411
  ac_status=$?
7059
7412
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7060
7413
  (exit $ac_status); }; }; then
7061
- rm_cv_member_ImageInfo_number_scenes=yes
7414
+ rm_cv_enum_rec601lumacolorspace='yes'
7062
7415
  else
7063
7416
  echo "$as_me: failed program was:" >&5
7064
7417
  sed 's/^/| /' conftest.$ac_ext >&5
7065
7418
 
7066
- rm_cv_member_ImageInfo_number_scenes=no
7419
+ rm_cv_enum_rec601lumacolorspace='no'
7067
7420
  fi
7068
7421
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7069
7422
  fi
7070
- echo "$as_me:$LINENO: result: $rm_cv_member_ImageInfo_number_scenes" >&5
7071
- echo "${ECHO_T}$rm_cv_member_ImageInfo_number_scenes" >&6
7072
- if test "$rm_cv_member_ImageInfo_number_scenes" = yes; then
7423
+ echo "$as_me:$LINENO: result: $rm_cv_enum_rec601lumacolorspace" >&5
7424
+ echo "${ECHO_T}$rm_cv_enum_rec601lumacolorspace" >&6
7425
+
7426
+ if test "$rm_cv_enum_rec601lumacolorspace" = yes; then
7073
7427
  cat >>confdefs.h <<\_ACEOF
7074
- #define HAVE_IMAGEINFO_NUMBER_SCENES 1
7428
+ #define HAVE_REC601LUMACOLORSPACE 1
7075
7429
  _ACEOF
7076
7430
 
7077
7431
  fi
7078
7432
 
7079
- echo "$as_me:$LINENO: checking for NoCompliance enum value" >&5
7080
- echo $ECHO_N "checking for NoCompliance enum value... $ECHO_C" >&6
7081
- if test "${rm_cv_enum_nocompliance+set}" = set; then
7433
+ echo "$as_me:$LINENO: checking for Rec601YCbCrColorspace enum value" >&5
7434
+ echo $ECHO_N "checking for Rec601YCbCrColorspace enum value... $ECHO_C" >&6
7435
+ if test "${rm_cv_enum_rec601ycbcrcolorspace+set}" = set; then
7082
7436
  echo $ECHO_N "(cached) $ECHO_C" >&6
7083
7437
  else
7084
7438
  cat >conftest.$ac_ext <<_ACEOF
@@ -7095,7 +7449,7 @@ cat >>conftest.$ac_ext <<_ACEOF
7095
7449
  int
7096
7450
  main ()
7097
7451
  {
7098
- ComplianceType x; x = NoCompliance
7452
+ ColorspaceType x; x = Rec601YCbCrColorspace
7099
7453
  ;
7100
7454
  return 0;
7101
7455
  }
@@ -7122,28 +7476,28 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7122
7476
  ac_status=$?
7123
7477
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7124
7478
  (exit $ac_status); }; }; then
7125
- rm_cv_enum_nocompliance='yes'
7479
+ rm_cv_enum_rec601ycbcrcolorspace='yes'
7126
7480
  else
7127
7481
  echo "$as_me: failed program was:" >&5
7128
7482
  sed 's/^/| /' conftest.$ac_ext >&5
7129
7483
 
7130
- rm_cv_enum_nocompliance='no'
7484
+ rm_cv_enum_rec601ycbcrcolorspace='no'
7131
7485
  fi
7132
7486
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7133
7487
  fi
7134
- echo "$as_me:$LINENO: result: $rm_cv_enum_nocompliance" >&5
7135
- echo "${ECHO_T}$rm_cv_enum_nocompliance" >&6
7488
+ echo "$as_me:$LINENO: result: $rm_cv_enum_rec601ycbcrcolorspace" >&5
7489
+ echo "${ECHO_T}$rm_cv_enum_rec601ycbcrcolorspace" >&6
7136
7490
 
7137
- if test "$rm_cv_enum_nocompliance" = yes; then
7491
+ if test "$rm_cv_enum_rec601ycbcrcolorspace" = yes; then
7138
7492
  cat >>confdefs.h <<\_ACEOF
7139
- #define HAVE_NOCOMPLIANCE 1
7493
+ #define HAVE_REC601YCBCRCOLORSPACE 1
7140
7494
  _ACEOF
7141
7495
 
7142
7496
  fi
7143
7497
 
7144
- echo "$as_me:$LINENO: checking for HSLColorspace enum value" >&5
7145
- echo $ECHO_N "checking for HSLColorspace enum value... $ECHO_C" >&6
7146
- if test "${rm_cv_enum_hslcolorspace+set}" = set; then
7498
+ echo "$as_me:$LINENO: checking for Rec709LumaColorspace enum value" >&5
7499
+ echo $ECHO_N "checking for Rec709LumaColorspace enum value... $ECHO_C" >&6
7500
+ if test "${rm_cv_enum_rec709lumacolorspace+set}" = set; then
7147
7501
  echo $ECHO_N "(cached) $ECHO_C" >&6
7148
7502
  else
7149
7503
  cat >conftest.$ac_ext <<_ACEOF
@@ -7160,7 +7514,7 @@ cat >>conftest.$ac_ext <<_ACEOF
7160
7514
  int
7161
7515
  main ()
7162
7516
  {
7163
- ColorspaceType x; x = HSLColorspace
7517
+ ColorspaceType x; x = Rec709LumaColorspace
7164
7518
  ;
7165
7519
  return 0;
7166
7520
  }
@@ -7187,28 +7541,28 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7187
7541
  ac_status=$?
7188
7542
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7189
7543
  (exit $ac_status); }; }; then
7190
- rm_cv_enum_hslcolorspace='yes'
7544
+ rm_cv_enum_rec709lumacolorspace='yes'
7191
7545
  else
7192
7546
  echo "$as_me: failed program was:" >&5
7193
7547
  sed 's/^/| /' conftest.$ac_ext >&5
7194
7548
 
7195
- rm_cv_enum_hslcolorspace='no'
7549
+ rm_cv_enum_rec709lumacolorspace='no'
7196
7550
  fi
7197
7551
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7198
7552
  fi
7199
- echo "$as_me:$LINENO: result: $rm_cv_enum_hslcolorspace" >&5
7200
- echo "${ECHO_T}$rm_cv_enum_hslcolorspace" >&6
7553
+ echo "$as_me:$LINENO: result: $rm_cv_enum_rec709lumacolorspace" >&5
7554
+ echo "${ECHO_T}$rm_cv_enum_rec709lumacolorspace" >&6
7201
7555
 
7202
- if test "$rm_cv_enum_hslcolorspace" = yes; then
7556
+ if test "$rm_cv_enum_rec709lumacolorspace" = yes; then
7203
7557
  cat >>confdefs.h <<\_ACEOF
7204
- #define HAVE_HSLCOLORSPACE 1
7558
+ #define HAVE_REC709LUMACOLORSPACE 1
7205
7559
  _ACEOF
7206
7560
 
7207
7561
  fi
7208
7562
 
7209
- echo "$as_me:$LINENO: checking for HWBColorspace enum value" >&5
7210
- echo $ECHO_N "checking for HWBColorspace enum value... $ECHO_C" >&6
7211
- if test "${rm_cv_enum_hwbcolorspace+set}" = set; then
7563
+ echo "$as_me:$LINENO: checking for Rec709YCbCrColorspace enum value" >&5
7564
+ echo $ECHO_N "checking for Rec709YCbCrColorspace enum value... $ECHO_C" >&6
7565
+ if test "${rm_cv_enum_rec709ycbcrcolorspace+set}" = set; then
7212
7566
  echo $ECHO_N "(cached) $ECHO_C" >&6
7213
7567
  else
7214
7568
  cat >conftest.$ac_ext <<_ACEOF
@@ -7225,7 +7579,7 @@ cat >>conftest.$ac_ext <<_ACEOF
7225
7579
  int
7226
7580
  main ()
7227
7581
  {
7228
- ColorspaceType x; x = HWBColorspace
7582
+ ColorspaceType x; x = Rec709YCbCrColorspace
7229
7583
  ;
7230
7584
  return 0;
7231
7585
  }
@@ -7252,28 +7606,28 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7252
7606
  ac_status=$?
7253
7607
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7254
7608
  (exit $ac_status); }; }; then
7255
- rm_cv_enum_hwbcolorspace='yes'
7609
+ rm_cv_enum_rec709ycbcrcolorspace='yes'
7256
7610
  else
7257
7611
  echo "$as_me: failed program was:" >&5
7258
7612
  sed 's/^/| /' conftest.$ac_ext >&5
7259
7613
 
7260
- rm_cv_enum_hwbcolorspace='no'
7614
+ rm_cv_enum_rec709ycbcrcolorspace='no'
7261
7615
  fi
7262
7616
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7263
7617
  fi
7264
- echo "$as_me:$LINENO: result: $rm_cv_enum_hwbcolorspace" >&5
7265
- echo "${ECHO_T}$rm_cv_enum_hwbcolorspace" >&6
7618
+ echo "$as_me:$LINENO: result: $rm_cv_enum_rec709ycbcrcolorspace" >&5
7619
+ echo "${ECHO_T}$rm_cv_enum_rec709ycbcrcolorspace" >&6
7266
7620
 
7267
- if test "$rm_cv_enum_hwbcolorspace" = yes; then
7621
+ if test "$rm_cv_enum_rec709ycbcrcolorspace" = yes; then
7268
7622
  cat >>confdefs.h <<\_ACEOF
7269
- #define HAVE_HWBCOLORSPACE 1
7623
+ #define HAVE_REC709YCBCRCOLORSPACE 1
7270
7624
  _ACEOF
7271
7625
 
7272
7626
  fi
7273
7627
 
7274
- echo "$as_me:$LINENO: checking for HSBColorspace enum value" >&5
7275
- echo $ECHO_N "checking for HSBColorspace enum value... $ECHO_C" >&6
7276
- if test "${rm_cv_enum_hsbcolorspace+set}" = set; then
7628
+ echo "$as_me:$LINENO: checking for LogColorspace enum value" >&5
7629
+ echo $ECHO_N "checking for LogColorspace enum value... $ECHO_C" >&6
7630
+ if test "${rm_cv_enum_logcolorspace+set}" = set; then
7277
7631
  echo $ECHO_N "(cached) $ECHO_C" >&6
7278
7632
  else
7279
7633
  cat >conftest.$ac_ext <<_ACEOF
@@ -7290,7 +7644,7 @@ cat >>conftest.$ac_ext <<_ACEOF
7290
7644
  int
7291
7645
  main ()
7292
7646
  {
7293
- ColorspaceType x; x = HSBColorspace
7647
+ ColorspaceType x; x = LogColorspace
7294
7648
  ;
7295
7649
  return 0;
7296
7650
  }
@@ -7317,25 +7671,26 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7317
7671
  ac_status=$?
7318
7672
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
7319
7673
  (exit $ac_status); }; }; then
7320
- rm_cv_enum_hsbcolorspace='yes'
7674
+ rm_cv_enum_logcolorspace='yes'
7321
7675
  else
7322
7676
  echo "$as_me: failed program was:" >&5
7323
7677
  sed 's/^/| /' conftest.$ac_ext >&5
7324
7678
 
7325
- rm_cv_enum_hsbcolorspace='no'
7679
+ rm_cv_enum_logcolorspace='no'
7326
7680
  fi
7327
7681
  rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7328
7682
  fi
7329
- echo "$as_me:$LINENO: result: $rm_cv_enum_hsbcolorspace" >&5
7330
- echo "${ECHO_T}$rm_cv_enum_hsbcolorspace" >&6
7683
+ echo "$as_me:$LINENO: result: $rm_cv_enum_logcolorspace" >&5
7684
+ echo "${ECHO_T}$rm_cv_enum_logcolorspace" >&6
7331
7685
 
7332
- if test "$rm_cv_enum_hsbcolorspace" = yes; then
7686
+ if test "$rm_cv_enum_logcolorspace" = yes; then
7333
7687
  cat >>confdefs.h <<\_ACEOF
7334
- #define HAVE_HSBCOLORSPACE 1
7688
+ #define HAVE_LOGCOLORSPACE 1
7335
7689
  _ACEOF
7336
7690
 
7337
7691
  fi
7338
7692
 
7693
+
7339
7694
  echo "$as_me:$LINENO: checking for CopyCyanCompositeOp enum value" >&5
7340
7695
  echo $ECHO_N "checking for CopyCyanCompositeOp enum value... $ECHO_C" >&6
7341
7696
  if test "${rm_cv_enum_copycyancompositeop+set}" = set; then
@@ -7979,6 +8334,12 @@ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7979
8334
  fi
7980
8335
  echo "$as_me:$LINENO: result: $rm_cv_enum_quantumpixel" >&5
7981
8336
  echo "${ECHO_T}$rm_cv_enum_quantumpixel" >&6
8337
+ if test "$rm_cv_enum_quantumpixel" = yes; then
8338
+ cat >>confdefs.h <<\_ACEOF
8339
+ #define HAVE_QUANTUMPIXEL 1
8340
+ _ACEOF
8341
+
8342
+ fi
7982
8343
 
7983
8344
  echo "$as_me:$LINENO: checking for TransparentVirtualPixelMethod enum value" >&5
7984
8345
  echo $ECHO_N "checking for TransparentVirtualPixelMethod enum value... $ECHO_C" >&6
@@ -8868,7 +9229,7 @@ _ASBOX
8868
9229
  } >&5
8869
9230
  cat >&5 <<_CSEOF
8870
9231
 
8871
- This file was extended by RMagick $as_me 1.9.3, which was
9232
+ This file was extended by RMagick $as_me 1.10.0, which was
8872
9233
  generated by GNU Autoconf 2.59. Invocation command line was
8873
9234
 
8874
9235
  CONFIG_FILES = $CONFIG_FILES
@@ -8928,7 +9289,7 @@ _ACEOF
8928
9289
 
8929
9290
  cat >>$CONFIG_STATUS <<_ACEOF
8930
9291
  ac_cs_version="\\
8931
- RMagick config.status 1.9.3
9292
+ RMagick config.status 1.10.0
8932
9293
  configured by $0, generated by GNU Autoconf 2.59,
8933
9294
  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
8934
9295