rmagick 1.12.0 → 1.13.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.
- data/ChangeLog +17 -0
- data/README.html +8 -8
- data/README.txt +6 -6
- data/configure +431 -19
- data/configure.ac +12 -8
- data/doc/draw.html +15 -18
- data/doc/ex/transpose.rb +16 -0
- data/doc/ex/transverse.rb +16 -0
- data/doc/image1.html +182 -8
- data/doc/image2.html +13 -10
- data/doc/image3.html +185 -14
- data/doc/imageattrs.html +3 -40
- data/doc/imusage.html +2 -3
- data/doc/info.html +6 -100
- data/doc/usage.html +28 -11
- data/ext/RMagick/MANIFEST +4 -2
- data/ext/RMagick/rmagick.h +32 -3
- data/ext/RMagick/rmagick_config.h.in +16 -0
- data/ext/RMagick/rmfill.c +20 -20
- data/ext/RMagick/rmilist.c +3 -3
- data/ext/RMagick/rmimage.c +441 -37
- data/ext/RMagick/rmmain.c +16 -3
- data/ext/RMagick/rmutil.c +37 -3
- data/{gem_config.rb → gem_extconf.rb} +0 -0
- data/lib/RMagick.rb +6 -1
- data/rmagick.gemspec +2 -2
- metadata +8 -5
data/ChangeLog
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
RMagick 1.13.0
|
2
|
+
o Added transform, transform!, transpose, transpose! methods to Image class
|
3
|
+
(available with ImageMagick 6.2.8)
|
4
|
+
o Feature #4844, add auto_orient, auto_orient! methods to Image class
|
5
|
+
(suggestion from John Oordopjes, available with ImageMagick 6.2.8)
|
6
|
+
o Added adaptive_sharpen, adaptive_sharpen_channel methods to Image class
|
7
|
+
(available with ImageMagick 6.2.7)
|
8
|
+
o Added composite_image_channel, composite_image_channel! methods to Image
|
9
|
+
class (added in ImageMagick 6.2.6)
|
10
|
+
o Added radial_blur_channel method to Image class (available in
|
11
|
+
ImageMagick 6.2.4)
|
12
|
+
o Fix bug #4806, add hash, eql? methods to Pixel class (bug report from
|
13
|
+
Tim Pease)
|
14
|
+
o Change extension filename to match RubyGems 0.9.0 expectations.
|
15
|
+
o Fix bug #4821, correct doc for Image#rotate (bug report from Tim Pease)
|
16
|
+
o Update the Draw#annotate documentation
|
17
|
+
|
1
18
|
RMagick 1.12.0
|
2
19
|
o Fix bug #4630, the new signature for #level is incompatible with
|
3
20
|
releases prior to 1.10.1 (bug report from Al Evans)
|
data/README.html
CHANGED
@@ -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.
|
4
|
+
<title>RMagick 1.13.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
|
+
<h1>RMagick 1.13.0 README</h1>
|
10
10
|
|
11
|
-
<h2>06/
|
11
|
+
<h2>06/28/06</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="&#
|
45
|
+
<p><strong>Email:</strong> <a href="mailto:rmagick@rubyforge.org">rmagick@rubyforge.org</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
|
|
@@ -225,7 +225,7 @@ addition to the regular options, there are a few RMagick-specific options:</p>
|
|
225
225
|
|
226
226
|
<h4 id="scripts">Running the <code>configure</code> and <code>make</code> scripts</h4>
|
227
227
|
|
228
|
-
<p>De-compress the RMagick-1.
|
228
|
+
<p>De-compress the RMagick-1.13.0.tar.gz archive and enter the top
|
229
229
|
directory. Then type:</p>
|
230
230
|
|
231
231
|
<pre><code>$ ./configure <configuration options>
|
@@ -246,9 +246,9 @@ $ make clean
|
|
246
246
|
|
247
247
|
<p>When make is running the examples, if you get a message like this:</p>
|
248
248
|
|
249
|
-
<pre><code>/home/you/RMagick-1.
|
249
|
+
<pre><code>/home/you/RMagick-1.13.0/lib/RMagick.rb:11:in `require': libMagick.so.0:
|
250
250
|
cannot open shared object file: No such file or directory -
|
251
|
-
/home/you/RMagick-1.
|
251
|
+
/home/you/RMagick-1.13.0/ext/RMagick/RMagick.so (LoadError)
|
252
252
|
</code></pre>
|
253
253
|
|
254
254
|
<p>you probably do not have the directory in which the ImageMagick or GraphicsMagick
|
@@ -268,7 +268,7 @@ systems, see the documentation for the dynamic loading facility.</p>
|
|
268
268
|
|
269
269
|
<p>When make is running the examples, if you get a message like this:</p>
|
270
270
|
|
271
|
-
<pre><code>hook /home/me/src/RMagick-1.
|
271
|
+
<pre><code>hook /home/me/src/RMagick-1.13.0/./post-setup.rb failed:
|
272
272
|
No such file or directory - "/tmp/rmagick6872.6"
|
273
273
|
</code></pre>
|
274
274
|
|
data/README.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
RMagick 1.
|
1
|
+
RMagick 1.13.0 README
|
2
2
|
================================
|
3
|
-
06/
|
3
|
+
06/28/06
|
4
4
|
--------
|
5
5
|
|
6
6
|
Table Of Contents
|
@@ -193,7 +193,7 @@ addition to the regular options, there are a few RMagick-specific options:
|
|
193
193
|
|
194
194
|
<h4 id="scripts">Running the <code>configure</code> and <code>make</code> scripts</h4>
|
195
195
|
|
196
|
-
De-compress the RMagick-1.
|
196
|
+
De-compress the RMagick-1.13.0.tar.gz archive and enter the top
|
197
197
|
directory. Then type:
|
198
198
|
|
199
199
|
$ ./configure <configuration options>
|
@@ -211,9 +211,9 @@ The message can also refer to "libGraphicsMagick". Typically this message means
|
|
211
211
|
#### Cannot open shared object file
|
212
212
|
When make is running the examples, if you get a message like this:
|
213
213
|
|
214
|
-
/home/you/RMagick-1.
|
214
|
+
/home/you/RMagick-1.13.0/lib/RMagick.rb:11:in `require': libMagick.so.0:
|
215
215
|
cannot open shared object file: No such file or directory -
|
216
|
-
/home/you/RMagick-1.
|
216
|
+
/home/you/RMagick-1.13.0/ext/RMagick/RMagick.so (LoadError)
|
217
217
|
|
218
218
|
you probably do not have the directory in which the ImageMagick or GraphicsMagick
|
219
219
|
library is installed in your load path. An easy way to fix this is to define the
|
@@ -230,7 +230,7 @@ systems, see the documentation for the dynamic loading facility.
|
|
230
230
|
#### No such file or directory - "/tmp/rmagick6872.6"
|
231
231
|
When make is running the examples, if you get a message like this:
|
232
232
|
|
233
|
-
hook /home/me/src/RMagick-1.
|
233
|
+
hook /home/me/src/RMagick-1.13.0/./post-setup.rb failed:
|
234
234
|
No such file or directory - "/tmp/rmagick6872.6"
|
235
235
|
|
236
236
|
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.
|
3
|
+
# Generated by GNU Autoconf 2.59 for RMagick 1.13.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.
|
272
|
-
PACKAGE_VERSION='1.
|
273
|
-
PACKAGE_STRING='RMagick 1.
|
271
|
+
PACKAGE_TARNAME='RMagick-1.13.0.tar.gz'
|
272
|
+
PACKAGE_VERSION='1.13.0'
|
273
|
+
PACKAGE_STRING='RMagick 1.13.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.
|
782
|
+
\`configure' configures RMagick 1.13.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.
|
839
|
+
short | recursive ) echo "Configuration of RMagick 1.13.0:";;
|
840
840
|
esac
|
841
841
|
cat <<\_ACEOF
|
842
842
|
|
@@ -983,7 +983,7 @@ fi
|
|
983
983
|
test -n "$ac_init_help" && exit 0
|
984
984
|
if $ac_init_version; then
|
985
985
|
cat <<\_ACEOF
|
986
|
-
RMagick configure 1.
|
986
|
+
RMagick configure 1.13.0
|
987
987
|
generated by GNU Autoconf 2.59
|
988
988
|
|
989
989
|
Copyright (C) 2003 Free Software Foundation, Inc.
|
@@ -997,7 +997,7 @@ cat >&5 <<_ACEOF
|
|
997
997
|
This file contains any messages produced by compilers while
|
998
998
|
running configure, to aid debugging if configure makes a mistake.
|
999
999
|
|
1000
|
-
It was created by RMagick $as_me 1.
|
1000
|
+
It was created by RMagick $as_me 1.13.0, which was
|
1001
1001
|
generated by GNU Autoconf 2.59. Invocation command line was
|
1002
1002
|
|
1003
1003
|
$ $0 $@
|
@@ -3511,8 +3511,7 @@ fi
|
|
3511
3511
|
|
3512
3512
|
|
3513
3513
|
|
3514
|
-
|
3515
|
-
for ac_func in AdaptiveThresholdImage AddDefinitions AddNoiseImageChannel BilevelImageChannel
|
3514
|
+
for ac_func in AdaptiveSharpenImage AdaptiveThresholdImage AddDefinitions
|
3516
3515
|
do
|
3517
3516
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3518
3517
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -3616,8 +3615,7 @@ done
|
|
3616
3615
|
|
3617
3616
|
|
3618
3617
|
|
3619
|
-
|
3620
|
-
for ac_func in BlackThresholdImage BlurImageChannel ClearMagickException CompareImageChannels
|
3618
|
+
for ac_func in AddNoiseImageChannel BilevelImageChannel BlackThresholdImage
|
3621
3619
|
do
|
3622
3620
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3623
3621
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -3721,8 +3719,111 @@ done
|
|
3721
3719
|
|
3722
3720
|
|
3723
3721
|
|
3722
|
+
for ac_func in BlurImageChannel ClearMagickException CompareImageChannels
|
3723
|
+
do
|
3724
|
+
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3725
|
+
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
3726
|
+
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
3727
|
+
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
3728
|
+
echo $ECHO_N "(cached) $ECHO_C" >&6
|
3729
|
+
else
|
3730
|
+
cat >conftest.$ac_ext <<_ACEOF
|
3731
|
+
/* confdefs.h. */
|
3732
|
+
_ACEOF
|
3733
|
+
cat confdefs.h >>conftest.$ac_ext
|
3734
|
+
cat >>conftest.$ac_ext <<_ACEOF
|
3735
|
+
/* end confdefs.h. */
|
3736
|
+
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
3737
|
+
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
3738
|
+
#define $ac_func innocuous_$ac_func
|
3739
|
+
|
3740
|
+
/* System header to define __stub macros and hopefully few prototypes,
|
3741
|
+
which can conflict with char $ac_func (); below.
|
3742
|
+
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
3743
|
+
<limits.h> exists even on freestanding compilers. */
|
3744
|
+
|
3745
|
+
#ifdef __STDC__
|
3746
|
+
# include <limits.h>
|
3747
|
+
#else
|
3748
|
+
# include <assert.h>
|
3749
|
+
#endif
|
3750
|
+
|
3751
|
+
#undef $ac_func
|
3752
|
+
|
3753
|
+
/* Override any gcc2 internal prototype to avoid an error. */
|
3754
|
+
#ifdef __cplusplus
|
3755
|
+
extern "C"
|
3756
|
+
{
|
3757
|
+
#endif
|
3758
|
+
/* We use char because int might match the return type of a gcc2
|
3759
|
+
builtin and then its argument prototype would still apply. */
|
3760
|
+
char $ac_func ();
|
3761
|
+
/* The GNU C library defines this for functions which it implements
|
3762
|
+
to always fail with ENOSYS. Some functions are actually named
|
3763
|
+
something starting with __ and the normal name is an alias. */
|
3764
|
+
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
3765
|
+
choke me
|
3766
|
+
#else
|
3767
|
+
char (*f) () = $ac_func;
|
3768
|
+
#endif
|
3769
|
+
#ifdef __cplusplus
|
3770
|
+
}
|
3771
|
+
#endif
|
3772
|
+
|
3773
|
+
int
|
3774
|
+
main ()
|
3775
|
+
{
|
3776
|
+
return f != $ac_func;
|
3777
|
+
;
|
3778
|
+
return 0;
|
3779
|
+
}
|
3780
|
+
_ACEOF
|
3781
|
+
rm -f conftest.$ac_objext conftest$ac_exeext
|
3782
|
+
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
3783
|
+
(eval $ac_link) 2>conftest.er1
|
3784
|
+
ac_status=$?
|
3785
|
+
grep -v '^ *+' conftest.er1 >conftest.err
|
3786
|
+
rm -f conftest.er1
|
3787
|
+
cat conftest.err >&5
|
3788
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3789
|
+
(exit $ac_status); } &&
|
3790
|
+
{ ac_try='test -z "$ac_c_werror_flag"
|
3791
|
+
|| test ! -s conftest.err'
|
3792
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
3793
|
+
(eval $ac_try) 2>&5
|
3794
|
+
ac_status=$?
|
3795
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3796
|
+
(exit $ac_status); }; } &&
|
3797
|
+
{ ac_try='test -s conftest$ac_exeext'
|
3798
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
3799
|
+
(eval $ac_try) 2>&5
|
3800
|
+
ac_status=$?
|
3801
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3802
|
+
(exit $ac_status); }; }; then
|
3803
|
+
eval "$as_ac_var=yes"
|
3804
|
+
else
|
3805
|
+
echo "$as_me: failed program was:" >&5
|
3806
|
+
sed 's/^/| /' conftest.$ac_ext >&5
|
3807
|
+
|
3808
|
+
eval "$as_ac_var=no"
|
3809
|
+
fi
|
3810
|
+
rm -f conftest.err conftest.$ac_objext \
|
3811
|
+
conftest$ac_exeext conftest.$ac_ext
|
3812
|
+
fi
|
3813
|
+
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
|
3814
|
+
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
3815
|
+
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
3816
|
+
cat >>confdefs.h <<_ACEOF
|
3817
|
+
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
3818
|
+
_ACEOF
|
3819
|
+
|
3820
|
+
fi
|
3821
|
+
done
|
3822
|
+
|
3823
|
+
|
3824
|
+
|
3724
3825
|
|
3725
|
-
for ac_func in CompareImageLayers ContrastStretchImageChannel
|
3826
|
+
for ac_func in CompareImageLayers CompositeImageChannel ContrastStretchImageChannel
|
3726
3827
|
do
|
3727
3828
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3728
3829
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -3826,8 +3927,111 @@ done
|
|
3826
3927
|
|
3827
3928
|
|
3828
3929
|
|
3930
|
+
for ac_func in ConvolveImageChannel EvaluateImageChannel ExportImagePixels
|
3931
|
+
do
|
3932
|
+
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3933
|
+
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
3934
|
+
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
3935
|
+
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
3936
|
+
echo $ECHO_N "(cached) $ECHO_C" >&6
|
3937
|
+
else
|
3938
|
+
cat >conftest.$ac_ext <<_ACEOF
|
3939
|
+
/* confdefs.h. */
|
3940
|
+
_ACEOF
|
3941
|
+
cat confdefs.h >>conftest.$ac_ext
|
3942
|
+
cat >>conftest.$ac_ext <<_ACEOF
|
3943
|
+
/* end confdefs.h. */
|
3944
|
+
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
3945
|
+
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
3946
|
+
#define $ac_func innocuous_$ac_func
|
3947
|
+
|
3948
|
+
/* System header to define __stub macros and hopefully few prototypes,
|
3949
|
+
which can conflict with char $ac_func (); below.
|
3950
|
+
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
3951
|
+
<limits.h> exists even on freestanding compilers. */
|
3952
|
+
|
3953
|
+
#ifdef __STDC__
|
3954
|
+
# include <limits.h>
|
3955
|
+
#else
|
3956
|
+
# include <assert.h>
|
3957
|
+
#endif
|
3958
|
+
|
3959
|
+
#undef $ac_func
|
3960
|
+
|
3961
|
+
/* Override any gcc2 internal prototype to avoid an error. */
|
3962
|
+
#ifdef __cplusplus
|
3963
|
+
extern "C"
|
3964
|
+
{
|
3965
|
+
#endif
|
3966
|
+
/* We use char because int might match the return type of a gcc2
|
3967
|
+
builtin and then its argument prototype would still apply. */
|
3968
|
+
char $ac_func ();
|
3969
|
+
/* The GNU C library defines this for functions which it implements
|
3970
|
+
to always fail with ENOSYS. Some functions are actually named
|
3971
|
+
something starting with __ and the normal name is an alias. */
|
3972
|
+
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
3973
|
+
choke me
|
3974
|
+
#else
|
3975
|
+
char (*f) () = $ac_func;
|
3976
|
+
#endif
|
3977
|
+
#ifdef __cplusplus
|
3978
|
+
}
|
3979
|
+
#endif
|
3980
|
+
|
3981
|
+
int
|
3982
|
+
main ()
|
3983
|
+
{
|
3984
|
+
return f != $ac_func;
|
3985
|
+
;
|
3986
|
+
return 0;
|
3987
|
+
}
|
3988
|
+
_ACEOF
|
3989
|
+
rm -f conftest.$ac_objext conftest$ac_exeext
|
3990
|
+
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
3991
|
+
(eval $ac_link) 2>conftest.er1
|
3992
|
+
ac_status=$?
|
3993
|
+
grep -v '^ *+' conftest.er1 >conftest.err
|
3994
|
+
rm -f conftest.er1
|
3995
|
+
cat conftest.err >&5
|
3996
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3997
|
+
(exit $ac_status); } &&
|
3998
|
+
{ ac_try='test -z "$ac_c_werror_flag"
|
3999
|
+
|| test ! -s conftest.err'
|
4000
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
4001
|
+
(eval $ac_try) 2>&5
|
4002
|
+
ac_status=$?
|
4003
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
4004
|
+
(exit $ac_status); }; } &&
|
4005
|
+
{ ac_try='test -s conftest$ac_exeext'
|
4006
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
4007
|
+
(eval $ac_try) 2>&5
|
4008
|
+
ac_status=$?
|
4009
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
4010
|
+
(exit $ac_status); }; }; then
|
4011
|
+
eval "$as_ac_var=yes"
|
4012
|
+
else
|
4013
|
+
echo "$as_me: failed program was:" >&5
|
4014
|
+
sed 's/^/| /' conftest.$ac_ext >&5
|
4015
|
+
|
4016
|
+
eval "$as_ac_var=no"
|
4017
|
+
fi
|
4018
|
+
rm -f conftest.err conftest.$ac_objext \
|
4019
|
+
conftest$ac_exeext conftest.$ac_ext
|
4020
|
+
fi
|
4021
|
+
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
|
4022
|
+
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
4023
|
+
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
4024
|
+
cat >>confdefs.h <<_ACEOF
|
4025
|
+
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
4026
|
+
_ACEOF
|
4027
|
+
|
4028
|
+
fi
|
4029
|
+
done
|
4030
|
+
|
4031
|
+
|
4032
|
+
|
3829
4033
|
|
3830
|
-
for ac_func in
|
4034
|
+
for ac_func in FuzzyColorCompare GammaImageChannel GaussianBlurImageChannel
|
3831
4035
|
do
|
3832
4036
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3833
4037
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -5285,7 +5489,109 @@ done
|
|
5285
5489
|
|
5286
5490
|
|
5287
5491
|
|
5288
|
-
for ac_func in QuantumOperatorRegionImage RadialBlurImage
|
5492
|
+
for ac_func in QuantumOperatorRegionImage RadialBlurImage RadialBlurImageChannel
|
5493
|
+
do
|
5494
|
+
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
5495
|
+
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
5496
|
+
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
5497
|
+
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
5498
|
+
echo $ECHO_N "(cached) $ECHO_C" >&6
|
5499
|
+
else
|
5500
|
+
cat >conftest.$ac_ext <<_ACEOF
|
5501
|
+
/* confdefs.h. */
|
5502
|
+
_ACEOF
|
5503
|
+
cat confdefs.h >>conftest.$ac_ext
|
5504
|
+
cat >>conftest.$ac_ext <<_ACEOF
|
5505
|
+
/* end confdefs.h. */
|
5506
|
+
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
5507
|
+
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
5508
|
+
#define $ac_func innocuous_$ac_func
|
5509
|
+
|
5510
|
+
/* System header to define __stub macros and hopefully few prototypes,
|
5511
|
+
which can conflict with char $ac_func (); below.
|
5512
|
+
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
5513
|
+
<limits.h> exists even on freestanding compilers. */
|
5514
|
+
|
5515
|
+
#ifdef __STDC__
|
5516
|
+
# include <limits.h>
|
5517
|
+
#else
|
5518
|
+
# include <assert.h>
|
5519
|
+
#endif
|
5520
|
+
|
5521
|
+
#undef $ac_func
|
5522
|
+
|
5523
|
+
/* Override any gcc2 internal prototype to avoid an error. */
|
5524
|
+
#ifdef __cplusplus
|
5525
|
+
extern "C"
|
5526
|
+
{
|
5527
|
+
#endif
|
5528
|
+
/* We use char because int might match the return type of a gcc2
|
5529
|
+
builtin and then its argument prototype would still apply. */
|
5530
|
+
char $ac_func ();
|
5531
|
+
/* The GNU C library defines this for functions which it implements
|
5532
|
+
to always fail with ENOSYS. Some functions are actually named
|
5533
|
+
something starting with __ and the normal name is an alias. */
|
5534
|
+
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
5535
|
+
choke me
|
5536
|
+
#else
|
5537
|
+
char (*f) () = $ac_func;
|
5538
|
+
#endif
|
5539
|
+
#ifdef __cplusplus
|
5540
|
+
}
|
5541
|
+
#endif
|
5542
|
+
|
5543
|
+
int
|
5544
|
+
main ()
|
5545
|
+
{
|
5546
|
+
return f != $ac_func;
|
5547
|
+
;
|
5548
|
+
return 0;
|
5549
|
+
}
|
5550
|
+
_ACEOF
|
5551
|
+
rm -f conftest.$ac_objext conftest$ac_exeext
|
5552
|
+
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
5553
|
+
(eval $ac_link) 2>conftest.er1
|
5554
|
+
ac_status=$?
|
5555
|
+
grep -v '^ *+' conftest.er1 >conftest.err
|
5556
|
+
rm -f conftest.er1
|
5557
|
+
cat conftest.err >&5
|
5558
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5559
|
+
(exit $ac_status); } &&
|
5560
|
+
{ ac_try='test -z "$ac_c_werror_flag"
|
5561
|
+
|| test ! -s conftest.err'
|
5562
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
5563
|
+
(eval $ac_try) 2>&5
|
5564
|
+
ac_status=$?
|
5565
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5566
|
+
(exit $ac_status); }; } &&
|
5567
|
+
{ ac_try='test -s conftest$ac_exeext'
|
5568
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
5569
|
+
(eval $ac_try) 2>&5
|
5570
|
+
ac_status=$?
|
5571
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5572
|
+
(exit $ac_status); }; }; then
|
5573
|
+
eval "$as_ac_var=yes"
|
5574
|
+
else
|
5575
|
+
echo "$as_me: failed program was:" >&5
|
5576
|
+
sed 's/^/| /' conftest.$ac_ext >&5
|
5577
|
+
|
5578
|
+
eval "$as_ac_var=no"
|
5579
|
+
fi
|
5580
|
+
rm -f conftest.err conftest.$ac_objext \
|
5581
|
+
conftest$ac_exeext conftest.$ac_ext
|
5582
|
+
fi
|
5583
|
+
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
|
5584
|
+
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
5585
|
+
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
5586
|
+
cat >>confdefs.h <<_ACEOF
|
5587
|
+
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
5588
|
+
_ACEOF
|
5589
|
+
|
5590
|
+
fi
|
5591
|
+
done
|
5592
|
+
|
5593
|
+
|
5594
|
+
for ac_func in RandomChannelThresholdImage
|
5289
5595
|
do
|
5290
5596
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
5291
5597
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -5494,7 +5800,111 @@ done
|
|
5494
5800
|
|
5495
5801
|
|
5496
5802
|
|
5497
|
-
for ac_func in SetImageBackgroundColor SetImageChannelDepth SetImageColorspace
|
5803
|
+
for ac_func in SetImageBackgroundColor SetImageChannelDepth SetImageColorspace SetImageExtent
|
5804
|
+
do
|
5805
|
+
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
5806
|
+
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
5807
|
+
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
5808
|
+
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
5809
|
+
echo $ECHO_N "(cached) $ECHO_C" >&6
|
5810
|
+
else
|
5811
|
+
cat >conftest.$ac_ext <<_ACEOF
|
5812
|
+
/* confdefs.h. */
|
5813
|
+
_ACEOF
|
5814
|
+
cat confdefs.h >>conftest.$ac_ext
|
5815
|
+
cat >>conftest.$ac_ext <<_ACEOF
|
5816
|
+
/* end confdefs.h. */
|
5817
|
+
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
5818
|
+
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
5819
|
+
#define $ac_func innocuous_$ac_func
|
5820
|
+
|
5821
|
+
/* System header to define __stub macros and hopefully few prototypes,
|
5822
|
+
which can conflict with char $ac_func (); below.
|
5823
|
+
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
5824
|
+
<limits.h> exists even on freestanding compilers. */
|
5825
|
+
|
5826
|
+
#ifdef __STDC__
|
5827
|
+
# include <limits.h>
|
5828
|
+
#else
|
5829
|
+
# include <assert.h>
|
5830
|
+
#endif
|
5831
|
+
|
5832
|
+
#undef $ac_func
|
5833
|
+
|
5834
|
+
/* Override any gcc2 internal prototype to avoid an error. */
|
5835
|
+
#ifdef __cplusplus
|
5836
|
+
extern "C"
|
5837
|
+
{
|
5838
|
+
#endif
|
5839
|
+
/* We use char because int might match the return type of a gcc2
|
5840
|
+
builtin and then its argument prototype would still apply. */
|
5841
|
+
char $ac_func ();
|
5842
|
+
/* The GNU C library defines this for functions which it implements
|
5843
|
+
to always fail with ENOSYS. Some functions are actually named
|
5844
|
+
something starting with __ and the normal name is an alias. */
|
5845
|
+
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
5846
|
+
choke me
|
5847
|
+
#else
|
5848
|
+
char (*f) () = $ac_func;
|
5849
|
+
#endif
|
5850
|
+
#ifdef __cplusplus
|
5851
|
+
}
|
5852
|
+
#endif
|
5853
|
+
|
5854
|
+
int
|
5855
|
+
main ()
|
5856
|
+
{
|
5857
|
+
return f != $ac_func;
|
5858
|
+
;
|
5859
|
+
return 0;
|
5860
|
+
}
|
5861
|
+
_ACEOF
|
5862
|
+
rm -f conftest.$ac_objext conftest$ac_exeext
|
5863
|
+
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
5864
|
+
(eval $ac_link) 2>conftest.er1
|
5865
|
+
ac_status=$?
|
5866
|
+
grep -v '^ *+' conftest.er1 >conftest.err
|
5867
|
+
rm -f conftest.er1
|
5868
|
+
cat conftest.err >&5
|
5869
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5870
|
+
(exit $ac_status); } &&
|
5871
|
+
{ ac_try='test -z "$ac_c_werror_flag"
|
5872
|
+
|| test ! -s conftest.err'
|
5873
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
5874
|
+
(eval $ac_try) 2>&5
|
5875
|
+
ac_status=$?
|
5876
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5877
|
+
(exit $ac_status); }; } &&
|
5878
|
+
{ ac_try='test -s conftest$ac_exeext'
|
5879
|
+
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
5880
|
+
(eval $ac_try) 2>&5
|
5881
|
+
ac_status=$?
|
5882
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
5883
|
+
(exit $ac_status); }; }; then
|
5884
|
+
eval "$as_ac_var=yes"
|
5885
|
+
else
|
5886
|
+
echo "$as_me: failed program was:" >&5
|
5887
|
+
sed 's/^/| /' conftest.$ac_ext >&5
|
5888
|
+
|
5889
|
+
eval "$as_ac_var=no"
|
5890
|
+
fi
|
5891
|
+
rm -f conftest.err conftest.$ac_objext \
|
5892
|
+
conftest$ac_exeext conftest.$ac_ext
|
5893
|
+
fi
|
5894
|
+
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
|
5895
|
+
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
5896
|
+
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
5897
|
+
cat >>confdefs.h <<_ACEOF
|
5898
|
+
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
5899
|
+
_ACEOF
|
5900
|
+
|
5901
|
+
fi
|
5902
|
+
done
|
5903
|
+
|
5904
|
+
|
5905
|
+
|
5906
|
+
|
5907
|
+
for ac_func in SetImageInfoFile SetImageOption SetImageStorageClass
|
5498
5908
|
do
|
5499
5909
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
5500
5910
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -5805,7 +6215,9 @@ done
|
|
5805
6215
|
|
5806
6216
|
|
5807
6217
|
|
5808
|
-
|
6218
|
+
|
6219
|
+
|
6220
|
+
for ac_func in ThresholdImageChannel TintImage TransposeImage TransverseImage
|
5809
6221
|
do
|
5810
6222
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
5811
6223
|
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
@@ -9308,7 +9720,7 @@ _ASBOX
|
|
9308
9720
|
} >&5
|
9309
9721
|
cat >&5 <<_CSEOF
|
9310
9722
|
|
9311
|
-
This file was extended by RMagick $as_me 1.
|
9723
|
+
This file was extended by RMagick $as_me 1.13.0, which was
|
9312
9724
|
generated by GNU Autoconf 2.59. Invocation command line was
|
9313
9725
|
|
9314
9726
|
CONFIG_FILES = $CONFIG_FILES
|
@@ -9368,7 +9780,7 @@ _ACEOF
|
|
9368
9780
|
|
9369
9781
|
cat >>$CONFIG_STATUS <<_ACEOF
|
9370
9782
|
ac_cs_version="\\
|
9371
|
-
RMagick config.status 1.
|
9783
|
+
RMagick config.status 1.13.0
|
9372
9784
|
configured by $0, generated by GNU Autoconf 2.59,
|
9373
9785
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
9374
9786
|
|