Sat Sep 7 18:48:43 2013 UTC ()
Add some comments (including upstream bug report URLs).


(wiz)
diff -r1.43 -r1.44 pkgsrc/graphics/graphviz/distinfo
diff -r1.1 -r1.2 pkgsrc/graphics/graphviz/patches/patch-config_config__perl.pl
diff -r1.1 -r1.2 pkgsrc/graphics/graphviz/patches/patch-configure

cvs diff -r1.43 -r1.44 pkgsrc/graphics/graphviz/distinfo (switch to unified diff)

--- pkgsrc/graphics/graphviz/distinfo 2013/09/06 21:30:00 1.43
+++ pkgsrc/graphics/graphviz/distinfo 2013/09/07 18:48:43 1.44
@@ -1,11 +1,11 @@ @@ -1,11 +1,11 @@
1$NetBSD: distinfo,v 1.43 2013/09/06 21:30:00 wiz Exp $ 1$NetBSD: distinfo,v 1.44 2013/09/07 18:48:43 wiz Exp $
2 2
3SHA1 (graphviz-2.32.0.tar.gz) = a64f4a409012d13d18338ecb8bd7253083ebc35e 3SHA1 (graphviz-2.32.0.tar.gz) = a64f4a409012d13d18338ecb8bd7253083ebc35e
4RMD160 (graphviz-2.32.0.tar.gz) = b0a63b7466d88b1dc4cfccc19d632ca2c5440407 4RMD160 (graphviz-2.32.0.tar.gz) = b0a63b7466d88b1dc4cfccc19d632ca2c5440407
5Size (graphviz-2.32.0.tar.gz) = 23756717 bytes 5Size (graphviz-2.32.0.tar.gz) = 23756717 bytes
6SHA1 (patch-config_config__perl.pl) = cacf14b41c46b979ed57752fbd406480b54a1445 6SHA1 (patch-config_config__perl.pl) = 1ce416cb296c8566c6a5279d6f4193f7403fe6c3
7SHA1 (patch-configure) = 3da4f52cbe0e1522be23dab6661f7eb997565220 7SHA1 (patch-configure) = 6a1afc3fcff9dea3dd6caa70fbf1cbb2bada1c3f
8SHA1 (patch-configure.ac) = 250812ce53541373e101142200d109fd16da9ac9 8SHA1 (patch-configure.ac) = 250812ce53541373e101142200d109fd16da9ac9
9SHA1 (patch-lib_gvc_Makefile.in) = 44c514720a840574c9aa75f4c67798471138a642 9SHA1 (patch-lib_gvc_Makefile.in) = 44c514720a840574c9aa75f4c67798471138a642
10SHA1 (patch-plugin_gd_Makefile.am) = 81de41e7589eaf7682a21636155840123a7716ab 10SHA1 (patch-plugin_gd_Makefile.am) = 81de41e7589eaf7682a21636155840123a7716ab
11SHA1 (patch-plugin_gd_Makefile.in) = 0008791375bfcaf2f264d07ac59db0310905e5a0 11SHA1 (patch-plugin_gd_Makefile.in) = 0008791375bfcaf2f264d07ac59db0310905e5a0

cvs diff -r1.1 -r1.2 pkgsrc/graphics/graphviz/patches/patch-config_config__perl.pl (switch to unified diff)

--- pkgsrc/graphics/graphviz/patches/patch-config_config__perl.pl 2013/09/06 21:30:00 1.1
+++ pkgsrc/graphics/graphviz/patches/patch-config_config__perl.pl 2013/09/07 18:48:43 1.2
@@ -1,22 +1,26 @@ @@ -1,22 +1,26 @@
1$NetBSD: patch-config_config__perl.pl,v 1.1 2013/09/06 21:30:00 wiz Exp $ 1$NetBSD: patch-config_config__perl.pl,v 1.2 2013/09/07 18:48:43 wiz Exp $
 2
 31. chunk: add rpath for pkgsrc
 42. chunk: perl-5.18 fix, see
 5http://www.graphviz.org/mantisbt/view.php?id=2359
2 6
3--- config/config_perl.pl.orig 2013-08-01 17:35:15.000000000 +0000 7--- config/config_perl.pl.orig 2013-08-01 17:35:15.000000000 +0000
4+++ config/config_perl.pl 8+++ config/config_perl.pl
5@@ -4,7 +4,7 @@ if ($ARGV[0] eq "PERL_LIBS") { 9@@ -4,7 +4,7 @@ if ($ARGV[0] eq "PERL_LIBS") {
6 $archlib = $Config{archlib}; 10 $archlib = $Config{archlib};
7 $libperl = $Config{libperl}; 11 $libperl = $Config{libperl};
8 $libperl =~ s/lib([^\.]+).*/$1/; 12 $libperl =~ s/lib([^\.]+).*/$1/;
9- print "-L$archlib/CORE -l$libperl"; 13- print "-L$archlib/CORE -l$libperl";
10+ print "-Wl,-rpath,$archlib/CORE -L$archlib/CORE -l$libperl"; 14+ print "-Wl,-rpath,$archlib/CORE -L$archlib/CORE -l$libperl";
11 } 15 }
12 if ($ARGV[0] eq "PERL_INCLUDES") { 16 if ($ARGV[0] eq "PERL_INCLUDES") {
13 $archlib = $Config{archlib}; 17 $archlib = $Config{archlib};
14@@ -14,7 +14,7 @@ if ($ARGV[0] eq "PERL_INSTALL_DIR") { 18@@ -14,7 +14,7 @@ if ($ARGV[0] eq "PERL_INSTALL_DIR") {
15  19
16 my $d; 20 my $d;
17  21
18- foreach $d qw(installvendorarch vendorarch installsitearch sitearch) { 22- foreach $d qw(installvendorarch vendorarch installsitearch sitearch) {
19+ foreach $d (qw(installvendorarch vendorarch installsitearch sitearch)) { 23+ foreach $d (qw(installvendorarch vendorarch installsitearch sitearch)) {
20 if (exists($Config{$d}) and defined($Config{$d}) and 24 if (exists($Config{$d}) and defined($Config{$d}) and
21 ($Config{$d} ne '') ) { 25 ($Config{$d} ne '') ) {
22 print "$Config{$d}"; 26 print "$Config{$d}";

cvs diff -r1.1 -r1.2 pkgsrc/graphics/graphviz/patches/Attic/patch-configure (switch to unified diff)

--- pkgsrc/graphics/graphviz/patches/Attic/patch-configure 2013/09/06 21:30:00 1.1
+++ pkgsrc/graphics/graphviz/patches/Attic/patch-configure 2013/09/07 18:48:43 1.2
@@ -1,1000 +1,1005 @@ @@ -1,1000 +1,1005 @@
1$NetBSD: patch-configure,v 1.1 2013/09/06 21:30:00 wiz Exp $ 1$NetBSD: patch-configure,v 1.2 2013/09/07 18:48:43 wiz Exp $
 2
 31. chunk: undocumented
 42. chunk: use the same path for all platforms in pkgsrc
 5most other chunks: fix 'use unportable test(1) construct, see:
 6http://www.graphviz.org/mantisbt/view.php?id=2357
2 7
3--- configure.orig 2013-08-01 17:39:03.000000000 +0000 8--- configure.orig 2013-08-01 17:39:03.000000000 +0000
4+++ configure 9+++ configure
5@@ -3466,11 +3466,18 @@ case "${host_os}" in 10@@ -3466,11 +3466,18 @@ case "${host_os}" in
6 # For the build number: months since Jan 2000, day of month from the timestamp 11 # For the build number: months since Jan 2000, day of month from the timestamp
7 # For the revision number: hour, minute from the timestamp 12 # For the revision number: hour, minute from the timestamp
8 if test $GRAPHVIZ_VERSION_MICRO != "0"; then 13 if test $GRAPHVIZ_VERSION_MICRO != "0"; then
9- GRAPHVIZ_VERSION_BUILD=`expr \( ${GRAPHVIZ_VERSION_MICRO:0:4} - 2000 \) \* 12 + ${GRAPHVIZ_VERSION_MICRO:4:2}`${GRAPHVIZ_VERSION_MICRO:6:2} 14- GRAPHVIZ_VERSION_BUILD=`expr \( ${GRAPHVIZ_VERSION_MICRO:0:4} - 2000 \) \* 12 + ${GRAPHVIZ_VERSION_MICRO:4:2}`${GRAPHVIZ_VERSION_MICRO:6:2}
10- GRAPHVIZ_VERSION_REVISION=${GRAPHVIZ_VERSION_MICRO:9:4} 15- GRAPHVIZ_VERSION_REVISION=${GRAPHVIZ_VERSION_MICRO:9:4}
11+ # JR: patch from Michael van Elst: 16+ # JR: patch from Michael van Elst:
12+ # if we have a shellm we should have a working awk, too 17+ # if we have a shellm we should have a working awk, too
13+ eval `echo "$GRAPHVIZ_VERSION_MICRO" | awk '{ 18+ eval `echo "$GRAPHVIZ_VERSION_MICRO" | awk '{
14+ print "GRAPHVIZ_VERSION_BUILD=" \ 19+ print "GRAPHVIZ_VERSION_BUILD=" \
15+ (substr($1,1,4)-2000)*12+substr($1,5,2) \ 20+ (substr($1,1,4)-2000)*12+substr($1,5,2) \
16+ substr($1,7,2) 21+ substr($1,7,2)
17+ print "GRAPHVIZ_VERSION_REVISION=" \ 22+ print "GRAPHVIZ_VERSION_REVISION=" \
18+ substr($1,10,4) 23+ substr($1,10,4)
19+ }'` 24+ }'`
20 fi 25 fi
21 ;; 26 ;;
22-esac 27-esac
23+esac  28+esac
24  29
25  30
26  31
27@@ -3479,7 +3486,7 @@ case "${host_os}" in 32@@ -3479,7 +3486,7 @@ case "${host_os}" in
28 *linux* ) 33 *linux* )
29 case "${host_cpu}" in 34 case "${host_cpu}" in
30 powerpc64 | s390x | x86_64 | sparc64 ) 35 powerpc64 | s390x | x86_64 | sparc64 )
31- LIBPOSTFIX="64" 36- LIBPOSTFIX="64"
32+ LIBPOSTFIX="" 37+ LIBPOSTFIX=""
33 ;; 38 ;;
34 esac 39 esac
35 ;; 40 ;;
36@@ -3590,7 +3597,7 @@ cat >>confdefs.h <<_ACEOF 41@@ -3590,7 +3597,7 @@ cat >>confdefs.h <<_ACEOF
37 #define NO_POSTSCRIPT_ALIAS $NO_POSTSCRIPT_ALIAS 42 #define NO_POSTSCRIPT_ALIAS $NO_POSTSCRIPT_ALIAS
38 _ACEOF 43 _ACEOF
39  44
40- if test "x$UWIN" == "xyes" -o "x$CYGWIN" == "xyes" -o "x$MINGW32" == "xyes"; then 45- if test "x$UWIN" == "xyes" -o "x$CYGWIN" == "xyes" -o "x$MINGW32" == "xyes"; then
41+ if test "x$UWIN" = "xyes" -o "x$CYGWIN" == "xyes" -o "x$MINGW32" == "xyes"; then 46+ if test "x$UWIN" = "xyes" -o "x$CYGWIN" == "xyes" -o "x$MINGW32" == "xyes"; then
42 WITH_WIN32_TRUE= 47 WITH_WIN32_TRUE=
43 WITH_WIN32_FALSE='#' 48 WITH_WIN32_FALSE='#'
44 else 49 else
45@@ -3598,7 +3605,7 @@ else 50@@ -3598,7 +3605,7 @@ else
46 WITH_WIN32_FALSE= 51 WITH_WIN32_FALSE=
47 fi 52 fi
48  53
49- if test "x$DARWIN9" == "xyes"; then 54- if test "x$DARWIN9" == "xyes"; then
50+ if test "x$DARWIN9" = "xyes"; then 55+ if test "x$DARWIN9" = "xyes"; then
51 WITH_DARWIN9_TRUE= 56 WITH_DARWIN9_TRUE=
52 WITH_DARWIN9_FALSE='#' 57 WITH_DARWIN9_FALSE='#'
53 else 58 else
54@@ -4151,7 +4158,7 @@ if ! `cmp -s $srcdir/ast_common.h.in ast 59@@ -4151,7 +4158,7 @@ if ! `cmp -s $srcdir/ast_common.h.in ast
55 fi 60 fi
56  61
57  62
58-if test "x${prefix}" == "xNONE"; then 63-if test "x${prefix}" == "xNONE"; then
59+if test "x${prefix}" = "xNONE"; then 64+if test "x${prefix}" = "xNONE"; then
60 prefix=${ac_default_prefix} 65 prefix=${ac_default_prefix}
61  66
62 fi 67 fi
63@@ -4174,7 +4181,7 @@ if test "${enable_static+set}" = set; th 68@@ -4174,7 +4181,7 @@ if test "${enable_static+set}" = set; th
64 enableval=$enable_static; 69 enableval=$enable_static;
65 fi 70 fi
66  71
67-if test "x$enable_static" == "xyes"; then 72-if test "x$enable_static" == "xyes"; then
68+if test "x$enable_static" = "xyes"; then 73+if test "x$enable_static" = "xyes"; then
69 # Check whether --enable-static was given. 74 # Check whether --enable-static was given.
70 if test "${enable_static+set}" = set; then : 75 if test "${enable_static+set}" = set; then :
71 enableval=$enable_static; p=${PACKAGE-default} 76 enableval=$enable_static; p=${PACKAGE-default}
72@@ -4238,7 +4245,7 @@ fi 77@@ -4238,7 +4245,7 @@ fi
73  78
74 use_static="No (disabled by default)" 79 use_static="No (disabled by default)"
75 fi 80 fi
76- if test "x$enable_static" == "xyes"; then 81- if test "x$enable_static" == "xyes"; then
77+ if test "x$enable_static" = "xyes"; then 82+ if test "x$enable_static" = "xyes"; then
78 ENABLE_STATIC_TRUE= 83 ENABLE_STATIC_TRUE=
79 ENABLE_STATIC_FALSE='#' 84 ENABLE_STATIC_FALSE='#'
80 else 85 else
81@@ -4326,7 +4333,7 @@ fi 86@@ -4326,7 +4333,7 @@ fi
82  87
83  88
84 fi 89 fi
85- if test "x$enable_shared" == "xyes"; then 90- if test "x$enable_shared" == "xyes"; then
86+ if test "x$enable_shared" = "xyes"; then 91+ if test "x$enable_shared" = "xyes"; then
87 ENABLE_SHARED_TRUE= 92 ENABLE_SHARED_TRUE=
88 ENABLE_SHARED_FALSE='#' 93 ENABLE_SHARED_FALSE='#'
89 else 94 else
90@@ -13390,7 +13397,7 @@ if test "${with_tclsh+set}" = set; then  95@@ -13390,7 +13397,7 @@ if test "${with_tclsh+set}" = set; then
91 fi 96 fi
92  97
93  98
94-if test "x$TCLSH" == "x"; then 99-if test "x$TCLSH" == "x"; then
95+if test "x$TCLSH" = "x"; then 100+if test "x$TCLSH" = "x"; then
96 for ac_prog in tclsh8.6 tclsh8.5 tclsh8.4 tclsh8.3 tclsh 101 for ac_prog in tclsh8.6 tclsh8.5 tclsh8.4 tclsh8.3 tclsh
97 do 102 do
98 # Extract the first word of "$ac_prog", so it can be a program name with args. 103 # Extract the first word of "$ac_prog", so it can be a program name with args.
99@@ -13436,7 +13443,7 @@ fi 104@@ -13436,7 +13443,7 @@ fi
100 test -n "$TCLSH" && break 105 test -n "$TCLSH" && break
101 done 106 done
102  107
103-# if test "x$TCLSH" == "x"; then 108-# if test "x$TCLSH" == "x"; then
104+# if test "x$TCLSH" = "x"; then 109+# if test "x$TCLSH" = "x"; then
105 # AC_MSG_ERROR([Unable to find a tclsh. Tclsh is a required program for building graphviz, independent of wether tcl-based graphviz products are built]) 110 # AC_MSG_ERROR([Unable to find a tclsh. Tclsh is a required program for building graphviz, independent of wether tcl-based graphviz products are built])
106 # use_tcl="No (tclsh unavailable)" 111 # use_tcl="No (tclsh unavailable)"
107 # fi 112 # fi
108@@ -17641,6 +17648,9 @@ test -n "$RC" || RC="false" 113@@ -17641,6 +17648,9 @@ test -n "$RC" || RC="false"
109 ;; 114 ;;
110 *-sgi-irix* ) 115 *-sgi-irix* )
111 ;; 116 ;;
112+ *-ibm-aix* ) 117+ *-ibm-aix* )
113+ CC=cc_r 118+ CC=cc_r
114+ ;; 119+ ;;
115 esac 120 esac
116 else 121 else
117 for ac_prog in windres 122 for ac_prog in windres
118@@ -17739,7 +17749,7 @@ _ACEOF 123@@ -17739,7 +17749,7 @@ _ACEOF
119  124
120 fi 125 fi
121  126
122- if test "x$RC" == "xrc"; then 127- if test "x$RC" == "xrc"; then
123+ if test "x$RC" = "xrc"; then 128+ if test "x$RC" = "xrc"; then
124 RC_IS_RC_TRUE= 129 RC_IS_RC_TRUE=
125 RC_IS_RC_FALSE='#' 130 RC_IS_RC_FALSE='#'
126 else 131 else
127@@ -17747,7 +17757,7 @@ else 132@@ -17747,7 +17757,7 @@ else
128 RC_IS_RC_FALSE= 133 RC_IS_RC_FALSE=
129 fi 134 fi
130  135
131- if test "x$RC" == "xwindres"; then 136- if test "x$RC" == "xwindres"; then
132+ if test "x$RC" = "xwindres"; then 137+ if test "x$RC" = "xwindres"; then
133 RC_IS_WINDRES_TRUE= 138 RC_IS_WINDRES_TRUE=
134 RC_IS_WINDRES_FALSE='#' 139 RC_IS_WINDRES_FALSE='#'
135 else 140 else
136@@ -18250,7 +18260,7 @@ fi 141@@ -18250,7 +18260,7 @@ fi
137  142
138 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_socklen_t" >&5 143 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_socklen_t" >&5
139 $as_echo "$ac_cv_type_socklen_t" >&6; } 144 $as_echo "$ac_cv_type_socklen_t" >&6; }
140-if test $ac_cv_type_socklen_t == no; then 145-if test $ac_cv_type_socklen_t == no; then
141+if test $ac_cv_type_socklen_t = no; then 146+if test $ac_cv_type_socklen_t = no; then
142  147
143 $as_echo "#define socklen_t unsigned" >>confdefs.h 148 $as_echo "#define socklen_t unsigned" >>confdefs.h
144  149
145@@ -19832,7 +19842,7 @@ fi 150@@ -19832,7 +19842,7 @@ fi
146 LDFLAGS="$save_LDFLAGS" 151 LDFLAGS="$save_LDFLAGS"
147 CFLAGS="$save_CFLAGS" 152 CFLAGS="$save_CFLAGS"
148 else 153 else
149- if test "x$DARWIN9" == "xyes"; then 154- if test "x$DARWIN9" == "xyes"; then
150+ if test "x$DARWIN9" = "xyes"; then 155+ if test "x$DARWIN9" = "xyes"; then
151 LIBLTDL_LDFLAGS="-Wl,-unexported_symbol,_lt_*" 156 LIBLTDL_LDFLAGS="-Wl,-unexported_symbol,_lt_*"
152 fi 157 fi
153 fi 158 fi
154@@ -19878,7 +19888,7 @@ else 159@@ -19878,7 +19888,7 @@ else
155 with_efence=no 160 with_efence=no
156 fi 161 fi
157  162
158-if test "x$with_efence" == "xyes"; then 163-if test "x$with_efence" == "xyes"; then
159+if test "x$with_efence" = "xyes"; then 164+if test "x$with_efence" = "xyes"; then
160 LIBS="$LIBS -lefence" 165 LIBS="$LIBS -lefence"
161 fi 166 fi
162  167
163@@ -20566,7 +20576,7 @@ fi 168@@ -20566,7 +20576,7 @@ fi
164  169
165 fi 170 fi
166  171
167-if test "x$no_x" == "xyes"; then 172-if test "x$no_x" == "xyes"; then
168+if test "x$no_x" = "xyes"; then 173+if test "x$no_x" = "xyes"; then
169 use_xlib="No (disabled or unavailable)" 174 use_xlib="No (disabled or unavailable)"
170 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: X11 not available." >&5 175 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: X11 not available." >&5
171 $as_echo "$as_me: WARNING: X11 not available." >&2;} 176 $as_echo "$as_me: WARNING: X11 not available." >&2;}
172@@ -20645,7 +20655,7 @@ $as_echo "yes" >&6; } 177@@ -20645,7 +20655,7 @@ $as_echo "yes" >&6; }
173 HAVE_XRENDER="yes" 178 HAVE_XRENDER="yes"
174 fi 179 fi
175 fi 180 fi
176- if test "x$use_xlib" == "xYes"; then 181- if test "x$use_xlib" == "xYes"; then
177+ if test "x$use_xlib" = "xYes"; then 182+ if test "x$use_xlib" = "xYes"; then
178 WITH_X_TRUE= 183 WITH_X_TRUE=
179 WITH_X_FALSE='#' 184 WITH_X_FALSE='#'
180 else 185 else
181@@ -20653,7 +20663,7 @@ else 186@@ -20653,7 +20663,7 @@ else
182 WITH_X_FALSE= 187 WITH_X_FALSE=
183 fi 188 fi
184  189
185- if test "x$,HAVE_XRENDER" == "xyes"; then 190- if test "x$,HAVE_XRENDER" == "xyes"; then
186+ if test "x$,HAVE_XRENDER" = "xyes"; then 191+ if test "x$,HAVE_XRENDER" = "xyes"; then
187 WITH_XRENDER_TRUE= 192 WITH_XRENDER_TRUE=
188 WITH_XRENDER_FALSE='#' 193 WITH_XRENDER_FALSE='#'
189 else 194 else
190@@ -20711,7 +20721,7 @@ $as_echo "no" >&6; } 195@@ -20711,7 +20721,7 @@ $as_echo "no" >&6; }
191 fi 196 fi
192  197
193  198
194- if test "x$SWIG" == "x"; then 199- if test "x$SWIG" == "x"; then
195+ if test "x$SWIG" = "x"; then 200+ if test "x$SWIG" = "x"; then
196 use_swig="No (swig not available)" 201 use_swig="No (swig not available)"
197 else 202 else
198 SWIG_VERSION=`$SWIG -version 2>&1 | $EGREP Version | cut -d ' ' -f 3` 203 SWIG_VERSION=`$SWIG -version 2>&1 | $EGREP Version | cut -d ' ' -f 3`
199@@ -20726,7 +20736,7 @@ fi 204@@ -20726,7 +20736,7 @@ fi
200 fi 205 fi
201 fi 206 fi
202 fi 207 fi
203- if test "x$SWIG" == "x"; then 208- if test "x$SWIG" == "x"; then
204+ if test "x$SWIG" = "x"; then 209+ if test "x$SWIG" = "x"; then
205 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The version of swig is too old." >&5 210 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The version of swig is too old." >&5
206 $as_echo "$as_me: WARNING: The version of swig is too old." >&2;} 211 $as_echo "$as_me: WARNING: The version of swig is too old." >&2;}
207 use_swig="No (swig too old)" 212 use_swig="No (swig too old)"
208@@ -20799,7 +20809,7 @@ $as_echo "no" >&6; } 213@@ -20799,7 +20809,7 @@ $as_echo "no" >&6; }
209 fi 214 fi
210  215
211  216
212- if test "x$MCS" == "x"; then 217- if test "x$MCS" == "x"; then
213+ if test "x$MCS" = "x"; then 218+ if test "x$MCS" = "x"; then
214 use_sharp="No (mcs not available)" 219 use_sharp="No (mcs not available)"
215 else 220 else
216 use_sharp="Yes" 221 use_sharp="Yes"
217@@ -20811,7 +20821,7 @@ fi 222@@ -20811,7 +20821,7 @@ fi
218 fi 223 fi
219 fi 224 fi
220 fi 225 fi
221- if test "x$use_sharp" == "xYes"; then 226- if test "x$use_sharp" == "xYes"; then
222+ if test "x$use_sharp" = "xYes"; then 227+ if test "x$use_sharp" = "xYes"; then
223 WITH_SHARP_TRUE= 228 WITH_SHARP_TRUE=
224 WITH_SHARP_FALSE='#' 229 WITH_SHARP_FALSE='#'
225 else 230 else
226@@ -20875,7 +20885,7 @@ $as_echo "no" >&6; } 231@@ -20875,7 +20885,7 @@ $as_echo "no" >&6; }
227 fi 232 fi
228  233
229  234
230- if test "x$GO" == "x"; then 235- if test "x$GO" == "x"; then
231+ if test "x$GO" = "x"; then 236+ if test "x$GO" = "x"; then
232 use_go="No (GO compiler not available)" 237 use_go="No (GO compiler not available)"
233 else 238 else
234 GO_INCLUDES= 239 GO_INCLUDES=
235@@ -20900,7 +20910,7 @@ fi 240@@ -20900,7 +20910,7 @@ fi
236 fi 241 fi
237 fi 242 fi
238 fi 243 fi
239- if test "x$use_go" == "xYes"; then 244- if test "x$use_go" == "xYes"; then
240+ if test "x$use_go" = "xYes"; then 245+ if test "x$use_go" = "xYes"; then
241 WITH_GO_TRUE= 246 WITH_GO_TRUE=
242 WITH_GO_FALSE='#' 247 WITH_GO_FALSE='#'
243 else 248 else
244@@ -20969,7 +20979,7 @@ fi 249@@ -20969,7 +20979,7 @@ fi
245 test -n "$GUILE" && break 250 test -n "$GUILE" && break
246 done 251 done
247  252
248- if test "x$GUILE" == "x"; then 253- if test "x$GUILE" == "x"; then
249+ if test "x$GUILE" = "x"; then 254+ if test "x$GUILE" = "x"; then
250 use_guile="No (guile not available)" 255 use_guile="No (guile not available)"
251 else 256 else
252 GUILE_VERSION=`$GUILE --version | sed -n '1 s/^.* \+\([0-9\.]\+\)$/\1/ p'` 257 GUILE_VERSION=`$GUILE --version | sed -n '1 s/^.* \+\([0-9\.]\+\)$/\1/ p'`
253@@ -20984,7 +20994,7 @@ done 258@@ -20984,7 +20994,7 @@ done
254 fi 259 fi
255 fi 260 fi
256 fi 261 fi
257- if test "x$GUILE" == "x"; then 262- if test "x$GUILE" == "x"; then
258+ if test "x$GUILE" = "x"; then 263+ if test "x$GUILE" = "x"; then
259 use_guile="No (guile is too old)" 264 use_guile="No (guile is too old)"
260 else 265 else
261 GUILE_INCLUDES= 266 GUILE_INCLUDES=
262@@ -21226,7 +21236,7 @@ fi 267@@ -21226,7 +21236,7 @@ fi
263 fi 268 fi
264 fi 269 fi
265 fi 270 fi
266- if test "x$use_guile" == "xYes"; then 271- if test "x$use_guile" == "xYes"; then
267+ if test "x$use_guile" = "xYes"; then 272+ if test "x$use_guile" = "xYes"; then
268 WITH_GUILE_TRUE= 273 WITH_GUILE_TRUE=
269 WITH_GUILE_FALSE='#' 274 WITH_GUILE_FALSE='#'
270 else 275 else
271@@ -21290,7 +21300,7 @@ $as_echo "no" >&6; } 276@@ -21290,7 +21300,7 @@ $as_echo "no" >&6; }
272 fi 277 fi
273  278
274  279
275- if test "x$IO" == "x"; then 280- if test "x$IO" == "x"; then
276+ if test "x$IO" = "x"; then 281+ if test "x$IO" = "x"; then
277 use_io="No (io not available)" 282 use_io="No (io not available)"
278 else 283 else
279 use_io="Yes" 284 use_io="Yes"
280@@ -21302,7 +21312,7 @@ fi 285@@ -21302,7 +21312,7 @@ fi
281 fi 286 fi
282 fi 287 fi
283 fi 288 fi
284- if test "x$use_io" == "xYes"; then 289- if test "x$use_io" == "xYes"; then
285+ if test "x$use_io" = "xYes"; then 290+ if test "x$use_io" = "xYes"; then
286 WITH_IO_TRUE= 291 WITH_IO_TRUE=
287 WITH_IO_FALSE='#' 292 WITH_IO_FALSE='#'
288 else 293 else
289@@ -21366,7 +21376,7 @@ $as_echo "no" >&6; } 294@@ -21366,7 +21376,7 @@ $as_echo "no" >&6; }
290 fi 295 fi
291  296
292  297
293- if test "x$JAVA" == "x"; then 298- if test "x$JAVA" == "x"; then
294+ if test "x$JAVA" = "x"; then 299+ if test "x$JAVA" = "x"; then
295 use_java="No (java not available)" 300 use_java="No (java not available)"
296 else 301 else
297 for try_java_include in \ 302 for try_java_include in \
298@@ -21419,7 +21429,7 @@ fi 303@@ -21419,7 +21429,7 @@ fi
299 fi 304 fi
300 fi 305 fi
301 fi 306 fi
302- if test "x$use_java" == "xYes"; then 307- if test "x$use_java" == "xYes"; then
303+ if test "x$use_java" = "xYes"; then 308+ if test "x$use_java" = "xYes"; then
304 WITH_JAVA_TRUE= 309 WITH_JAVA_TRUE=
305 WITH_JAVA_FALSE='#' 310 WITH_JAVA_FALSE='#'
306 else 311 else
307@@ -21483,7 +21493,7 @@ $as_echo "no" >&6; } 312@@ -21483,7 +21493,7 @@ $as_echo "no" >&6; }
308 fi 313 fi
309  314
310  315
311- if test "x$LUA" == "x"; then 316- if test "x$LUA" == "x"; then
312+ if test "x$LUA" = "x"; then 317+ if test "x$LUA" = "x"; then
313 use_lua="No (lua not available)" 318 use_lua="No (lua not available)"
314 else 319 else
315 ac_save_CPPFLAGS="$CPPFLAGS" 320 ac_save_CPPFLAGS="$CPPFLAGS"
316@@ -21540,7 +21550,7 @@ fi 321@@ -21540,7 +21550,7 @@ fi
317 LDFLAGS="$LDFLAGS -L$lua_lib" 322 LDFLAGS="$LDFLAGS -L$lua_lib"
318 fi 323 fi
319  324
320- if test "x$LUA_INCLUDES" == "x" -a "x$LUA_LIBS" == "x" ; then 325- if test "x$LUA_INCLUDES" == "x" -a "x$LUA_LIBS" == "x" ; then
321+ if test "x$LUA_INCLUDES" = "x" -a "x$LUA_LIBS" == "x" ; then 326+ if test "x$LUA_INCLUDES" = "x" -a "x$LUA_LIBS" == "x" ; then
322 PKGCONFIG="" 327 PKGCONFIG=""
323 for ac_prog in pkg-config 328 for ac_prog in pkg-config
324 do 329 do
325@@ -21590,14 +21600,14 @@ $as_echo_n "checking for Lua headers and 330@@ -21590,14 +21600,14 @@ $as_echo_n "checking for Lua headers and
326 echo 331 echo
327 for l in "$lua_suffix" "" "52" "5.2" "51" "5.1" "50" "5.0" ; do 332 for l in "$lua_suffix" "" "52" "5.2" "51" "5.1" "50" "5.0" ; do
328 pkgconfig_lua_found=`$PKGCONFIG --exists lua$l 2>/dev/null` 333 pkgconfig_lua_found=`$PKGCONFIG --exists lua$l 2>/dev/null`
329- if test "x$?" == "x0" ; then 334- if test "x$?" == "x0" ; then
330+ if test "x$?" = "x0" ; then 335+ if test "x$?" = "x0" ; then
331 LUA_VERSION=`$PKGCONFIG --modversion lua$l` 336 LUA_VERSION=`$PKGCONFIG --modversion lua$l`
332 LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lua$l` 337 LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lua$l`
333 LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lua$l` 338 LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lua$l`
334- LUA_INSTALL_DIR="/usr/lib$LIBPOSTFIX/lua/`$PKGCONFIG --variable=V lua`" 339- LUA_INSTALL_DIR="/usr/lib$LIBPOSTFIX/lua/`$PKGCONFIG --variable=V lua`"
335+ LUA_INSTALL_DIR="${PREFIX}/lib$LIBPOSTFIX/lua/`$PKGCONFIG --variable=V lua`" 340+ LUA_INSTALL_DIR="${PREFIX}/lib$LIBPOSTFIX/lua/`$PKGCONFIG --variable=V lua`"
336  341
337 pkgconfig_lualib_found=`$PKGCONFIG --exists lualib$l 2>/dev/null` 342 pkgconfig_lualib_found=`$PKGCONFIG --exists lualib$l 2>/dev/null`
338- if test "x$?" == "x0"; then 343- if test "x$?" == "x0"; then
339+ if test "x$?" = "x0"; then 344+ if test "x$?" = "x0"; then
340 LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lualib$l` 345 LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lualib$l`
341 LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lualib$l` 346 LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lualib$l`
342 fi 347 fi
343@@ -21607,7 +21617,7 @@ $as_echo_n "checking for Lua headers and 348@@ -21607,7 +21617,7 @@ $as_echo_n "checking for Lua headers and
344 fi 349 fi
345 fi 350 fi
346  351
347- if test "x$LUA_INCLUDES" == "x" -o "x$LUA_LIBS" == "x" ; then 352- if test "x$LUA_INCLUDES" == "x" -o "x$LUA_LIBS" == "x" ; then
348+ if test "x$LUA_INCLUDES" = "x" -o "x$LUA_LIBS" == "x" ; then 353+ if test "x$LUA_INCLUDES" = "x" -o "x$LUA_LIBS" == "x" ; then
349 LUACONFIG="" 354 LUACONFIG=""
350 for ac_prog in lua-config lua-config52 lua-config5.2 lua-config51 lua-config5.1 lua-config50 lua-config5.0 355 for ac_prog in lua-config lua-config52 lua-config5.2 lua-config51 lua-config5.1 lua-config50 lua-config5.0
351 do 356 do
352@@ -21658,11 +21668,11 @@ $as_echo_n "checking for Lua headers and 357@@ -21658,11 +21668,11 @@ $as_echo_n "checking for Lua headers and
353 LUA_INCLUDES=`$LUACONFIG --include` 358 LUA_INCLUDES=`$LUACONFIG --include`
354 LUA_LIBS=`$LUACONFIG --libs` 359 LUA_LIBS=`$LUACONFIG --libs`
355 LUA_VERSION="5.0.x" 360 LUA_VERSION="5.0.x"
356- LUA_INSTALL_DIR="/usr/lib$LIBPOSTFIX/lua/5.0" 361- LUA_INSTALL_DIR="/usr/lib$LIBPOSTFIX/lua/5.0"
357+ LUA_INSTALL_DIR="${PREFIX}/lib$LIBPOSTFIX/lua/5.0" 362+ LUA_INSTALL_DIR="${PREFIX}/lib$LIBPOSTFIX/lua/5.0"
358 fi 363 fi
359 fi 364 fi
360  365
361- if test "x$LUA_INCLUDES" == "x" -o "x$LUA_LIBS" == "x" ; then 366- if test "x$LUA_INCLUDES" == "x" -o "x$LUA_LIBS" == "x" ; then
362+ if test "x$LUA_INCLUDES" = "x" -o "x$LUA_LIBS" == "x" ; then 367+ if test "x$LUA_INCLUDES" = "x" -o "x$LUA_LIBS" == "x" ; then
363 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Lua headers and libraries" >&5 368 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Lua headers and libraries" >&5
364 $as_echo_n "checking for Lua headers and libraries... " >&6; } 369 $as_echo_n "checking for Lua headers and libraries... " >&6; }
365 echo 370 echo
366@@ -21682,7 +21692,7 @@ else 371@@ -21682,7 +21692,7 @@ else
367 fi 372 fi
368  373
369  374
370- if test "x$ac_found_lua_header" == "xyes" -a "x$ac_found_liblua_header" == "xyes"; then 375- if test "x$ac_found_lua_header" == "xyes" -a "x$ac_found_liblua_header" == "xyes"; then
371+ if test "x$ac_found_lua_header" = "xyes" -a "x$ac_found_liblua_header" == "xyes"; then 376+ if test "x$ac_found_lua_header" = "xyes" -a "x$ac_found_liblua_header" == "xyes"; then
372 LUA_INCLUDES="$CFLAGS" 377 LUA_INCLUDES="$CFLAGS"
373 fi 378 fi
374 for l in "$lua_suffix" "" "52" "5.2" "51" "5.1" "50" "5.0" ; do 379 for l in "$lua_suffix" "" "52" "5.2" "51" "5.1" "50" "5.0" ; do
375@@ -21730,7 +21740,7 @@ else 380@@ -21730,7 +21740,7 @@ else
376 ac_found_lua_lib="no" 381 ac_found_lua_lib="no"
377 fi 382 fi
378  383
379- if test "x$ac_found_lua_lib" == "xyes" ; then 384- if test "x$ac_found_lua_lib" == "xyes" ; then
380+ if test "x$ac_found_lua_lib" = "xyes" ; then 385+ if test "x$ac_found_lua_lib" = "xyes" ; then
381 LUA_VERSION=">=5.1.0" 386 LUA_VERSION=">=5.1.0"
382  387
383 LUA_LIBS="$LDFLAGS -llua$l -lm" 388 LUA_LIBS="$LDFLAGS -llua$l -lm"
384@@ -21786,7 +21796,7 @@ else 389@@ -21786,7 +21796,7 @@ else
385 ac_found_liblua_lib="no" 390 ac_found_liblua_lib="no"
386 fi 391 fi
387  392
388- if test "x$ac_found_liblua_lib" == "xyes" ; then 393- if test "x$ac_found_liblua_lib" == "xyes" ; then
389+ if test "x$ac_found_liblua_lib" = "xyes" ; then 394+ if test "x$ac_found_liblua_lib" = "xyes" ; then
390 LUA_VERSION="5.0.x" 395 LUA_VERSION="5.0.x"
391  396
392 LUA_LIBS="$LUA_LFLAGS -llualib$l" 397 LUA_LIBS="$LUA_LFLAGS -llualib$l"
393@@ -21831,7 +21841,7 @@ $as_echo "$as_me: WARNING: 398@@ -21831,7 +21841,7 @@ $as_echo "$as_me: WARNING:
394 fi 399 fi
395 fi 400 fi
396 fi 401 fi
397- if test "x$use_lua" == "xYes"; then 402- if test "x$use_lua" == "xYes"; then
398+ if test "x$use_lua" = "xYes"; then 403+ if test "x$use_lua" = "xYes"; then
399 WITH_LUA_TRUE= 404 WITH_LUA_TRUE=
400 WITH_LUA_FALSE='#' 405 WITH_LUA_FALSE='#'
401 else 406 else
402@@ -21896,7 +21906,7 @@ $as_echo "no" >&6; } 407@@ -21896,7 +21906,7 @@ $as_echo "no" >&6; }
403 fi 408 fi
404  409
405  410
406- if test "x$OCAML" == "x"; then 411- if test "x$OCAML" == "x"; then
407+ if test "x$OCAML" = "x"; then 412+ if test "x$OCAML" = "x"; then
408 use_ocaml="No (ocaml not available)" 413 use_ocaml="No (ocaml not available)"
409 else 414 else
410 # Extract the first word of "ocamlopt", so it can be a program name with args. 415 # Extract the first word of "ocamlopt", so it can be a program name with args.
411@@ -21936,8 +21946,8 @@ $as_echo "no" >&6; } 416@@ -21936,8 +21946,8 @@ $as_echo "no" >&6; }
412 fi 417 fi
413  418
414  419
415- OCAML_INCLUDES=-I/usr/lib$LIBPOSTFIX/ocaml 420- OCAML_INCLUDES=-I/usr/lib$LIBPOSTFIX/ocaml
416- OCAML_LIBS=-L/usr/lib$LIBPOSTFIX/ocaml 421- OCAML_LIBS=-L/usr/lib$LIBPOSTFIX/ocaml
417+ OCAML_INCLUDES=-I${PREFIX}/lib$LIBPOSTFIX/ocaml 422+ OCAML_INCLUDES=-I${PREFIX}/lib$LIBPOSTFIX/ocaml
418+ OCAML_LIBS=-L${PREFIX}/lib$LIBPOSTFIX/ocaml 423+ OCAML_LIBS=-L${PREFIX}/lib$LIBPOSTFIX/ocaml
419 save_CPPFLAGS=$CPPFLAGS 424 save_CPPFLAGS=$CPPFLAGS
420 CPPFLAGS="$CPPFLAGS $OCAML_INCLUDES" 425 CPPFLAGS="$CPPFLAGS $OCAML_INCLUDES"
421 ac_fn_c_check_header_mongrel "$LINENO" "caml/mlvalues.h" "ac_cv_header_caml_mlvalues_h" "$ac_includes_default" 426 ac_fn_c_check_header_mongrel "$LINENO" "caml/mlvalues.h" "ac_cv_header_caml_mlvalues_h" "$ac_includes_default"
422@@ -21961,7 +21971,7 @@ fi 427@@ -21961,7 +21971,7 @@ fi
423 fi 428 fi
424 fi 429 fi
425 fi 430 fi
426- if test "x$use_ocaml" == "xYes"; then 431- if test "x$use_ocaml" == "xYes"; then
427+ if test "x$use_ocaml" = "xYes"; then 432+ if test "x$use_ocaml" = "xYes"; then
428 WITH_OCAML_TRUE= 433 WITH_OCAML_TRUE=
429 WITH_OCAML_FALSE='#' 434 WITH_OCAML_FALSE='#'
430 else 435 else
431@@ -22033,7 +22043,7 @@ $as_echo "no" >&6; } 436@@ -22033,7 +22043,7 @@ $as_echo "no" >&6; }
432 fi 437 fi
433  438
434  439
435- if test "x$PERL" == "x"; then 440- if test "x$PERL" == "x"; then
436+ if test "x$PERL" = "x"; then 441+ if test "x$PERL" = "x"; then
437 use_perl="No (perl not available)" 442 use_perl="No (perl not available)"
438 else 443 else
439 if test $PERL -e 'exit !($] <= 5.004)' > /dev/null 2>&1 ; then 444 if test $PERL -e 'exit !($] <= 5.004)' > /dev/null 2>&1 ; then
440@@ -22075,7 +22085,7 @@ fi 445@@ -22075,7 +22085,7 @@ fi
441 fi 446 fi
442 fi 447 fi
443 fi 448 fi
444- if test "x$use_perl" == "xYes"; then 449- if test "x$use_perl" == "xYes"; then
445+ if test "x$use_perl" = "xYes"; then 450+ if test "x$use_perl" = "xYes"; then
446 WITH_PERL_TRUE= 451 WITH_PERL_TRUE=
447 WITH_PERL_FALSE='#' 452 WITH_PERL_FALSE='#'
448 else 453 else
449@@ -22144,16 +22154,16 @@ fi 454@@ -22144,16 +22154,16 @@ fi
450 test -n "$PHP" && break 455 test -n "$PHP" && break
451 done 456 done
452  457
453- if test "x$PHP" == "x"; then 458- if test "x$PHP" == "x"; then
454+ if test "x$PHP" = "x"; then 459+ if test "x$PHP" = "x"; then
455 use_php="No (php not available)" 460 use_php="No (php not available)"
456 else 461 else
457- if test -d /usr/include/php5; then 462- if test -d /usr/include/php5; then
458- PHP_INCLUDES="-I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/Zend -I/usr/include/php5/TSRM" 463- PHP_INCLUDES="-I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/Zend -I/usr/include/php5/TSRM"
459+ if test -d ${PREFIX}/include/php5; then 464+ if test -d ${PREFIX}/include/php5; then
460+ PHP_INCLUDES="-I${PREFIX}/include/php5 -I${PREFIX}/include/php5/main -I${PREFIX}/include/php5/Zend -I${PREFIX}/include/php5/TSRM" 465+ PHP_INCLUDES="-I${PREFIX}/include/php5 -I${PREFIX}/include/php5/main -I${PREFIX}/include/php5/Zend -I${PREFIX}/include/php5/TSRM"
461 else 466 else
462- PHP_INCLUDES="-I/usr/include/php -I/usr/include/php/main -I/usr/include/php/Zend -I/usr/include/php/TSRM" 467- PHP_INCLUDES="-I/usr/include/php -I/usr/include/php/main -I/usr/include/php/Zend -I/usr/include/php/TSRM"
463+ PHP_INCLUDES="-I${PREFIX}/include/php -I${PREFIX}/include/php/main -I${PREFIX}/include/php/Zend -I${PREFIX}/include/php/TSRM" 468+ PHP_INCLUDES="-I${PREFIX}/include/php -I${PREFIX}/include/php/main -I${PREFIX}/include/php/Zend -I${PREFIX}/include/php/TSRM"
464 fi 469 fi
465- PHP_INSTALL_DIR="/usr/lib${LIBPOSTFIX}/php/modules" 470- PHP_INSTALL_DIR="/usr/lib${LIBPOSTFIX}/php/modules"
466- PHP_INSTALL_DATADIR="/usr/share/php" 471- PHP_INSTALL_DATADIR="/usr/share/php"
467+ PHP_INSTALL_DIR="${PREFIX}/lib${LIBPOSTFIX}/php/modules" 472+ PHP_INSTALL_DIR="${PREFIX}/lib${LIBPOSTFIX}/php/modules"
468+ PHP_INSTALL_DATADIR="${PREFIX}/share/php" 473+ PHP_INSTALL_DATADIR="${PREFIX}/share/php"
469 PHP_LIBS= 474 PHP_LIBS=
470 save_CPPFLAGS=$CPPFLAGS 475 save_CPPFLAGS=$CPPFLAGS
471 CPPFLAGS="$CPPFLAGS $PHP_INCLUDES" 476 CPPFLAGS="$CPPFLAGS $PHP_INCLUDES"
472@@ -22180,7 +22190,7 @@ fi 477@@ -22180,7 +22190,7 @@ fi
473 fi 478 fi
474 fi 479 fi
475 fi 480 fi
476- if test "x$use_php" == "xYes"; then 481- if test "x$use_php" == "xYes"; then
477+ if test "x$use_php" = "xYes"; then 482+ if test "x$use_php" = "xYes"; then
478 WITH_PHP_TRUE= 483 WITH_PHP_TRUE=
479 WITH_PHP_FALSE='#' 484 WITH_PHP_FALSE='#'
480 else 485 else
481@@ -22244,11 +22254,11 @@ $as_echo "no" >&6; } 486@@ -22244,11 +22254,11 @@ $as_echo "no" >&6; }
482 fi 487 fi
483  488
484  489
485- if test "x$PYTHON" == "x"; then 490- if test "x$PYTHON" == "x"; then
486+ if test "x$PYTHON" = "x"; then 491+ if test "x$PYTHON" = "x"; then
487 use_python="No (python not available)" 492 use_python="No (python not available)"
488 else 493 else
489 PYTHON_VERSION=`$PYTHON -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 494 PYTHON_VERSION=`$PYTHON -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
490- if test "x$PYTHON_VERSION" == "x"; then 495- if test "x$PYTHON_VERSION" == "x"; then
491+ if test "x$PYTHON_VERSION" = "x"; then 496+ if test "x$PYTHON_VERSION" = "x"; then
492 PYTHON= 497 PYTHON=
493 else 498 else
494 PYTHON_VERSION_MAJOR=`echo $PYTHON_VERSION | cut -d '.' -f 1` 499 PYTHON_VERSION_MAJOR=`echo $PYTHON_VERSION | cut -d '.' -f 1`
495@@ -22265,7 +22275,7 @@ fi 500@@ -22265,7 +22275,7 @@ fi
496 fi 501 fi
497 fi 502 fi
498 fi 503 fi
499- if test "x$PYTHON" == "x"; then 504- if test "x$PYTHON" == "x"; then
500+ if test "x$PYTHON" = "x"; then 505+ if test "x$PYTHON" = "x"; then
501 use_python="No (python is too old)" 506 use_python="No (python is too old)"
502 else 507 else
503 PYTHON_PREFIX=`$PYTHON -c "import sys; print sys.prefix"` 508 PYTHON_PREFIX=`$PYTHON -c "import sys; print sys.prefix"`
504@@ -22296,7 +22306,7 @@ fi 509@@ -22296,7 +22306,7 @@ fi
505 fi 510 fi
506 fi 511 fi
507 fi 512 fi
508- if test "x$use_python" == "xYes"; then 513- if test "x$use_python" == "xYes"; then
509+ if test "x$use_python" = "xYes"; then 514+ if test "x$use_python" = "xYes"; then
510 WITH_PYTHON_TRUE= 515 WITH_PYTHON_TRUE=
511 WITH_PYTHON_FALSE='#' 516 WITH_PYTHON_FALSE='#'
512 else 517 else
513@@ -22360,11 +22370,11 @@ $as_echo "no" >&6; } 518@@ -22360,11 +22370,11 @@ $as_echo "no" >&6; }
514 fi 519 fi
515  520
516  521
517- if test "x$PYTHON23" == "x"; then 522- if test "x$PYTHON23" == "x"; then
518+ if test "x$PYTHON23" = "x"; then 523+ if test "x$PYTHON23" = "x"; then
519 use_python23="No (python23 not available)" 524 use_python23="No (python23 not available)"
520 else 525 else
521 PYTHON23_VERSION=`$PYTHON23 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 526 PYTHON23_VERSION=`$PYTHON23 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
522- if test "x$PYTHON23_VERSION" == "x"; then 527- if test "x$PYTHON23_VERSION" == "x"; then
523+ if test "x$PYTHON23_VERSION" = "x"; then 528+ if test "x$PYTHON23_VERSION" = "x"; then
524 PYTHON23= 529 PYTHON23=
525 else 530 else
526 PYTHON23_VERSION_MAJOR=`echo $PYTHON23_VERSION | cut -d '.' -f 1` 531 PYTHON23_VERSION_MAJOR=`echo $PYTHON23_VERSION | cut -d '.' -f 1`
527@@ -22381,7 +22391,7 @@ fi 532@@ -22381,7 +22391,7 @@ fi
528 fi 533 fi
529 fi 534 fi
530 fi 535 fi
531- if test "x$PYTHON23" == "x"; then 536- if test "x$PYTHON23" == "x"; then
532+ if test "x$PYTHON23" = "x"; then 537+ if test "x$PYTHON23" = "x"; then
533 use_python23="No (python2.3 is too old)" 538 use_python23="No (python2.3 is too old)"
534 else 539 else
535 PYTHON23_PREFIX=`$PYTHON23 -c "import sys; print sys.prefix"` 540 PYTHON23_PREFIX=`$PYTHON23 -c "import sys; print sys.prefix"`
536@@ -22412,7 +22422,7 @@ fi 541@@ -22412,7 +22422,7 @@ fi
537 fi 542 fi
538 fi 543 fi
539 fi 544 fi
540- if test "x$use_python23" == "xYes"; then 545- if test "x$use_python23" == "xYes"; then
541+ if test "x$use_python23" = "xYes"; then 546+ if test "x$use_python23" = "xYes"; then
542 WITH_PYTHON23_TRUE= 547 WITH_PYTHON23_TRUE=
543 WITH_PYTHON23_FALSE='#' 548 WITH_PYTHON23_FALSE='#'
544 else 549 else
545@@ -22476,11 +22486,11 @@ $as_echo "no" >&6; } 550@@ -22476,11 +22486,11 @@ $as_echo "no" >&6; }
546 fi 551 fi
547  552
548  553
549- if test "x$PYTHON24" == "x"; then 554- if test "x$PYTHON24" == "x"; then
550+ if test "x$PYTHON24" = "x"; then 555+ if test "x$PYTHON24" = "x"; then
551 use_python24="No (python24 not available)" 556 use_python24="No (python24 not available)"
552 else 557 else
553 PYTHON24_VERSION=`$PYTHON24 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 558 PYTHON24_VERSION=`$PYTHON24 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
554- if test "x$PYTHON24_VERSION" == "x"; then 559- if test "x$PYTHON24_VERSION" == "x"; then
555+ if test "x$PYTHON24_VERSION" = "x"; then 560+ if test "x$PYTHON24_VERSION" = "x"; then
556 PYTHON24= 561 PYTHON24=
557 else 562 else
558 PYTHON24_VERSION_MAJOR=`echo $PYTHON24_VERSION | cut -d '.' -f 1` 563 PYTHON24_VERSION_MAJOR=`echo $PYTHON24_VERSION | cut -d '.' -f 1`
559@@ -22497,7 +22507,7 @@ fi 564@@ -22497,7 +22507,7 @@ fi
560 fi 565 fi
561 fi 566 fi
562 fi 567 fi
563- if test "x$PYTHON24" == "x"; then 568- if test "x$PYTHON24" == "x"; then
564+ if test "x$PYTHON24" = "x"; then 569+ if test "x$PYTHON24" = "x"; then
565 use_python24="No (python2.4 is too old)" 570 use_python24="No (python2.4 is too old)"
566 else 571 else
567 PYTHON24_PREFIX=`$PYTHON24 -c "import sys; print sys.prefix"` 572 PYTHON24_PREFIX=`$PYTHON24 -c "import sys; print sys.prefix"`
568@@ -22528,7 +22538,7 @@ fi 573@@ -22528,7 +22538,7 @@ fi
569 fi 574 fi
570 fi 575 fi
571 fi 576 fi
572- if test "x$use_python24" == "xYes"; then 577- if test "x$use_python24" == "xYes"; then
573+ if test "x$use_python24" = "xYes"; then 578+ if test "x$use_python24" = "xYes"; then
574 WITH_PYTHON24_TRUE= 579 WITH_PYTHON24_TRUE=
575 WITH_PYTHON24_FALSE='#' 580 WITH_PYTHON24_FALSE='#'
576 else 581 else
577@@ -22592,11 +22602,11 @@ $as_echo "no" >&6; } 582@@ -22592,11 +22602,11 @@ $as_echo "no" >&6; }
578 fi 583 fi
579  584
580  585
581- if test "x$PYTHON25" == "x"; then 586- if test "x$PYTHON25" == "x"; then
582+ if test "x$PYTHON25" = "x"; then 587+ if test "x$PYTHON25" = "x"; then
583 use_python25="No (python25 not available)" 588 use_python25="No (python25 not available)"
584 else 589 else
585 PYTHON25_VERSION=`$PYTHON25 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 590 PYTHON25_VERSION=`$PYTHON25 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
586- if test "x$PYTHON25_VERSION" == "x"; then 591- if test "x$PYTHON25_VERSION" == "x"; then
587+ if test "x$PYTHON25_VERSION" = "x"; then 592+ if test "x$PYTHON25_VERSION" = "x"; then
588 PYTHON25= 593 PYTHON25=
589 else 594 else
590 PYTHON25_VERSION_MAJOR=`echo $PYTHON25_VERSION | cut -d '.' -f 1` 595 PYTHON25_VERSION_MAJOR=`echo $PYTHON25_VERSION | cut -d '.' -f 1`
591@@ -22613,7 +22623,7 @@ fi 596@@ -22613,7 +22623,7 @@ fi
592 fi 597 fi
593 fi 598 fi
594 fi 599 fi
595- if test "x$PYTHON25" == "x"; then 600- if test "x$PYTHON25" == "x"; then
596+ if test "x$PYTHON25" = "x"; then 601+ if test "x$PYTHON25" = "x"; then
597 use_python25="No (python2.5 is too old)" 602 use_python25="No (python2.5 is too old)"
598 else 603 else
599 PYTHON25_PREFIX=`$PYTHON25 -c "import sys; print sys.prefix"` 604 PYTHON25_PREFIX=`$PYTHON25 -c "import sys; print sys.prefix"`
600@@ -22644,7 +22654,7 @@ fi 605@@ -22644,7 +22654,7 @@ fi
601 fi 606 fi
602 fi 607 fi
603 fi 608 fi
604- if test "x$use_python25" == "xYes"; then 609- if test "x$use_python25" == "xYes"; then
605+ if test "x$use_python25" = "xYes"; then 610+ if test "x$use_python25" = "xYes"; then
606 WITH_PYTHON25_TRUE= 611 WITH_PYTHON25_TRUE=
607 WITH_PYTHON25_FALSE='#' 612 WITH_PYTHON25_FALSE='#'
608 else 613 else
609@@ -22708,11 +22718,11 @@ $as_echo "no" >&6; } 614@@ -22708,11 +22718,11 @@ $as_echo "no" >&6; }
610 fi 615 fi
611  616
612  617
613- if test "x$PYTHON26" == "x"; then 618- if test "x$PYTHON26" == "x"; then
614+ if test "x$PYTHON26" = "x"; then 619+ if test "x$PYTHON26" = "x"; then
615 use_python26="No (python26 not available)" 620 use_python26="No (python26 not available)"
616 else 621 else
617 PYTHON26_VERSION=`$PYTHON26 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 622 PYTHON26_VERSION=`$PYTHON26 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
618- if test "x$PYTHON26_VERSION" == "x"; then 623- if test "x$PYTHON26_VERSION" == "x"; then
619+ if test "x$PYTHON26_VERSION" = "x"; then 624+ if test "x$PYTHON26_VERSION" = "x"; then
620 PYTHON26= 625 PYTHON26=
621 else 626 else
622 PYTHON26_VERSION_MAJOR=`echo $PYTHON26_VERSION | cut -d '.' -f 1` 627 PYTHON26_VERSION_MAJOR=`echo $PYTHON26_VERSION | cut -d '.' -f 1`
623@@ -22729,7 +22739,7 @@ fi 628@@ -22729,7 +22739,7 @@ fi
624 fi 629 fi
625 fi 630 fi
626 fi 631 fi
627- if test "x$PYTHON26" == "x"; then 632- if test "x$PYTHON26" == "x"; then
628+ if test "x$PYTHON26" = "x"; then 633+ if test "x$PYTHON26" = "x"; then
629 use_python26="No (python2.6 is too old)" 634 use_python26="No (python2.6 is too old)"
630 else 635 else
631 PYTHON26_PREFIX=`$PYTHON26 -c "import sys; print sys.prefix"` 636 PYTHON26_PREFIX=`$PYTHON26 -c "import sys; print sys.prefix"`
632@@ -22760,7 +22770,7 @@ fi 637@@ -22760,7 +22770,7 @@ fi
633 fi 638 fi
634 fi 639 fi
635 fi 640 fi
636- if test "x$use_python26" == "xYes"; then 641- if test "x$use_python26" == "xYes"; then
637+ if test "x$use_python26" = "xYes"; then 642+ if test "x$use_python26" = "xYes"; then
638 WITH_PYTHON26_TRUE= 643 WITH_PYTHON26_TRUE=
639 WITH_PYTHON26_FALSE='#' 644 WITH_PYTHON26_FALSE='#'
640 else 645 else
641@@ -22824,11 +22834,11 @@ $as_echo "no" >&6; } 646@@ -22824,11 +22834,11 @@ $as_echo "no" >&6; }
642 fi 647 fi
643  648
644  649
645- if test "x$PYTHON27" == "x"; then 650- if test "x$PYTHON27" == "x"; then
646+ if test "x$PYTHON27" = "x"; then 651+ if test "x$PYTHON27" = "x"; then
647 use_python27="No (python27 not available)" 652 use_python27="No (python27 not available)"
648 else 653 else
649 PYTHON27_VERSION=`$PYTHON27 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2` 654 PYTHON27_VERSION=`$PYTHON27 -V 2>&1 | $EGREP Python | cut -d ' ' -f 2`
650- if test "x$PYTHON27_VERSION" == "x"; then 655- if test "x$PYTHON27_VERSION" == "x"; then
651+ if test "x$PYTHON27_VERSION" = "x"; then 656+ if test "x$PYTHON27_VERSION" = "x"; then
652 PYTHON27= 657 PYTHON27=
653 else 658 else
654 PYTHON27_VERSION_MAJOR=`echo $PYTHON27_VERSION | cut -d '.' -f 1` 659 PYTHON27_VERSION_MAJOR=`echo $PYTHON27_VERSION | cut -d '.' -f 1`
655@@ -22845,7 +22855,7 @@ fi 660@@ -22845,7 +22855,7 @@ fi
656 fi 661 fi
657 fi 662 fi
658 fi 663 fi
659- if test "x$PYTHON27" == "x"; then 664- if test "x$PYTHON27" == "x"; then
660+ if test "x$PYTHON27" = "x"; then 665+ if test "x$PYTHON27" = "x"; then
661 use_python27="No (python2.7 is too old)" 666 use_python27="No (python2.7 is too old)"
662 else 667 else
663 PYTHON27_PREFIX=`$PYTHON27 -c "import sys; print sys.prefix"` 668 PYTHON27_PREFIX=`$PYTHON27 -c "import sys; print sys.prefix"`
664@@ -22876,7 +22886,7 @@ fi 669@@ -22876,7 +22886,7 @@ fi
665 fi 670 fi
666 fi 671 fi
667 fi 672 fi
668- if test "x$use_python27" == "xYes"; then 673- if test "x$use_python27" == "xYes"; then
669+ if test "x$use_python27" = "xYes"; then 674+ if test "x$use_python27" = "xYes"; then
670 WITH_PYTHON27_TRUE= 675 WITH_PYTHON27_TRUE=
671 WITH_PYTHON27_FALSE='#' 676 WITH_PYTHON27_FALSE='#'
672 else 677 else
673@@ -22983,7 +22993,7 @@ fi 678@@ -22983,7 +22993,7 @@ fi
674 fi 679 fi
675 fi 680 fi
676 fi 681 fi
677- if test "x$use_r" == "xYes"; then 682- if test "x$use_r" == "xYes"; then
678+ if test "x$use_r" = "xYes"; then 683+ if test "x$use_r" = "xYes"; then
679 WITH_R_TRUE= 684 WITH_R_TRUE=
680 WITH_R_FALSE='#' 685 WITH_R_FALSE='#'
681 else 686 else
682@@ -23163,17 +23173,17 @@ $as_echo "no" >&6; } 687@@ -23163,17 +23173,17 @@ $as_echo "no" >&6; }
683 fi 688 fi
684  689
685  690
686- if test "x$RUBY" == "x"; then 691- if test "x$RUBY" == "x"; then
687+ if test "x$RUBY" = "x"; then 692+ if test "x$RUBY" = "x"; then
688 use_ruby="No (ruby not available)" 693 use_ruby="No (ruby not available)"
689 else 694 else
690 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`" 695 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`"
691 # hack for powerpc-darwin8 (10.4) 696 # hack for powerpc-darwin8 (10.4)
692- if test "x$DARWIN" == "xyes"; then 697- if test "x$DARWIN" == "xyes"; then
693+ if test "x$DARWIN" = "xyes"; then 698+ if test "x$DARWIN" = "xyes"; then
694 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'` 699 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'`
695 fi 700 fi
696 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`" 701 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`"
697 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 702 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
698- if test "x$RUBY_INSTALL_DIR" == "x"; then 703- if test "x$RUBY_INSTALL_DIR" == "x"; then
699+ if test "x$RUBY_INSTALL_DIR" = "x"; then 704+ if test "x$RUBY_INSTALL_DIR" = "x"; then
700 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`" 705 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`"
701 fi 706 fi
702 save_CPPFLAGS=$CPPFLAGS 707 save_CPPFLAGS=$CPPFLAGS
703@@ -23233,17 +23243,17 @@ $as_echo "no" >&6; } 708@@ -23233,17 +23243,17 @@ $as_echo "no" >&6; }
704 fi 709 fi
705  710
706  711
707- if test "x$RUBY" == "x"; then 712- if test "x$RUBY" == "x"; then
708+ if test "x$RUBY" = "x"; then 713+ if test "x$RUBY" = "x"; then
709 use_ruby="No (ruby not available)" 714 use_ruby="No (ruby not available)"
710 else 715 else
711 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`" 716 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`"
712 # hack for powerpc-darwin8 (10.4) 717 # hack for powerpc-darwin8 (10.4)
713- if test "x$DARWIN" == "xyes"; then 718- if test "x$DARWIN" == "xyes"; then
714+ if test "x$DARWIN" = "xyes"; then 719+ if test "x$DARWIN" = "xyes"; then
715 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'` 720 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'`
716 fi 721 fi
717 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`" 722 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`"
718 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 723 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
719- if test "x$RUBY_INSTALL_DIR" == "x"; then 724- if test "x$RUBY_INSTALL_DIR" == "x"; then
720+ if test "x$RUBY_INSTALL_DIR" = "x"; then 725+ if test "x$RUBY_INSTALL_DIR" = "x"; then
721 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`" 726 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`"
722 fi 727 fi
723 save_CPPFLAGS=$CPPFLAGS 728 save_CPPFLAGS=$CPPFLAGS
724@@ -23305,7 +23315,7 @@ $as_echo "no" >&6; } 729@@ -23305,7 +23315,7 @@ $as_echo "no" >&6; }
725 fi 730 fi
726  731
727  732
728- if test "x$RUBY" == "x"; then 733- if test "x$RUBY" == "x"; then
729+ if test "x$RUBY" = "x"; then 734+ if test "x$RUBY" = "x"; then
730 use_ruby="No (ruby not available)" 735 use_ruby="No (ruby not available)"
731 else 736 else
732 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 737 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
733@@ -23412,17 +23422,17 @@ $as_echo "no" >&6; } 738@@ -23412,17 +23422,17 @@ $as_echo "no" >&6; }
734 fi 739 fi
735  740
736  741
737- if test "x$RUBY" == "x"; then 742- if test "x$RUBY" == "x"; then
738+ if test "x$RUBY" = "x"; then 743+ if test "x$RUBY" = "x"; then
739 use_ruby="No (ruby not available)" 744 use_ruby="No (ruby not available)"
740 else 745 else
741 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`" 746 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`"
742 # hack for powerpc-darwin8 (10.4) 747 # hack for powerpc-darwin8 (10.4)
743- if test "x$DARWIN" == "xyes"; then 748- if test "x$DARWIN" == "xyes"; then
744+ if test "x$DARWIN" = "xyes"; then 749+ if test "x$DARWIN" = "xyes"; then
745 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'` 750 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'`
746 fi 751 fi
747 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`" 752 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`"
748 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 753 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
749- if test "x$RUBY_INSTALL_DIR" == "x"; then 754- if test "x$RUBY_INSTALL_DIR" == "x"; then
750+ if test "x$RUBY_INSTALL_DIR" = "x"; then 755+ if test "x$RUBY_INSTALL_DIR" = "x"; then
751 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`" 756 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`"
752 fi 757 fi
753 save_CPPFLAGS=$CPPFLAGS 758 save_CPPFLAGS=$CPPFLAGS
754@@ -23482,17 +23492,17 @@ $as_echo "no" >&6; } 759@@ -23482,17 +23492,17 @@ $as_echo "no" >&6; }
755 fi 760 fi
756  761
757  762
758- if test "x$RUBY" == "x"; then 763- if test "x$RUBY" == "x"; then
759+ if test "x$RUBY" = "x"; then 764+ if test "x$RUBY" = "x"; then
760 use_ruby="No (ruby not available)" 765 use_ruby="No (ruby not available)"
761 else 766 else
762 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`" 767 RUBY_CFLAGS="-I`$RUBY $srcdir/config/config_ruby.rb archdir`"
763 # hack for powerpc-darwin8 (10.4) 768 # hack for powerpc-darwin8 (10.4)
764- if test "x$DARWIN" == "xyes"; then 769- if test "x$DARWIN" == "xyes"; then
765+ if test "x$DARWIN" = "xyes"; then 770+ if test "x$DARWIN" = "xyes"; then
766 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'` 771 RUBY_CFLAGS=`echo $RUBY_CFLAGS | sed 's/powerpc/universal/'`
767 fi 772 fi
768 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`" 773 RUBY_LIBS="-L`$RUBY $srcdir/config/config_ruby.rb lib` `$RUBY -rrbconfig -e \"puts Config::CONFIG['LIBRUBYARG_SHARED']\"`"
769 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 774 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
770- if test "x$RUBY_INSTALL_DIR" == "x"; then 775- if test "x$RUBY_INSTALL_DIR" == "x"; then
771+ if test "x$RUBY_INSTALL_DIR" = "x"; then 776+ if test "x$RUBY_INSTALL_DIR" = "x"; then
772 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`" 777 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb sitearchdir`"
773 fi 778 fi
774 save_CPPFLAGS=$CPPFLAGS 779 save_CPPFLAGS=$CPPFLAGS
775@@ -23554,7 +23564,7 @@ $as_echo "no" >&6; } 780@@ -23554,7 +23564,7 @@ $as_echo "no" >&6; }
776 fi 781 fi
777  782
778  783
779- if test "x$RUBY" == "x"; then 784- if test "x$RUBY" == "x"; then
780+ if test "x$RUBY" = "x"; then 785+ if test "x$RUBY" = "x"; then
781 use_ruby="No (ruby not available)" 786 use_ruby="No (ruby not available)"
782 else 787 else
783 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 788 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
784@@ -23605,7 +23615,7 @@ $as_echo "no" >&6; } 789@@ -23605,7 +23615,7 @@ $as_echo "no" >&6; }
785 fi 790 fi
786  791
787  792
788- if test "x$RUBY" == "x"; then 793- if test "x$RUBY" == "x"; then
789+ if test "x$RUBY" = "x"; then 794+ if test "x$RUBY" = "x"; then
790 use_ruby="No (ruby not available)" 795 use_ruby="No (ruby not available)"
791 else 796 else
792 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`" 797 RUBY_INSTALL_DIR="`$RUBY $srcdir/config/config_ruby.rb vendorarchdir`"
793@@ -23621,7 +23631,7 @@ fi 798@@ -23621,7 +23631,7 @@ fi
794 fi 799 fi
795 fi 800 fi
796 fi 801 fi
797- if test "x$use_ruby" == "xYes"; then 802- if test "x$use_ruby" == "xYes"; then
798+ if test "x$use_ruby" = "xYes"; then 803+ if test "x$use_ruby" = "xYes"; then
799 WITH_RUBY_TRUE= 804 WITH_RUBY_TRUE=
800 WITH_RUBY_FALSE='#' 805 WITH_RUBY_FALSE='#'
801 else 806 else
802@@ -23643,7 +23653,7 @@ if test "x$enable_tcl" != "xyes"; then 807@@ -23643,7 +23653,7 @@ if test "x$enable_tcl" != "xyes"; then
803 use_tcl="No (disabled)" 808 use_tcl="No (disabled)"
804 fi 809 fi
805  810
806-if test "x$use_tcl" == "x"; then 811-if test "x$use_tcl" == "x"; then
807+if test "x$use_tcl" = "x"; then 812+if test "x$use_tcl" = "x"; then
808 TCL_VERSION_FOUND=`echo 'puts [info tclversion]' | $TCLSH` 813 TCL_VERSION_FOUND=`echo 'puts [info tclversion]' | $TCLSH`
809  814
810 # can't assume ksh on all architectures 815 # can't assume ksh on all architectures
811@@ -23680,7 +23690,7 @@ fi 816@@ -23680,7 +23690,7 @@ fi
812 CPPFLAGS=$save_CPPFLAGS 817 CPPFLAGS=$save_CPPFLAGS
813 fi 818 fi
814  819
815-if test "x$use_tcl" == "x"; then 820-if test "x$use_tcl" == "x"; then
816+if test "x$use_tcl" = "x"; then 821+if test "x$use_tcl" = "x"; then
817 # Some systems don't have Tcl. Don't build 822 # Some systems don't have Tcl. Don't build
818 # the Tcl products if we don't have the library. 823 # the Tcl products if we don't have the library.
819 if test -f ${TCLSH_EXEC_PREFIX}/lib${LIBPOSTFIX}/tcl${TCL_VERSION_FOUND}/tclConfig.sh; then 824 if test -f ${TCLSH_EXEC_PREFIX}/lib${LIBPOSTFIX}/tcl${TCL_VERSION_FOUND}/tclConfig.sh; then
820@@ -23707,9 +23717,9 @@ $as_echo "$as_me: WARNING: Unable to fin 825@@ -23707,9 +23717,9 @@ $as_echo "$as_me: WARNING: Unable to fin
821 TCL_INSTALL_DIR="${TCLSH_EXEC_PREFIX}/lib${LIBPOSTFIX}/tcl${TCL_VERSION_FOUND}" 826 TCL_INSTALL_DIR="${TCLSH_EXEC_PREFIX}/lib${LIBPOSTFIX}/tcl${TCL_VERSION_FOUND}"
822 fi 827 fi
823  828
824-if test "x$use_tcl" == "x"; then 829-if test "x$use_tcl" == "x"; then
825+if test "x$use_tcl" = "x"; then 830+if test "x$use_tcl" = "x"; then
826 # TCL STUBS support is required 831 # TCL STUBS support is required
827- if test "x${TCL_SUPPORTS_STUBS}" == "x1"; then 832- if test "x${TCL_SUPPORTS_STUBS}" == "x1"; then
828+ if test "x${TCL_SUPPORTS_STUBS}" = "x1"; then 833+ if test "x${TCL_SUPPORTS_STUBS}" = "x1"; then
829 use_tcl="Yes" 834 use_tcl="Yes"
830 TCL_CFLAGS="${TCL_CFLAGS} -DUSE_TCL_STUBS" 835 TCL_CFLAGS="${TCL_CFLAGS} -DUSE_TCL_STUBS"
831  836
832@@ -23726,7 +23736,7 @@ fi 837@@ -23726,7 +23736,7 @@ fi
833  838
834  839
835  840
836- if test "x$use_tcl" == "xYes"; then 841- if test "x$use_tcl" == "xYes"; then
837+ if test "x$use_tcl" = "xYes"; then 842+ if test "x$use_tcl" = "xYes"; then
838 WITH_TCL_TRUE= 843 WITH_TCL_TRUE=
839 WITH_TCL_FALSE='#' 844 WITH_TCL_FALSE='#'
840 else 845 else
841@@ -23795,14 +23805,14 @@ $as_echo "$as_me: WARNING: No Tcl. The T 846@@ -23795,14 +23805,14 @@ $as_echo "$as_me: WARNING: No Tcl. The T
842 use_tk="No (no tcl)" 847 use_tk="No (no tcl)"
843 fi 848 fi
844  849
845-if test "x$use_tk" == "x"; then 850-if test "x$use_tk" == "x"; then
846+if test "x$use_tk" = "x"; then 851+if test "x$use_tk" = "x"; then
847  852
848 # Check whether --with-wish was given. 853 # Check whether --with-wish was given.
849 if test "${with_wish+set}" = set; then : 854 if test "${with_wish+set}" = set; then :
850 withval=$with_wish; WISH=$withval 855 withval=$with_wish; WISH=$withval
851 fi 856 fi
852  857
853- if test "x$WISH" == "x"; then 858- if test "x$WISH" == "x"; then
854+ if test "x$WISH" = "x"; then 859+ if test "x$WISH" = "x"; then
855 for ac_prog in wish8.6 wish8.5 wish8.4 wish8.3 wish 860 for ac_prog in wish8.6 wish8.5 wish8.4 wish8.3 wish
856 do 861 do
857 # Extract the first word of "$ac_prog", so it can be a program name with args. 862 # Extract the first word of "$ac_prog", so it can be a program name with args.
858@@ -23848,7 +23858,7 @@ fi 863@@ -23848,7 +23858,7 @@ fi
859 test -n "$WISH" && break 864 test -n "$WISH" && break
860 done 865 done
861  866
862- if test "x$WISH" == "x"; then 867- if test "x$WISH" == "x"; then
863+ if test "x$WISH" = "x"; then 868+ if test "x$WISH" = "x"; then
864 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to find a wish. The Tk packages will not be built" >&5 869 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to find a wish. The Tk packages will not be built" >&5
865 $as_echo "$as_me: WARNING: Unable to find a wish. The Tk packages will not be built" >&2;} 870 $as_echo "$as_me: WARNING: Unable to find a wish. The Tk packages will not be built" >&2;}
866 use_tk="No (wish not found)" 871 use_tk="No (wish not found)"
867@@ -23856,7 +23866,7 @@ $as_echo "$as_me: WARNING: Unable to fin 872@@ -23856,7 +23866,7 @@ $as_echo "$as_me: WARNING: Unable to fin
868 fi 873 fi
869 fi 874 fi
870  875
871-if test "x$use_tk" == "x"; then 876-if test "x$use_tk" == "x"; then
872+if test "x$use_tk" = "x"; then 877+if test "x$use_tk" = "x"; then
873 #TK_VERSION_FOUND=`echo 'puts [[info tkversion]]' | $WISH` 878 #TK_VERSION_FOUND=`echo 'puts [[info tkversion]]' | $WISH`
874 # 879 #
875 # No such var as tkversion. Use tclversion instead. 880 # No such var as tkversion. Use tclversion instead.
876@@ -23908,7 +23918,7 @@ done 881@@ -23908,7 +23918,7 @@ done
877 CPPFLAGS=$save_CPPFLAGS 882 CPPFLAGS=$save_CPPFLAGS
878 fi 883 fi
879  884
880-if test "x$use_tk" == "x"; then 885-if test "x$use_tk" == "x"; then
881+if test "x$use_tk" = "x"; then 886+if test "x$use_tk" = "x"; then
882 # Some systems don't have Tcl. Don't build 887 # Some systems don't have Tcl. Don't build
883 # Some systems have Tcl, but not Tk. Don't build 888 # Some systems have Tcl, but not Tk. Don't build
884 # the Tk products if we don't have the library. 889 # the Tk products if we don't have the library.
885@@ -23935,13 +23945,13 @@ $as_echo "$as_me: WARNING: Unable to fin 890@@ -23935,13 +23945,13 @@ $as_echo "$as_me: WARNING: Unable to fin
886 fi 891 fi
887 fi 892 fi
888  893
889-if test "x$use_tk" == "x"; then 894-if test "x$use_tk" == "x"; then
890+if test "x$use_tk" = "x"; then 895+if test "x$use_tk" = "x"; then
891 use_tk="Yes" 896 use_tk="Yes"
892 TK_SUBDIRS="tkstubs tkspline" 897 TK_SUBDIRS="tkstubs tkspline"
893 else 898 else
894 TK_SUBDIRS="" 899 TK_SUBDIRS=""
895 fi 900 fi
896- if test "x$use_tk" == "xYes"; then 901- if test "x$use_tk" == "xYes"; then
897+ if test "x$use_tk" = "xYes"; then 902+ if test "x$use_tk" = "xYes"; then
898 WITH_TK_TRUE= 903 WITH_TK_TRUE=
899 WITH_TK_FALSE='#' 904 WITH_TK_FALSE='#'
900 else 905 else
901@@ -23951,7 +23961,7 @@ fi 906@@ -23951,7 +23961,7 @@ fi
902  907
903  908
904 # NB. No TK_SUPPORTS_STUBS set by tkConfig.sh 909 # NB. No TK_SUPPORTS_STUBS set by tkConfig.sh
905-if test "${TCL_SUPPORTS_STUBS}" == "1"; then 910-if test "${TCL_SUPPORTS_STUBS}" == "1"; then
906+if test "${TCL_SUPPORTS_STUBS}" = "1"; then 911+if test "${TCL_SUPPORTS_STUBS}" = "1"; then
907 TK_CFLAGS="${TK_CFLAGS} -DUSE_TK_STUBS" 912 TK_CFLAGS="${TK_CFLAGS} -DUSE_TK_STUBS"
908 fi 913 fi
909  914
910@@ -24005,7 +24015,7 @@ else 915@@ -24005,7 +24015,7 @@ else
911 tk_checkSocket=1 916 tk_checkSocket=1
912 fi 917 fi
913  918
914-if test "$tk_checkSocket" == 1; then 919-if test "$tk_checkSocket" == 1; then
915+if test "$tk_checkSocket" = 1; then 920+if test "$tk_checkSocket" = 1; then
916 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lsocket" >&5 921 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lsocket" >&5
917 $as_echo_n "checking for main in -lsocket... " >&6; } 922 $as_echo_n "checking for main in -lsocket... " >&6; }
918 if ${ac_cv_lib_socket_main+:} false; then : 923 if ${ac_cv_lib_socket_main+:} false; then :
919@@ -24043,7 +24053,7 @@ else 924@@ -24043,7 +24053,7 @@ else
920 fi 925 fi
921  926
922 fi 927 fi
923-if test "$tk_checkBoth" == 1; then 928-if test "$tk_checkBoth" == 1; then
924+if test "$tk_checkBoth" = 1; then 929+if test "$tk_checkBoth" = 1; then
925 tk_oldLibs=$LIBS 930 tk_oldLibs=$LIBS
926 LIBS="$LIBS -lsocket -lnsl" 931 LIBS="$LIBS -lsocket -lnsl"
927 ac_fn_c_check_func "$LINENO" "accept" "ac_cv_func_accept" 932 ac_fn_c_check_func "$LINENO" "accept" "ac_cv_func_accept"
928@@ -24239,7 +24249,7 @@ fi 933@@ -24239,7 +24249,7 @@ fi
929 LDFLAGS=$save_LDFLAGS 934 LDFLAGS=$save_LDFLAGS
930 CPPFLAGS=$save_CPPFLAGS 935 CPPFLAGS=$save_CPPFLAGS
931 fi 936 fi
932-if test "x$use_expat" == "x"; then 937-if test "x$use_expat" == "x"; then
933+if test "x$use_expat" = "x"; then 938+if test "x$use_expat" = "x"; then
934 use_expat="Yes" 939 use_expat="Yes"
935  940
936 cat >>confdefs.h <<_ACEOF 941 cat >>confdefs.h <<_ACEOF
937@@ -24338,7 +24348,7 @@ fi 942@@ -24338,7 +24348,7 @@ fi
938 LDFLAGS=$save_LDFLAGS 943 LDFLAGS=$save_LDFLAGS
939 CPPFLAGS=$save_CPPFLAGS 944 CPPFLAGS=$save_CPPFLAGS
940 fi 945 fi
941-if test "x$use_devil" == "x"; then 946-if test "x$use_devil" == "x"; then
942+if test "x$use_devil" = "x"; then 947+if test "x$use_devil" = "x"; then
943 use_devil="Yes" 948 use_devil="Yes"
944  949
945 cat >>confdefs.h <<_ACEOF 950 cat >>confdefs.h <<_ACEOF
946@@ -24349,7 +24359,7 @@ _ACEOF 951@@ -24349,7 +24359,7 @@ _ACEOF
947  952
948 fi 953 fi
949  954
950- if test "x$use_devil" == "xYes"; then 955- if test "x$use_devil" == "xYes"; then
951+ if test "x$use_devil" = "xYes"; then 956+ if test "x$use_devil" = "xYes"; then
952 WITH_DEVIL_TRUE= 957 WITH_DEVIL_TRUE=
953 WITH_DEVIL_FALSE='#' 958 WITH_DEVIL_FALSE='#'
954 else 959 else
955@@ -24531,7 +24541,7 @@ else 960@@ -24531,7 +24541,7 @@ else
956 WITH_XAW_FALSE= 961 WITH_XAW_FALSE=
957 fi 962 fi
958  963
959-if test "x$with_xaw" == "xno"; then 964-if test "x$with_xaw" == "xno"; then
960+if test "x$with_xaw" = "xno"; then 965+if test "x$with_xaw" = "xno"; then
961 if test "x$no_x" != "xyes"; then 966 if test "x$no_x" != "xyes"; then
962 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Lefty cannot be built" >&5 967 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Lefty cannot be built" >&5
963 $as_echo "$as_me: WARNING: Lefty cannot be built" >&2;} 968 $as_echo "$as_me: WARNING: Lefty cannot be built" >&2;}
964@@ -24719,7 +24729,7 @@ _ACEOF 969@@ -24719,7 +24729,7 @@ _ACEOF
965  970
966 fi 971 fi
967 fi 972 fi
968- if test "x$use_webp" == "xYes"; then 973- if test "x$use_webp" == "xYes"; then
969+ if test "x$use_webp" = "xYes"; then 974+ if test "x$use_webp" = "xYes"; then
970 WITH_WEBP_TRUE= 975 WITH_WEBP_TRUE=
971 WITH_WEBP_FALSE='#' 976 WITH_WEBP_FALSE='#'
972 else 977 else
973@@ -24824,7 +24834,7 @@ _ACEOF 978@@ -24824,7 +24834,7 @@ _ACEOF
974  979
975 fi 980 fi
976 fi 981 fi
977- if test "x$use_poppler" == "xYes"; then 982- if test "x$use_poppler" == "xYes"; then
978+ if test "x$use_poppler" = "xYes"; then 983+ if test "x$use_poppler" = "xYes"; then
979 WITH_POPPLER_TRUE= 984 WITH_POPPLER_TRUE=
980 WITH_POPPLER_FALSE='#' 985 WITH_POPPLER_FALSE='#'
981 else 986 else
982@@ -24929,7 +24939,7 @@ _ACEOF 987@@ -24929,7 +24939,7 @@ _ACEOF
983  988
984 fi 989 fi
985 fi 990 fi
986- if test "x$use_rsvg" == "xYes"; then 991- if test "x$use_rsvg" == "xYes"; then
987+ if test "x$use_rsvg" = "xYes"; then 992+ if test "x$use_rsvg" = "xYes"; then
988 WITH_RSVG_TRUE= 993 WITH_RSVG_TRUE=
989 WITH_RSVG_FALSE='#' 994 WITH_RSVG_FALSE='#'
990 else 995 else
991@@ -24962,7 +24972,7 @@ else 996@@ -24962,7 +24972,7 @@ else
992 fi 997 fi
993  998
994  999
995- if test "x$use_ghostscript" == "x"; then 1000- if test "x$use_ghostscript" == "x"; then
996+ if test "x$use_ghostscript" = "x"; then 1001+ if test "x$use_ghostscript" = "x"; then
997 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lgs" >&5 1002 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lgs" >&5
998 $as_echo_n "checking for main in -lgs... " >&6; } 1003 $as_echo_n "checking for main in -lgs... " >&6; }
999 if ${ac_cv_lib_gs_main+:} false; then : 1004 if ${ac_cv_lib_gs_main+:} false; then :
1000@@ -24999,7 +25009,7 @@ else 1005@@ -24999,7 +25009,7 @@ else