~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to debian/patches/070_mandatory-relibtoolize.patch

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-05-04 12:24:25 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20070504122425-0m8midgzrp40y8w2
Tags: 2.10.12-1ubuntu1
* Sync with Debian
* New upstream version:
  Fixed bugs:
  - 379414 file chooser warnings when changing path in the entry
  - 418585 GtkFileChooserDefault sizing code is not DPI independent
  - 419568 Crash in search if start with special letter
  - 435062 build dies with icon cache validation
  - 379399 Segfault to call gtk_print_operation_run twice.
  - 387889 cups backend has problems when there are too many printers
  - 418531 invalid read to gtkicontheme.c gtk_icon_theme_lookup_icon...
  - 423916 crash in color scheme code
  - 424042 Segmentation fault while quickly pressing Alt+arrows
  - 415260 Protect against negative indices when setting values in G...
  - 419171 XGetVisualInfo() may not set nxvisuals
  - 128852 Gdk cursors don't look good on win32
  - 344657 Ctrl-H doesn't toggle "Show Hidden Files" setting
  - 345345 PrintOperation::paginate is not emitted for class handler
  - 347567 GtkPrintOperation::end-print is not emitted if it's cance...
  - 369112 gtk_ui_manager_add_ui should accept unnamed separator
  - 392015 Selected menu item invisible on Windows Vista
  - 399253 MS-Windows Theme Bottom Tab placement rendering glitches
  - 399425 gtk_input_dialog_fill_axes() adds child to gtkscrolledwin...
  - 403251 [patch] little memory leak in GtkPrintJob
  - 403267 [patch] memory leak in GtkPageSetupUnixDialog
  - 403470 MS-Windows Theme tab placement other than on top leaks a ...
  - 404506 Windows system fonts that have multi-byte font names cann...
  - 405089 Incorrect window placement for GtkEventBox private window
  - 405515 Minor leak in gtkfilesystemmodel.c
  - 405539 gdk_pixbuf_save() for PNG saver can return FALSE without ...
  - 415681 gdk_window_clear_area includes an extra line and column o...
  - 418219 GtkRecentChooser should apply filter before sorting and c...
  - 418403 Scroll to printer after selecting it from settings
  - 421985 _gtk_print_operation_platform_backend_launch_preview
  - 421990 gtk_print_job_get_surface
  - 421993 gtk_print_operation_init
  - 423064 Conditional jump or move depends on uninitialised value(s...
  - 423722 Fix printing header in gtk-demo
  - 424168 gtk_print_operation_run on async preview
  - 425655 Don't install gtk+-unix-print-2.0.pc on non-UNIX platforms
  - 425786 GDK segfaults if XineramaQueryScreens fails
  - 428665 Lpr Backend gets stuck in infinite loop during gtk_enumer...
  - 429902 GtkPrintOperation leaks cairo contextes
  - 431997 First delay of GdkPixbufAnimationIter is wrong
  - 433242 Inconsistent scroll arrow position calculations
  - 433972 Placing gtk.Expander inside a gtk.TextView() changes gtk....
  - 434261 _gtk_toolbar_elide_underscores incorrectly handles some s...
  - 383354 ctrl-L should make 'Location' entry disappear
  - 418673 gtk_recent_manager_add_item
  - 429732 gtk_accel_group_finalize accesses invalid memory
  - 435028 WM_CLIENT_LEADER is wrong on the leader_window
  - 431067 Background of the header window is not updated
  - 338843 add recent files support inside the ui manager
  - 148535 add drop shadow to menus, tooltips, etc. under Windows XP
* debian/control.in:
  - Conflicts on ubuntulooks (<= 0.9.11-1)
* debian/patches/15_default-fallback-icon-theme.patch:
  - patch from Debian, fallback on gnome icon theme

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Classical relibtoolizing patch generated with:
 
2
libtoolize --force --copy
 
3
aclocal-1.7 -I m4macros
 
4
autoconf
 
5
automake-1.7
 
6
rm -rf autom4te.cache
 
7
exclude config.guess and sub with diff -urN -x config.guess -x config.sub
 
8
 
 
9
diff -urN gtk+2.0-2.10.12.orig/Makefile.in gtk+2.0-2.10.12/Makefile.in
 
10
--- gtk+2.0-2.10.12.orig/Makefile.in    2007-05-02 18:41:49.000000000 +0200
 
11
+++ gtk+2.0-2.10.12/Makefile.in 2007-05-03 15:11:23.000000000 +0200
 
12
@@ -90,6 +90,8 @@
 
13
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
14
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
15
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
16
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
17
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
18
 EXEEXT = @EXEEXT@
 
19
 F77 = @F77@
 
20
 FFLAGS = @FFLAGS@
 
21
@@ -296,7 +298,10 @@
 
22
 sysconfdir = @sysconfdir@
 
23
 target_alias = @target_alias@
 
24
 
 
25
-SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests perf contrib
 
26
+# don't build perf measurement tools in static builds
 
27
+@ENABLE_STATIC_FALSE@MAYBE_PERF = perf
 
28
+
 
29
+SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests $(MAYBE_PERF) contrib
 
30
 SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros
 
31
 
 
32
 # require automake 1.4
 
33
@@ -453,7 +458,8 @@
 
34
        gtk+-2.0-uninstalled.pc.in gtk+-2.0.pc.in \
 
35
        gtk+-unix-print-2.0.pc.in gtk-zip.sh.in install-sh ltmain.sh \
 
36
        missing mkinstalldirs
 
37
-DIST_SUBDIRS = $(SUBDIRS)
 
38
+DIST_SUBDIRS = po po-properties gdk-pixbuf gdk gtk modules demos tests \
 
39
+       perf contrib docs m4macros
 
40
 all: config.h
 
41
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
42
 
 
43
@@ -705,7 +711,7 @@
 
44
            || exit 1; \
 
45
          fi; \
 
46
        done
 
47
-       list='$(SUBDIRS)'; for subdir in $$list; do \
 
48
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
49
          if test "$$subdir" = .; then :; else \
 
50
            test -d $(distdir)/$$subdir \
 
51
            || mkdir $(distdir)/$$subdir \
 
52
diff -urN gtk+2.0-2.10.12.orig/aclocal.m4 gtk+2.0-2.10.12/aclocal.m4
 
53
--- gtk+2.0-2.10.12.orig/aclocal.m4     2007-05-02 18:28:34.000000000 +0200
 
54
+++ gtk+2.0-2.10.12/aclocal.m4  2007-05-03 15:11:17.000000000 +0200
 
55
@@ -941,7 +941,7 @@
 
56
 
 
57
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 
58
 
 
59
-# serial 48 AC_PROG_LIBTOOL
 
60
+# serial 48 Debian 1.5.22-4 AC_PROG_LIBTOOL
 
61
 
 
62
 
 
63
 # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
 
64
@@ -2325,18 +2325,6 @@
 
65
   dynamic_linker=no
 
66
   ;;
 
67
 
 
68
-kfreebsd*-gnu)
 
69
-  version_type=linux
 
70
-  need_lib_prefix=no
 
71
-  need_version=no
 
72
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
73
-  soname_spec='${libname}${release}${shared_ext}$major'
 
74
-  shlibpath_var=LD_LIBRARY_PATH
 
75
-  shlibpath_overrides_runpath=no
 
76
-  hardcode_into_libs=yes
 
77
-  dynamic_linker='GNU ld.so'
 
78
-  ;;
 
79
-
 
80
 freebsd* | dragonfly*)
 
81
   # DragonFly does not have aout.  When/if they implement a new
 
82
   # versioning mechanism, adjust this.
 
83
@@ -2492,7 +2480,7 @@
 
84
   ;;
 
85
 
 
86
 # This must be Linux ELF.
 
87
-linux*)
 
88
+linux* | k*bsd*-gnu)
 
89
   version_type=linux
 
90
   need_lib_prefix=no
 
91
   need_version=no
 
92
@@ -2506,27 +2494,10 @@
 
93
   # before this can be enabled.
 
94
   hardcode_into_libs=yes
 
95
 
 
96
-  # find out which ABI we are using
 
97
-  libsuff=
 
98
-  case "$host_cpu" in
 
99
-  x86_64*|s390x*|powerpc64*)
 
100
-    echo '[#]line __oline__ "configure"' > conftest.$ac_ext
 
101
-    if AC_TRY_EVAL(ac_compile); then
 
102
-      case `/usr/bin/file conftest.$ac_objext` in
 
103
-      *64-bit*)
 
104
-        libsuff=64
 
105
-        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
 
106
-        ;;
 
107
-      esac
 
108
-    fi
 
109
-    rm -rf conftest*
 
110
-    ;;
 
111
-  esac
 
112
-
 
113
   # Append ld.so.conf contents to the search path
 
114
   if test -f /etc/ld.so.conf; then
 
115
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,   ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
116
-    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
 
117
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
118
   fi
 
119
 
 
120
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
121
@@ -2538,7 +2509,7 @@
 
122
   dynamic_linker='GNU/Linux ld.so'
 
123
   ;;
 
124
 
 
125
-knetbsd*-gnu)
 
126
+netbsdelf*-gnu)
 
127
   version_type=linux
 
128
   need_lib_prefix=no
 
129
   need_version=no
 
130
@@ -2547,7 +2518,7 @@
 
131
   shlibpath_var=LD_LIBRARY_PATH
 
132
   shlibpath_overrides_runpath=no
 
133
   hardcode_into_libs=yes
 
134
-  dynamic_linker='GNU ld.so'
 
135
+  dynamic_linker='NetBSD ld.elf_so'
 
136
   ;;
 
137
 
 
138
 netbsd*)
 
139
@@ -3255,7 +3226,7 @@
 
140
   lt_cv_deplibs_check_method=pass_all
 
141
   ;;
 
142
 
 
143
-freebsd* | kfreebsd*-gnu | dragonfly*)
 
144
+freebsd* | dragonfly*)
 
145
   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
146
     case $host_cpu in
 
147
     i*86 )
 
148
@@ -3309,11 +3280,11 @@
 
149
   ;;
 
150
 
 
151
 # This must be Linux ELF.
 
152
-linux*)
 
153
+linux* | k*bsd*-gnu)
 
154
   lt_cv_deplibs_check_method=pass_all
 
155
   ;;
 
156
 
 
157
-netbsd*)
 
158
+netbsd* | netbsdelf*-gnu)
 
159
   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
160
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
161
   else
 
162
@@ -4061,7 +4032,7 @@
 
163
   freebsd-elf*)
 
164
     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
165
     ;;
 
166
-  freebsd* | kfreebsd*-gnu | dragonfly*)
 
167
+  freebsd* | dragonfly*)
 
168
     # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
 
169
     # conventions
 
170
     _LT_AC_TAGVAR(ld_shlibs, $1)=yes
 
171
@@ -4220,7 +4191,7 @@
 
172
     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
 
173
     _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
 
174
     ;;
 
175
-  linux*)
 
176
+  linux* | k*bsd*-gnu)
 
177
     case $cc_basename in
 
178
       KCC*)
 
179
        # Kuck and Associates, Inc. (KAI) C++ Compiler
 
180
@@ -4322,7 +4293,7 @@
 
181
        ;;
 
182
     esac
 
183
     ;;
 
184
-  netbsd*)
 
185
+  netbsd* | netbsdelf*-gnu)
 
186
     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
187
       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
 
188
       wlarc=
 
189
@@ -5587,7 +5558,7 @@
 
190
   lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
191
   lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
 
192
   ;;
 
193
-linux*)
 
194
+linux* | k*bsd*-gnu)
 
195
   if test "$host_cpu" = ia64; then
 
196
     symcode='[[ABCDGIRSTW]]'
 
197
     lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
198
@@ -5860,7 +5831,7 @@
 
199
            ;;
 
200
        esac
 
201
        ;;
 
202
-      freebsd* | kfreebsd*-gnu | dragonfly*)
 
203
+      freebsd* | dragonfly*)
 
204
        # FreeBSD uses GNU C++
 
205
        ;;
 
206
       hpux9* | hpux10* | hpux11*)
 
207
@@ -5903,7 +5874,7 @@
 
208
            ;;
 
209
        esac
 
210
        ;;
 
211
-      linux*)
 
212
+      linux* | k*bsd*-gnu)
 
213
        case $cc_basename in
 
214
          KCC*)
 
215
            # KAI C++ Compiler
 
216
@@ -5946,7 +5917,7 @@
 
217
            ;;
 
218
        esac
 
219
        ;;
 
220
-      netbsd*)
 
221
+      netbsd* | netbsdelf*-gnu)
 
222
        ;;
 
223
       osf3* | osf4* | osf5*)
 
224
        case $cc_basename in
 
225
@@ -6157,7 +6128,7 @@
 
226
       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
227
       ;;
 
228
 
 
229
-    linux*)
 
230
+    linux* | k*bsd*-gnu)
 
231
       case $cc_basename in
 
232
       icc* | ecc*)
 
233
        _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
234
@@ -6298,6 +6269,9 @@
 
235
   cygwin* | mingw*)
 
236
     _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols'
 
237
   ;;
 
238
+  linux* | k*bsd*-gnu)
 
239
+    _LT_AC_TAGVAR(link_all_deplibs, $1)=no
 
240
+  ;;
 
241
   *)
 
242
     _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
243
   ;;
 
244
@@ -6468,7 +6442,7 @@
 
245
       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
246
       ;;
 
247
 
 
248
-    linux*)
 
249
+    linux* | k*bsd*-gnu)
 
250
       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
251
        tmp_addflag=
 
252
        case $cc_basename,$host_cpu in
 
253
@@ -6494,12 +6468,13 @@
 
254
   $echo "local: *; };" >> $output_objdir/$libname.ver~
 
255
          $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
256
        fi
 
257
+       _LT_AC_TAGVAR(link_all_deplibs, $1)=no
 
258
       else
 
259
        _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
260
       fi
 
261
       ;;
 
262
 
 
263
-    netbsd*)
 
264
+    netbsd* | netbsdelf*-gnu)
 
265
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
266
        _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
267
        wlarc=
 
268
@@ -6829,7 +6804,7 @@
 
269
       ;;
 
270
 
 
271
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
272
-    freebsd* | kfreebsd*-gnu | dragonfly*)
 
273
+    freebsd* | dragonfly*)
 
274
       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
275
       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
 
276
       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
277
@@ -6931,7 +6906,7 @@
 
278
       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
279
       ;;
 
280
 
 
281
-    netbsd*)
 
282
+    netbsd* | netbsdelf*-gnu)
 
283
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
284
        _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
285
       else
 
286
@@ -7650,7 +7625,8 @@
 
287
 
 
288
 _PKG_TEXT
 
289
 ])],
 
290
-               [$4])
 
291
+               [AC_MSG_RESULT([no])
 
292
+                $4])
 
293
 elif test $pkg_failed = untried; then
 
294
        ifelse([$4], , [AC_MSG_FAILURE(dnl
 
295
 [The pkg-config script could not be found or is too old.  Make sure it
 
296
@@ -8323,22 +8299,22 @@
 
297
   AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
 
298
   AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
 
299
   dnl for overriding the documentation installation directory
 
300
-  AC_ARG_WITH(html-dir,
 
301
-    AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
 
302
+  AC_ARG_WITH([html-dir],
 
303
+    AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
 
304
     [with_html_dir='${datadir}/gtk-doc/html'])
 
305
   HTML_DIR="$with_html_dir"
 
306
-  AC_SUBST(HTML_DIR)
 
307
+  AC_SUBST([HTML_DIR])
 
308
 
 
309
   dnl enable/disable documentation building
 
310
-  AC_ARG_ENABLE(gtk-doc,
 
311
-    AC_HELP_STRING([--enable-gtk-doc],
 
312
-                   [use gtk-doc to build documentation [default=no]]),,
 
313
-    enable_gtk_doc=no)
 
314
+  AC_ARG_ENABLE([gtk-doc],
 
315
+    AS_HELP_STRING([--enable-gtk-doc],
 
316
+                   [use gtk-doc to build documentation [[default=no]]]),,
 
317
+    [enable_gtk_doc=no])
 
318
 
 
319
   have_gtk_doc=no
 
320
   if test x$enable_gtk_doc = xyes; then
 
321
     if test -z "$PKG_CONFIG"; then
 
322
-      AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
 
323
+      AC_PATH_PROG([PKG_CONFIG], [pkg-config], [no])
 
324
     fi
 
325
     if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
 
326
       have_gtk_doc=yes
 
327
@@ -8350,9 +8326,9 @@
 
328
     if test "$have_gtk_doc" = yes; then
 
329
       AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
 
330
       if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
 
331
-        AC_MSG_RESULT(yes)
 
332
+        AC_MSG_RESULT([yes])
 
333
       else
 
334
-        AC_MSG_RESULT(no)
 
335
+        AC_MSG_RESULT([no])
 
336
         have_gtk_doc=no
 
337
       fi
 
338
     fi
 
339
@@ -8362,7 +8338,7 @@
 
340
     fi
 
341
   fi
 
342
 
 
343
-  AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
 
344
-  AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
 
345
+  AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
 
346
+  AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
 
347
 ])
 
348
 
 
349
diff -urN gtk+2.0-2.10.12.orig/configure gtk+2.0-2.10.12/configure
 
350
--- gtk+2.0-2.10.12.orig/configure      2007-05-02 18:28:50.000000000 +0200
 
351
+++ gtk+2.0-2.10.12/configure   2007-05-03 15:11:22.000000000 +0200
 
352
@@ -1,6 +1,6 @@
 
353
 #! /bin/sh
 
354
 # Guess values for system-dependent variables and create Makefiles.
 
355
-# Generated by GNU Autoconf 2.60 for gtk+ 2.10.12.
 
356
+# Generated by GNU Autoconf 2.61 for gtk+ 2.10.12.
 
357
 #
 
358
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B>.
 
359
 #
 
360
@@ -12,7 +12,8 @@
 
361
 ## M4sh Initialization.  ##
 
362
 ## --------------------- ##
 
363
 
 
364
-# Be Bourne compatible
 
365
+# Be more Bourne compatible
 
366
+DUALCASE=1; export DUALCASE # for MKS sh
 
367
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
368
   emulate sh
 
369
   NULLCMD=:
 
370
@@ -21,10 +22,13 @@
 
371
   alias -g '${1+"$@"}'='"$@"'
 
372
   setopt NO_GLOB_SUBST
 
373
 else
 
374
-  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
 
375
+  case `(set -o) 2>/dev/null` in
 
376
+  *posix*) set -o posix ;;
 
377
+esac
 
378
+
 
379
 fi
 
380
-BIN_SH=xpg4; export BIN_SH # for Tru64
 
381
-DUALCASE=1; export DUALCASE # for MKS sh
 
382
+
 
383
+
 
384
 
 
385
 
 
386
 # PATH needs CR
 
387
@@ -217,7 +221,7 @@
 
388
 else
 
389
   as_candidate_shells=
 
390
     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
391
-for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
392
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
393
 do
 
394
   IFS=$as_save_IFS
 
395
   test -z "$as_dir" && as_dir=.
 
396
@@ -235,7 +239,6 @@
 
397
         # Try only shells that exist, to save several forks.
 
398
         if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 
399
                { ("$as_shell") 2> /dev/null <<\_ASEOF
 
400
-# Be Bourne compatible
 
401
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
402
   emulate sh
 
403
   NULLCMD=:
 
404
@@ -244,10 +247,12 @@
 
405
   alias -g '${1+"$@"}'='"$@"'
 
406
   setopt NO_GLOB_SUBST
 
407
 else
 
408
-  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
 
409
+  case `(set -o) 2>/dev/null` in
 
410
+  *posix*) set -o posix ;;
 
411
+esac
 
412
+
 
413
 fi
 
414
-BIN_SH=xpg4; export BIN_SH # for Tru64
 
415
-DUALCASE=1; export DUALCASE # for MKS sh
 
416
+
 
417
 
 
418
 :
 
419
 _ASEOF
 
420
@@ -255,7 +260,6 @@
 
421
   CONFIG_SHELL=$as_shell
 
422
               as_have_required=yes
 
423
               if { "$as_shell" 2> /dev/null <<\_ASEOF
 
424
-# Be Bourne compatible
 
425
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
426
   emulate sh
 
427
   NULLCMD=:
 
428
@@ -264,10 +268,12 @@
 
429
   alias -g '${1+"$@"}'='"$@"'
 
430
   setopt NO_GLOB_SUBST
 
431
 else
 
432
-  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
 
433
+  case `(set -o) 2>/dev/null` in
 
434
+  *posix*) set -o posix ;;
 
435
+esac
 
436
+
 
437
 fi
 
438
-BIN_SH=xpg4; export BIN_SH # for Tru64
 
439
-DUALCASE=1; export DUALCASE # for MKS sh
 
440
+
 
441
 
 
442
 :
 
443
 (as_func_return () {
 
444
@@ -514,19 +520,28 @@
 
445
   as_mkdir_p=false
 
446
 fi
 
447
 
 
448
-# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
 
449
-# systems may use methods other than mode bits to determine executability.
 
450
-cat >conf$$.file <<_ASEOF
 
451
-#! /bin/sh
 
452
-exit 0
 
453
-_ASEOF
 
454
-chmod +x conf$$.file
 
455
-if test -x conf$$.file >/dev/null 2>&1; then
 
456
-  as_executable_p="test -x"
 
457
+if test -x / >/dev/null 2>&1; then
 
458
+  as_test_x='test -x'
 
459
 else
 
460
-  as_executable_p=:
 
461
+  if ls -dL / >/dev/null 2>&1; then
 
462
+    as_ls_L_option=L
 
463
+  else
 
464
+    as_ls_L_option=
 
465
+  fi
 
466
+  as_test_x='
 
467
+    eval sh -c '\''
 
468
+      if test -d "$1"; then
 
469
+        test -d "$1/.";
 
470
+      else
 
471
+       case $1 in
 
472
+        -*)set "./$1";;
 
473
+       esac;
 
474
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
475
+       ???[sx]*):;;*)false;;esac;fi
 
476
+    '\'' sh
 
477
+  '
 
478
 fi
 
479
-rm -f conf$$.file
 
480
+as_executable_p=$as_test_x
 
481
 
 
482
 # Sed expression to map a string onto a valid CPP name.
 
483
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
484
@@ -721,36 +736,36 @@
 
485
 # Factoring default headers for most tests.
 
486
 ac_includes_default="\
 
487
 #include <stdio.h>
 
488
-#if HAVE_SYS_TYPES_H
 
489
+#ifdef HAVE_SYS_TYPES_H
 
490
 # include <sys/types.h>
 
491
 #endif
 
492
-#if HAVE_SYS_STAT_H
 
493
+#ifdef HAVE_SYS_STAT_H
 
494
 # include <sys/stat.h>
 
495
 #endif
 
496
-#if STDC_HEADERS
 
497
+#ifdef STDC_HEADERS
 
498
 # include <stdlib.h>
 
499
 # include <stddef.h>
 
500
 #else
 
501
-# if HAVE_STDLIB_H
 
502
+# ifdef HAVE_STDLIB_H
 
503
 #  include <stdlib.h>
 
504
 # endif
 
505
 #endif
 
506
-#if HAVE_STRING_H
 
507
-# if !STDC_HEADERS && HAVE_MEMORY_H
 
508
+#ifdef HAVE_STRING_H
 
509
+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
 
510
 #  include <memory.h>
 
511
 # endif
 
512
 # include <string.h>
 
513
 #endif
 
514
-#if HAVE_STRINGS_H
 
515
+#ifdef HAVE_STRINGS_H
 
516
 # include <strings.h>
 
517
 #endif
 
518
-#if HAVE_INTTYPES_H
 
519
+#ifdef HAVE_INTTYPES_H
 
520
 # include <inttypes.h>
 
521
 #endif
 
522
-#if HAVE_STDINT_H
 
523
+#ifdef HAVE_STDINT_H
 
524
 # include <stdint.h>
 
525
 #endif
 
526
-#if HAVE_UNISTD_H
 
527
+#ifdef HAVE_UNISTD_H
 
528
 # include <unistd.h>
 
529
 #endif"
 
530
 
 
531
@@ -848,6 +863,8 @@
 
532
 CCDEPMODE
 
533
 am__fastdepCC_TRUE
 
534
 am__fastdepCC_FALSE
 
535
+ENABLE_STATIC_TRUE
 
536
+ENABLE_STATIC_FALSE
 
537
 GREP
 
538
 EGREP
 
539
 LN_S
 
540
@@ -1020,6 +1037,7 @@
 
541
 CC
 
542
 CFLAGS
 
543
 LDFLAGS
 
544
+LIBS
 
545
 CPPFLAGS
 
546
 CPP
 
547
 CXX
 
548
@@ -1137,10 +1155,10 @@
 
549
   -disable-* | --disable-*)
 
550
     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
551
     # Reject names that are not valid shell variable names.
 
552
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
553
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
554
       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
555
    { (exit 1); exit 1; }; }
 
556
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
 
557
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
558
     eval enable_$ac_feature=no ;;
 
559
 
 
560
   -docdir | --docdir | --docdi | --doc | --do)
 
561
@@ -1156,10 +1174,10 @@
 
562
   -enable-* | --enable-*)
 
563
     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
564
     # Reject names that are not valid shell variable names.
 
565
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
566
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
567
       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
568
    { (exit 1); exit 1; }; }
 
569
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
 
570
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
571
     eval enable_$ac_feature=\$ac_optarg ;;
 
572
 
 
573
   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
574
@@ -1353,19 +1371,19 @@
 
575
   -with-* | --with-*)
 
576
     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
577
     # Reject names that are not valid shell variable names.
 
578
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
579
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
580
       { echo "$as_me: error: invalid package name: $ac_package" >&2
 
581
    { (exit 1); exit 1; }; }
 
582
-    ac_package=`echo $ac_package| sed 's/-/_/g'`
 
583
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
584
     eval with_$ac_package=\$ac_optarg ;;
 
585
 
 
586
   -without-* | --without-*)
 
587
     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
588
     # Reject names that are not valid shell variable names.
 
589
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
590
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
591
       { echo "$as_me: error: invalid package name: $ac_package" >&2
 
592
    { (exit 1); exit 1; }; }
 
593
-    ac_package=`echo $ac_package | sed 's/-/_/g'`
 
594
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
595
     eval with_$ac_package=no ;;
 
596
 
 
597
   --x)
 
598
@@ -1638,7 +1656,7 @@
 
599
                           [default=auto]
 
600
   --disable-glibtest      do not try to compile and run a test GLIB program
 
601
   --disable-modules       disable dynamic module loading
 
602
-  --enable-gtk-doc        use gtk-doc to build documentation default=no
 
603
+  --enable-gtk-doc        use gtk-doc to build documentation [default=no]
 
604
   --enable-man            regenerate man pages from Docbook [default=no]
 
605
 
 
606
 Optional Packages:
 
607
@@ -1668,6 +1686,7 @@
 
608
   CFLAGS      C compiler flags
 
609
   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
 
610
               nonstandard directory <lib dir>
 
611
+  LIBS        libraries to pass to the linker, e.g. -l<library>
 
612
   CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
 
613
               you have headers in a nonstandard directory <include dir>
 
614
   CPP         C preprocessor
 
615
@@ -1748,7 +1767,7 @@
 
616
 if $ac_init_version; then
 
617
   cat <<\_ACEOF
 
618
 gtk+ configure 2.10.12
 
619
-generated by GNU Autoconf 2.60
 
620
+generated by GNU Autoconf 2.61
 
621
 
 
622
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
623
 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
624
@@ -1762,7 +1781,7 @@
 
625
 running configure, to aid debugging if configure makes a mistake.
 
626
 
 
627
 It was created by gtk+ $as_me 2.10.12, which was
 
628
-generated by GNU Autoconf 2.60.  Invocation command line was
 
629
+generated by GNU Autoconf 2.61.  Invocation command line was
 
630
 
 
631
   $ $0 $@
 
632
 
 
633
@@ -2188,7 +2207,7 @@
 
634
     # by default.
 
635
     for ac_prog in ginstall scoinst install; do
 
636
       for ac_exec_ext in '' $ac_executable_extensions; do
 
637
-       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
638
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
639
          if test $ac_prog = install &&
 
640
            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
641
            # AIX install.  It has an incompatible calling convention.
 
642
@@ -2322,7 +2341,7 @@
 
643
   IFS=$as_save_IFS
 
644
   test -z "$as_dir" && as_dir=.
 
645
   for ac_exec_ext in '' $ac_executable_extensions; do
 
646
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
647
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
648
     ac_cv_prog_AWK="$ac_prog"
 
649
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
650
     break 2
 
651
@@ -2451,7 +2470,7 @@
 
652
   IFS=$as_save_IFS
 
653
   test -z "$as_dir" && as_dir=.
 
654
   for ac_exec_ext in '' $ac_executable_extensions; do
 
655
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
656
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
657
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
658
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
659
     break 2
 
660
@@ -2491,7 +2510,7 @@
 
661
   IFS=$as_save_IFS
 
662
   test -z "$as_dir" && as_dir=.
 
663
   for ac_exec_ext in '' $ac_executable_extensions; do
 
664
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
665
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
666
     ac_cv_prog_ac_ct_STRIP="strip"
 
667
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
668
     break 2
 
669
@@ -2732,7 +2751,7 @@
 
670
   IFS=$as_save_IFS
 
671
   test -z "$as_dir" && as_dir=.
 
672
   for ac_exec_ext in '' $ac_executable_extensions; do
 
673
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
674
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
675
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
676
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
677
     break 2
 
678
@@ -2772,7 +2791,7 @@
 
679
   IFS=$as_save_IFS
 
680
   test -z "$as_dir" && as_dir=.
 
681
   for ac_exec_ext in '' $ac_executable_extensions; do
 
682
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
683
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
684
     ac_cv_prog_ac_ct_CC="gcc"
 
685
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
686
     break 2
 
687
@@ -2829,7 +2848,7 @@
 
688
   IFS=$as_save_IFS
 
689
   test -z "$as_dir" && as_dir=.
 
690
   for ac_exec_ext in '' $ac_executable_extensions; do
 
691
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
692
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
693
     ac_cv_prog_CC="${ac_tool_prefix}cc"
 
694
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
695
     break 2
 
696
@@ -2870,7 +2889,7 @@
 
697
   IFS=$as_save_IFS
 
698
   test -z "$as_dir" && as_dir=.
 
699
   for ac_exec_ext in '' $ac_executable_extensions; do
 
700
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
701
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
702
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 
703
        ac_prog_rejected=yes
 
704
        continue
 
705
@@ -2928,7 +2947,7 @@
 
706
   IFS=$as_save_IFS
 
707
   test -z "$as_dir" && as_dir=.
 
708
   for ac_exec_ext in '' $ac_executable_extensions; do
 
709
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
710
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
711
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
712
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
713
     break 2
 
714
@@ -2972,7 +2991,7 @@
 
715
   IFS=$as_save_IFS
 
716
   test -z "$as_dir" && as_dir=.
 
717
   for ac_exec_ext in '' $ac_executable_extensions; do
 
718
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
719
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
720
     ac_cv_prog_ac_ct_CC="$ac_prog"
 
721
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
722
     break 2
 
723
@@ -3113,7 +3132,7 @@
 
724
 # in a Makefile.  We should not override ac_cv_exeext if it was cached,
 
725
 # so that the user can short-circuit this test for compilers unknown to
 
726
 # Autoconf.
 
727
-for ac_file in $ac_files
 
728
+for ac_file in $ac_files ''
 
729
 do
 
730
   test -f "$ac_file" || continue
 
731
   case $ac_file in
 
732
@@ -3141,6 +3160,12 @@
 
733
 test "$ac_cv_exeext" = no && ac_cv_exeext=
 
734
 
 
735
 else
 
736
+  ac_file=''
 
737
+fi
 
738
+
 
739
+{ echo "$as_me:$LINENO: result: $ac_file" >&5
 
740
+echo "${ECHO_T}$ac_file" >&6; }
 
741
+if test -z "$ac_file"; then
 
742
   echo "$as_me: failed program was:" >&5
 
743
 sed 's/^/| /' conftest.$ac_ext >&5
 
744
 
 
745
@@ -3152,8 +3177,6 @@
 
746
 fi
 
747
 
 
748
 ac_exeext=$ac_cv_exeext
 
749
-{ echo "$as_me:$LINENO: result: $ac_file" >&5
 
750
-echo "${ECHO_T}$ac_file" >&6; }
 
751
 
 
752
 # Check that the compiler produces executables we can run.  If not, either
 
753
 # the compiler is broken, or we cross compile.
 
754
@@ -3331,27 +3354,10 @@
 
755
   rm -f conftest.er1
 
756
   cat conftest.err >&5
 
757
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
758
-  (exit $ac_status); } &&
 
759
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
760
-  { (case "(($ac_try" in
 
761
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
762
-  *) ac_try_echo=$ac_try;;
 
763
-esac
 
764
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
765
-  (eval "$ac_try") 2>&5
 
766
-  ac_status=$?
 
767
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
768
-  (exit $ac_status); }; } &&
 
769
-        { ac_try='test -s conftest.$ac_objext'
 
770
-  { (case "(($ac_try" in
 
771
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
772
-  *) ac_try_echo=$ac_try;;
 
773
-esac
 
774
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
775
-  (eval "$ac_try") 2>&5
 
776
-  ac_status=$?
 
777
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
778
-  (exit $ac_status); }; }; then
 
779
+  (exit $ac_status); } && {
 
780
+        test -z "$ac_c_werror_flag" ||
 
781
+        test ! -s conftest.err
 
782
+       } && test -s conftest.$ac_objext; then
 
783
   ac_compiler_gnu=yes
 
784
 else
 
785
   echo "$as_me: failed program was:" >&5
 
786
@@ -3406,27 +3412,10 @@
 
787
   rm -f conftest.er1
 
788
   cat conftest.err >&5
 
789
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
790
-  (exit $ac_status); } &&
 
791
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
792
-  { (case "(($ac_try" in
 
793
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
794
-  *) ac_try_echo=$ac_try;;
 
795
-esac
 
796
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
797
-  (eval "$ac_try") 2>&5
 
798
-  ac_status=$?
 
799
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
800
-  (exit $ac_status); }; } &&
 
801
-        { ac_try='test -s conftest.$ac_objext'
 
802
-  { (case "(($ac_try" in
 
803
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
804
-  *) ac_try_echo=$ac_try;;
 
805
-esac
 
806
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
807
-  (eval "$ac_try") 2>&5
 
808
-  ac_status=$?
 
809
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
810
-  (exit $ac_status); }; }; then
 
811
+  (exit $ac_status); } && {
 
812
+        test -z "$ac_c_werror_flag" ||
 
813
+        test ! -s conftest.err
 
814
+       } && test -s conftest.$ac_objext; then
 
815
   ac_cv_prog_cc_g=yes
 
816
 else
 
817
   echo "$as_me: failed program was:" >&5
 
818
@@ -3461,27 +3450,10 @@
 
819
   rm -f conftest.er1
 
820
   cat conftest.err >&5
 
821
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
822
-  (exit $ac_status); } &&
 
823
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
824
-  { (case "(($ac_try" in
 
825
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
826
-  *) ac_try_echo=$ac_try;;
 
827
-esac
 
828
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
829
-  (eval "$ac_try") 2>&5
 
830
-  ac_status=$?
 
831
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
832
-  (exit $ac_status); }; } &&
 
833
-        { ac_try='test -s conftest.$ac_objext'
 
834
-  { (case "(($ac_try" in
 
835
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
836
-  *) ac_try_echo=$ac_try;;
 
837
-esac
 
838
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
839
-  (eval "$ac_try") 2>&5
 
840
-  ac_status=$?
 
841
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
842
-  (exit $ac_status); }; }; then
 
843
+  (exit $ac_status); } && {
 
844
+        test -z "$ac_c_werror_flag" ||
 
845
+        test ! -s conftest.err
 
846
+       } && test -s conftest.$ac_objext; then
 
847
   :
 
848
 else
 
849
   echo "$as_me: failed program was:" >&5
 
850
@@ -3517,27 +3489,10 @@
 
851
   rm -f conftest.er1
 
852
   cat conftest.err >&5
 
853
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
854
-  (exit $ac_status); } &&
 
855
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
856
-  { (case "(($ac_try" in
 
857
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
858
-  *) ac_try_echo=$ac_try;;
 
859
-esac
 
860
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
861
-  (eval "$ac_try") 2>&5
 
862
-  ac_status=$?
 
863
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
864
-  (exit $ac_status); }; } &&
 
865
-        { ac_try='test -s conftest.$ac_objext'
 
866
-  { (case "(($ac_try" in
 
867
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
868
-  *) ac_try_echo=$ac_try;;
 
869
-esac
 
870
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
871
-  (eval "$ac_try") 2>&5
 
872
-  ac_status=$?
 
873
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
874
-  (exit $ac_status); }; }; then
 
875
+  (exit $ac_status); } && {
 
876
+        test -z "$ac_c_werror_flag" ||
 
877
+        test ! -s conftest.err
 
878
+       } && test -s conftest.$ac_objext; then
 
879
   ac_cv_prog_cc_g=yes
 
880
 else
 
881
   echo "$as_me: failed program was:" >&5
 
882
@@ -3653,27 +3608,10 @@
 
883
   rm -f conftest.er1
 
884
   cat conftest.err >&5
 
885
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
886
-  (exit $ac_status); } &&
 
887
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
888
-  { (case "(($ac_try" in
 
889
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
890
-  *) ac_try_echo=$ac_try;;
 
891
-esac
 
892
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
893
-  (eval "$ac_try") 2>&5
 
894
-  ac_status=$?
 
895
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
896
-  (exit $ac_status); }; } &&
 
897
-        { ac_try='test -s conftest.$ac_objext'
 
898
-  { (case "(($ac_try" in
 
899
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
900
-  *) ac_try_echo=$ac_try;;
 
901
-esac
 
902
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
903
-  (eval "$ac_try") 2>&5
 
904
-  ac_status=$?
 
905
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
906
-  (exit $ac_status); }; }; then
 
907
+  (exit $ac_status); } && {
 
908
+        test -z "$ac_c_werror_flag" ||
 
909
+        test ! -s conftest.err
 
910
+       } && test -s conftest.$ac_objext; then
 
911
   ac_cv_prog_cc_c89=$ac_arg
 
912
 else
 
913
   echo "$as_me: failed program was:" >&5
 
914
@@ -3903,6 +3841,16 @@
 
915
 
 
916
 
 
917
 
 
918
+
 
919
+if test "$enable_static" = yes; then
 
920
+  ENABLE_STATIC_TRUE=
 
921
+  ENABLE_STATIC_FALSE='#'
 
922
+else
 
923
+  ENABLE_STATIC_TRUE='#'
 
924
+  ENABLE_STATIC_FALSE=
 
925
+fi
 
926
+
 
927
+
 
928
 if test "$os_win32" = "yes"; then
 
929
   if test x$enable_static = xyes -o x$enable_static = x; then
 
930
     { echo "$as_me:$LINENO: WARNING: Disabling static library build, must build as DLL on Windows." >&5
 
931
@@ -4044,7 +3992,7 @@
 
932
   for ac_prog in grep ggrep; do
 
933
   for ac_exec_ext in '' $ac_executable_extensions; do
 
934
     ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
 
935
-    { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue
 
936
+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 
937
     # Check for GNU ac_path_GREP and select it if it is found.
 
938
   # Check for GNU $ac_path_GREP
 
939
 case `"$ac_path_GREP" --version 2>&1` in
 
940
@@ -4126,7 +4074,7 @@
 
941
   for ac_prog in egrep; do
 
942
   for ac_exec_ext in '' $ac_executable_extensions; do
 
943
     ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
 
944
-    { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue
 
945
+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 
946
     # Check for GNU ac_path_EGREP and select it if it is found.
 
947
   # Check for GNU $ac_path_EGREP
 
948
 case `"$ac_path_EGREP" --version 2>&1` in
 
949
@@ -4432,7 +4380,7 @@
 
950
   lt_cv_deplibs_check_method=pass_all
 
951
   ;;
 
952
 
 
953
-freebsd* | kfreebsd*-gnu | dragonfly*)
 
954
+freebsd* | dragonfly*)
 
955
   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
956
     case $host_cpu in
 
957
     i*86 )
 
958
@@ -4486,11 +4434,11 @@
 
959
   ;;
 
960
 
 
961
 # This must be Linux ELF.
 
962
-linux*)
 
963
+linux* | k*bsd*-gnu)
 
964
   lt_cv_deplibs_check_method=pass_all
 
965
   ;;
 
966
 
 
967
-netbsd*)
 
968
+netbsd* | netbsdelf*-gnu)
 
969
   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
970
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
 
971
   else
 
972
@@ -4607,7 +4555,7 @@
 
973
   ;;
 
974
 *-*-irix6*)
 
975
   # Find out which ABI we are using.
 
976
-  echo '#line 4610 "configure"' > conftest.$ac_ext
 
977
+  echo '#line 4558 "configure"' > conftest.$ac_ext
 
978
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
979
   (eval $ac_compile) 2>&5
 
980
   ac_status=$?
 
981
@@ -4731,27 +4679,11 @@
 
982
   rm -f conftest.er1
 
983
   cat conftest.err >&5
 
984
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
985
-  (exit $ac_status); } &&
 
986
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
987
-  { (case "(($ac_try" in
 
988
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
989
-  *) ac_try_echo=$ac_try;;
 
990
-esac
 
991
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
992
-  (eval "$ac_try") 2>&5
 
993
-  ac_status=$?
 
994
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
995
-  (exit $ac_status); }; } &&
 
996
-        { ac_try='test -s conftest$ac_exeext'
 
997
-  { (case "(($ac_try" in
 
998
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
999
-  *) ac_try_echo=$ac_try;;
 
1000
-esac
 
1001
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1002
-  (eval "$ac_try") 2>&5
 
1003
-  ac_status=$?
 
1004
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1005
-  (exit $ac_status); }; }; then
 
1006
+  (exit $ac_status); } && {
 
1007
+        test -z "$ac_c_werror_flag" ||
 
1008
+        test ! -s conftest.err
 
1009
+       } && test -s conftest$ac_exeext &&
 
1010
+       $as_test_x conftest$ac_exeext; then
 
1011
   lt_cv_cc_needs_belf=yes
 
1012
 else
 
1013
   echo "$as_me: failed program was:" >&5
 
1014
@@ -4760,7 +4692,7 @@
 
1015
        lt_cv_cc_needs_belf=no
 
1016
 fi
 
1017
 
 
1018
-rm -f core conftest.err conftest.$ac_objext \
 
1019
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
1020
       conftest$ac_exeext conftest.$ac_ext
 
1021
      ac_ext=c
 
1022
 ac_cpp='$CPP $CPPFLAGS'
 
1023
@@ -4814,7 +4746,7 @@
 
1024
   IFS=$as_save_IFS
 
1025
   test -z "$as_dir" && as_dir=.
 
1026
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1027
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1028
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1029
     ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
 
1030
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1031
     break 2
 
1032
@@ -4854,7 +4786,7 @@
 
1033
   IFS=$as_save_IFS
 
1034
   test -z "$as_dir" && as_dir=.
 
1035
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1036
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1037
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1038
     ac_cv_prog_ac_ct_DLLTOOL="dlltool"
 
1039
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1040
     break 2
 
1041
@@ -4910,7 +4842,7 @@
 
1042
   IFS=$as_save_IFS
 
1043
   test -z "$as_dir" && as_dir=.
 
1044
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1045
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1046
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1047
     ac_cv_prog_AS="${ac_tool_prefix}as"
 
1048
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1049
     break 2
 
1050
@@ -4950,7 +4882,7 @@
 
1051
   IFS=$as_save_IFS
 
1052
   test -z "$as_dir" && as_dir=.
 
1053
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1054
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1055
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1056
     ac_cv_prog_ac_ct_AS="as"
 
1057
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1058
     break 2
 
1059
@@ -5006,7 +4938,7 @@
 
1060
   IFS=$as_save_IFS
 
1061
   test -z "$as_dir" && as_dir=.
 
1062
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1063
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1064
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1065
     ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
 
1066
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1067
     break 2
 
1068
@@ -5046,7 +4978,7 @@
 
1069
   IFS=$as_save_IFS
 
1070
   test -z "$as_dir" && as_dir=.
 
1071
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1072
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1073
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1074
     ac_cv_prog_ac_ct_OBJDUMP="objdump"
 
1075
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1076
     break 2
 
1077
@@ -5144,17 +5076,10 @@
 
1078
   rm -f conftest.er1
 
1079
   cat conftest.err >&5
 
1080
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1081
-  (exit $ac_status); } >/dev/null; then
 
1082
-  if test -s conftest.err; then
 
1083
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
1084
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
1085
-  else
 
1086
-    ac_cpp_err=
 
1087
-  fi
 
1088
-else
 
1089
-  ac_cpp_err=yes
 
1090
-fi
 
1091
-if test -z "$ac_cpp_err"; then
 
1092
+  (exit $ac_status); } >/dev/null && {
 
1093
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
1094
+        test ! -s conftest.err
 
1095
+       }; then
 
1096
   :
 
1097
 else
 
1098
   echo "$as_me: failed program was:" >&5
 
1099
@@ -5188,17 +5113,10 @@
 
1100
   rm -f conftest.er1
 
1101
   cat conftest.err >&5
 
1102
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1103
-  (exit $ac_status); } >/dev/null; then
 
1104
-  if test -s conftest.err; then
 
1105
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
1106
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
1107
-  else
 
1108
-    ac_cpp_err=
 
1109
-  fi
 
1110
-else
 
1111
-  ac_cpp_err=yes
 
1112
-fi
 
1113
-if test -z "$ac_cpp_err"; then
 
1114
+  (exit $ac_status); } >/dev/null && {
 
1115
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
1116
+        test ! -s conftest.err
 
1117
+       }; then
 
1118
   # Broken: success on invalid input.
 
1119
 continue
 
1120
 else
 
1121
@@ -5263,17 +5181,10 @@
 
1122
   rm -f conftest.er1
 
1123
   cat conftest.err >&5
 
1124
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1125
-  (exit $ac_status); } >/dev/null; then
 
1126
-  if test -s conftest.err; then
 
1127
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
1128
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
1129
-  else
 
1130
-    ac_cpp_err=
 
1131
-  fi
 
1132
-else
 
1133
-  ac_cpp_err=yes
 
1134
-fi
 
1135
-if test -z "$ac_cpp_err"; then
 
1136
+  (exit $ac_status); } >/dev/null && {
 
1137
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
1138
+        test ! -s conftest.err
 
1139
+       }; then
 
1140
   :
 
1141
 else
 
1142
   echo "$as_me: failed program was:" >&5
 
1143
@@ -5307,17 +5218,10 @@
 
1144
   rm -f conftest.er1
 
1145
   cat conftest.err >&5
 
1146
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1147
-  (exit $ac_status); } >/dev/null; then
 
1148
-  if test -s conftest.err; then
 
1149
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
1150
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
1151
-  else
 
1152
-    ac_cpp_err=
 
1153
-  fi
 
1154
-else
 
1155
-  ac_cpp_err=yes
 
1156
-fi
 
1157
-if test -z "$ac_cpp_err"; then
 
1158
+  (exit $ac_status); } >/dev/null && {
 
1159
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
1160
+        test ! -s conftest.err
 
1161
+       }; then
 
1162
   # Broken: success on invalid input.
 
1163
 continue
 
1164
 else
 
1165
@@ -5388,27 +5292,10 @@
 
1166
   rm -f conftest.er1
 
1167
   cat conftest.err >&5
 
1168
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1169
-  (exit $ac_status); } &&
 
1170
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1171
-  { (case "(($ac_try" in
 
1172
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1173
-  *) ac_try_echo=$ac_try;;
 
1174
-esac
 
1175
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1176
-  (eval "$ac_try") 2>&5
 
1177
-  ac_status=$?
 
1178
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1179
-  (exit $ac_status); }; } &&
 
1180
-        { ac_try='test -s conftest.$ac_objext'
 
1181
-  { (case "(($ac_try" in
 
1182
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1183
-  *) ac_try_echo=$ac_try;;
 
1184
-esac
 
1185
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1186
-  (eval "$ac_try") 2>&5
 
1187
-  ac_status=$?
 
1188
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1189
-  (exit $ac_status); }; }; then
 
1190
+  (exit $ac_status); } && {
 
1191
+        test -z "$ac_c_werror_flag" ||
 
1192
+        test ! -s conftest.err
 
1193
+       } && test -s conftest.$ac_objext; then
 
1194
   ac_cv_header_stdc=yes
 
1195
 else
 
1196
   echo "$as_me: failed program was:" >&5
 
1197
@@ -5584,27 +5471,10 @@
 
1198
   rm -f conftest.er1
 
1199
   cat conftest.err >&5
 
1200
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1201
-  (exit $ac_status); } &&
 
1202
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1203
-  { (case "(($ac_try" in
 
1204
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1205
-  *) ac_try_echo=$ac_try;;
 
1206
-esac
 
1207
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1208
-  (eval "$ac_try") 2>&5
 
1209
-  ac_status=$?
 
1210
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1211
-  (exit $ac_status); }; } &&
 
1212
-        { ac_try='test -s conftest.$ac_objext'
 
1213
-  { (case "(($ac_try" in
 
1214
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1215
-  *) ac_try_echo=$ac_try;;
 
1216
-esac
 
1217
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1218
-  (eval "$ac_try") 2>&5
 
1219
-  ac_status=$?
 
1220
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1221
-  (exit $ac_status); }; }; then
 
1222
+  (exit $ac_status); } && {
 
1223
+        test -z "$ac_c_werror_flag" ||
 
1224
+        test ! -s conftest.err
 
1225
+       } && test -s conftest.$ac_objext; then
 
1226
   eval "$as_ac_Header=yes"
 
1227
 else
 
1228
   echo "$as_me: failed program was:" >&5
 
1229
@@ -5667,27 +5537,10 @@
 
1230
   rm -f conftest.er1
 
1231
   cat conftest.err >&5
 
1232
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1233
-  (exit $ac_status); } &&
 
1234
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1235
-  { (case "(($ac_try" in
 
1236
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1237
-  *) ac_try_echo=$ac_try;;
 
1238
-esac
 
1239
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1240
-  (eval "$ac_try") 2>&5
 
1241
-  ac_status=$?
 
1242
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1243
-  (exit $ac_status); }; } &&
 
1244
-        { ac_try='test -s conftest.$ac_objext'
 
1245
-  { (case "(($ac_try" in
 
1246
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1247
-  *) ac_try_echo=$ac_try;;
 
1248
-esac
 
1249
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1250
-  (eval "$ac_try") 2>&5
 
1251
-  ac_status=$?
 
1252
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1253
-  (exit $ac_status); }; }; then
 
1254
+  (exit $ac_status); } && {
 
1255
+        test -z "$ac_c_werror_flag" ||
 
1256
+        test ! -s conftest.err
 
1257
+       } && test -s conftest.$ac_objext; then
 
1258
   ac_header_compiler=yes
 
1259
 else
 
1260
   echo "$as_me: failed program was:" >&5
 
1261
@@ -5723,17 +5576,10 @@
 
1262
   rm -f conftest.er1
 
1263
   cat conftest.err >&5
 
1264
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1265
-  (exit $ac_status); } >/dev/null; then
 
1266
-  if test -s conftest.err; then
 
1267
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
1268
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
1269
-  else
 
1270
-    ac_cpp_err=
 
1271
-  fi
 
1272
-else
 
1273
-  ac_cpp_err=yes
 
1274
-fi
 
1275
-if test -z "$ac_cpp_err"; then
 
1276
+  (exit $ac_status); } >/dev/null && {
 
1277
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
1278
+        test ! -s conftest.err
 
1279
+       }; then
 
1280
   ac_header_preproc=yes
 
1281
 else
 
1282
   echo "$as_me: failed program was:" >&5
 
1283
@@ -5825,7 +5671,7 @@
 
1284
   IFS=$as_save_IFS
 
1285
   test -z "$as_dir" && as_dir=.
 
1286
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1287
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1288
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1289
     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
 
1290
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1291
     break 2
 
1292
@@ -5869,7 +5715,7 @@
 
1293
   IFS=$as_save_IFS
 
1294
   test -z "$as_dir" && as_dir=.
 
1295
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1296
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1297
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1298
     ac_cv_prog_ac_ct_CXX="$ac_prog"
 
1299
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1300
     break 2
 
1301
@@ -5982,27 +5828,10 @@
 
1302
   rm -f conftest.er1
 
1303
   cat conftest.err >&5
 
1304
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1305
-  (exit $ac_status); } &&
 
1306
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
1307
-  { (case "(($ac_try" in
 
1308
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1309
-  *) ac_try_echo=$ac_try;;
 
1310
-esac
 
1311
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1312
-  (eval "$ac_try") 2>&5
 
1313
-  ac_status=$?
 
1314
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1315
-  (exit $ac_status); }; } &&
 
1316
-        { ac_try='test -s conftest.$ac_objext'
 
1317
-  { (case "(($ac_try" in
 
1318
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1319
-  *) ac_try_echo=$ac_try;;
 
1320
-esac
 
1321
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1322
-  (eval "$ac_try") 2>&5
 
1323
-  ac_status=$?
 
1324
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1325
-  (exit $ac_status); }; }; then
 
1326
+  (exit $ac_status); } && {
 
1327
+        test -z "$ac_cxx_werror_flag" ||
 
1328
+        test ! -s conftest.err
 
1329
+       } && test -s conftest.$ac_objext; then
 
1330
   ac_compiler_gnu=yes
 
1331
 else
 
1332
   echo "$as_me: failed program was:" >&5
 
1333
@@ -6057,27 +5886,10 @@
 
1334
   rm -f conftest.er1
 
1335
   cat conftest.err >&5
 
1336
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1337
-  (exit $ac_status); } &&
 
1338
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
1339
-  { (case "(($ac_try" in
 
1340
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1341
-  *) ac_try_echo=$ac_try;;
 
1342
-esac
 
1343
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1344
-  (eval "$ac_try") 2>&5
 
1345
-  ac_status=$?
 
1346
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1347
-  (exit $ac_status); }; } &&
 
1348
-        { ac_try='test -s conftest.$ac_objext'
 
1349
-  { (case "(($ac_try" in
 
1350
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1351
-  *) ac_try_echo=$ac_try;;
 
1352
-esac
 
1353
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1354
-  (eval "$ac_try") 2>&5
 
1355
-  ac_status=$?
 
1356
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1357
-  (exit $ac_status); }; }; then
 
1358
+  (exit $ac_status); } && {
 
1359
+        test -z "$ac_cxx_werror_flag" ||
 
1360
+        test ! -s conftest.err
 
1361
+       } && test -s conftest.$ac_objext; then
 
1362
   ac_cv_prog_cxx_g=yes
 
1363
 else
 
1364
   echo "$as_me: failed program was:" >&5
 
1365
@@ -6112,27 +5924,10 @@
 
1366
   rm -f conftest.er1
 
1367
   cat conftest.err >&5
 
1368
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1369
-  (exit $ac_status); } &&
 
1370
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
1371
-  { (case "(($ac_try" in
 
1372
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1373
-  *) ac_try_echo=$ac_try;;
 
1374
-esac
 
1375
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1376
-  (eval "$ac_try") 2>&5
 
1377
-  ac_status=$?
 
1378
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1379
-  (exit $ac_status); }; } &&
 
1380
-        { ac_try='test -s conftest.$ac_objext'
 
1381
-  { (case "(($ac_try" in
 
1382
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1383
-  *) ac_try_echo=$ac_try;;
 
1384
-esac
 
1385
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1386
-  (eval "$ac_try") 2>&5
 
1387
-  ac_status=$?
 
1388
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1389
-  (exit $ac_status); }; }; then
 
1390
+  (exit $ac_status); } && {
 
1391
+        test -z "$ac_cxx_werror_flag" ||
 
1392
+        test ! -s conftest.err
 
1393
+       } && test -s conftest.$ac_objext; then
 
1394
   :
 
1395
 else
 
1396
   echo "$as_me: failed program was:" >&5
 
1397
@@ -6168,27 +5963,10 @@
 
1398
   rm -f conftest.er1
 
1399
   cat conftest.err >&5
 
1400
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1401
-  (exit $ac_status); } &&
 
1402
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
1403
-  { (case "(($ac_try" in
 
1404
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1405
-  *) ac_try_echo=$ac_try;;
 
1406
-esac
 
1407
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1408
-  (eval "$ac_try") 2>&5
 
1409
-  ac_status=$?
 
1410
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1411
-  (exit $ac_status); }; } &&
 
1412
-        { ac_try='test -s conftest.$ac_objext'
 
1413
-  { (case "(($ac_try" in
 
1414
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1415
-  *) ac_try_echo=$ac_try;;
 
1416
-esac
 
1417
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1418
-  (eval "$ac_try") 2>&5
 
1419
-  ac_status=$?
 
1420
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1421
-  (exit $ac_status); }; }; then
 
1422
+  (exit $ac_status); } && {
 
1423
+        test -z "$ac_cxx_werror_flag" ||
 
1424
+        test ! -s conftest.err
 
1425
+       } && test -s conftest.$ac_objext; then
 
1426
   ac_cv_prog_cxx_g=yes
 
1427
 else
 
1428
   echo "$as_me: failed program was:" >&5
 
1429
@@ -6384,17 +6162,10 @@
 
1430
   rm -f conftest.er1
 
1431
   cat conftest.err >&5
 
1432
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1433
-  (exit $ac_status); } >/dev/null; then
 
1434
-  if test -s conftest.err; then
 
1435
-    ac_cpp_err=$ac_cxx_preproc_warn_flag
 
1436
-    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
 
1437
-  else
 
1438
-    ac_cpp_err=
 
1439
-  fi
 
1440
-else
 
1441
-  ac_cpp_err=yes
 
1442
-fi
 
1443
-if test -z "$ac_cpp_err"; then
 
1444
+  (exit $ac_status); } >/dev/null && {
 
1445
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
1446
+        test ! -s conftest.err
 
1447
+       }; then
 
1448
   :
 
1449
 else
 
1450
   echo "$as_me: failed program was:" >&5
 
1451
@@ -6428,17 +6199,10 @@
 
1452
   rm -f conftest.er1
 
1453
   cat conftest.err >&5
 
1454
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1455
-  (exit $ac_status); } >/dev/null; then
 
1456
-  if test -s conftest.err; then
 
1457
-    ac_cpp_err=$ac_cxx_preproc_warn_flag
 
1458
-    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
 
1459
-  else
 
1460
-    ac_cpp_err=
 
1461
-  fi
 
1462
-else
 
1463
-  ac_cpp_err=yes
 
1464
-fi
 
1465
-if test -z "$ac_cpp_err"; then
 
1466
+  (exit $ac_status); } >/dev/null && {
 
1467
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
1468
+        test ! -s conftest.err
 
1469
+       }; then
 
1470
   # Broken: success on invalid input.
 
1471
 continue
 
1472
 else
 
1473
@@ -6503,17 +6267,10 @@
 
1474
   rm -f conftest.er1
 
1475
   cat conftest.err >&5
 
1476
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1477
-  (exit $ac_status); } >/dev/null; then
 
1478
-  if test -s conftest.err; then
 
1479
-    ac_cpp_err=$ac_cxx_preproc_warn_flag
 
1480
-    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
 
1481
-  else
 
1482
-    ac_cpp_err=
 
1483
-  fi
 
1484
-else
 
1485
-  ac_cpp_err=yes
 
1486
-fi
 
1487
-if test -z "$ac_cpp_err"; then
 
1488
+  (exit $ac_status); } >/dev/null && {
 
1489
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
1490
+        test ! -s conftest.err
 
1491
+       }; then
 
1492
   :
 
1493
 else
 
1494
   echo "$as_me: failed program was:" >&5
 
1495
@@ -6547,17 +6304,10 @@
 
1496
   rm -f conftest.er1
 
1497
   cat conftest.err >&5
 
1498
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1499
-  (exit $ac_status); } >/dev/null; then
 
1500
-  if test -s conftest.err; then
 
1501
-    ac_cpp_err=$ac_cxx_preproc_warn_flag
 
1502
-    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
 
1503
-  else
 
1504
-    ac_cpp_err=
 
1505
-  fi
 
1506
-else
 
1507
-  ac_cpp_err=yes
 
1508
-fi
 
1509
-if test -z "$ac_cpp_err"; then
 
1510
+  (exit $ac_status); } >/dev/null && {
 
1511
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
1512
+        test ! -s conftest.err
 
1513
+       }; then
 
1514
   # Broken: success on invalid input.
 
1515
 continue
 
1516
 else
 
1517
@@ -6598,7 +6348,7 @@
 
1518
 ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
1519
 ac_compiler_gnu=$ac_cv_f77_compiler_gnu
 
1520
 if test -n "$ac_tool_prefix"; then
 
1521
-  for ac_prog in g77 f77 xlf frt pgf77 cf77 fort77 fl32 af77 f90 xlf90 pgf90 pghpf epcf90 gfortran g95 f95 fort xlf95 ifort ifc efc pgf95 lf95 ftn
 
1522
+  for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn
 
1523
   do
 
1524
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
1525
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
1526
@@ -6616,7 +6366,7 @@
 
1527
   IFS=$as_save_IFS
 
1528
   test -z "$as_dir" && as_dir=.
 
1529
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1530
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1531
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1532
     ac_cv_prog_F77="$ac_tool_prefix$ac_prog"
 
1533
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1534
     break 2
 
1535
@@ -6642,7 +6392,7 @@
 
1536
 fi
 
1537
 if test -z "$F77"; then
 
1538
   ac_ct_F77=$F77
 
1539
-  for ac_prog in g77 f77 xlf frt pgf77 cf77 fort77 fl32 af77 f90 xlf90 pgf90 pghpf epcf90 gfortran g95 f95 fort xlf95 ifort ifc efc pgf95 lf95 ftn
 
1540
+  for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn
 
1541
 do
 
1542
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
1543
 set dummy $ac_prog; ac_word=$2
 
1544
@@ -6660,7 +6410,7 @@
 
1545
   IFS=$as_save_IFS
 
1546
   test -z "$as_dir" && as_dir=.
 
1547
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1548
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1549
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1550
     ac_cv_prog_ac_ct_F77="$ac_prog"
 
1551
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1552
     break 2
 
1553
@@ -6767,27 +6517,10 @@
 
1554
   rm -f conftest.er1
 
1555
   cat conftest.err >&5
 
1556
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1557
-  (exit $ac_status); } &&
 
1558
-        { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
 
1559
-  { (case "(($ac_try" in
 
1560
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1561
-  *) ac_try_echo=$ac_try;;
 
1562
-esac
 
1563
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1564
-  (eval "$ac_try") 2>&5
 
1565
-  ac_status=$?
 
1566
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1567
-  (exit $ac_status); }; } &&
 
1568
-        { ac_try='test -s conftest.$ac_objext'
 
1569
-  { (case "(($ac_try" in
 
1570
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1571
-  *) ac_try_echo=$ac_try;;
 
1572
-esac
 
1573
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1574
-  (eval "$ac_try") 2>&5
 
1575
-  ac_status=$?
 
1576
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1577
-  (exit $ac_status); }; }; then
 
1578
+  (exit $ac_status); } && {
 
1579
+        test -z "$ac_f77_werror_flag" ||
 
1580
+        test ! -s conftest.err
 
1581
+       } && test -s conftest.$ac_objext; then
 
1582
   ac_compiler_gnu=yes
 
1583
 else
 
1584
   echo "$as_me: failed program was:" >&5
 
1585
@@ -6830,27 +6563,10 @@
 
1586
   rm -f conftest.er1
 
1587
   cat conftest.err >&5
 
1588
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1589
-  (exit $ac_status); } &&
 
1590
-        { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
 
1591
-  { (case "(($ac_try" in
 
1592
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1593
-  *) ac_try_echo=$ac_try;;
 
1594
-esac
 
1595
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1596
-  (eval "$ac_try") 2>&5
 
1597
-  ac_status=$?
 
1598
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1599
-  (exit $ac_status); }; } &&
 
1600
-        { ac_try='test -s conftest.$ac_objext'
 
1601
-  { (case "(($ac_try" in
 
1602
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1603
-  *) ac_try_echo=$ac_try;;
 
1604
-esac
 
1605
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1606
-  (eval "$ac_try") 2>&5
 
1607
-  ac_status=$?
 
1608
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1609
-  (exit $ac_status); }; }; then
 
1610
+  (exit $ac_status); } && {
 
1611
+        test -z "$ac_f77_werror_flag" ||
 
1612
+        test ! -s conftest.err
 
1613
+       } && test -s conftest.$ac_objext; then
 
1614
   ac_cv_prog_f77_g=yes
 
1615
 else
 
1616
   echo "$as_me: failed program was:" >&5
 
1617
@@ -7048,7 +6764,7 @@
 
1618
   lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
1619
   lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
 
1620
   ;;
 
1621
-linux*)
 
1622
+linux* | k*bsd*-gnu)
 
1623
   if test "$host_cpu" = ia64; then
 
1624
     symcode='[ABCDGIRSTW]'
 
1625
     lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
1626
@@ -7305,7 +7021,7 @@
 
1627
   IFS=$as_save_IFS
 
1628
   test -z "$as_dir" && as_dir=.
 
1629
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1630
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1631
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1632
     ac_cv_prog_AR="${ac_tool_prefix}ar"
 
1633
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1634
     break 2
 
1635
@@ -7345,7 +7061,7 @@
 
1636
   IFS=$as_save_IFS
 
1637
   test -z "$as_dir" && as_dir=.
 
1638
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1639
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1640
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1641
     ac_cv_prog_ac_ct_AR="ar"
 
1642
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1643
     break 2
 
1644
@@ -7401,7 +7117,7 @@
 
1645
   IFS=$as_save_IFS
 
1646
   test -z "$as_dir" && as_dir=.
 
1647
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1648
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1649
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1650
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
 
1651
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1652
     break 2
 
1653
@@ -7441,7 +7157,7 @@
 
1654
   IFS=$as_save_IFS
 
1655
   test -z "$as_dir" && as_dir=.
 
1656
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1657
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1658
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1659
     ac_cv_prog_ac_ct_RANLIB="ranlib"
 
1660
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1661
     break 2
 
1662
@@ -7497,7 +7213,7 @@
 
1663
   IFS=$as_save_IFS
 
1664
   test -z "$as_dir" && as_dir=.
 
1665
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1666
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1667
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1668
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
1669
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1670
     break 2
 
1671
@@ -7537,7 +7253,7 @@
 
1672
   IFS=$as_save_IFS
 
1673
   test -z "$as_dir" && as_dir=.
 
1674
   for ac_exec_ext in '' $ac_executable_extensions; do
 
1675
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1676
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1677
     ac_cv_prog_ac_ct_STRIP="strip"
 
1678
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1679
     break 2
 
1680
@@ -7854,11 +7570,11 @@
 
1681
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
1682
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
1683
    -e 's:$: $lt_compiler_flag:'`
 
1684
-   (eval echo "\"\$as_me:7857: $lt_compile\"" >&5)
 
1685
+   (eval echo "\"\$as_me:7573: $lt_compile\"" >&5)
 
1686
    (eval "$lt_compile" 2>conftest.err)
 
1687
    ac_status=$?
 
1688
    cat conftest.err >&5
 
1689
-   echo "$as_me:7861: \$? = $ac_status" >&5
 
1690
+   echo "$as_me:7577: \$? = $ac_status" >&5
 
1691
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
1692
      # The compiler can only warn and ignore the option if not recognized
 
1693
      # So say no if there are warnings other than the usual output.
 
1694
@@ -8016,7 +7732,7 @@
 
1695
       lt_prog_compiler_static='-Bstatic'
 
1696
       ;;
 
1697
 
 
1698
-    linux*)
 
1699
+    linux* | k*bsd*-gnu)
 
1700
       case $cc_basename in
 
1701
       icc* | ecc*)
 
1702
        lt_prog_compiler_wl='-Wl,'
 
1703
@@ -8122,11 +7838,11 @@
 
1704
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
1705
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
1706
    -e 's:$: $lt_compiler_flag:'`
 
1707
-   (eval echo "\"\$as_me:8125: $lt_compile\"" >&5)
 
1708
+   (eval echo "\"\$as_me:7841: $lt_compile\"" >&5)
 
1709
    (eval "$lt_compile" 2>conftest.err)
 
1710
    ac_status=$?
 
1711
    cat conftest.err >&5
 
1712
-   echo "$as_me:8129: \$? = $ac_status" >&5
 
1713
+   echo "$as_me:7845: \$? = $ac_status" >&5
 
1714
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
1715
      # The compiler can only warn and ignore the option if not recognized
 
1716
      # So say no if there are warnings other than the usual output.
 
1717
@@ -8226,11 +7942,11 @@
 
1718
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
1719
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
1720
    -e 's:$: $lt_compiler_flag:'`
 
1721
-   (eval echo "\"\$as_me:8229: $lt_compile\"" >&5)
 
1722
+   (eval echo "\"\$as_me:7945: $lt_compile\"" >&5)
 
1723
    (eval "$lt_compile" 2>out/conftest.err)
 
1724
    ac_status=$?
 
1725
    cat out/conftest.err >&5
 
1726
-   echo "$as_me:8233: \$? = $ac_status" >&5
 
1727
+   echo "$as_me:7949: \$? = $ac_status" >&5
 
1728
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
1729
    then
 
1730
      # The compiler can only warn and ignore the option if not recognized
 
1731
@@ -8455,7 +8171,7 @@
 
1732
       archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
1733
       ;;
 
1734
 
 
1735
-    linux*)
 
1736
+    linux* | k*bsd*-gnu)
 
1737
       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
1738
        tmp_addflag=
 
1739
        case $cc_basename,$host_cpu in
 
1740
@@ -8481,12 +8197,13 @@
 
1741
   $echo "local: *; };" >> $output_objdir/$libname.ver~
 
1742
          $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
1743
        fi
 
1744
+       link_all_deplibs=no
 
1745
       else
 
1746
        ld_shlibs=no
 
1747
       fi
 
1748
       ;;
 
1749
 
 
1750
-    netbsd*)
 
1751
+    netbsd* | netbsdelf*-gnu)
 
1752
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
1753
        archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
1754
        wlarc=
 
1755
@@ -8706,27 +8423,11 @@
 
1756
   rm -f conftest.er1
 
1757
   cat conftest.err >&5
 
1758
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1759
-  (exit $ac_status); } &&
 
1760
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1761
-  { (case "(($ac_try" in
 
1762
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1763
-  *) ac_try_echo=$ac_try;;
 
1764
-esac
 
1765
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1766
-  (eval "$ac_try") 2>&5
 
1767
-  ac_status=$?
 
1768
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1769
-  (exit $ac_status); }; } &&
 
1770
-        { ac_try='test -s conftest$ac_exeext'
 
1771
-  { (case "(($ac_try" in
 
1772
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1773
-  *) ac_try_echo=$ac_try;;
 
1774
-esac
 
1775
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1776
-  (eval "$ac_try") 2>&5
 
1777
-  ac_status=$?
 
1778
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1779
-  (exit $ac_status); }; }; then
 
1780
+  (exit $ac_status); } && {
 
1781
+        test -z "$ac_c_werror_flag" ||
 
1782
+        test ! -s conftest.err
 
1783
+       } && test -s conftest$ac_exeext &&
 
1784
+       $as_test_x conftest$ac_exeext; then
 
1785
 
 
1786
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
1787
 }'`
 
1788
@@ -8740,7 +8441,7 @@
 
1789
 
 
1790
 fi
 
1791
 
 
1792
-rm -f core conftest.err conftest.$ac_objext \
 
1793
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
1794
       conftest$ac_exeext conftest.$ac_ext
 
1795
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
1796
 
 
1797
@@ -8781,27 +8482,11 @@
 
1798
   rm -f conftest.er1
 
1799
   cat conftest.err >&5
 
1800
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1801
-  (exit $ac_status); } &&
 
1802
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1803
-  { (case "(($ac_try" in
 
1804
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1805
-  *) ac_try_echo=$ac_try;;
 
1806
-esac
 
1807
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1808
-  (eval "$ac_try") 2>&5
 
1809
-  ac_status=$?
 
1810
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1811
-  (exit $ac_status); }; } &&
 
1812
-        { ac_try='test -s conftest$ac_exeext'
 
1813
-  { (case "(($ac_try" in
 
1814
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1815
-  *) ac_try_echo=$ac_try;;
 
1816
-esac
 
1817
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1818
-  (eval "$ac_try") 2>&5
 
1819
-  ac_status=$?
 
1820
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1821
-  (exit $ac_status); }; }; then
 
1822
+  (exit $ac_status); } && {
 
1823
+        test -z "$ac_c_werror_flag" ||
 
1824
+        test ! -s conftest.err
 
1825
+       } && test -s conftest$ac_exeext &&
 
1826
+       $as_test_x conftest$ac_exeext; then
 
1827
 
 
1828
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
1829
 }'`
 
1830
@@ -8815,7 +8500,7 @@
 
1831
 
 
1832
 fi
 
1833
 
 
1834
-rm -f core conftest.err conftest.$ac_objext \
 
1835
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
1836
       conftest$ac_exeext conftest.$ac_ext
 
1837
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
1838
 
 
1839
@@ -8946,7 +8631,7 @@
 
1840
       ;;
 
1841
 
 
1842
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
1843
-    freebsd* | kfreebsd*-gnu | dragonfly*)
 
1844
+    freebsd* | dragonfly*)
 
1845
       archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
1846
       hardcode_libdir_flag_spec='-R$libdir'
 
1847
       hardcode_direct=yes
 
1848
@@ -9048,7 +8733,7 @@
 
1849
       link_all_deplibs=yes
 
1850
       ;;
 
1851
 
 
1852
-    netbsd*)
 
1853
+    netbsd* | netbsdelf*-gnu)
 
1854
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
1855
        archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
1856
       else
 
1857
@@ -9538,18 +9223,6 @@
 
1858
   dynamic_linker=no
 
1859
   ;;
 
1860
 
 
1861
-kfreebsd*-gnu)
 
1862
-  version_type=linux
 
1863
-  need_lib_prefix=no
 
1864
-  need_version=no
 
1865
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
1866
-  soname_spec='${libname}${release}${shared_ext}$major'
 
1867
-  shlibpath_var=LD_LIBRARY_PATH
 
1868
-  shlibpath_overrides_runpath=no
 
1869
-  hardcode_into_libs=yes
 
1870
-  dynamic_linker='GNU ld.so'
 
1871
-  ;;
 
1872
-
 
1873
 freebsd* | dragonfly*)
 
1874
   # DragonFly does not have aout.  When/if they implement a new
 
1875
   # versioning mechanism, adjust this.
 
1876
@@ -9705,7 +9378,7 @@
 
1877
   ;;
 
1878
 
 
1879
 # This must be Linux ELF.
 
1880
-linux*)
 
1881
+linux* | k*bsd*-gnu)
 
1882
   version_type=linux
 
1883
   need_lib_prefix=no
 
1884
   need_version=no
 
1885
@@ -9719,31 +9392,10 @@
 
1886
   # before this can be enabled.
 
1887
   hardcode_into_libs=yes
 
1888
 
 
1889
-  # find out which ABI we are using
 
1890
-  libsuff=
 
1891
-  case "$host_cpu" in
 
1892
-  x86_64*|s390x*|powerpc64*)
 
1893
-    echo '#line 9726 "configure"' > conftest.$ac_ext
 
1894
-    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
1895
-  (eval $ac_compile) 2>&5
 
1896
-  ac_status=$?
 
1897
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1898
-  (exit $ac_status); }; then
 
1899
-      case `/usr/bin/file conftest.$ac_objext` in
 
1900
-      *64-bit*)
 
1901
-        libsuff=64
 
1902
-        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
 
1903
-        ;;
 
1904
-      esac
 
1905
-    fi
 
1906
-    rm -rf conftest*
 
1907
-    ;;
 
1908
-  esac
 
1909
-
 
1910
   # Append ld.so.conf contents to the search path
 
1911
   if test -f /etc/ld.so.conf; then
 
1912
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
1913
-    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
 
1914
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
1915
   fi
 
1916
 
 
1917
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
1918
@@ -9755,7 +9407,7 @@
 
1919
   dynamic_linker='GNU/Linux ld.so'
 
1920
   ;;
 
1921
 
 
1922
-knetbsd*-gnu)
 
1923
+netbsdelf*-gnu)
 
1924
   version_type=linux
 
1925
   need_lib_prefix=no
 
1926
   need_version=no
 
1927
@@ -9764,7 +9416,7 @@
 
1928
   shlibpath_var=LD_LIBRARY_PATH
 
1929
   shlibpath_overrides_runpath=no
 
1930
   hardcode_into_libs=yes
 
1931
-  dynamic_linker='GNU ld.so'
 
1932
+  dynamic_linker='NetBSD ld.elf_so'
 
1933
   ;;
 
1934
 
 
1935
 netbsd*)
 
1936
@@ -10084,27 +9736,11 @@
 
1937
   rm -f conftest.er1
 
1938
   cat conftest.err >&5
 
1939
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1940
-  (exit $ac_status); } &&
 
1941
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1942
-  { (case "(($ac_try" in
 
1943
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1944
-  *) ac_try_echo=$ac_try;;
 
1945
-esac
 
1946
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1947
-  (eval "$ac_try") 2>&5
 
1948
-  ac_status=$?
 
1949
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1950
-  (exit $ac_status); }; } &&
 
1951
-        { ac_try='test -s conftest$ac_exeext'
 
1952
-  { (case "(($ac_try" in
 
1953
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1954
-  *) ac_try_echo=$ac_try;;
 
1955
-esac
 
1956
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1957
-  (eval "$ac_try") 2>&5
 
1958
-  ac_status=$?
 
1959
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1960
-  (exit $ac_status); }; }; then
 
1961
+  (exit $ac_status); } && {
 
1962
+        test -z "$ac_c_werror_flag" ||
 
1963
+        test ! -s conftest.err
 
1964
+       } && test -s conftest$ac_exeext &&
 
1965
+       $as_test_x conftest$ac_exeext; then
 
1966
   ac_cv_lib_dl_dlopen=yes
 
1967
 else
 
1968
   echo "$as_me: failed program was:" >&5
 
1969
@@ -10113,7 +9749,7 @@
 
1970
        ac_cv_lib_dl_dlopen=no
 
1971
 fi
 
1972
 
 
1973
-rm -f core conftest.err conftest.$ac_objext \
 
1974
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
1975
       conftest$ac_exeext conftest.$ac_ext
 
1976
 LIBS=$ac_check_lib_save_LIBS
 
1977
 fi
 
1978
@@ -10195,27 +9831,11 @@
 
1979
   rm -f conftest.er1
 
1980
   cat conftest.err >&5
 
1981
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1982
-  (exit $ac_status); } &&
 
1983
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
1984
-  { (case "(($ac_try" in
 
1985
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1986
-  *) ac_try_echo=$ac_try;;
 
1987
-esac
 
1988
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1989
-  (eval "$ac_try") 2>&5
 
1990
-  ac_status=$?
 
1991
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
1992
-  (exit $ac_status); }; } &&
 
1993
-        { ac_try='test -s conftest$ac_exeext'
 
1994
-  { (case "(($ac_try" in
 
1995
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1996
-  *) ac_try_echo=$ac_try;;
 
1997
-esac
 
1998
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
1999
-  (eval "$ac_try") 2>&5
 
2000
-  ac_status=$?
 
2001
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2002
-  (exit $ac_status); }; }; then
 
2003
+  (exit $ac_status); } && {
 
2004
+        test -z "$ac_c_werror_flag" ||
 
2005
+        test ! -s conftest.err
 
2006
+       } && test -s conftest$ac_exeext &&
 
2007
+       $as_test_x conftest$ac_exeext; then
 
2008
   ac_cv_func_shl_load=yes
 
2009
 else
 
2010
   echo "$as_me: failed program was:" >&5
 
2011
@@ -10224,7 +9844,7 @@
 
2012
        ac_cv_func_shl_load=no
 
2013
 fi
 
2014
 
 
2015
-rm -f core conftest.err conftest.$ac_objext \
 
2016
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2017
       conftest$ac_exeext conftest.$ac_ext
 
2018
 fi
 
2019
 { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
 
2020
@@ -10274,27 +9894,11 @@
 
2021
   rm -f conftest.er1
 
2022
   cat conftest.err >&5
 
2023
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2024
-  (exit $ac_status); } &&
 
2025
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2026
-  { (case "(($ac_try" in
 
2027
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2028
-  *) ac_try_echo=$ac_try;;
 
2029
-esac
 
2030
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2031
-  (eval "$ac_try") 2>&5
 
2032
-  ac_status=$?
 
2033
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2034
-  (exit $ac_status); }; } &&
 
2035
-        { ac_try='test -s conftest$ac_exeext'
 
2036
-  { (case "(($ac_try" in
 
2037
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2038
-  *) ac_try_echo=$ac_try;;
 
2039
-esac
 
2040
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2041
-  (eval "$ac_try") 2>&5
 
2042
-  ac_status=$?
 
2043
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2044
-  (exit $ac_status); }; }; then
 
2045
+  (exit $ac_status); } && {
 
2046
+        test -z "$ac_c_werror_flag" ||
 
2047
+        test ! -s conftest.err
 
2048
+       } && test -s conftest$ac_exeext &&
 
2049
+       $as_test_x conftest$ac_exeext; then
 
2050
   ac_cv_lib_dld_shl_load=yes
 
2051
 else
 
2052
   echo "$as_me: failed program was:" >&5
 
2053
@@ -10303,7 +9907,7 @@
 
2054
        ac_cv_lib_dld_shl_load=no
 
2055
 fi
 
2056
 
 
2057
-rm -f core conftest.err conftest.$ac_objext \
 
2058
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2059
       conftest$ac_exeext conftest.$ac_ext
 
2060
 LIBS=$ac_check_lib_save_LIBS
 
2061
 fi
 
2062
@@ -10375,27 +9979,11 @@
 
2063
   rm -f conftest.er1
 
2064
   cat conftest.err >&5
 
2065
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2066
-  (exit $ac_status); } &&
 
2067
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2068
-  { (case "(($ac_try" in
 
2069
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2070
-  *) ac_try_echo=$ac_try;;
 
2071
-esac
 
2072
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2073
-  (eval "$ac_try") 2>&5
 
2074
-  ac_status=$?
 
2075
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2076
-  (exit $ac_status); }; } &&
 
2077
-        { ac_try='test -s conftest$ac_exeext'
 
2078
-  { (case "(($ac_try" in
 
2079
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2080
-  *) ac_try_echo=$ac_try;;
 
2081
-esac
 
2082
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2083
-  (eval "$ac_try") 2>&5
 
2084
-  ac_status=$?
 
2085
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2086
-  (exit $ac_status); }; }; then
 
2087
+  (exit $ac_status); } && {
 
2088
+        test -z "$ac_c_werror_flag" ||
 
2089
+        test ! -s conftest.err
 
2090
+       } && test -s conftest$ac_exeext &&
 
2091
+       $as_test_x conftest$ac_exeext; then
 
2092
   ac_cv_func_dlopen=yes
 
2093
 else
 
2094
   echo "$as_me: failed program was:" >&5
 
2095
@@ -10404,7 +9992,7 @@
 
2096
        ac_cv_func_dlopen=no
 
2097
 fi
 
2098
 
 
2099
-rm -f core conftest.err conftest.$ac_objext \
 
2100
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2101
       conftest$ac_exeext conftest.$ac_ext
 
2102
 fi
 
2103
 { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
 
2104
@@ -10454,27 +10042,11 @@
 
2105
   rm -f conftest.er1
 
2106
   cat conftest.err >&5
 
2107
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2108
-  (exit $ac_status); } &&
 
2109
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2110
-  { (case "(($ac_try" in
 
2111
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2112
-  *) ac_try_echo=$ac_try;;
 
2113
-esac
 
2114
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2115
-  (eval "$ac_try") 2>&5
 
2116
-  ac_status=$?
 
2117
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2118
-  (exit $ac_status); }; } &&
 
2119
-        { ac_try='test -s conftest$ac_exeext'
 
2120
-  { (case "(($ac_try" in
 
2121
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2122
-  *) ac_try_echo=$ac_try;;
 
2123
-esac
 
2124
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2125
-  (eval "$ac_try") 2>&5
 
2126
-  ac_status=$?
 
2127
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2128
-  (exit $ac_status); }; }; then
 
2129
+  (exit $ac_status); } && {
 
2130
+        test -z "$ac_c_werror_flag" ||
 
2131
+        test ! -s conftest.err
 
2132
+       } && test -s conftest$ac_exeext &&
 
2133
+       $as_test_x conftest$ac_exeext; then
 
2134
   ac_cv_lib_dl_dlopen=yes
 
2135
 else
 
2136
   echo "$as_me: failed program was:" >&5
 
2137
@@ -10483,7 +10055,7 @@
 
2138
        ac_cv_lib_dl_dlopen=no
 
2139
 fi
 
2140
 
 
2141
-rm -f core conftest.err conftest.$ac_objext \
 
2142
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2143
       conftest$ac_exeext conftest.$ac_ext
 
2144
 LIBS=$ac_check_lib_save_LIBS
 
2145
 fi
 
2146
@@ -10534,27 +10106,11 @@
 
2147
   rm -f conftest.er1
 
2148
   cat conftest.err >&5
 
2149
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2150
-  (exit $ac_status); } &&
 
2151
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2152
-  { (case "(($ac_try" in
 
2153
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2154
-  *) ac_try_echo=$ac_try;;
 
2155
-esac
 
2156
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2157
-  (eval "$ac_try") 2>&5
 
2158
-  ac_status=$?
 
2159
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2160
-  (exit $ac_status); }; } &&
 
2161
-        { ac_try='test -s conftest$ac_exeext'
 
2162
-  { (case "(($ac_try" in
 
2163
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2164
-  *) ac_try_echo=$ac_try;;
 
2165
-esac
 
2166
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2167
-  (eval "$ac_try") 2>&5
 
2168
-  ac_status=$?
 
2169
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2170
-  (exit $ac_status); }; }; then
 
2171
+  (exit $ac_status); } && {
 
2172
+        test -z "$ac_c_werror_flag" ||
 
2173
+        test ! -s conftest.err
 
2174
+       } && test -s conftest$ac_exeext &&
 
2175
+       $as_test_x conftest$ac_exeext; then
 
2176
   ac_cv_lib_svld_dlopen=yes
 
2177
 else
 
2178
   echo "$as_me: failed program was:" >&5
 
2179
@@ -10563,7 +10119,7 @@
 
2180
        ac_cv_lib_svld_dlopen=no
 
2181
 fi
 
2182
 
 
2183
-rm -f core conftest.err conftest.$ac_objext \
 
2184
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2185
       conftest$ac_exeext conftest.$ac_ext
 
2186
 LIBS=$ac_check_lib_save_LIBS
 
2187
 fi
 
2188
@@ -10614,27 +10170,11 @@
 
2189
   rm -f conftest.er1
 
2190
   cat conftest.err >&5
 
2191
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2192
-  (exit $ac_status); } &&
 
2193
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2194
-  { (case "(($ac_try" in
 
2195
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2196
-  *) ac_try_echo=$ac_try;;
 
2197
-esac
 
2198
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2199
-  (eval "$ac_try") 2>&5
 
2200
-  ac_status=$?
 
2201
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2202
-  (exit $ac_status); }; } &&
 
2203
-        { ac_try='test -s conftest$ac_exeext'
 
2204
-  { (case "(($ac_try" in
 
2205
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2206
-  *) ac_try_echo=$ac_try;;
 
2207
-esac
 
2208
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2209
-  (eval "$ac_try") 2>&5
 
2210
-  ac_status=$?
 
2211
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2212
-  (exit $ac_status); }; }; then
 
2213
+  (exit $ac_status); } && {
 
2214
+        test -z "$ac_c_werror_flag" ||
 
2215
+        test ! -s conftest.err
 
2216
+       } && test -s conftest$ac_exeext &&
 
2217
+       $as_test_x conftest$ac_exeext; then
 
2218
   ac_cv_lib_dld_dld_link=yes
 
2219
 else
 
2220
   echo "$as_me: failed program was:" >&5
 
2221
@@ -10643,7 +10183,7 @@
 
2222
        ac_cv_lib_dld_dld_link=no
 
2223
 fi
 
2224
 
 
2225
-rm -f core conftest.err conftest.$ac_objext \
 
2226
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2227
       conftest$ac_exeext conftest.$ac_ext
 
2228
 LIBS=$ac_check_lib_save_LIBS
 
2229
 fi
 
2230
@@ -10699,7 +10239,7 @@
 
2231
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
2232
   lt_status=$lt_dlunknown
 
2233
   cat > conftest.$ac_ext <<EOF
 
2234
-#line 10702 "configure"
 
2235
+#line 10242 "configure"
 
2236
 #include "confdefs.h"
 
2237
 
 
2238
 #if HAVE_DLFCN_H
 
2239
@@ -10799,7 +10339,7 @@
 
2240
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
2241
   lt_status=$lt_dlunknown
 
2242
   cat > conftest.$ac_ext <<EOF
 
2243
-#line 10802 "configure"
 
2244
+#line 10342 "configure"
 
2245
 #include "confdefs.h"
 
2246
 
 
2247
 #if HAVE_DLFCN_H
 
2248
@@ -11886,27 +11426,11 @@
 
2249
   rm -f conftest.er1
 
2250
   cat conftest.err >&5
 
2251
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2252
-  (exit $ac_status); } &&
 
2253
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
2254
-  { (case "(($ac_try" in
 
2255
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2256
-  *) ac_try_echo=$ac_try;;
 
2257
-esac
 
2258
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2259
-  (eval "$ac_try") 2>&5
 
2260
-  ac_status=$?
 
2261
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2262
-  (exit $ac_status); }; } &&
 
2263
-        { ac_try='test -s conftest$ac_exeext'
 
2264
-  { (case "(($ac_try" in
 
2265
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2266
-  *) ac_try_echo=$ac_try;;
 
2267
-esac
 
2268
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2269
-  (eval "$ac_try") 2>&5
 
2270
-  ac_status=$?
 
2271
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2272
-  (exit $ac_status); }; }; then
 
2273
+  (exit $ac_status); } && {
 
2274
+        test -z "$ac_cxx_werror_flag" ||
 
2275
+        test ! -s conftest.err
 
2276
+       } && test -s conftest$ac_exeext &&
 
2277
+       $as_test_x conftest$ac_exeext; then
 
2278
 
 
2279
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2280
 }'`
 
2281
@@ -11920,7 +11444,7 @@
 
2282
 
 
2283
 fi
 
2284
 
 
2285
-rm -f core conftest.err conftest.$ac_objext \
 
2286
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2287
       conftest$ac_exeext conftest.$ac_ext
 
2288
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2289
 
 
2290
@@ -11962,27 +11486,11 @@
 
2291
   rm -f conftest.er1
 
2292
   cat conftest.err >&5
 
2293
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2294
-  (exit $ac_status); } &&
 
2295
-        { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
 
2296
-  { (case "(($ac_try" in
 
2297
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2298
-  *) ac_try_echo=$ac_try;;
 
2299
-esac
 
2300
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2301
-  (eval "$ac_try") 2>&5
 
2302
-  ac_status=$?
 
2303
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2304
-  (exit $ac_status); }; } &&
 
2305
-        { ac_try='test -s conftest$ac_exeext'
 
2306
-  { (case "(($ac_try" in
 
2307
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2308
-  *) ac_try_echo=$ac_try;;
 
2309
-esac
 
2310
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2311
-  (eval "$ac_try") 2>&5
 
2312
-  ac_status=$?
 
2313
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2314
-  (exit $ac_status); }; }; then
 
2315
+  (exit $ac_status); } && {
 
2316
+        test -z "$ac_cxx_werror_flag" ||
 
2317
+        test ! -s conftest.err
 
2318
+       } && test -s conftest$ac_exeext &&
 
2319
+       $as_test_x conftest$ac_exeext; then
 
2320
 
 
2321
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2322
 }'`
 
2323
@@ -11996,7 +11504,7 @@
 
2324
 
 
2325
 fi
 
2326
 
 
2327
-rm -f core conftest.err conftest.$ac_objext \
 
2328
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2329
       conftest$ac_exeext conftest.$ac_ext
 
2330
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2331
 
 
2332
@@ -12144,7 +11652,7 @@
 
2333
   freebsd-elf*)
 
2334
     archive_cmds_need_lc_CXX=no
 
2335
     ;;
 
2336
-  freebsd* | kfreebsd*-gnu | dragonfly*)
 
2337
+  freebsd* | dragonfly*)
 
2338
     # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
 
2339
     # conventions
 
2340
     ld_shlibs_CXX=yes
 
2341
@@ -12303,7 +11811,7 @@
 
2342
     hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
2343
     hardcode_libdir_separator_CXX=:
 
2344
     ;;
 
2345
-  linux*)
 
2346
+  linux* | k*bsd*-gnu)
 
2347
     case $cc_basename in
 
2348
       KCC*)
 
2349
        # Kuck and Associates, Inc. (KAI) C++ Compiler
 
2350
@@ -12405,7 +11913,7 @@
 
2351
        ;;
 
2352
     esac
 
2353
     ;;
 
2354
-  netbsd*)
 
2355
+  netbsd* | netbsdelf*-gnu)
 
2356
     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
2357
       archive_cmds_CXX='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
 
2358
       wlarc=
 
2359
@@ -12972,7 +12480,7 @@
 
2360
            ;;
 
2361
        esac
 
2362
        ;;
 
2363
-      freebsd* | kfreebsd*-gnu | dragonfly*)
 
2364
+      freebsd* | dragonfly*)
 
2365
        # FreeBSD uses GNU C++
 
2366
        ;;
 
2367
       hpux9* | hpux10* | hpux11*)
 
2368
@@ -13015,7 +12523,7 @@
 
2369
            ;;
 
2370
        esac
 
2371
        ;;
 
2372
-      linux*)
 
2373
+      linux* | k*bsd*-gnu)
 
2374
        case $cc_basename in
 
2375
          KCC*)
 
2376
            # KAI C++ Compiler
 
2377
@@ -13058,7 +12566,7 @@
 
2378
            ;;
 
2379
        esac
 
2380
        ;;
 
2381
-      netbsd*)
 
2382
+      netbsd* | netbsdelf*-gnu)
 
2383
        ;;
 
2384
       osf3* | osf4* | osf5*)
 
2385
        case $cc_basename in
 
2386
@@ -13167,11 +12675,11 @@
 
2387
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2388
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2389
    -e 's:$: $lt_compiler_flag:'`
 
2390
-   (eval echo "\"\$as_me:13170: $lt_compile\"" >&5)
 
2391
+   (eval echo "\"\$as_me:12678: $lt_compile\"" >&5)
 
2392
    (eval "$lt_compile" 2>conftest.err)
 
2393
    ac_status=$?
 
2394
    cat conftest.err >&5
 
2395
-   echo "$as_me:13174: \$? = $ac_status" >&5
 
2396
+   echo "$as_me:12682: \$? = $ac_status" >&5
 
2397
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
2398
      # The compiler can only warn and ignore the option if not recognized
 
2399
      # So say no if there are warnings other than the usual output.
 
2400
@@ -13271,11 +12779,11 @@
 
2401
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2402
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2403
    -e 's:$: $lt_compiler_flag:'`
 
2404
-   (eval echo "\"\$as_me:13274: $lt_compile\"" >&5)
 
2405
+   (eval echo "\"\$as_me:12782: $lt_compile\"" >&5)
 
2406
    (eval "$lt_compile" 2>out/conftest.err)
 
2407
    ac_status=$?
 
2408
    cat out/conftest.err >&5
 
2409
-   echo "$as_me:13278: \$? = $ac_status" >&5
 
2410
+   echo "$as_me:12786: \$? = $ac_status" >&5
 
2411
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
2412
    then
 
2413
      # The compiler can only warn and ignore the option if not recognized
 
2414
@@ -13343,6 +12851,9 @@
 
2415
   cygwin* | mingw*)
 
2416
     export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([^ ]*\) [^ ]*/\1 DATA/;/^I /d;/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols'
 
2417
   ;;
 
2418
+  linux* | k*bsd*-gnu)
 
2419
+    link_all_deplibs_CXX=no
 
2420
+  ;;
 
2421
   *)
 
2422
     export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
2423
   ;;
 
2424
@@ -13622,18 +13133,6 @@
 
2425
   dynamic_linker=no
 
2426
   ;;
 
2427
 
 
2428
-kfreebsd*-gnu)
 
2429
-  version_type=linux
 
2430
-  need_lib_prefix=no
 
2431
-  need_version=no
 
2432
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
2433
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2434
-  shlibpath_var=LD_LIBRARY_PATH
 
2435
-  shlibpath_overrides_runpath=no
 
2436
-  hardcode_into_libs=yes
 
2437
-  dynamic_linker='GNU ld.so'
 
2438
-  ;;
 
2439
-
 
2440
 freebsd* | dragonfly*)
 
2441
   # DragonFly does not have aout.  When/if they implement a new
 
2442
   # versioning mechanism, adjust this.
 
2443
@@ -13789,7 +13288,7 @@
 
2444
   ;;
 
2445
 
 
2446
 # This must be Linux ELF.
 
2447
-linux*)
 
2448
+linux* | k*bsd*-gnu)
 
2449
   version_type=linux
 
2450
   need_lib_prefix=no
 
2451
   need_version=no
 
2452
@@ -13803,31 +13302,10 @@
 
2453
   # before this can be enabled.
 
2454
   hardcode_into_libs=yes
 
2455
 
 
2456
-  # find out which ABI we are using
 
2457
-  libsuff=
 
2458
-  case "$host_cpu" in
 
2459
-  x86_64*|s390x*|powerpc64*)
 
2460
-    echo '#line 13810 "configure"' > conftest.$ac_ext
 
2461
-    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
2462
-  (eval $ac_compile) 2>&5
 
2463
-  ac_status=$?
 
2464
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2465
-  (exit $ac_status); }; then
 
2466
-      case `/usr/bin/file conftest.$ac_objext` in
 
2467
-      *64-bit*)
 
2468
-        libsuff=64
 
2469
-        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
 
2470
-        ;;
 
2471
-      esac
 
2472
-    fi
 
2473
-    rm -rf conftest*
 
2474
-    ;;
 
2475
-  esac
 
2476
-
 
2477
   # Append ld.so.conf contents to the search path
 
2478
   if test -f /etc/ld.so.conf; then
 
2479
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
2480
-    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
 
2481
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
2482
   fi
 
2483
 
 
2484
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
2485
@@ -13839,7 +13317,7 @@
 
2486
   dynamic_linker='GNU/Linux ld.so'
 
2487
   ;;
 
2488
 
 
2489
-knetbsd*-gnu)
 
2490
+netbsdelf*-gnu)
 
2491
   version_type=linux
 
2492
   need_lib_prefix=no
 
2493
   need_version=no
 
2494
@@ -13848,7 +13326,7 @@
 
2495
   shlibpath_var=LD_LIBRARY_PATH
 
2496
   shlibpath_overrides_runpath=no
 
2497
   hardcode_into_libs=yes
 
2498
-  dynamic_linker='GNU ld.so'
 
2499
+  dynamic_linker='NetBSD ld.elf_so'
 
2500
   ;;
 
2501
 
 
2502
 netbsd*)
 
2503
@@ -14756,7 +14234,7 @@
 
2504
       lt_prog_compiler_static_F77='-Bstatic'
 
2505
       ;;
 
2506
 
 
2507
-    linux*)
 
2508
+    linux* | k*bsd*-gnu)
 
2509
       case $cc_basename in
 
2510
       icc* | ecc*)
 
2511
        lt_prog_compiler_wl_F77='-Wl,'
 
2512
@@ -14862,11 +14340,11 @@
 
2513
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2514
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2515
    -e 's:$: $lt_compiler_flag:'`
 
2516
-   (eval echo "\"\$as_me:14865: $lt_compile\"" >&5)
 
2517
+   (eval echo "\"\$as_me:14343: $lt_compile\"" >&5)
 
2518
    (eval "$lt_compile" 2>conftest.err)
 
2519
    ac_status=$?
 
2520
    cat conftest.err >&5
 
2521
-   echo "$as_me:14869: \$? = $ac_status" >&5
 
2522
+   echo "$as_me:14347: \$? = $ac_status" >&5
 
2523
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
2524
      # The compiler can only warn and ignore the option if not recognized
 
2525
      # So say no if there are warnings other than the usual output.
 
2526
@@ -14966,11 +14444,11 @@
 
2527
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2528
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2529
    -e 's:$: $lt_compiler_flag:'`
 
2530
-   (eval echo "\"\$as_me:14969: $lt_compile\"" >&5)
 
2531
+   (eval echo "\"\$as_me:14447: $lt_compile\"" >&5)
 
2532
    (eval "$lt_compile" 2>out/conftest.err)
 
2533
    ac_status=$?
 
2534
    cat out/conftest.err >&5
 
2535
-   echo "$as_me:14973: \$? = $ac_status" >&5
 
2536
+   echo "$as_me:14451: \$? = $ac_status" >&5
 
2537
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
2538
    then
 
2539
      # The compiler can only warn and ignore the option if not recognized
 
2540
@@ -15195,7 +14673,7 @@
 
2541
       archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
2542
       ;;
 
2543
 
 
2544
-    linux*)
 
2545
+    linux* | k*bsd*-gnu)
 
2546
       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
2547
        tmp_addflag=
 
2548
        case $cc_basename,$host_cpu in
 
2549
@@ -15221,12 +14699,13 @@
 
2550
   $echo "local: *; };" >> $output_objdir/$libname.ver~
 
2551
          $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
2552
        fi
 
2553
+       link_all_deplibs_F77=no
 
2554
       else
 
2555
        ld_shlibs_F77=no
 
2556
       fi
 
2557
       ;;
 
2558
 
 
2559
-    netbsd*)
 
2560
+    netbsd* | netbsdelf*-gnu)
 
2561
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
2562
        archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
2563
        wlarc=
 
2564
@@ -15436,27 +14915,11 @@
 
2565
   rm -f conftest.er1
 
2566
   cat conftest.err >&5
 
2567
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2568
-  (exit $ac_status); } &&
 
2569
-        { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
 
2570
-  { (case "(($ac_try" in
 
2571
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2572
-  *) ac_try_echo=$ac_try;;
 
2573
-esac
 
2574
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2575
-  (eval "$ac_try") 2>&5
 
2576
-  ac_status=$?
 
2577
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2578
-  (exit $ac_status); }; } &&
 
2579
-        { ac_try='test -s conftest$ac_exeext'
 
2580
-  { (case "(($ac_try" in
 
2581
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2582
-  *) ac_try_echo=$ac_try;;
 
2583
-esac
 
2584
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2585
-  (eval "$ac_try") 2>&5
 
2586
-  ac_status=$?
 
2587
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2588
-  (exit $ac_status); }; }; then
 
2589
+  (exit $ac_status); } && {
 
2590
+        test -z "$ac_f77_werror_flag" ||
 
2591
+        test ! -s conftest.err
 
2592
+       } && test -s conftest$ac_exeext &&
 
2593
+       $as_test_x conftest$ac_exeext; then
 
2594
 
 
2595
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2596
 }'`
 
2597
@@ -15470,7 +14933,7 @@
 
2598
 
 
2599
 fi
 
2600
 
 
2601
-rm -f core conftest.err conftest.$ac_objext \
 
2602
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2603
       conftest$ac_exeext conftest.$ac_ext
 
2604
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2605
 
 
2606
@@ -15501,27 +14964,11 @@
 
2607
   rm -f conftest.er1
 
2608
   cat conftest.err >&5
 
2609
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2610
-  (exit $ac_status); } &&
 
2611
-        { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
 
2612
-  { (case "(($ac_try" in
 
2613
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2614
-  *) ac_try_echo=$ac_try;;
 
2615
-esac
 
2616
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2617
-  (eval "$ac_try") 2>&5
 
2618
-  ac_status=$?
 
2619
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2620
-  (exit $ac_status); }; } &&
 
2621
-        { ac_try='test -s conftest$ac_exeext'
 
2622
-  { (case "(($ac_try" in
 
2623
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2624
-  *) ac_try_echo=$ac_try;;
 
2625
-esac
 
2626
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2627
-  (eval "$ac_try") 2>&5
 
2628
-  ac_status=$?
 
2629
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2630
-  (exit $ac_status); }; }; then
 
2631
+  (exit $ac_status); } && {
 
2632
+        test -z "$ac_f77_werror_flag" ||
 
2633
+        test ! -s conftest.err
 
2634
+       } && test -s conftest$ac_exeext &&
 
2635
+       $as_test_x conftest$ac_exeext; then
 
2636
 
 
2637
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2638
 }'`
 
2639
@@ -15535,7 +14982,7 @@
 
2640
 
 
2641
 fi
 
2642
 
 
2643
-rm -f core conftest.err conftest.$ac_objext \
 
2644
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2645
       conftest$ac_exeext conftest.$ac_ext
 
2646
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2647
 
 
2648
@@ -15666,7 +15113,7 @@
 
2649
       ;;
 
2650
 
 
2651
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
2652
-    freebsd* | kfreebsd*-gnu | dragonfly*)
 
2653
+    freebsd* | dragonfly*)
 
2654
       archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
2655
       hardcode_libdir_flag_spec_F77='-R$libdir'
 
2656
       hardcode_direct_F77=yes
 
2657
@@ -15768,7 +15215,7 @@
 
2658
       link_all_deplibs_F77=yes
 
2659
       ;;
 
2660
 
 
2661
-    netbsd*)
 
2662
+    netbsd* | netbsdelf*-gnu)
 
2663
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
2664
        archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
2665
       else
 
2666
@@ -16258,18 +15705,6 @@
 
2667
   dynamic_linker=no
 
2668
   ;;
 
2669
 
 
2670
-kfreebsd*-gnu)
 
2671
-  version_type=linux
 
2672
-  need_lib_prefix=no
 
2673
-  need_version=no
 
2674
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
2675
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2676
-  shlibpath_var=LD_LIBRARY_PATH
 
2677
-  shlibpath_overrides_runpath=no
 
2678
-  hardcode_into_libs=yes
 
2679
-  dynamic_linker='GNU ld.so'
 
2680
-  ;;
 
2681
-
 
2682
 freebsd* | dragonfly*)
 
2683
   # DragonFly does not have aout.  When/if they implement a new
 
2684
   # versioning mechanism, adjust this.
 
2685
@@ -16425,7 +15860,7 @@
 
2686
   ;;
 
2687
 
 
2688
 # This must be Linux ELF.
 
2689
-linux*)
 
2690
+linux* | k*bsd*-gnu)
 
2691
   version_type=linux
 
2692
   need_lib_prefix=no
 
2693
   need_version=no
 
2694
@@ -16439,31 +15874,10 @@
 
2695
   # before this can be enabled.
 
2696
   hardcode_into_libs=yes
 
2697
 
 
2698
-  # find out which ABI we are using
 
2699
-  libsuff=
 
2700
-  case "$host_cpu" in
 
2701
-  x86_64*|s390x*|powerpc64*)
 
2702
-    echo '#line 16446 "configure"' > conftest.$ac_ext
 
2703
-    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
2704
-  (eval $ac_compile) 2>&5
 
2705
-  ac_status=$?
 
2706
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2707
-  (exit $ac_status); }; then
 
2708
-      case `/usr/bin/file conftest.$ac_objext` in
 
2709
-      *64-bit*)
 
2710
-        libsuff=64
 
2711
-        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
 
2712
-        ;;
 
2713
-      esac
 
2714
-    fi
 
2715
-    rm -rf conftest*
 
2716
-    ;;
 
2717
-  esac
 
2718
-
 
2719
   # Append ld.so.conf contents to the search path
 
2720
   if test -f /etc/ld.so.conf; then
 
2721
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
2722
-    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
 
2723
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
2724
   fi
 
2725
 
 
2726
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
2727
@@ -16475,7 +15889,7 @@
 
2728
   dynamic_linker='GNU/Linux ld.so'
 
2729
   ;;
 
2730
 
 
2731
-knetbsd*-gnu)
 
2732
+netbsdelf*-gnu)
 
2733
   version_type=linux
 
2734
   need_lib_prefix=no
 
2735
   need_version=no
 
2736
@@ -16484,7 +15898,7 @@
 
2737
   shlibpath_var=LD_LIBRARY_PATH
 
2738
   shlibpath_overrides_runpath=no
 
2739
   hardcode_into_libs=yes
 
2740
-  dynamic_linker='GNU ld.so'
 
2741
+  dynamic_linker='NetBSD ld.elf_so'
 
2742
   ;;
 
2743
 
 
2744
 netbsd*)
 
2745
@@ -17217,11 +16631,11 @@
 
2746
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2747
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2748
    -e 's:$: $lt_compiler_flag:'`
 
2749
-   (eval echo "\"\$as_me:17220: $lt_compile\"" >&5)
 
2750
+   (eval echo "\"\$as_me:16634: $lt_compile\"" >&5)
 
2751
    (eval "$lt_compile" 2>conftest.err)
 
2752
    ac_status=$?
 
2753
    cat conftest.err >&5
 
2754
-   echo "$as_me:17224: \$? = $ac_status" >&5
 
2755
+   echo "$as_me:16638: \$? = $ac_status" >&5
 
2756
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
2757
      # The compiler can only warn and ignore the option if not recognized
 
2758
      # So say no if there are warnings other than the usual output.
 
2759
@@ -17379,7 +16793,7 @@
 
2760
       lt_prog_compiler_static_GCJ='-Bstatic'
 
2761
       ;;
 
2762
 
 
2763
-    linux*)
 
2764
+    linux* | k*bsd*-gnu)
 
2765
       case $cc_basename in
 
2766
       icc* | ecc*)
 
2767
        lt_prog_compiler_wl_GCJ='-Wl,'
 
2768
@@ -17485,11 +16899,11 @@
 
2769
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2770
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2771
    -e 's:$: $lt_compiler_flag:'`
 
2772
-   (eval echo "\"\$as_me:17488: $lt_compile\"" >&5)
 
2773
+   (eval echo "\"\$as_me:16902: $lt_compile\"" >&5)
 
2774
    (eval "$lt_compile" 2>conftest.err)
 
2775
    ac_status=$?
 
2776
    cat conftest.err >&5
 
2777
-   echo "$as_me:17492: \$? = $ac_status" >&5
 
2778
+   echo "$as_me:16906: \$? = $ac_status" >&5
 
2779
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
2780
      # The compiler can only warn and ignore the option if not recognized
 
2781
      # So say no if there are warnings other than the usual output.
 
2782
@@ -17589,11 +17003,11 @@
 
2783
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
2784
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
2785
    -e 's:$: $lt_compiler_flag:'`
 
2786
-   (eval echo "\"\$as_me:17592: $lt_compile\"" >&5)
 
2787
+   (eval echo "\"\$as_me:17006: $lt_compile\"" >&5)
 
2788
    (eval "$lt_compile" 2>out/conftest.err)
 
2789
    ac_status=$?
 
2790
    cat out/conftest.err >&5
 
2791
-   echo "$as_me:17596: \$? = $ac_status" >&5
 
2792
+   echo "$as_me:17010: \$? = $ac_status" >&5
 
2793
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
2794
    then
 
2795
      # The compiler can only warn and ignore the option if not recognized
 
2796
@@ -17818,7 +17232,7 @@
 
2797
       archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
2798
       ;;
 
2799
 
 
2800
-    linux*)
 
2801
+    linux* | k*bsd*-gnu)
 
2802
       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
2803
        tmp_addflag=
 
2804
        case $cc_basename,$host_cpu in
 
2805
@@ -17844,12 +17258,13 @@
 
2806
   $echo "local: *; };" >> $output_objdir/$libname.ver~
 
2807
          $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
2808
        fi
 
2809
+       link_all_deplibs_GCJ=no
 
2810
       else
 
2811
        ld_shlibs_GCJ=no
 
2812
       fi
 
2813
       ;;
 
2814
 
 
2815
-    netbsd*)
 
2816
+    netbsd* | netbsdelf*-gnu)
 
2817
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
2818
        archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
2819
        wlarc=
 
2820
@@ -18069,27 +17484,11 @@
 
2821
   rm -f conftest.er1
 
2822
   cat conftest.err >&5
 
2823
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2824
-  (exit $ac_status); } &&
 
2825
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2826
-  { (case "(($ac_try" in
 
2827
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2828
-  *) ac_try_echo=$ac_try;;
 
2829
-esac
 
2830
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2831
-  (eval "$ac_try") 2>&5
 
2832
-  ac_status=$?
 
2833
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2834
-  (exit $ac_status); }; } &&
 
2835
-        { ac_try='test -s conftest$ac_exeext'
 
2836
-  { (case "(($ac_try" in
 
2837
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2838
-  *) ac_try_echo=$ac_try;;
 
2839
-esac
 
2840
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2841
-  (eval "$ac_try") 2>&5
 
2842
-  ac_status=$?
 
2843
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2844
-  (exit $ac_status); }; }; then
 
2845
+  (exit $ac_status); } && {
 
2846
+        test -z "$ac_c_werror_flag" ||
 
2847
+        test ! -s conftest.err
 
2848
+       } && test -s conftest$ac_exeext &&
 
2849
+       $as_test_x conftest$ac_exeext; then
 
2850
 
 
2851
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2852
 }'`
 
2853
@@ -18103,7 +17502,7 @@
 
2854
 
 
2855
 fi
 
2856
 
 
2857
-rm -f core conftest.err conftest.$ac_objext \
 
2858
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2859
       conftest$ac_exeext conftest.$ac_ext
 
2860
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2861
 
 
2862
@@ -18144,27 +17543,11 @@
 
2863
   rm -f conftest.er1
 
2864
   cat conftest.err >&5
 
2865
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2866
-  (exit $ac_status); } &&
 
2867
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
2868
-  { (case "(($ac_try" in
 
2869
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2870
-  *) ac_try_echo=$ac_try;;
 
2871
-esac
 
2872
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2873
-  (eval "$ac_try") 2>&5
 
2874
-  ac_status=$?
 
2875
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2876
-  (exit $ac_status); }; } &&
 
2877
-        { ac_try='test -s conftest$ac_exeext'
 
2878
-  { (case "(($ac_try" in
 
2879
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2880
-  *) ac_try_echo=$ac_try;;
 
2881
-esac
 
2882
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2883
-  (eval "$ac_try") 2>&5
 
2884
-  ac_status=$?
 
2885
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2886
-  (exit $ac_status); }; }; then
 
2887
+  (exit $ac_status); } && {
 
2888
+        test -z "$ac_c_werror_flag" ||
 
2889
+        test ! -s conftest.err
 
2890
+       } && test -s conftest$ac_exeext &&
 
2891
+       $as_test_x conftest$ac_exeext; then
 
2892
 
 
2893
 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
2894
 }'`
 
2895
@@ -18178,7 +17561,7 @@
 
2896
 
 
2897
 fi
 
2898
 
 
2899
-rm -f core conftest.err conftest.$ac_objext \
 
2900
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
2901
       conftest$ac_exeext conftest.$ac_ext
 
2902
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
2903
 
 
2904
@@ -18309,7 +17692,7 @@
 
2905
       ;;
 
2906
 
 
2907
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
2908
-    freebsd* | kfreebsd*-gnu | dragonfly*)
 
2909
+    freebsd* | dragonfly*)
 
2910
       archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
2911
       hardcode_libdir_flag_spec_GCJ='-R$libdir'
 
2912
       hardcode_direct_GCJ=yes
 
2913
@@ -18411,7 +17794,7 @@
 
2914
       link_all_deplibs_GCJ=yes
 
2915
       ;;
 
2916
 
 
2917
-    netbsd*)
 
2918
+    netbsd* | netbsdelf*-gnu)
 
2919
       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
2920
        archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
2921
       else
 
2922
@@ -18901,18 +18284,6 @@
 
2923
   dynamic_linker=no
 
2924
   ;;
 
2925
 
 
2926
-kfreebsd*-gnu)
 
2927
-  version_type=linux
 
2928
-  need_lib_prefix=no
 
2929
-  need_version=no
 
2930
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
2931
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2932
-  shlibpath_var=LD_LIBRARY_PATH
 
2933
-  shlibpath_overrides_runpath=no
 
2934
-  hardcode_into_libs=yes
 
2935
-  dynamic_linker='GNU ld.so'
 
2936
-  ;;
 
2937
-
 
2938
 freebsd* | dragonfly*)
 
2939
   # DragonFly does not have aout.  When/if they implement a new
 
2940
   # versioning mechanism, adjust this.
 
2941
@@ -19068,7 +18439,7 @@
 
2942
   ;;
 
2943
 
 
2944
 # This must be Linux ELF.
 
2945
-linux*)
 
2946
+linux* | k*bsd*-gnu)
 
2947
   version_type=linux
 
2948
   need_lib_prefix=no
 
2949
   need_version=no
 
2950
@@ -19082,31 +18453,10 @@
 
2951
   # before this can be enabled.
 
2952
   hardcode_into_libs=yes
 
2953
 
 
2954
-  # find out which ABI we are using
 
2955
-  libsuff=
 
2956
-  case "$host_cpu" in
 
2957
-  x86_64*|s390x*|powerpc64*)
 
2958
-    echo '#line 19089 "configure"' > conftest.$ac_ext
 
2959
-    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
2960
-  (eval $ac_compile) 2>&5
 
2961
-  ac_status=$?
 
2962
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2963
-  (exit $ac_status); }; then
 
2964
-      case `/usr/bin/file conftest.$ac_objext` in
 
2965
-      *64-bit*)
 
2966
-        libsuff=64
 
2967
-        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
 
2968
-        ;;
 
2969
-      esac
 
2970
-    fi
 
2971
-    rm -rf conftest*
 
2972
-    ;;
 
2973
-  esac
 
2974
-
 
2975
   # Append ld.so.conf contents to the search path
 
2976
   if test -f /etc/ld.so.conf; then
 
2977
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
2978
-    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
 
2979
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
2980
   fi
 
2981
 
 
2982
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
2983
@@ -19118,7 +18468,7 @@
 
2984
   dynamic_linker='GNU/Linux ld.so'
 
2985
   ;;
 
2986
 
 
2987
-knetbsd*-gnu)
 
2988
+netbsdelf*-gnu)
 
2989
   version_type=linux
 
2990
   need_lib_prefix=no
 
2991
   need_version=no
 
2992
@@ -19127,7 +18477,7 @@
 
2993
   shlibpath_var=LD_LIBRARY_PATH
 
2994
   shlibpath_overrides_runpath=no
 
2995
   hardcode_into_libs=yes
 
2996
-  dynamic_linker='GNU ld.so'
 
2997
+  dynamic_linker='NetBSD ld.elf_so'
 
2998
   ;;
 
2999
 
 
3000
 netbsd*)
 
3001
@@ -20360,27 +19710,10 @@
 
3002
   rm -f conftest.er1
 
3003
   cat conftest.err >&5
 
3004
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3005
-  (exit $ac_status); } &&
 
3006
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3007
-  { (case "(($ac_try" in
 
3008
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3009
-  *) ac_try_echo=$ac_try;;
 
3010
-esac
 
3011
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3012
-  (eval "$ac_try") 2>&5
 
3013
-  ac_status=$?
 
3014
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3015
-  (exit $ac_status); }; } &&
 
3016
-        { ac_try='test -s conftest.$ac_objext'
 
3017
-  { (case "(($ac_try" in
 
3018
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3019
-  *) ac_try_echo=$ac_try;;
 
3020
-esac
 
3021
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3022
-  (eval "$ac_try") 2>&5
 
3023
-  ac_status=$?
 
3024
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3025
-  (exit $ac_status); }; }; then
 
3026
+  (exit $ac_status); } && {
 
3027
+        test -z "$ac_c_werror_flag" ||
 
3028
+        test ! -s conftest.err
 
3029
+       } && test -s conftest.$ac_objext; then
 
3030
   break
 
3031
 else
 
3032
   echo "$as_me: failed program was:" >&5
 
3033
@@ -20404,27 +19737,10 @@
 
3034
   rm -f conftest.er1
 
3035
   cat conftest.err >&5
 
3036
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3037
-  (exit $ac_status); } &&
 
3038
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3039
-  { (case "(($ac_try" in
 
3040
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3041
-  *) ac_try_echo=$ac_try;;
 
3042
-esac
 
3043
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3044
-  (eval "$ac_try") 2>&5
 
3045
-  ac_status=$?
 
3046
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3047
-  (exit $ac_status); }; } &&
 
3048
-        { ac_try='test -s conftest.$ac_objext'
 
3049
-  { (case "(($ac_try" in
 
3050
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3051
-  *) ac_try_echo=$ac_try;;
 
3052
-esac
 
3053
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3054
-  (eval "$ac_try") 2>&5
 
3055
-  ac_status=$?
 
3056
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3057
-  (exit $ac_status); }; }; then
 
3058
+  (exit $ac_status); } && {
 
3059
+        test -z "$ac_c_werror_flag" ||
 
3060
+        test ! -s conftest.err
 
3061
+       } && test -s conftest.$ac_objext; then
 
3062
   ac_cv_sys_largefile_CC=' -n32'; break
 
3063
 else
 
3064
   echo "$as_me: failed program was:" >&5
 
3065
@@ -20452,7 +19768,6 @@
 
3066
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3067
 else
 
3068
   while :; do
 
3069
-  ac_cv_sys_file_offset_bits=no
 
3070
   cat >conftest.$ac_ext <<_ACEOF
 
3071
 /* confdefs.h.  */
 
3072
 _ACEOF
 
3073
@@ -20489,28 +19804,11 @@
 
3074
   rm -f conftest.er1
 
3075
   cat conftest.err >&5
 
3076
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3077
-  (exit $ac_status); } &&
 
3078
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3079
-  { (case "(($ac_try" in
 
3080
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3081
-  *) ac_try_echo=$ac_try;;
 
3082
-esac
 
3083
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3084
-  (eval "$ac_try") 2>&5
 
3085
-  ac_status=$?
 
3086
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3087
-  (exit $ac_status); }; } &&
 
3088
-        { ac_try='test -s conftest.$ac_objext'
 
3089
-  { (case "(($ac_try" in
 
3090
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3091
-  *) ac_try_echo=$ac_try;;
 
3092
-esac
 
3093
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3094
-  (eval "$ac_try") 2>&5
 
3095
-  ac_status=$?
 
3096
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3097
-  (exit $ac_status); }; }; then
 
3098
-  break
 
3099
+  (exit $ac_status); } && {
 
3100
+        test -z "$ac_c_werror_flag" ||
 
3101
+        test ! -s conftest.err
 
3102
+       } && test -s conftest.$ac_objext; then
 
3103
+  ac_cv_sys_file_offset_bits=no; break
 
3104
 else
 
3105
   echo "$as_me: failed program was:" >&5
 
3106
 sed 's/^/| /' conftest.$ac_ext >&5
 
3107
@@ -20556,27 +19854,10 @@
 
3108
   rm -f conftest.er1
 
3109
   cat conftest.err >&5
 
3110
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3111
-  (exit $ac_status); } &&
 
3112
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3113
-  { (case "(($ac_try" in
 
3114
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3115
-  *) ac_try_echo=$ac_try;;
 
3116
-esac
 
3117
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3118
-  (eval "$ac_try") 2>&5
 
3119
-  ac_status=$?
 
3120
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3121
-  (exit $ac_status); }; } &&
 
3122
-        { ac_try='test -s conftest.$ac_objext'
 
3123
-  { (case "(($ac_try" in
 
3124
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3125
-  *) ac_try_echo=$ac_try;;
 
3126
-esac
 
3127
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3128
-  (eval "$ac_try") 2>&5
 
3129
-  ac_status=$?
 
3130
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3131
-  (exit $ac_status); }; }; then
 
3132
+  (exit $ac_status); } && {
 
3133
+        test -z "$ac_c_werror_flag" ||
 
3134
+        test ! -s conftest.err
 
3135
+       } && test -s conftest.$ac_objext; then
 
3136
   ac_cv_sys_file_offset_bits=64; break
 
3137
 else
 
3138
   echo "$as_me: failed program was:" >&5
 
3139
@@ -20586,26 +19867,28 @@
 
3140
 fi
 
3141
 
 
3142
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3143
+  ac_cv_sys_file_offset_bits=unknown
 
3144
   break
 
3145
 done
 
3146
 fi
 
3147
 { echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5
 
3148
 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6; }
 
3149
-if test "$ac_cv_sys_file_offset_bits" != no; then
 
3150
-
 
3151
+case $ac_cv_sys_file_offset_bits in #(
 
3152
+  no | unknown) ;;
 
3153
+  *)
 
3154
 cat >>confdefs.h <<_ACEOF
 
3155
 #define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
 
3156
 _ACEOF
 
3157
-
 
3158
-fi
 
3159
+;;
 
3160
+esac
 
3161
 rm -f conftest*
 
3162
-  { echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5
 
3163
+  if test $ac_cv_sys_file_offset_bits = unknown; then
 
3164
+    { echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5
 
3165
 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6; }
 
3166
 if test "${ac_cv_sys_large_files+set}" = set; then
 
3167
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3168
 else
 
3169
   while :; do
 
3170
-  ac_cv_sys_large_files=no
 
3171
   cat >conftest.$ac_ext <<_ACEOF
 
3172
 /* confdefs.h.  */
 
3173
 _ACEOF
 
3174
@@ -20642,28 +19925,11 @@
 
3175
   rm -f conftest.er1
 
3176
   cat conftest.err >&5
 
3177
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3178
-  (exit $ac_status); } &&
 
3179
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3180
-  { (case "(($ac_try" in
 
3181
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3182
-  *) ac_try_echo=$ac_try;;
 
3183
-esac
 
3184
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3185
-  (eval "$ac_try") 2>&5
 
3186
-  ac_status=$?
 
3187
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3188
-  (exit $ac_status); }; } &&
 
3189
-        { ac_try='test -s conftest.$ac_objext'
 
3190
-  { (case "(($ac_try" in
 
3191
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3192
-  *) ac_try_echo=$ac_try;;
 
3193
-esac
 
3194
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3195
-  (eval "$ac_try") 2>&5
 
3196
-  ac_status=$?
 
3197
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3198
-  (exit $ac_status); }; }; then
 
3199
-  break
 
3200
+  (exit $ac_status); } && {
 
3201
+        test -z "$ac_c_werror_flag" ||
 
3202
+        test ! -s conftest.err
 
3203
+       } && test -s conftest.$ac_objext; then
 
3204
+  ac_cv_sys_large_files=no; break
 
3205
 else
 
3206
   echo "$as_me: failed program was:" >&5
 
3207
 sed 's/^/| /' conftest.$ac_ext >&5
 
3208
@@ -20709,27 +19975,10 @@
 
3209
   rm -f conftest.er1
 
3210
   cat conftest.err >&5
 
3211
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3212
-  (exit $ac_status); } &&
 
3213
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3214
-  { (case "(($ac_try" in
 
3215
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3216
-  *) ac_try_echo=$ac_try;;
 
3217
-esac
 
3218
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3219
-  (eval "$ac_try") 2>&5
 
3220
-  ac_status=$?
 
3221
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3222
-  (exit $ac_status); }; } &&
 
3223
-        { ac_try='test -s conftest.$ac_objext'
 
3224
-  { (case "(($ac_try" in
 
3225
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3226
-  *) ac_try_echo=$ac_try;;
 
3227
-esac
 
3228
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3229
-  (eval "$ac_try") 2>&5
 
3230
-  ac_status=$?
 
3231
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3232
-  (exit $ac_status); }; }; then
 
3233
+  (exit $ac_status); } && {
 
3234
+        test -z "$ac_c_werror_flag" ||
 
3235
+        test ! -s conftest.err
 
3236
+       } && test -s conftest.$ac_objext; then
 
3237
   ac_cv_sys_large_files=1; break
 
3238
 else
 
3239
   echo "$as_me: failed program was:" >&5
 
3240
@@ -20739,19 +19988,22 @@
 
3241
 fi
 
3242
 
 
3243
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3244
+  ac_cv_sys_large_files=unknown
 
3245
   break
 
3246
 done
 
3247
 fi
 
3248
 { echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5
 
3249
 echo "${ECHO_T}$ac_cv_sys_large_files" >&6; }
 
3250
-if test "$ac_cv_sys_large_files" != no; then
 
3251
-
 
3252
+case $ac_cv_sys_large_files in #(
 
3253
+  no | unknown) ;;
 
3254
+  *)
 
3255
 cat >>confdefs.h <<_ACEOF
 
3256
 #define _LARGE_FILES $ac_cv_sys_large_files
 
3257
 _ACEOF
 
3258
-
 
3259
-fi
 
3260
+;;
 
3261
+esac
 
3262
 rm -f conftest*
 
3263
+  fi
 
3264
 fi
 
3265
 
 
3266
 
 
3267
@@ -20780,7 +20032,7 @@
 
3268
   IFS=$as_save_IFS
 
3269
   test -z "$as_dir" && as_dir=.
 
3270
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3271
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3272
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3273
     ac_cv_path_NM="$as_dir/$ac_word$ac_exec_ext"
 
3274
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3275
     break 2
 
3276
@@ -20901,7 +20153,7 @@
 
3277
   IFS=$as_save_IFS
 
3278
   test -z "$as_dir" && as_dir=.
 
3279
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3280
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3281
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3282
     ac_cv_prog_WINDRES="${ac_tool_prefix}windres"
 
3283
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3284
     break 2
 
3285
@@ -20941,7 +20193,7 @@
 
3286
   IFS=$as_save_IFS
 
3287
   test -z "$as_dir" && as_dir=.
 
3288
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3289
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3290
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3291
     ac_cv_prog_ac_ct_WINDRES="windres"
 
3292
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3293
     break 2
 
3294
@@ -21001,7 +20253,7 @@
 
3295
   IFS=$as_save_IFS
 
3296
   test -z "$as_dir" && as_dir=.
 
3297
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3298
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3299
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3300
     ac_cv_prog_ms_librarian="yes"
 
3301
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3302
     break 2
 
3303
@@ -21254,27 +20506,11 @@
 
3304
   rm -f conftest.er1
 
3305
   cat conftest.err >&5
 
3306
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3307
-  (exit $ac_status); } &&
 
3308
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3309
-  { (case "(($ac_try" in
 
3310
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3311
-  *) ac_try_echo=$ac_try;;
 
3312
-esac
 
3313
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3314
-  (eval "$ac_try") 2>&5
 
3315
-  ac_status=$?
 
3316
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3317
-  (exit $ac_status); }; } &&
 
3318
-        { ac_try='test -s conftest$ac_exeext'
 
3319
-  { (case "(($ac_try" in
 
3320
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3321
-  *) ac_try_echo=$ac_try;;
 
3322
-esac
 
3323
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3324
-  (eval "$ac_try") 2>&5
 
3325
-  ac_status=$?
 
3326
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3327
-  (exit $ac_status); }; }; then
 
3328
+  (exit $ac_status); } && {
 
3329
+        test -z "$ac_c_werror_flag" ||
 
3330
+        test ! -s conftest.err
 
3331
+       } && test -s conftest$ac_exeext &&
 
3332
+       $as_test_x conftest$ac_exeext; then
 
3333
   ac_cv_search_strerror=$ac_res
 
3334
 else
 
3335
   echo "$as_me: failed program was:" >&5
 
3336
@@ -21283,7 +20519,7 @@
 
3337
 
 
3338
 fi
 
3339
 
 
3340
-rm -f core conftest.err conftest.$ac_objext \
 
3341
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3342
       conftest$ac_exeext
 
3343
   if test "${ac_cv_search_strerror+set}" = set; then
 
3344
   break
 
3345
@@ -21383,27 +20619,10 @@
 
3346
   rm -f conftest.er1
 
3347
   cat conftest.err >&5
 
3348
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3349
-  (exit $ac_status); } &&
 
3350
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3351
-  { (case "(($ac_try" in
 
3352
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3353
-  *) ac_try_echo=$ac_try;;
 
3354
-esac
 
3355
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3356
-  (eval "$ac_try") 2>&5
 
3357
-  ac_status=$?
 
3358
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3359
-  (exit $ac_status); }; } &&
 
3360
-        { ac_try='test -s conftest.$ac_objext'
 
3361
-  { (case "(($ac_try" in
 
3362
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3363
-  *) ac_try_echo=$ac_try;;
 
3364
-esac
 
3365
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3366
-  (eval "$ac_try") 2>&5
 
3367
-  ac_status=$?
 
3368
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3369
-  (exit $ac_status); }; }; then
 
3370
+  (exit $ac_status); } && {
 
3371
+        test -z "$ac_c_werror_flag" ||
 
3372
+        test ! -s conftest.err
 
3373
+       } && test -s conftest.$ac_objext; then
 
3374
   am_cv_prog_cc_stdc="$ac_arg"; break
 
3375
 else
 
3376
   echo "$as_me: failed program was:" >&5
 
3377
@@ -21466,7 +20685,7 @@
 
3378
     # by default.
 
3379
     for ac_prog in ginstall scoinst install; do
 
3380
       for ac_exec_ext in '' $ac_executable_extensions; do
 
3381
-       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
3382
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
3383
          if test $ac_prog = install &&
 
3384
            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
3385
            # AIX install.  It has an incompatible calling convention.
 
3386
@@ -21630,7 +20849,7 @@
 
3387
   IFS=$as_save_IFS
 
3388
   test -z "$as_dir" && as_dir=.
 
3389
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3390
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3391
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3392
     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
3393
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3394
     break 2
 
3395
@@ -21673,7 +20892,7 @@
 
3396
   IFS=$as_save_IFS
 
3397
   test -z "$as_dir" && as_dir=.
 
3398
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3399
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3400
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3401
     ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
3402
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3403
     break 2
 
3404
@@ -21915,7 +21134,7 @@
 
3405
   IFS=$as_save_IFS
 
3406
   test -z "$as_dir" && as_dir=.
 
3407
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3408
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3409
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3410
     ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
 
3411
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3412
     break 2
 
3413
@@ -21958,7 +21177,7 @@
 
3414
   IFS=$as_save_IFS
 
3415
   test -z "$as_dir" && as_dir=.
 
3416
   for ac_exec_ext in '' $ac_executable_extensions; do
 
3417
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3418
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3419
     ac_cv_prog_INDENT="indent"
 
3420
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3421
     break 2
 
3422
@@ -22058,27 +21277,11 @@
 
3423
   rm -f conftest.er1
 
3424
   cat conftest.err >&5
 
3425
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3426
-  (exit $ac_status); } &&
 
3427
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3428
-  { (case "(($ac_try" in
 
3429
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3430
-  *) ac_try_echo=$ac_try;;
 
3431
-esac
 
3432
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3433
-  (eval "$ac_try") 2>&5
 
3434
-  ac_status=$?
 
3435
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3436
-  (exit $ac_status); }; } &&
 
3437
-        { ac_try='test -s conftest$ac_exeext'
 
3438
-  { (case "(($ac_try" in
 
3439
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3440
-  *) ac_try_echo=$ac_try;;
 
3441
-esac
 
3442
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3443
-  (eval "$ac_try") 2>&5
 
3444
-  ac_status=$?
 
3445
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3446
-  (exit $ac_status); }; }; then
 
3447
+  (exit $ac_status); } && {
 
3448
+        test -z "$ac_c_werror_flag" ||
 
3449
+        test ! -s conftest.err
 
3450
+       } && test -s conftest$ac_exeext &&
 
3451
+       $as_test_x conftest$ac_exeext; then
 
3452
   eval "$as_ac_var=yes"
 
3453
 else
 
3454
   echo "$as_me: failed program was:" >&5
 
3455
@@ -22087,7 +21290,7 @@
 
3456
        eval "$as_ac_var=no"
 
3457
 fi
 
3458
 
 
3459
-rm -f core conftest.err conftest.$ac_objext \
 
3460
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3461
       conftest$ac_exeext conftest.$ac_ext
 
3462
 fi
 
3463
 ac_res=`eval echo '${'$as_ac_var'}'`
 
3464
@@ -22136,27 +21339,11 @@
 
3465
   rm -f conftest.er1
 
3466
   cat conftest.err >&5
 
3467
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3468
-  (exit $ac_status); } &&
 
3469
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3470
-  { (case "(($ac_try" in
 
3471
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3472
-  *) ac_try_echo=$ac_try;;
 
3473
-esac
 
3474
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3475
-  (eval "$ac_try") 2>&5
 
3476
-  ac_status=$?
 
3477
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3478
-  (exit $ac_status); }; } &&
 
3479
-        { ac_try='test -s conftest$ac_exeext'
 
3480
-  { (case "(($ac_try" in
 
3481
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3482
-  *) ac_try_echo=$ac_try;;
 
3483
-esac
 
3484
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3485
-  (eval "$ac_try") 2>&5
 
3486
-  ac_status=$?
 
3487
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3488
-  (exit $ac_status); }; }; then
 
3489
+  (exit $ac_status); } && {
 
3490
+        test -z "$ac_c_werror_flag" ||
 
3491
+        test ! -s conftest.err
 
3492
+       } && test -s conftest$ac_exeext &&
 
3493
+       $as_test_x conftest$ac_exeext; then
 
3494
   gtk_ok=yes
 
3495
 else
 
3496
   echo "$as_me: failed program was:" >&5
 
3497
@@ -22165,7 +21352,7 @@
 
3498
        gtk_ok=no
 
3499
 fi
 
3500
 
 
3501
-rm -f core conftest.err conftest.$ac_objext \
 
3502
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3503
       conftest$ac_exeext conftest.$ac_ext
 
3504
 { echo "$as_me:$LINENO: result: $gtk_ok" >&5
 
3505
 echo "${ECHO_T}$gtk_ok" >&6; }
 
3506
@@ -22211,27 +21398,11 @@
 
3507
   rm -f conftest.er1
 
3508
   cat conftest.err >&5
 
3509
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3510
-  (exit $ac_status); } &&
 
3511
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3512
-  { (case "(($ac_try" in
 
3513
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3514
-  *) ac_try_echo=$ac_try;;
 
3515
-esac
 
3516
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3517
-  (eval "$ac_try") 2>&5
 
3518
-  ac_status=$?
 
3519
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3520
-  (exit $ac_status); }; } &&
 
3521
-        { ac_try='test -s conftest$ac_exeext'
 
3522
-  { (case "(($ac_try" in
 
3523
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3524
-  *) ac_try_echo=$ac_try;;
 
3525
-esac
 
3526
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3527
-  (eval "$ac_try") 2>&5
 
3528
-  ac_status=$?
 
3529
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3530
-  (exit $ac_status); }; }; then
 
3531
+  (exit $ac_status); } && {
 
3532
+        test -z "$ac_c_werror_flag" ||
 
3533
+        test ! -s conftest.err
 
3534
+       } && test -s conftest$ac_exeext &&
 
3535
+       $as_test_x conftest$ac_exeext; then
 
3536
   gtk_ok=yes
 
3537
 else
 
3538
   echo "$as_me: failed program was:" >&5
 
3539
@@ -22240,7 +21411,7 @@
 
3540
        gtk_ok=no
 
3541
 fi
 
3542
 
 
3543
-rm -f core conftest.err conftest.$ac_objext \
 
3544
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3545
       conftest$ac_exeext conftest.$ac_ext
 
3546
 { echo "$as_me:$LINENO: result: $gtk_ok" >&5
 
3547
 echo "${ECHO_T}$gtk_ok" >&6; }
 
3548
@@ -22286,27 +21457,11 @@
 
3549
   rm -f conftest.er1
 
3550
   cat conftest.err >&5
 
3551
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3552
-  (exit $ac_status); } &&
 
3553
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3554
-  { (case "(($ac_try" in
 
3555
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3556
-  *) ac_try_echo=$ac_try;;
 
3557
-esac
 
3558
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3559
-  (eval "$ac_try") 2>&5
 
3560
-  ac_status=$?
 
3561
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3562
-  (exit $ac_status); }; } &&
 
3563
-        { ac_try='test -s conftest$ac_exeext'
 
3564
-  { (case "(($ac_try" in
 
3565
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3566
-  *) ac_try_echo=$ac_try;;
 
3567
-esac
 
3568
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3569
-  (eval "$ac_try") 2>&5
 
3570
-  ac_status=$?
 
3571
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3572
-  (exit $ac_status); }; }; then
 
3573
+  (exit $ac_status); } && {
 
3574
+        test -z "$ac_c_werror_flag" ||
 
3575
+        test ! -s conftest.err
 
3576
+       } && test -s conftest$ac_exeext &&
 
3577
+       $as_test_x conftest$ac_exeext; then
 
3578
   gtk_ok=yes
 
3579
 else
 
3580
   echo "$as_me: failed program was:" >&5
 
3581
@@ -22315,7 +21470,7 @@
 
3582
        gtk_ok=no
 
3583
 fi
 
3584
 
 
3585
-rm -f core conftest.err conftest.$ac_objext \
 
3586
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3587
       conftest$ac_exeext conftest.$ac_ext
 
3588
 { echo "$as_me:$LINENO: result: $gtk_ok" >&5
 
3589
 echo "${ECHO_T}$gtk_ok" >&6; }
 
3590
@@ -22361,27 +21516,11 @@
 
3591
   rm -f conftest.er1
 
3592
   cat conftest.err >&5
 
3593
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3594
-  (exit $ac_status); } &&
 
3595
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3596
-  { (case "(($ac_try" in
 
3597
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3598
-  *) ac_try_echo=$ac_try;;
 
3599
-esac
 
3600
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3601
-  (eval "$ac_try") 2>&5
 
3602
-  ac_status=$?
 
3603
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3604
-  (exit $ac_status); }; } &&
 
3605
-        { ac_try='test -s conftest$ac_exeext'
 
3606
-  { (case "(($ac_try" in
 
3607
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3608
-  *) ac_try_echo=$ac_try;;
 
3609
-esac
 
3610
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3611
-  (eval "$ac_try") 2>&5
 
3612
-  ac_status=$?
 
3613
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3614
-  (exit $ac_status); }; }; then
 
3615
+  (exit $ac_status); } && {
 
3616
+        test -z "$ac_c_werror_flag" ||
 
3617
+        test ! -s conftest.err
 
3618
+       } && test -s conftest$ac_exeext &&
 
3619
+       $as_test_x conftest$ac_exeext; then
 
3620
   gtk_ok=yes
 
3621
 else
 
3622
   echo "$as_me: failed program was:" >&5
 
3623
@@ -22390,7 +21529,7 @@
 
3624
        gtk_ok=no
 
3625
 fi
 
3626
 
 
3627
-rm -f core conftest.err conftest.$ac_objext \
 
3628
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3629
       conftest$ac_exeext conftest.$ac_ext
 
3630
 { echo "$as_me:$LINENO: result: $gtk_ok" >&5
 
3631
 echo "${ECHO_T}$gtk_ok" >&6; }
 
3632
@@ -22436,27 +21575,11 @@
 
3633
   rm -f conftest.er1
 
3634
   cat conftest.err >&5
 
3635
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3636
-  (exit $ac_status); } &&
 
3637
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3638
-  { (case "(($ac_try" in
 
3639
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3640
-  *) ac_try_echo=$ac_try;;
 
3641
-esac
 
3642
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3643
-  (eval "$ac_try") 2>&5
 
3644
-  ac_status=$?
 
3645
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3646
-  (exit $ac_status); }; } &&
 
3647
-        { ac_try='test -s conftest$ac_exeext'
 
3648
-  { (case "(($ac_try" in
 
3649
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3650
-  *) ac_try_echo=$ac_try;;
 
3651
-esac
 
3652
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3653
-  (eval "$ac_try") 2>&5
 
3654
-  ac_status=$?
 
3655
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3656
-  (exit $ac_status); }; }; then
 
3657
+  (exit $ac_status); } && {
 
3658
+        test -z "$ac_c_werror_flag" ||
 
3659
+        test ! -s conftest.err
 
3660
+       } && test -s conftest$ac_exeext &&
 
3661
+       $as_test_x conftest$ac_exeext; then
 
3662
   gtk_ok=yes
 
3663
 else
 
3664
   echo "$as_me: failed program was:" >&5
 
3665
@@ -22465,7 +21588,7 @@
 
3666
        gtk_ok=no
 
3667
 fi
 
3668
 
 
3669
-rm -f core conftest.err conftest.$ac_objext \
 
3670
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3671
       conftest$ac_exeext conftest.$ac_ext
 
3672
 { echo "$as_me:$LINENO: result: $gtk_ok" >&5
 
3673
 echo "${ECHO_T}$gtk_ok" >&6; }
 
3674
@@ -22523,27 +21646,10 @@
 
3675
   rm -f conftest.er1
 
3676
   cat conftest.err >&5
 
3677
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3678
-  (exit $ac_status); } &&
 
3679
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3680
-  { (case "(($ac_try" in
 
3681
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3682
-  *) ac_try_echo=$ac_try;;
 
3683
-esac
 
3684
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3685
-  (eval "$ac_try") 2>&5
 
3686
-  ac_status=$?
 
3687
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3688
-  (exit $ac_status); }; } &&
 
3689
-        { ac_try='test -s conftest.$ac_objext'
 
3690
-  { (case "(($ac_try" in
 
3691
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3692
-  *) ac_try_echo=$ac_try;;
 
3693
-esac
 
3694
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3695
-  (eval "$ac_try") 2>&5
 
3696
-  ac_status=$?
 
3697
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3698
-  (exit $ac_status); }; }; then
 
3699
+  (exit $ac_status); } && {
 
3700
+        test -z "$ac_c_werror_flag" ||
 
3701
+        test ! -s conftest.err
 
3702
+       } && test -s conftest.$ac_objext; then
 
3703
   ac_header_compiler=yes
 
3704
 else
 
3705
   echo "$as_me: failed program was:" >&5
 
3706
@@ -22579,17 +21685,10 @@
 
3707
   rm -f conftest.er1
 
3708
   cat conftest.err >&5
 
3709
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3710
-  (exit $ac_status); } >/dev/null; then
 
3711
-  if test -s conftest.err; then
 
3712
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3713
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3714
-  else
 
3715
-    ac_cpp_err=
 
3716
-  fi
 
3717
-else
 
3718
-  ac_cpp_err=yes
 
3719
-fi
 
3720
-if test -z "$ac_cpp_err"; then
 
3721
+  (exit $ac_status); } >/dev/null && {
 
3722
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3723
+        test ! -s conftest.err
 
3724
+       }; then
 
3725
   ac_header_preproc=yes
 
3726
 else
 
3727
   echo "$as_me: failed program was:" >&5
 
3728
@@ -22687,27 +21786,11 @@
 
3729
   rm -f conftest.er1
 
3730
   cat conftest.err >&5
 
3731
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3732
-  (exit $ac_status); } &&
 
3733
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3734
-  { (case "(($ac_try" in
 
3735
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3736
-  *) ac_try_echo=$ac_try;;
 
3737
-esac
 
3738
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3739
-  (eval "$ac_try") 2>&5
 
3740
-  ac_status=$?
 
3741
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3742
-  (exit $ac_status); }; } &&
 
3743
-        { ac_try='test -s conftest$ac_exeext'
 
3744
-  { (case "(($ac_try" in
 
3745
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3746
-  *) ac_try_echo=$ac_try;;
 
3747
-esac
 
3748
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3749
-  (eval "$ac_try") 2>&5
 
3750
-  ac_status=$?
 
3751
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3752
-  (exit $ac_status); }; }; then
 
3753
+  (exit $ac_status); } && {
 
3754
+        test -z "$ac_c_werror_flag" ||
 
3755
+        test ! -s conftest.err
 
3756
+       } && test -s conftest$ac_exeext &&
 
3757
+       $as_test_x conftest$ac_exeext; then
 
3758
   am_cv_val_LC_MESSAGES=yes
 
3759
 else
 
3760
   echo "$as_me: failed program was:" >&5
 
3761
@@ -22716,7 +21799,7 @@
 
3762
        am_cv_val_LC_MESSAGES=no
 
3763
 fi
 
3764
 
 
3765
-rm -f core conftest.err conftest.$ac_objext \
 
3766
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3767
       conftest$ac_exeext conftest.$ac_ext
 
3768
 fi
 
3769
 { echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
 
3770
@@ -22772,27 +21855,10 @@
 
3771
   rm -f conftest.er1
 
3772
   cat conftest.err >&5
 
3773
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3774
-  (exit $ac_status); } &&
 
3775
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3776
-  { (case "(($ac_try" in
 
3777
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3778
-  *) ac_try_echo=$ac_try;;
 
3779
-esac
 
3780
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3781
-  (eval "$ac_try") 2>&5
 
3782
-  ac_status=$?
 
3783
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3784
-  (exit $ac_status); }; } &&
 
3785
-        { ac_try='test -s conftest.$ac_objext'
 
3786
-  { (case "(($ac_try" in
 
3787
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3788
-  *) ac_try_echo=$ac_try;;
 
3789
-esac
 
3790
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3791
-  (eval "$ac_try") 2>&5
 
3792
-  ac_status=$?
 
3793
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3794
-  (exit $ac_status); }; }; then
 
3795
+  (exit $ac_status); } && {
 
3796
+        test -z "$ac_c_werror_flag" ||
 
3797
+        test ! -s conftest.err
 
3798
+       } && test -s conftest.$ac_objext; then
 
3799
   ac_header_compiler=yes
 
3800
 else
 
3801
   echo "$as_me: failed program was:" >&5
 
3802
@@ -22828,17 +21894,10 @@
 
3803
   rm -f conftest.er1
 
3804
   cat conftest.err >&5
 
3805
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3806
-  (exit $ac_status); } >/dev/null; then
 
3807
-  if test -s conftest.err; then
 
3808
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3809
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3810
-  else
 
3811
-    ac_cpp_err=
 
3812
-  fi
 
3813
-else
 
3814
-  ac_cpp_err=yes
 
3815
-fi
 
3816
-if test -z "$ac_cpp_err"; then
 
3817
+  (exit $ac_status); } >/dev/null && {
 
3818
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3819
+        test ! -s conftest.err
 
3820
+       }; then
 
3821
   ac_header_preproc=yes
 
3822
 else
 
3823
   echo "$as_me: failed program was:" >&5
 
3824
@@ -22934,27 +21993,11 @@
 
3825
   rm -f conftest.er1
 
3826
   cat conftest.err >&5
 
3827
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3828
-  (exit $ac_status); } &&
 
3829
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3830
-  { (case "(($ac_try" in
 
3831
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3832
-  *) ac_try_echo=$ac_try;;
 
3833
-esac
 
3834
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3835
-  (eval "$ac_try") 2>&5
 
3836
-  ac_status=$?
 
3837
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3838
-  (exit $ac_status); }; } &&
 
3839
-        { ac_try='test -s conftest$ac_exeext'
 
3840
-  { (case "(($ac_try" in
 
3841
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3842
-  *) ac_try_echo=$ac_try;;
 
3843
-esac
 
3844
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3845
-  (eval "$ac_try") 2>&5
 
3846
-  ac_status=$?
 
3847
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3848
-  (exit $ac_status); }; }; then
 
3849
+  (exit $ac_status); } && {
 
3850
+        test -z "$ac_c_werror_flag" ||
 
3851
+        test ! -s conftest.err
 
3852
+       } && test -s conftest$ac_exeext &&
 
3853
+       $as_test_x conftest$ac_exeext; then
 
3854
   gt_cv_func_ngettext_libc=yes
 
3855
 else
 
3856
   echo "$as_me: failed program was:" >&5
 
3857
@@ -22963,7 +22006,7 @@
 
3858
        gt_cv_func_ngettext_libc=no
 
3859
 fi
 
3860
 
 
3861
-rm -f core conftest.err conftest.$ac_objext \
 
3862
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3863
       conftest$ac_exeext conftest.$ac_ext
 
3864
 
 
3865
 fi
 
3866
@@ -23006,27 +22049,11 @@
 
3867
   rm -f conftest.er1
 
3868
   cat conftest.err >&5
 
3869
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3870
-  (exit $ac_status); } &&
 
3871
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3872
-  { (case "(($ac_try" in
 
3873
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3874
-  *) ac_try_echo=$ac_try;;
 
3875
-esac
 
3876
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3877
-  (eval "$ac_try") 2>&5
 
3878
-  ac_status=$?
 
3879
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3880
-  (exit $ac_status); }; } &&
 
3881
-        { ac_try='test -s conftest$ac_exeext'
 
3882
-  { (case "(($ac_try" in
 
3883
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3884
-  *) ac_try_echo=$ac_try;;
 
3885
-esac
 
3886
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3887
-  (eval "$ac_try") 2>&5
 
3888
-  ac_status=$?
 
3889
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3890
-  (exit $ac_status); }; }; then
 
3891
+  (exit $ac_status); } && {
 
3892
+        test -z "$ac_c_werror_flag" ||
 
3893
+        test ! -s conftest.err
 
3894
+       } && test -s conftest$ac_exeext &&
 
3895
+       $as_test_x conftest$ac_exeext; then
 
3896
   gt_cv_func_dgettext_libc=yes
 
3897
 else
 
3898
   echo "$as_me: failed program was:" >&5
 
3899
@@ -23035,7 +22062,7 @@
 
3900
        gt_cv_func_dgettext_libc=no
 
3901
 fi
 
3902
 
 
3903
-rm -f core conftest.err conftest.$ac_objext \
 
3904
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3905
       conftest$ac_exeext conftest.$ac_ext
 
3906
 
 
3907
 fi
 
3908
@@ -23111,27 +22138,11 @@
 
3909
   rm -f conftest.er1
 
3910
   cat conftest.err >&5
 
3911
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3912
-  (exit $ac_status); } &&
 
3913
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3914
-  { (case "(($ac_try" in
 
3915
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3916
-  *) ac_try_echo=$ac_try;;
 
3917
-esac
 
3918
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3919
-  (eval "$ac_try") 2>&5
 
3920
-  ac_status=$?
 
3921
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3922
-  (exit $ac_status); }; } &&
 
3923
-        { ac_try='test -s conftest$ac_exeext'
 
3924
-  { (case "(($ac_try" in
 
3925
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3926
-  *) ac_try_echo=$ac_try;;
 
3927
-esac
 
3928
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3929
-  (eval "$ac_try") 2>&5
 
3930
-  ac_status=$?
 
3931
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3932
-  (exit $ac_status); }; }; then
 
3933
+  (exit $ac_status); } && {
 
3934
+        test -z "$ac_c_werror_flag" ||
 
3935
+        test ! -s conftest.err
 
3936
+       } && test -s conftest$ac_exeext &&
 
3937
+       $as_test_x conftest$ac_exeext; then
 
3938
   eval "$as_ac_var=yes"
 
3939
 else
 
3940
   echo "$as_me: failed program was:" >&5
 
3941
@@ -23140,7 +22151,7 @@
 
3942
        eval "$as_ac_var=no"
 
3943
 fi
 
3944
 
 
3945
-rm -f core conftest.err conftest.$ac_objext \
 
3946
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3947
       conftest$ac_exeext conftest.$ac_ext
 
3948
 fi
 
3949
 ac_res=`eval echo '${'$as_ac_var'}'`
 
3950
@@ -23205,27 +22216,11 @@
 
3951
   rm -f conftest.er1
 
3952
   cat conftest.err >&5
 
3953
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3954
-  (exit $ac_status); } &&
 
3955
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3956
-  { (case "(($ac_try" in
 
3957
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3958
-  *) ac_try_echo=$ac_try;;
 
3959
-esac
 
3960
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3961
-  (eval "$ac_try") 2>&5
 
3962
-  ac_status=$?
 
3963
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3964
-  (exit $ac_status); }; } &&
 
3965
-        { ac_try='test -s conftest$ac_exeext'
 
3966
-  { (case "(($ac_try" in
 
3967
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3968
-  *) ac_try_echo=$ac_try;;
 
3969
-esac
 
3970
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3971
-  (eval "$ac_try") 2>&5
 
3972
-  ac_status=$?
 
3973
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3974
-  (exit $ac_status); }; }; then
 
3975
+  (exit $ac_status); } && {
 
3976
+        test -z "$ac_c_werror_flag" ||
 
3977
+        test ! -s conftest.err
 
3978
+       } && test -s conftest$ac_exeext &&
 
3979
+       $as_test_x conftest$ac_exeext; then
 
3980
   ac_cv_lib_intl_bindtextdomain=yes
 
3981
 else
 
3982
   echo "$as_me: failed program was:" >&5
 
3983
@@ -23234,7 +22229,7 @@
 
3984
        ac_cv_lib_intl_bindtextdomain=no
 
3985
 fi
 
3986
 
 
3987
-rm -f core conftest.err conftest.$ac_objext \
 
3988
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
3989
       conftest$ac_exeext conftest.$ac_ext
 
3990
 LIBS=$ac_check_lib_save_LIBS
 
3991
 fi
 
3992
@@ -23283,27 +22278,11 @@
 
3993
   rm -f conftest.er1
 
3994
   cat conftest.err >&5
 
3995
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3996
-  (exit $ac_status); } &&
 
3997
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
3998
-  { (case "(($ac_try" in
 
3999
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4000
-  *) ac_try_echo=$ac_try;;
 
4001
-esac
 
4002
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4003
-  (eval "$ac_try") 2>&5
 
4004
-  ac_status=$?
 
4005
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4006
-  (exit $ac_status); }; } &&
 
4007
-        { ac_try='test -s conftest$ac_exeext'
 
4008
-  { (case "(($ac_try" in
 
4009
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4010
-  *) ac_try_echo=$ac_try;;
 
4011
-esac
 
4012
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4013
-  (eval "$ac_try") 2>&5
 
4014
-  ac_status=$?
 
4015
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4016
-  (exit $ac_status); }; }; then
 
4017
+  (exit $ac_status); } && {
 
4018
+        test -z "$ac_c_werror_flag" ||
 
4019
+        test ! -s conftest.err
 
4020
+       } && test -s conftest$ac_exeext &&
 
4021
+       $as_test_x conftest$ac_exeext; then
 
4022
   ac_cv_lib_intl_ngettext=yes
 
4023
 else
 
4024
   echo "$as_me: failed program was:" >&5
 
4025
@@ -23312,7 +22291,7 @@
 
4026
        ac_cv_lib_intl_ngettext=no
 
4027
 fi
 
4028
 
 
4029
-rm -f core conftest.err conftest.$ac_objext \
 
4030
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4031
       conftest$ac_exeext conftest.$ac_ext
 
4032
 LIBS=$ac_check_lib_save_LIBS
 
4033
 fi
 
4034
@@ -23361,27 +22340,11 @@
 
4035
   rm -f conftest.er1
 
4036
   cat conftest.err >&5
 
4037
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4038
-  (exit $ac_status); } &&
 
4039
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4040
-  { (case "(($ac_try" in
 
4041
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4042
-  *) ac_try_echo=$ac_try;;
 
4043
-esac
 
4044
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4045
-  (eval "$ac_try") 2>&5
 
4046
-  ac_status=$?
 
4047
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4048
-  (exit $ac_status); }; } &&
 
4049
-        { ac_try='test -s conftest$ac_exeext'
 
4050
-  { (case "(($ac_try" in
 
4051
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4052
-  *) ac_try_echo=$ac_try;;
 
4053
-esac
 
4054
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4055
-  (eval "$ac_try") 2>&5
 
4056
-  ac_status=$?
 
4057
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4058
-  (exit $ac_status); }; }; then
 
4059
+  (exit $ac_status); } && {
 
4060
+        test -z "$ac_c_werror_flag" ||
 
4061
+        test ! -s conftest.err
 
4062
+       } && test -s conftest$ac_exeext &&
 
4063
+       $as_test_x conftest$ac_exeext; then
 
4064
   ac_cv_lib_intl_dgettext=yes
 
4065
 else
 
4066
   echo "$as_me: failed program was:" >&5
 
4067
@@ -23390,7 +22353,7 @@
 
4068
        ac_cv_lib_intl_dgettext=no
 
4069
 fi
 
4070
 
 
4071
-rm -f core conftest.err conftest.$ac_objext \
 
4072
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4073
       conftest$ac_exeext conftest.$ac_ext
 
4074
 LIBS=$ac_check_lib_save_LIBS
 
4075
 fi
 
4076
@@ -23452,27 +22415,11 @@
 
4077
   rm -f conftest.er1
 
4078
   cat conftest.err >&5
 
4079
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4080
-  (exit $ac_status); } &&
 
4081
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4082
-  { (case "(($ac_try" in
 
4083
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4084
-  *) ac_try_echo=$ac_try;;
 
4085
-esac
 
4086
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4087
-  (eval "$ac_try") 2>&5
 
4088
-  ac_status=$?
 
4089
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4090
-  (exit $ac_status); }; } &&
 
4091
-        { ac_try='test -s conftest$ac_exeext'
 
4092
-  { (case "(($ac_try" in
 
4093
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4094
-  *) ac_try_echo=$ac_try;;
 
4095
-esac
 
4096
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4097
-  (eval "$ac_try") 2>&5
 
4098
-  ac_status=$?
 
4099
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4100
-  (exit $ac_status); }; }; then
 
4101
+  (exit $ac_status); } && {
 
4102
+        test -z "$ac_c_werror_flag" ||
 
4103
+        test ! -s conftest.err
 
4104
+       } && test -s conftest$ac_exeext &&
 
4105
+       $as_test_x conftest$ac_exeext; then
 
4106
   ac_cv_lib_intl_ngettext=yes
 
4107
 else
 
4108
   echo "$as_me: failed program was:" >&5
 
4109
@@ -23481,7 +22428,7 @@
 
4110
        ac_cv_lib_intl_ngettext=no
 
4111
 fi
 
4112
 
 
4113
-rm -f core conftest.err conftest.$ac_objext \
 
4114
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4115
       conftest$ac_exeext conftest.$ac_ext
 
4116
 LIBS=$ac_check_lib_save_LIBS
 
4117
 fi
 
4118
@@ -23530,27 +22477,11 @@
 
4119
   rm -f conftest.er1
 
4120
   cat conftest.err >&5
 
4121
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4122
-  (exit $ac_status); } &&
 
4123
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4124
-  { (case "(($ac_try" in
 
4125
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4126
-  *) ac_try_echo=$ac_try;;
 
4127
-esac
 
4128
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4129
-  (eval "$ac_try") 2>&5
 
4130
-  ac_status=$?
 
4131
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4132
-  (exit $ac_status); }; } &&
 
4133
-        { ac_try='test -s conftest$ac_exeext'
 
4134
-  { (case "(($ac_try" in
 
4135
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4136
-  *) ac_try_echo=$ac_try;;
 
4137
-esac
 
4138
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4139
-  (eval "$ac_try") 2>&5
 
4140
-  ac_status=$?
 
4141
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4142
-  (exit $ac_status); }; }; then
 
4143
+  (exit $ac_status); } && {
 
4144
+        test -z "$ac_c_werror_flag" ||
 
4145
+        test ! -s conftest.err
 
4146
+       } && test -s conftest$ac_exeext &&
 
4147
+       $as_test_x conftest$ac_exeext; then
 
4148
   ac_cv_lib_intl_dcgettext=yes
 
4149
 else
 
4150
   echo "$as_me: failed program was:" >&5
 
4151
@@ -23559,7 +22490,7 @@
 
4152
        ac_cv_lib_intl_dcgettext=no
 
4153
 fi
 
4154
 
 
4155
-rm -f core conftest.err conftest.$ac_objext \
 
4156
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4157
       conftest$ac_exeext conftest.$ac_ext
 
4158
 LIBS=$ac_check_lib_save_LIBS
 
4159
 fi
 
4160
@@ -23654,27 +22585,11 @@
 
4161
   rm -f conftest.er1
 
4162
   cat conftest.err >&5
 
4163
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4164
-  (exit $ac_status); } &&
 
4165
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4166
-  { (case "(($ac_try" in
 
4167
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4168
-  *) ac_try_echo=$ac_try;;
 
4169
-esac
 
4170
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4171
-  (eval "$ac_try") 2>&5
 
4172
-  ac_status=$?
 
4173
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4174
-  (exit $ac_status); }; } &&
 
4175
-        { ac_try='test -s conftest$ac_exeext'
 
4176
-  { (case "(($ac_try" in
 
4177
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4178
-  *) ac_try_echo=$ac_try;;
 
4179
-esac
 
4180
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4181
-  (eval "$ac_try") 2>&5
 
4182
-  ac_status=$?
 
4183
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4184
-  (exit $ac_status); }; }; then
 
4185
+  (exit $ac_status); } && {
 
4186
+        test -z "$ac_c_werror_flag" ||
 
4187
+        test ! -s conftest.err
 
4188
+       } && test -s conftest$ac_exeext &&
 
4189
+       $as_test_x conftest$ac_exeext; then
 
4190
   eval "$as_ac_var=yes"
 
4191
 else
 
4192
   echo "$as_me: failed program was:" >&5
 
4193
@@ -23683,7 +22598,7 @@
 
4194
        eval "$as_ac_var=no"
 
4195
 fi
 
4196
 
 
4197
-rm -f core conftest.err conftest.$ac_objext \
 
4198
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4199
       conftest$ac_exeext conftest.$ac_ext
 
4200
 fi
 
4201
 ac_res=`eval echo '${'$as_ac_var'}'`
 
4202
@@ -23830,27 +22745,11 @@
 
4203
   rm -f conftest.er1
 
4204
   cat conftest.err >&5
 
4205
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4206
-  (exit $ac_status); } &&
 
4207
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4208
-  { (case "(($ac_try" in
 
4209
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4210
-  *) ac_try_echo=$ac_try;;
 
4211
-esac
 
4212
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4213
-  (eval "$ac_try") 2>&5
 
4214
-  ac_status=$?
 
4215
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4216
-  (exit $ac_status); }; } &&
 
4217
-        { ac_try='test -s conftest$ac_exeext'
 
4218
-  { (case "(($ac_try" in
 
4219
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4220
-  *) ac_try_echo=$ac_try;;
 
4221
-esac
 
4222
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4223
-  (eval "$ac_try") 2>&5
 
4224
-  ac_status=$?
 
4225
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4226
-  (exit $ac_status); }; }; then
 
4227
+  (exit $ac_status); } && {
 
4228
+        test -z "$ac_c_werror_flag" ||
 
4229
+        test ! -s conftest.err
 
4230
+       } && test -s conftest$ac_exeext &&
 
4231
+       $as_test_x conftest$ac_exeext; then
 
4232
   eval "$as_ac_var=yes"
 
4233
 else
 
4234
   echo "$as_me: failed program was:" >&5
 
4235
@@ -23859,7 +22758,7 @@
 
4236
        eval "$as_ac_var=no"
 
4237
 fi
 
4238
 
 
4239
-rm -f core conftest.err conftest.$ac_objext \
 
4240
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4241
       conftest$ac_exeext conftest.$ac_ext
 
4242
 fi
 
4243
 ac_res=`eval echo '${'$as_ac_var'}'`
 
4244
@@ -23920,7 +22819,7 @@
 
4245
   IFS=$as_save_IFS
 
4246
   test -z "$as_dir" && as_dir=.
 
4247
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4248
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4249
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4250
     ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
 
4251
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4252
     break 2
 
4253
@@ -24008,27 +22907,11 @@
 
4254
   rm -f conftest.er1
 
4255
   cat conftest.err >&5
 
4256
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4257
-  (exit $ac_status); } &&
 
4258
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4259
-  { (case "(($ac_try" in
 
4260
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4261
-  *) ac_try_echo=$ac_try;;
 
4262
-esac
 
4263
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4264
-  (eval "$ac_try") 2>&5
 
4265
-  ac_status=$?
 
4266
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4267
-  (exit $ac_status); }; } &&
 
4268
-        { ac_try='test -s conftest$ac_exeext'
 
4269
-  { (case "(($ac_try" in
 
4270
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4271
-  *) ac_try_echo=$ac_try;;
 
4272
-esac
 
4273
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4274
-  (eval "$ac_try") 2>&5
 
4275
-  ac_status=$?
 
4276
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4277
-  (exit $ac_status); }; }; then
 
4278
+  (exit $ac_status); } && {
 
4279
+        test -z "$ac_c_werror_flag" ||
 
4280
+        test ! -s conftest.err
 
4281
+       } && test -s conftest$ac_exeext &&
 
4282
+       $as_test_x conftest$ac_exeext; then
 
4283
   CATOBJEXT=.gmo
 
4284
              DATADIRNAME=share
 
4285
 else
 
4286
@@ -24100,27 +22983,11 @@
 
4287
   rm -f conftest.er1
 
4288
   cat conftest.err >&5
 
4289
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4290
-  (exit $ac_status); } &&
 
4291
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4292
-  { (case "(($ac_try" in
 
4293
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4294
-  *) ac_try_echo=$ac_try;;
 
4295
-esac
 
4296
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4297
-  (eval "$ac_try") 2>&5
 
4298
-  ac_status=$?
 
4299
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4300
-  (exit $ac_status); }; } &&
 
4301
-        { ac_try='test -s conftest$ac_exeext'
 
4302
-  { (case "(($ac_try" in
 
4303
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4304
-  *) ac_try_echo=$ac_try;;
 
4305
-esac
 
4306
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4307
-  (eval "$ac_try") 2>&5
 
4308
-  ac_status=$?
 
4309
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4310
-  (exit $ac_status); }; }; then
 
4311
+  (exit $ac_status); } && {
 
4312
+        test -z "$ac_c_werror_flag" ||
 
4313
+        test ! -s conftest.err
 
4314
+       } && test -s conftest$ac_exeext &&
 
4315
+       $as_test_x conftest$ac_exeext; then
 
4316
   ac_cv_func_bind_textdomain_codeset=yes
 
4317
 else
 
4318
   echo "$as_me: failed program was:" >&5
 
4319
@@ -24129,7 +22996,7 @@
 
4320
        ac_cv_func_bind_textdomain_codeset=no
 
4321
 fi
 
4322
 
 
4323
-rm -f core conftest.err conftest.$ac_objext \
 
4324
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4325
       conftest$ac_exeext conftest.$ac_ext
 
4326
 fi
 
4327
 { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
 
4328
@@ -24150,7 +23017,7 @@
 
4329
            esac
 
4330
 fi
 
4331
 
 
4332
-rm -f core conftest.err conftest.$ac_objext \
 
4333
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4334
       conftest$ac_exeext conftest.$ac_ext
 
4335
           LIBS="$glib_save_LIBS"
 
4336
          INSTOBJEXT=.mo
 
4337
@@ -24458,27 +23325,10 @@
 
4338
   rm -f conftest.er1
 
4339
   cat conftest.err >&5
 
4340
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4341
-  (exit $ac_status); } &&
 
4342
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4343
-  { (case "(($ac_try" in
 
4344
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4345
-  *) ac_try_echo=$ac_try;;
 
4346
-esac
 
4347
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4348
-  (eval "$ac_try") 2>&5
 
4349
-  ac_status=$?
 
4350
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4351
-  (exit $ac_status); }; } &&
 
4352
-        { ac_try='test -s conftest.$ac_objext'
 
4353
-  { (case "(($ac_try" in
 
4354
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4355
-  *) ac_try_echo=$ac_try;;
 
4356
-esac
 
4357
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4358
-  (eval "$ac_try") 2>&5
 
4359
-  ac_status=$?
 
4360
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4361
-  (exit $ac_status); }; }; then
 
4362
+  (exit $ac_status); } && {
 
4363
+        test -z "$ac_c_werror_flag" ||
 
4364
+        test ! -s conftest.err
 
4365
+       } && test -s conftest.$ac_objext; then
 
4366
   { echo "$as_me:$LINENO: result: none needed" >&5
 
4367
 echo "${ECHO_T}none needed" >&6; }
 
4368
 else
 
4369
@@ -24515,27 +23365,10 @@
 
4370
   rm -f conftest.er1
 
4371
   cat conftest.err >&5
 
4372
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4373
-  (exit $ac_status); } &&
 
4374
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4375
-  { (case "(($ac_try" in
 
4376
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4377
-  *) ac_try_echo=$ac_try;;
 
4378
-esac
 
4379
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4380
-  (eval "$ac_try") 2>&5
 
4381
-  ac_status=$?
 
4382
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4383
-  (exit $ac_status); }; } &&
 
4384
-        { ac_try='test -s conftest.$ac_objext'
 
4385
-  { (case "(($ac_try" in
 
4386
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4387
-  *) ac_try_echo=$ac_try;;
 
4388
-esac
 
4389
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4390
-  (eval "$ac_try") 2>&5
 
4391
-  ac_status=$?
 
4392
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4393
-  (exit $ac_status); }; }; then
 
4394
+  (exit $ac_status); } && {
 
4395
+        test -z "$ac_c_werror_flag" ||
 
4396
+        test ! -s conftest.err
 
4397
+       } && test -s conftest.$ac_objext; then
 
4398
   { echo "$as_me:$LINENO: result: -posix" >&5
 
4399
 echo "${ECHO_T}-posix" >&6; }
 
4400
 else
 
4401
@@ -24609,7 +23442,7 @@
 
4402
   IFS=$as_save_IFS
 
4403
   test -z "$as_dir" && as_dir=.
 
4404
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4405
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4406
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4407
     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
4408
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4409
     break 2
 
4410
@@ -24652,7 +23485,7 @@
 
4411
   IFS=$as_save_IFS
 
4412
   test -z "$as_dir" && as_dir=.
 
4413
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4414
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4415
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4416
     ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
4417
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4418
     break 2
 
4419
@@ -24921,27 +23754,11 @@
 
4420
   rm -f conftest.er1
 
4421
   cat conftest.err >&5
 
4422
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4423
-  (exit $ac_status); } &&
 
4424
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4425
-  { (case "(($ac_try" in
 
4426
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4427
-  *) ac_try_echo=$ac_try;;
 
4428
-esac
 
4429
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4430
-  (eval "$ac_try") 2>&5
 
4431
-  ac_status=$?
 
4432
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4433
-  (exit $ac_status); }; } &&
 
4434
-        { ac_try='test -s conftest$ac_exeext'
 
4435
-  { (case "(($ac_try" in
 
4436
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4437
-  *) ac_try_echo=$ac_try;;
 
4438
-esac
 
4439
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4440
-  (eval "$ac_try") 2>&5
 
4441
-  ac_status=$?
 
4442
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4443
-  (exit $ac_status); }; }; then
 
4444
+  (exit $ac_status); } && {
 
4445
+        test -z "$ac_c_werror_flag" ||
 
4446
+        test ! -s conftest.err
 
4447
+       } && test -s conftest$ac_exeext &&
 
4448
+       $as_test_x conftest$ac_exeext; then
 
4449
    echo "*** The test program compiled, but did not run. This usually means"
 
4450
           echo "*** that the run-time linker is not finding GLIB or finding the wrong"
 
4451
           echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
 
4452
@@ -24959,7 +23776,7 @@
 
4453
           echo "*** exact error that occured. This usually means GLIB is incorrectly installed."
 
4454
 fi
 
4455
 
 
4456
-rm -f core conftest.err conftest.$ac_objext \
 
4457
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4458
       conftest$ac_exeext conftest.$ac_ext
 
4459
           CFLAGS="$ac_save_CFLAGS"
 
4460
           LIBS="$ac_save_LIBS"
 
4461
@@ -25063,27 +23880,11 @@
 
4462
   rm -f conftest.er1
 
4463
   cat conftest.err >&5
 
4464
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4465
-  (exit $ac_status); } &&
 
4466
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4467
-  { (case "(($ac_try" in
 
4468
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4469
-  *) ac_try_echo=$ac_try;;
 
4470
-esac
 
4471
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4472
-  (eval "$ac_try") 2>&5
 
4473
-  ac_status=$?
 
4474
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4475
-  (exit $ac_status); }; } &&
 
4476
-        { ac_try='test -s conftest$ac_exeext'
 
4477
-  { (case "(($ac_try" in
 
4478
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4479
-  *) ac_try_echo=$ac_try;;
 
4480
-esac
 
4481
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4482
-  (eval "$ac_try") 2>&5
 
4483
-  ac_status=$?
 
4484
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4485
-  (exit $ac_status); }; }; then
 
4486
+  (exit $ac_status); } && {
 
4487
+        test -z "$ac_c_werror_flag" ||
 
4488
+        test ! -s conftest.err
 
4489
+       } && test -s conftest$ac_exeext &&
 
4490
+       $as_test_x conftest$ac_exeext; then
 
4491
   eval "$as_ac_var=yes"
 
4492
 else
 
4493
   echo "$as_me: failed program was:" >&5
 
4494
@@ -25092,7 +23893,7 @@
 
4495
        eval "$as_ac_var=no"
 
4496
 fi
 
4497
 
 
4498
-rm -f core conftest.err conftest.$ac_objext \
 
4499
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4500
       conftest$ac_exeext conftest.$ac_ext
 
4501
 fi
 
4502
 ac_res=`eval echo '${'$as_ac_var'}'`
 
4503
@@ -25147,27 +23948,10 @@
 
4504
   rm -f conftest.er1
 
4505
   cat conftest.err >&5
 
4506
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4507
-  (exit $ac_status); } &&
 
4508
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4509
-  { (case "(($ac_try" in
 
4510
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4511
-  *) ac_try_echo=$ac_try;;
 
4512
-esac
 
4513
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4514
-  (eval "$ac_try") 2>&5
 
4515
-  ac_status=$?
 
4516
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4517
-  (exit $ac_status); }; } &&
 
4518
-        { ac_try='test -s conftest.$ac_objext'
 
4519
-  { (case "(($ac_try" in
 
4520
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4521
-  *) ac_try_echo=$ac_try;;
 
4522
-esac
 
4523
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4524
-  (eval "$ac_try") 2>&5
 
4525
-  ac_status=$?
 
4526
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4527
-  (exit $ac_status); }; }; then
 
4528
+  (exit $ac_status); } && {
 
4529
+        test -z "$ac_c_werror_flag" ||
 
4530
+        test ! -s conftest.err
 
4531
+       } && test -s conftest.$ac_objext; then
 
4532
   ac_header_compiler=yes
 
4533
 else
 
4534
   echo "$as_me: failed program was:" >&5
 
4535
@@ -25203,17 +23987,10 @@
 
4536
   rm -f conftest.er1
 
4537
   cat conftest.err >&5
 
4538
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4539
-  (exit $ac_status); } >/dev/null; then
 
4540
-  if test -s conftest.err; then
 
4541
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
4542
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
4543
-  else
 
4544
-    ac_cpp_err=
 
4545
-  fi
 
4546
-else
 
4547
-  ac_cpp_err=yes
 
4548
-fi
 
4549
-if test -z "$ac_cpp_err"; then
 
4550
+  (exit $ac_status); } >/dev/null && {
 
4551
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
4552
+        test ! -s conftest.err
 
4553
+       }; then
 
4554
   ac_header_preproc=yes
 
4555
 else
 
4556
   echo "$as_me: failed program was:" >&5
 
4557
@@ -25319,27 +24096,10 @@
 
4558
   rm -f conftest.er1
 
4559
   cat conftest.err >&5
 
4560
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4561
-  (exit $ac_status); } &&
 
4562
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4563
-  { (case "(($ac_try" in
 
4564
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4565
-  *) ac_try_echo=$ac_try;;
 
4566
-esac
 
4567
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4568
-  (eval "$ac_try") 2>&5
 
4569
-  ac_status=$?
 
4570
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4571
-  (exit $ac_status); }; } &&
 
4572
-        { ac_try='test -s conftest.$ac_objext'
 
4573
-  { (case "(($ac_try" in
 
4574
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4575
-  *) ac_try_echo=$ac_try;;
 
4576
-esac
 
4577
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4578
-  (eval "$ac_try") 2>&5
 
4579
-  ac_status=$?
 
4580
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4581
-  (exit $ac_status); }; }; then
 
4582
+  (exit $ac_status); } && {
 
4583
+        test -z "$ac_c_werror_flag" ||
 
4584
+        test ! -s conftest.err
 
4585
+       } && test -s conftest.$ac_objext; then
 
4586
   ac_header_compiler=yes
 
4587
 else
 
4588
   echo "$as_me: failed program was:" >&5
 
4589
@@ -25375,17 +24135,10 @@
 
4590
   rm -f conftest.er1
 
4591
   cat conftest.err >&5
 
4592
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4593
-  (exit $ac_status); } >/dev/null; then
 
4594
-  if test -s conftest.err; then
 
4595
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
4596
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
4597
-  else
 
4598
-    ac_cpp_err=
 
4599
-  fi
 
4600
-else
 
4601
-  ac_cpp_err=yes
 
4602
-fi
 
4603
-if test -z "$ac_cpp_err"; then
 
4604
+  (exit $ac_status); } >/dev/null && {
 
4605
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
4606
+        test ! -s conftest.err
 
4607
+       }; then
 
4608
   ac_header_preproc=yes
 
4609
 else
 
4610
   echo "$as_me: failed program was:" >&5
 
4611
@@ -25491,27 +24244,10 @@
 
4612
   rm -f conftest.er1
 
4613
   cat conftest.err >&5
 
4614
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4615
-  (exit $ac_status); } &&
 
4616
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4617
-  { (case "(($ac_try" in
 
4618
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4619
-  *) ac_try_echo=$ac_try;;
 
4620
-esac
 
4621
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4622
-  (eval "$ac_try") 2>&5
 
4623
-  ac_status=$?
 
4624
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4625
-  (exit $ac_status); }; } &&
 
4626
-        { ac_try='test -s conftest.$ac_objext'
 
4627
-  { (case "(($ac_try" in
 
4628
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4629
-  *) ac_try_echo=$ac_try;;
 
4630
-esac
 
4631
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4632
-  (eval "$ac_try") 2>&5
 
4633
-  ac_status=$?
 
4634
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4635
-  (exit $ac_status); }; }; then
 
4636
+  (exit $ac_status); } && {
 
4637
+        test -z "$ac_c_werror_flag" ||
 
4638
+        test ! -s conftest.err
 
4639
+       } && test -s conftest.$ac_objext; then
 
4640
   ac_header_compiler=yes
 
4641
 else
 
4642
   echo "$as_me: failed program was:" >&5
 
4643
@@ -25547,17 +24283,10 @@
 
4644
   rm -f conftest.er1
 
4645
   cat conftest.err >&5
 
4646
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4647
-  (exit $ac_status); } >/dev/null; then
 
4648
-  if test -s conftest.err; then
 
4649
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
4650
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
4651
-  else
 
4652
-    ac_cpp_err=
 
4653
-  fi
 
4654
-else
 
4655
-  ac_cpp_err=yes
 
4656
-fi
 
4657
-if test -z "$ac_cpp_err"; then
 
4658
+  (exit $ac_status); } >/dev/null && {
 
4659
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
4660
+        test ! -s conftest.err
 
4661
+       }; then
 
4662
   ac_header_preproc=yes
 
4663
 else
 
4664
   echo "$as_me: failed program was:" >&5
 
4665
@@ -25671,27 +24400,10 @@
 
4666
   rm -f conftest.er1
 
4667
   cat conftest.err >&5
 
4668
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4669
-  (exit $ac_status); } &&
 
4670
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4671
-  { (case "(($ac_try" in
 
4672
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4673
-  *) ac_try_echo=$ac_try;;
 
4674
-esac
 
4675
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4676
-  (eval "$ac_try") 2>&5
 
4677
-  ac_status=$?
 
4678
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4679
-  (exit $ac_status); }; } &&
 
4680
-        { ac_try='test -s conftest.$ac_objext'
 
4681
-  { (case "(($ac_try" in
 
4682
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4683
-  *) ac_try_echo=$ac_try;;
 
4684
-esac
 
4685
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4686
-  (eval "$ac_try") 2>&5
 
4687
-  ac_status=$?
 
4688
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4689
-  (exit $ac_status); }; }; then
 
4690
+  (exit $ac_status); } && {
 
4691
+        test -z "$ac_c_werror_flag" ||
 
4692
+        test ! -s conftest.err
 
4693
+       } && test -s conftest.$ac_objext; then
 
4694
   { echo "$as_me:$LINENO: result: yes" >&5
 
4695
 echo "${ECHO_T}yes" >&6; }
 
4696
     { echo "$as_me:$LINENO: checking for IE55 uuid.lib" >&5
 
4697
@@ -25770,27 +24482,10 @@
 
4698
   rm -f conftest.er1
 
4699
   cat conftest.err >&5
 
4700
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4701
-  (exit $ac_status); } &&
 
4702
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4703
-  { (case "(($ac_try" in
 
4704
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4705
-  *) ac_try_echo=$ac_try;;
 
4706
-esac
 
4707
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4708
-  (eval "$ac_try") 2>&5
 
4709
-  ac_status=$?
 
4710
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4711
-  (exit $ac_status); }; } &&
 
4712
-        { ac_try='test -s conftest.$ac_objext'
 
4713
-  { (case "(($ac_try" in
 
4714
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4715
-  *) ac_try_echo=$ac_try;;
 
4716
-esac
 
4717
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4718
-  (eval "$ac_try") 2>&5
 
4719
-  ac_status=$?
 
4720
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4721
-  (exit $ac_status); }; }; then
 
4722
+  (exit $ac_status); } && {
 
4723
+        test -z "$ac_c_werror_flag" ||
 
4724
+        test ! -s conftest.err
 
4725
+       } && test -s conftest.$ac_objext; then
 
4726
   { echo "$as_me:$LINENO: result: yes" >&5
 
4727
 echo "${ECHO_T}yes" >&6; }
 
4728
     { echo "$as_me:$LINENO: checking for wntab32x.lib" >&5
 
4729
@@ -25877,27 +24572,10 @@
 
4730
   rm -f conftest.er1
 
4731
   cat conftest.err >&5
 
4732
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4733
-  (exit $ac_status); } &&
 
4734
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4735
-  { (case "(($ac_try" in
 
4736
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4737
-  *) ac_try_echo=$ac_try;;
 
4738
-esac
 
4739
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4740
-  (eval "$ac_try") 2>&5
 
4741
-  ac_status=$?
 
4742
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4743
-  (exit $ac_status); }; } &&
 
4744
-        { ac_try='test -s conftest.$ac_objext'
 
4745
-  { (case "(($ac_try" in
 
4746
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4747
-  *) ac_try_echo=$ac_try;;
 
4748
-esac
 
4749
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4750
-  (eval "$ac_try") 2>&5
 
4751
-  ac_status=$?
 
4752
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4753
-  (exit $ac_status); }; }; then
 
4754
+  (exit $ac_status); } && {
 
4755
+        test -z "$ac_c_werror_flag" ||
 
4756
+        test ! -s conftest.err
 
4757
+       } && test -s conftest.$ac_objext; then
 
4758
   ac_cv_header_stdc=yes
 
4759
 else
 
4760
   echo "$as_me: failed program was:" >&5
 
4761
@@ -26052,10 +24730,10 @@
 
4762
 #ifndef __cplusplus
 
4763
   /* Ultrix mips cc rejects this.  */
 
4764
   typedef int charset[2];
 
4765
-  const charset x;
 
4766
+  const charset cs;
 
4767
   /* SunOS 4.1.1 cc rejects this.  */
 
4768
-  char const *const *ccp;
 
4769
-  char **p;
 
4770
+  char const *const *pcpcc;
 
4771
+  char **ppc;
 
4772
   /* NEC SVR4.0.2 mips cc rejects this.  */
 
4773
   struct point {int x, y;};
 
4774
   static struct point const zero = {0,0};
 
4775
@@ -26064,11 +24742,11 @@
 
4776
      an arm of an if-expression whose if-part is not a constant
 
4777
      expression */
 
4778
   const char *g = "string";
 
4779
-  ccp = &g + (g ? g-g : 0);
 
4780
+  pcpcc = &g + (g ? g-g : 0);
 
4781
   /* HPUX 7.0 cc rejects these. */
 
4782
-  ++ccp;
 
4783
-  p = (char**) ccp;
 
4784
-  ccp = (char const *const *) p;
 
4785
+  ++pcpcc;
 
4786
+  ppc = (char**) pcpcc;
 
4787
+  pcpcc = (char const *const *) ppc;
 
4788
   { /* SCO 3.2v4 cc rejects this.  */
 
4789
     char *t;
 
4790
     char const *s = 0 ? (char *) 0 : (char const *) 0;
 
4791
@@ -26095,7 +24773,7 @@
 
4792
     const int foo = 10;
 
4793
     if (!foo) return 0;
 
4794
   }
 
4795
-  return !x[0] && !zero.x;
 
4796
+  return !cs[0] && !zero.x;
 
4797
 #endif
 
4798
 
 
4799
   ;
 
4800
@@ -26115,27 +24793,10 @@
 
4801
   rm -f conftest.er1
 
4802
   cat conftest.err >&5
 
4803
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4804
-  (exit $ac_status); } &&
 
4805
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4806
-  { (case "(($ac_try" in
 
4807
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4808
-  *) ac_try_echo=$ac_try;;
 
4809
-esac
 
4810
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4811
-  (eval "$ac_try") 2>&5
 
4812
-  ac_status=$?
 
4813
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4814
-  (exit $ac_status); }; } &&
 
4815
-        { ac_try='test -s conftest.$ac_objext'
 
4816
-  { (case "(($ac_try" in
 
4817
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4818
-  *) ac_try_echo=$ac_try;;
 
4819
-esac
 
4820
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4821
-  (eval "$ac_try") 2>&5
 
4822
-  ac_status=$?
 
4823
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4824
-  (exit $ac_status); }; }; then
 
4825
+  (exit $ac_status); } && {
 
4826
+        test -z "$ac_c_werror_flag" ||
 
4827
+        test ! -s conftest.err
 
4828
+       } && test -s conftest.$ac_objext; then
 
4829
   ac_cv_c_const=yes
 
4830
 else
 
4831
   echo "$as_me: failed program was:" >&5
 
4832
@@ -26193,27 +24854,10 @@
 
4833
   rm -f conftest.er1
 
4834
   cat conftest.err >&5
 
4835
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4836
-  (exit $ac_status); } &&
 
4837
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4838
-  { (case "(($ac_try" in
 
4839
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4840
-  *) ac_try_echo=$ac_try;;
 
4841
-esac
 
4842
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4843
-  (eval "$ac_try") 2>&5
 
4844
-  ac_status=$?
 
4845
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4846
-  (exit $ac_status); }; } &&
 
4847
-        { ac_try='test -s conftest.$ac_objext'
 
4848
-  { (case "(($ac_try" in
 
4849
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4850
-  *) ac_try_echo=$ac_try;;
 
4851
-esac
 
4852
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4853
-  (eval "$ac_try") 2>&5
 
4854
-  ac_status=$?
 
4855
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4856
-  (exit $ac_status); }; }; then
 
4857
+  (exit $ac_status); } && {
 
4858
+        test -z "$ac_c_werror_flag" ||
 
4859
+        test ! -s conftest.err
 
4860
+       } && test -s conftest.$ac_objext; then
 
4861
   ac_cv_type_signal=int
 
4862
 else
 
4863
   echo "$as_me: failed program was:" >&5
 
4864
@@ -26272,27 +24916,10 @@
 
4865
   rm -f conftest.er1
 
4866
   cat conftest.err >&5
 
4867
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4868
-  (exit $ac_status); } &&
 
4869
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4870
-  { (case "(($ac_try" in
 
4871
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4872
-  *) ac_try_echo=$ac_try;;
 
4873
-esac
 
4874
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4875
-  (eval "$ac_try") 2>&5
 
4876
-  ac_status=$?
 
4877
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4878
-  (exit $ac_status); }; } &&
 
4879
-        { ac_try='test -s conftest.$ac_objext'
 
4880
-  { (case "(($ac_try" in
 
4881
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4882
-  *) ac_try_echo=$ac_try;;
 
4883
-esac
 
4884
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4885
-  (eval "$ac_try") 2>&5
 
4886
-  ac_status=$?
 
4887
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4888
-  (exit $ac_status); }; }; then
 
4889
+  (exit $ac_status); } && {
 
4890
+        test -z "$ac_c_werror_flag" ||
 
4891
+        test ! -s conftest.err
 
4892
+       } && test -s conftest.$ac_objext; then
 
4893
   ac_header_compiler=yes
 
4894
 else
 
4895
   echo "$as_me: failed program was:" >&5
 
4896
@@ -26328,17 +24955,10 @@
 
4897
   rm -f conftest.er1
 
4898
   cat conftest.err >&5
 
4899
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4900
-  (exit $ac_status); } >/dev/null; then
 
4901
-  if test -s conftest.err; then
 
4902
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
4903
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
4904
-  else
 
4905
-    ac_cpp_err=
 
4906
-  fi
 
4907
-else
 
4908
-  ac_cpp_err=yes
 
4909
-fi
 
4910
-if test -z "$ac_cpp_err"; then
 
4911
+  (exit $ac_status); } >/dev/null && {
 
4912
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
4913
+        test ! -s conftest.err
 
4914
+       }; then
 
4915
   ac_header_preproc=yes
 
4916
 else
 
4917
   echo "$as_me: failed program was:" >&5
 
4918
@@ -26469,27 +25089,11 @@
 
4919
   rm -f conftest.er1
 
4920
   cat conftest.err >&5
 
4921
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4922
-  (exit $ac_status); } &&
 
4923
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4924
-  { (case "(($ac_try" in
 
4925
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4926
-  *) ac_try_echo=$ac_try;;
 
4927
-esac
 
4928
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4929
-  (eval "$ac_try") 2>&5
 
4930
-  ac_status=$?
 
4931
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4932
-  (exit $ac_status); }; } &&
 
4933
-        { ac_try='test -s conftest$ac_exeext'
 
4934
-  { (case "(($ac_try" in
 
4935
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4936
-  *) ac_try_echo=$ac_try;;
 
4937
-esac
 
4938
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4939
-  (eval "$ac_try") 2>&5
 
4940
-  ac_status=$?
 
4941
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4942
-  (exit $ac_status); }; }; then
 
4943
+  (exit $ac_status); } && {
 
4944
+        test -z "$ac_c_werror_flag" ||
 
4945
+        test ! -s conftest.err
 
4946
+       } && test -s conftest$ac_exeext &&
 
4947
+       $as_test_x conftest$ac_exeext; then
 
4948
   eval "$as_ac_var=yes"
 
4949
 else
 
4950
   echo "$as_me: failed program was:" >&5
 
4951
@@ -26498,7 +25102,7 @@
 
4952
        eval "$as_ac_var=no"
 
4953
 fi
 
4954
 
 
4955
-rm -f core conftest.err conftest.$ac_objext \
 
4956
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
4957
       conftest$ac_exeext conftest.$ac_ext
 
4958
 fi
 
4959
 ac_res=`eval echo '${'$as_ac_var'}'`
 
4960
@@ -26555,21 +25159,21 @@
 
4961
 #include <fcntl.h>
 
4962
 #include <sys/mman.h>
 
4963
 
 
4964
-#if !STDC_HEADERS && !HAVE_STDLIB_H
 
4965
+#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H
 
4966
 char *malloc ();
 
4967
 #endif
 
4968
 
 
4969
 /* This mess was copied from the GNU getpagesize.h.  */
 
4970
-#if !HAVE_GETPAGESIZE
 
4971
+#ifndef HAVE_GETPAGESIZE
 
4972
 /* Assume that all systems that can run configure have sys/param.h.  */
 
4973
-# if !HAVE_SYS_PARAM_H
 
4974
+# ifndef HAVE_SYS_PARAM_H
 
4975
 #  define HAVE_SYS_PARAM_H 1
 
4976
 # endif
 
4977
 
 
4978
 # ifdef _SC_PAGESIZE
 
4979
 #  define getpagesize() sysconf(_SC_PAGESIZE)
 
4980
 # else /* no _SC_PAGESIZE */
 
4981
-#  if HAVE_SYS_PARAM_H
 
4982
+#  ifdef HAVE_SYS_PARAM_H
 
4983
 #   include <sys/param.h>
 
4984
 #   ifdef EXEC_PAGESIZE
 
4985
 #    define getpagesize() EXEC_PAGESIZE
 
4986
@@ -26766,27 +25370,11 @@
 
4987
   rm -f conftest.er1
 
4988
   cat conftest.err >&5
 
4989
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4990
-  (exit $ac_status); } &&
 
4991
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
4992
-  { (case "(($ac_try" in
 
4993
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4994
-  *) ac_try_echo=$ac_try;;
 
4995
-esac
 
4996
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4997
-  (eval "$ac_try") 2>&5
 
4998
-  ac_status=$?
 
4999
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5000
-  (exit $ac_status); }; } &&
 
5001
-        { ac_try='test -s conftest$ac_exeext'
 
5002
-  { (case "(($ac_try" in
 
5003
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5004
-  *) ac_try_echo=$ac_try;;
 
5005
-esac
 
5006
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5007
-  (eval "$ac_try") 2>&5
 
5008
-  ac_status=$?
 
5009
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5010
-  (exit $ac_status); }; }; then
 
5011
+  (exit $ac_status); } && {
 
5012
+        test -z "$ac_c_werror_flag" ||
 
5013
+        test ! -s conftest.err
 
5014
+       } && test -s conftest$ac_exeext &&
 
5015
+       $as_test_x conftest$ac_exeext; then
 
5016
   eval "$as_ac_var=yes"
 
5017
 else
 
5018
   echo "$as_me: failed program was:" >&5
 
5019
@@ -26795,7 +25383,7 @@
 
5020
        eval "$as_ac_var=no"
 
5021
 fi
 
5022
 
 
5023
-rm -f core conftest.err conftest.$ac_objext \
 
5024
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5025
       conftest$ac_exeext conftest.$ac_ext
 
5026
 fi
 
5027
 ac_res=`eval echo '${'$as_ac_var'}'`
 
5028
@@ -26876,27 +25464,11 @@
 
5029
   rm -f conftest.er1
 
5030
   cat conftest.err >&5
 
5031
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5032
-  (exit $ac_status); } &&
 
5033
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5034
-  { (case "(($ac_try" in
 
5035
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5036
-  *) ac_try_echo=$ac_try;;
 
5037
-esac
 
5038
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5039
-  (eval "$ac_try") 2>&5
 
5040
-  ac_status=$?
 
5041
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5042
-  (exit $ac_status); }; } &&
 
5043
-        { ac_try='test -s conftest$ac_exeext'
 
5044
-  { (case "(($ac_try" in
 
5045
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5046
-  *) ac_try_echo=$ac_try;;
 
5047
-esac
 
5048
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5049
-  (eval "$ac_try") 2>&5
 
5050
-  ac_status=$?
 
5051
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5052
-  (exit $ac_status); }; }; then
 
5053
+  (exit $ac_status); } && {
 
5054
+        test -z "$ac_c_werror_flag" ||
 
5055
+        test ! -s conftest.err
 
5056
+       } && test -s conftest$ac_exeext &&
 
5057
+       $as_test_x conftest$ac_exeext; then
 
5058
   eval "$as_ac_var=yes"
 
5059
 else
 
5060
   echo "$as_me: failed program was:" >&5
 
5061
@@ -26905,7 +25477,7 @@
 
5062
        eval "$as_ac_var=no"
 
5063
 fi
 
5064
 
 
5065
-rm -f core conftest.err conftest.$ac_objext \
 
5066
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5067
       conftest$ac_exeext conftest.$ac_ext
 
5068
 fi
 
5069
 ac_res=`eval echo '${'$as_ac_var'}'`
 
5070
@@ -26989,27 +25561,10 @@
 
5071
   rm -f conftest.er1
 
5072
   cat conftest.err >&5
 
5073
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5074
-  (exit $ac_status); } &&
 
5075
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5076
-  { (case "(($ac_try" in
 
5077
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5078
-  *) ac_try_echo=$ac_try;;
 
5079
-esac
 
5080
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5081
-  (eval "$ac_try") 2>&5
 
5082
-  ac_status=$?
 
5083
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5084
-  (exit $ac_status); }; } &&
 
5085
-        { ac_try='test -s conftest.$ac_objext'
 
5086
-  { (case "(($ac_try" in
 
5087
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5088
-  *) ac_try_echo=$ac_try;;
 
5089
-esac
 
5090
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5091
-  (eval "$ac_try") 2>&5
 
5092
-  ac_status=$?
 
5093
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5094
-  (exit $ac_status); }; }; then
 
5095
+  (exit $ac_status); } && {
 
5096
+        test -z "$ac_c_werror_flag" ||
 
5097
+        test ! -s conftest.err
 
5098
+       } && test -s conftest.$ac_objext; then
 
5099
   gtk_ok=yes
 
5100
 else
 
5101
   echo "$as_me: failed program was:" >&5
 
5102
@@ -27078,17 +25633,10 @@
 
5103
   rm -f conftest.er1
 
5104
   cat conftest.err >&5
 
5105
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5106
-  (exit $ac_status); } >/dev/null; then
 
5107
-  if test -s conftest.err; then
 
5108
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5109
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5110
-  else
 
5111
-    ac_cpp_err=
 
5112
-  fi
 
5113
-else
 
5114
-  ac_cpp_err=yes
 
5115
-fi
 
5116
-if test -z "$ac_cpp_err"; then
 
5117
+  (exit $ac_status); } >/dev/null && {
 
5118
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5119
+        test ! -s conftest.err
 
5120
+       }; then
 
5121
   gdk_wchar_h=yes
 
5122
 else
 
5123
   echo "$as_me: failed program was:" >&5
 
5124
@@ -27131,17 +25679,10 @@
 
5125
   rm -f conftest.er1
 
5126
   cat conftest.err >&5
 
5127
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5128
-  (exit $ac_status); } >/dev/null; then
 
5129
-  if test -s conftest.err; then
 
5130
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5131
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5132
-  else
 
5133
-    ac_cpp_err=
 
5134
-  fi
 
5135
-else
 
5136
-  ac_cpp_err=yes
 
5137
-fi
 
5138
-if test -z "$ac_cpp_err"; then
 
5139
+  (exit $ac_status); } >/dev/null && {
 
5140
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5141
+        test ! -s conftest.err
 
5142
+       }; then
 
5143
   gdk_wctype_h=yes
 
5144
 else
 
5145
   echo "$as_me: failed program was:" >&5
 
5146
@@ -27226,27 +25767,11 @@
 
5147
   rm -f conftest.er1
 
5148
   cat conftest.err >&5
 
5149
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5150
-  (exit $ac_status); } &&
 
5151
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5152
-  { (case "(($ac_try" in
 
5153
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5154
-  *) ac_try_echo=$ac_try;;
 
5155
-esac
 
5156
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5157
-  (eval "$ac_try") 2>&5
 
5158
-  ac_status=$?
 
5159
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5160
-  (exit $ac_status); }; } &&
 
5161
-        { ac_try='test -s conftest$ac_exeext'
 
5162
-  { (case "(($ac_try" in
 
5163
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5164
-  *) ac_try_echo=$ac_try;;
 
5165
-esac
 
5166
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5167
-  (eval "$ac_try") 2>&5
 
5168
-  ac_status=$?
 
5169
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5170
-  (exit $ac_status); }; }; then
 
5171
+  (exit $ac_status); } && {
 
5172
+        test -z "$ac_c_werror_flag" ||
 
5173
+        test ! -s conftest.err
 
5174
+       } && test -s conftest$ac_exeext &&
 
5175
+       $as_test_x conftest$ac_exeext; then
 
5176
   ac_cv_func_iswalnum=yes
 
5177
 else
 
5178
   echo "$as_me: failed program was:" >&5
 
5179
@@ -27255,7 +25780,7 @@
 
5180
        ac_cv_func_iswalnum=no
 
5181
 fi
 
5182
 
 
5183
-rm -f core conftest.err conftest.$ac_objext \
 
5184
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5185
       conftest$ac_exeext conftest.$ac_ext
 
5186
 fi
 
5187
 { echo "$as_me:$LINENO: result: $ac_cv_func_iswalnum" >&5
 
5188
@@ -27305,27 +25830,11 @@
 
5189
   rm -f conftest.er1
 
5190
   cat conftest.err >&5
 
5191
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5192
-  (exit $ac_status); } &&
 
5193
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5194
-  { (case "(($ac_try" in
 
5195
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5196
-  *) ac_try_echo=$ac_try;;
 
5197
-esac
 
5198
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5199
-  (eval "$ac_try") 2>&5
 
5200
-  ac_status=$?
 
5201
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5202
-  (exit $ac_status); }; } &&
 
5203
-        { ac_try='test -s conftest$ac_exeext'
 
5204
-  { (case "(($ac_try" in
 
5205
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5206
-  *) ac_try_echo=$ac_try;;
 
5207
-esac
 
5208
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5209
-  (eval "$ac_try") 2>&5
 
5210
-  ac_status=$?
 
5211
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5212
-  (exit $ac_status); }; }; then
 
5213
+  (exit $ac_status); } && {
 
5214
+        test -z "$ac_c_werror_flag" ||
 
5215
+        test ! -s conftest.err
 
5216
+       } && test -s conftest$ac_exeext &&
 
5217
+       $as_test_x conftest$ac_exeext; then
 
5218
   ac_cv_lib_w_iswalnum=yes
 
5219
 else
 
5220
   echo "$as_me: failed program was:" >&5
 
5221
@@ -27334,7 +25843,7 @@
 
5222
        ac_cv_lib_w_iswalnum=no
 
5223
 fi
 
5224
 
 
5225
-rm -f core conftest.err conftest.$ac_objext \
 
5226
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5227
       conftest$ac_exeext conftest.$ac_ext
 
5228
 LIBS=$ac_check_lib_save_LIBS
 
5229
 fi
 
5230
@@ -27393,27 +25902,11 @@
 
5231
   rm -f conftest.er1
 
5232
   cat conftest.err >&5
 
5233
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5234
-  (exit $ac_status); } &&
 
5235
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5236
-  { (case "(($ac_try" in
 
5237
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5238
-  *) ac_try_echo=$ac_try;;
 
5239
-esac
 
5240
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5241
-  (eval "$ac_try") 2>&5
 
5242
-  ac_status=$?
 
5243
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5244
-  (exit $ac_status); }; } &&
 
5245
-        { ac_try='test -s conftest$ac_exeext'
 
5246
-  { (case "(($ac_try" in
 
5247
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5248
-  *) ac_try_echo=$ac_try;;
 
5249
-esac
 
5250
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5251
-  (eval "$ac_try") 2>&5
 
5252
-  ac_status=$?
 
5253
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5254
-  (exit $ac_status); }; }; then
 
5255
+  (exit $ac_status); } && {
 
5256
+        test -z "$ac_c_werror_flag" ||
 
5257
+        test ! -s conftest.err
 
5258
+       } && test -s conftest$ac_exeext &&
 
5259
+       $as_test_x conftest$ac_exeext; then
 
5260
   gdk_working_wctype=yes
 
5261
 else
 
5262
   echo "$as_me: failed program was:" >&5
 
5263
@@ -27422,7 +25915,7 @@
 
5264
        gdk_working_wctype=no
 
5265
 fi
 
5266
 
 
5267
-rm -f core conftest.err conftest.$ac_objext \
 
5268
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5269
       conftest$ac_exeext conftest.$ac_ext
 
5270
 LIBS="$oLIBS"
 
5271
 
 
5272
@@ -27461,17 +25954,10 @@
 
5273
   rm -f conftest.er1
 
5274
   cat conftest.err >&5
 
5275
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5276
-  (exit $ac_status); } >/dev/null; then
 
5277
-  if test -s conftest.err; then
 
5278
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5279
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5280
-  else
 
5281
-    ac_cpp_err=
 
5282
-  fi
 
5283
-else
 
5284
-  ac_cpp_err=yes
 
5285
-fi
 
5286
-if test -z "$ac_cpp_err"; then
 
5287
+  (exit $ac_status); } >/dev/null && {
 
5288
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5289
+        test ! -s conftest.err
 
5290
+       }; then
 
5291
   gtk_uxtheme_h=yes
 
5292
 else
 
5293
   echo "$as_me: failed program was:" >&5
 
5294
@@ -27532,27 +26018,10 @@
 
5295
   rm -f conftest.er1
 
5296
   cat conftest.err >&5
 
5297
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5298
-  (exit $ac_status); } &&
 
5299
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5300
-  { (case "(($ac_try" in
 
5301
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5302
-  *) ac_try_echo=$ac_try;;
 
5303
-esac
 
5304
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5305
-  (eval "$ac_try") 2>&5
 
5306
-  ac_status=$?
 
5307
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5308
-  (exit $ac_status); }; } &&
 
5309
-        { ac_try='test -s conftest.$ac_objext'
 
5310
-  { (case "(($ac_try" in
 
5311
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5312
-  *) ac_try_echo=$ac_try;;
 
5313
-esac
 
5314
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5315
-  (eval "$ac_try") 2>&5
 
5316
-  ac_status=$?
 
5317
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5318
-  (exit $ac_status); }; }; then
 
5319
+  (exit $ac_status); } && {
 
5320
+        test -z "$ac_c_werror_flag" ||
 
5321
+        test ! -s conftest.err
 
5322
+       } && test -s conftest.$ac_objext; then
 
5323
   ac_header_compiler=yes
 
5324
 else
 
5325
   echo "$as_me: failed program was:" >&5
 
5326
@@ -27588,17 +26057,10 @@
 
5327
   rm -f conftest.er1
 
5328
   cat conftest.err >&5
 
5329
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5330
-  (exit $ac_status); } >/dev/null; then
 
5331
-  if test -s conftest.err; then
 
5332
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5333
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5334
-  else
 
5335
-    ac_cpp_err=
 
5336
-  fi
 
5337
-else
 
5338
-  ac_cpp_err=yes
 
5339
-fi
 
5340
-if test -z "$ac_cpp_err"; then
 
5341
+  (exit $ac_status); } >/dev/null && {
 
5342
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5343
+        test ! -s conftest.err
 
5344
+       }; then
 
5345
   ac_header_preproc=yes
 
5346
 else
 
5347
   echo "$as_me: failed program was:" >&5
 
5348
@@ -27729,27 +26191,11 @@
 
5349
   rm -f conftest.er1
 
5350
   cat conftest.err >&5
 
5351
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5352
-  (exit $ac_status); } &&
 
5353
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5354
-  { (case "(($ac_try" in
 
5355
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5356
-  *) ac_try_echo=$ac_try;;
 
5357
-esac
 
5358
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5359
-  (eval "$ac_try") 2>&5
 
5360
-  ac_status=$?
 
5361
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5362
-  (exit $ac_status); }; } &&
 
5363
-        { ac_try='test -s conftest$ac_exeext'
 
5364
-  { (case "(($ac_try" in
 
5365
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5366
-  *) ac_try_echo=$ac_try;;
 
5367
-esac
 
5368
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5369
-  (eval "$ac_try") 2>&5
 
5370
-  ac_status=$?
 
5371
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5372
-  (exit $ac_status); }; }; then
 
5373
+  (exit $ac_status); } && {
 
5374
+        test -z "$ac_c_werror_flag" ||
 
5375
+        test ! -s conftest.err
 
5376
+       } && test -s conftest$ac_exeext &&
 
5377
+       $as_test_x conftest$ac_exeext; then
 
5378
   eval "$as_ac_var=yes"
 
5379
 else
 
5380
   echo "$as_me: failed program was:" >&5
 
5381
@@ -27758,7 +26204,7 @@
 
5382
        eval "$as_ac_var=no"
 
5383
 fi
 
5384
 
 
5385
-rm -f core conftest.err conftest.$ac_objext \
 
5386
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5387
       conftest$ac_exeext conftest.$ac_ext
 
5388
 fi
 
5389
 ac_res=`eval echo '${'$as_ac_var'}'`
 
5390
@@ -27905,27 +26351,11 @@
 
5391
   rm -f conftest.er1
 
5392
   cat conftest.err >&5
 
5393
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5394
-  (exit $ac_status); } &&
 
5395
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5396
-  { (case "(($ac_try" in
 
5397
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5398
-  *) ac_try_echo=$ac_try;;
 
5399
-esac
 
5400
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5401
-  (eval "$ac_try") 2>&5
 
5402
-  ac_status=$?
 
5403
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5404
-  (exit $ac_status); }; } &&
 
5405
-        { ac_try='test -s conftest$ac_exeext'
 
5406
-  { (case "(($ac_try" in
 
5407
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5408
-  *) ac_try_echo=$ac_try;;
 
5409
-esac
 
5410
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5411
-  (eval "$ac_try") 2>&5
 
5412
-  ac_status=$?
 
5413
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5414
-  (exit $ac_status); }; }; then
 
5415
+  (exit $ac_status); } && {
 
5416
+        test -z "$ac_c_werror_flag" ||
 
5417
+        test ! -s conftest.err
 
5418
+       } && test -s conftest$ac_exeext &&
 
5419
+       $as_test_x conftest$ac_exeext; then
 
5420
   ac_cv_lib_tiff_TIFFReadScanline=yes
 
5421
 else
 
5422
   echo "$as_me: failed program was:" >&5
 
5423
@@ -27934,7 +26364,7 @@
 
5424
        ac_cv_lib_tiff_TIFFReadScanline=no
 
5425
 fi
 
5426
 
 
5427
-rm -f core conftest.err conftest.$ac_objext \
 
5428
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5429
       conftest$ac_exeext conftest.$ac_ext
 
5430
 LIBS=$ac_check_lib_save_LIBS
 
5431
 fi
 
5432
@@ -27975,27 +26405,10 @@
 
5433
   rm -f conftest.er1
 
5434
   cat conftest.err >&5
 
5435
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5436
-  (exit $ac_status); } &&
 
5437
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5438
-  { (case "(($ac_try" in
 
5439
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5440
-  *) ac_try_echo=$ac_try;;
 
5441
-esac
 
5442
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5443
-  (eval "$ac_try") 2>&5
 
5444
-  ac_status=$?
 
5445
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5446
-  (exit $ac_status); }; } &&
 
5447
-        { ac_try='test -s conftest.$ac_objext'
 
5448
-  { (case "(($ac_try" in
 
5449
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5450
-  *) ac_try_echo=$ac_try;;
 
5451
-esac
 
5452
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5453
-  (eval "$ac_try") 2>&5
 
5454
-  ac_status=$?
 
5455
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5456
-  (exit $ac_status); }; }; then
 
5457
+  (exit $ac_status); } && {
 
5458
+        test -z "$ac_c_werror_flag" ||
 
5459
+        test ! -s conftest.err
 
5460
+       } && test -s conftest.$ac_objext; then
 
5461
   ac_header_compiler=yes
 
5462
 else
 
5463
   echo "$as_me: failed program was:" >&5
 
5464
@@ -28031,17 +26444,10 @@
 
5465
   rm -f conftest.er1
 
5466
   cat conftest.err >&5
 
5467
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5468
-  (exit $ac_status); } >/dev/null; then
 
5469
-  if test -s conftest.err; then
 
5470
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5471
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5472
-  else
 
5473
-    ac_cpp_err=
 
5474
-  fi
 
5475
-else
 
5476
-  ac_cpp_err=yes
 
5477
-fi
 
5478
-if test -z "$ac_cpp_err"; then
 
5479
+  (exit $ac_status); } >/dev/null && {
 
5480
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5481
+        test ! -s conftest.err
 
5482
+       }; then
 
5483
   ac_header_preproc=yes
 
5484
 else
 
5485
   echo "$as_me: failed program was:" >&5
 
5486
@@ -28146,27 +26552,11 @@
 
5487
   rm -f conftest.er1
 
5488
   cat conftest.err >&5
 
5489
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5490
-  (exit $ac_status); } &&
 
5491
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5492
-  { (case "(($ac_try" in
 
5493
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5494
-  *) ac_try_echo=$ac_try;;
 
5495
-esac
 
5496
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5497
-  (eval "$ac_try") 2>&5
 
5498
-  ac_status=$?
 
5499
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5500
-  (exit $ac_status); }; } &&
 
5501
-        { ac_try='test -s conftest$ac_exeext'
 
5502
-  { (case "(($ac_try" in
 
5503
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5504
-  *) ac_try_echo=$ac_try;;
 
5505
-esac
 
5506
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5507
-  (eval "$ac_try") 2>&5
 
5508
-  ac_status=$?
 
5509
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5510
-  (exit $ac_status); }; }; then
 
5511
+  (exit $ac_status); } && {
 
5512
+        test -z "$ac_c_werror_flag" ||
 
5513
+        test ! -s conftest.err
 
5514
+       } && test -s conftest$ac_exeext &&
 
5515
+       $as_test_x conftest$ac_exeext; then
 
5516
   ac_cv_lib_tiff_TIFFWriteScanline=yes
 
5517
 else
 
5518
   echo "$as_me: failed program was:" >&5
 
5519
@@ -28175,7 +26565,7 @@
 
5520
        ac_cv_lib_tiff_TIFFWriteScanline=no
 
5521
 fi
 
5522
 
 
5523
-rm -f core conftest.err conftest.$ac_objext \
 
5524
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5525
       conftest$ac_exeext conftest.$ac_ext
 
5526
 LIBS=$ac_check_lib_save_LIBS
 
5527
 fi
 
5528
@@ -28216,27 +26606,10 @@
 
5529
   rm -f conftest.er1
 
5530
   cat conftest.err >&5
 
5531
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5532
-  (exit $ac_status); } &&
 
5533
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5534
-  { (case "(($ac_try" in
 
5535
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5536
-  *) ac_try_echo=$ac_try;;
 
5537
-esac
 
5538
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5539
-  (eval "$ac_try") 2>&5
 
5540
-  ac_status=$?
 
5541
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5542
-  (exit $ac_status); }; } &&
 
5543
-        { ac_try='test -s conftest.$ac_objext'
 
5544
-  { (case "(($ac_try" in
 
5545
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5546
-  *) ac_try_echo=$ac_try;;
 
5547
-esac
 
5548
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5549
-  (eval "$ac_try") 2>&5
 
5550
-  ac_status=$?
 
5551
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5552
-  (exit $ac_status); }; }; then
 
5553
+  (exit $ac_status); } && {
 
5554
+        test -z "$ac_c_werror_flag" ||
 
5555
+        test ! -s conftest.err
 
5556
+       } && test -s conftest.$ac_objext; then
 
5557
   ac_header_compiler=yes
 
5558
 else
 
5559
   echo "$as_me: failed program was:" >&5
 
5560
@@ -28272,17 +26645,10 @@
 
5561
   rm -f conftest.er1
 
5562
   cat conftest.err >&5
 
5563
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5564
-  (exit $ac_status); } >/dev/null; then
 
5565
-  if test -s conftest.err; then
 
5566
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5567
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5568
-  else
 
5569
-    ac_cpp_err=
 
5570
-  fi
 
5571
-else
 
5572
-  ac_cpp_err=yes
 
5573
-fi
 
5574
-if test -z "$ac_cpp_err"; then
 
5575
+  (exit $ac_status); } >/dev/null && {
 
5576
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5577
+        test ! -s conftest.err
 
5578
+       }; then
 
5579
   ac_header_preproc=yes
 
5580
 else
 
5581
   echo "$as_me: failed program was:" >&5
 
5582
@@ -28387,27 +26753,11 @@
 
5583
   rm -f conftest.er1
 
5584
   cat conftest.err >&5
 
5585
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5586
-  (exit $ac_status); } &&
 
5587
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5588
-  { (case "(($ac_try" in
 
5589
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5590
-  *) ac_try_echo=$ac_try;;
 
5591
-esac
 
5592
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5593
-  (eval "$ac_try") 2>&5
 
5594
-  ac_status=$?
 
5595
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5596
-  (exit $ac_status); }; } &&
 
5597
-        { ac_try='test -s conftest$ac_exeext'
 
5598
-  { (case "(($ac_try" in
 
5599
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5600
-  *) ac_try_echo=$ac_try;;
 
5601
-esac
 
5602
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5603
-  (eval "$ac_try") 2>&5
 
5604
-  ac_status=$?
 
5605
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5606
-  (exit $ac_status); }; }; then
 
5607
+  (exit $ac_status); } && {
 
5608
+        test -z "$ac_c_werror_flag" ||
 
5609
+        test ! -s conftest.err
 
5610
+       } && test -s conftest$ac_exeext &&
 
5611
+       $as_test_x conftest$ac_exeext; then
 
5612
   ac_cv_lib_tiff34_TIFFFlushData=yes
 
5613
 else
 
5614
   echo "$as_me: failed program was:" >&5
 
5615
@@ -28416,7 +26766,7 @@
 
5616
        ac_cv_lib_tiff34_TIFFFlushData=no
 
5617
 fi
 
5618
 
 
5619
-rm -f core conftest.err conftest.$ac_objext \
 
5620
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5621
       conftest$ac_exeext conftest.$ac_ext
 
5622
 LIBS=$ac_check_lib_save_LIBS
 
5623
 fi
 
5624
@@ -28457,27 +26807,10 @@
 
5625
   rm -f conftest.er1
 
5626
   cat conftest.err >&5
 
5627
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5628
-  (exit $ac_status); } &&
 
5629
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5630
-  { (case "(($ac_try" in
 
5631
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5632
-  *) ac_try_echo=$ac_try;;
 
5633
-esac
 
5634
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5635
-  (eval "$ac_try") 2>&5
 
5636
-  ac_status=$?
 
5637
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5638
-  (exit $ac_status); }; } &&
 
5639
-        { ac_try='test -s conftest.$ac_objext'
 
5640
-  { (case "(($ac_try" in
 
5641
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5642
-  *) ac_try_echo=$ac_try;;
 
5643
-esac
 
5644
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5645
-  (eval "$ac_try") 2>&5
 
5646
-  ac_status=$?
 
5647
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5648
-  (exit $ac_status); }; }; then
 
5649
+  (exit $ac_status); } && {
 
5650
+        test -z "$ac_c_werror_flag" ||
 
5651
+        test ! -s conftest.err
 
5652
+       } && test -s conftest.$ac_objext; then
 
5653
   ac_header_compiler=yes
 
5654
 else
 
5655
   echo "$as_me: failed program was:" >&5
 
5656
@@ -28513,17 +26846,10 @@
 
5657
   rm -f conftest.er1
 
5658
   cat conftest.err >&5
 
5659
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5660
-  (exit $ac_status); } >/dev/null; then
 
5661
-  if test -s conftest.err; then
 
5662
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5663
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5664
-  else
 
5665
-    ac_cpp_err=
 
5666
-  fi
 
5667
-else
 
5668
-  ac_cpp_err=yes
 
5669
-fi
 
5670
-if test -z "$ac_cpp_err"; then
 
5671
+  (exit $ac_status); } >/dev/null && {
 
5672
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5673
+        test ! -s conftest.err
 
5674
+       }; then
 
5675
   ac_header_preproc=yes
 
5676
 else
 
5677
   echo "$as_me: failed program was:" >&5
 
5678
@@ -28651,27 +26977,11 @@
 
5679
   rm -f conftest.er1
 
5680
   cat conftest.err >&5
 
5681
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5682
-  (exit $ac_status); } &&
 
5683
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5684
-  { (case "(($ac_try" in
 
5685
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5686
-  *) ac_try_echo=$ac_try;;
 
5687
-esac
 
5688
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5689
-  (eval "$ac_try") 2>&5
 
5690
-  ac_status=$?
 
5691
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5692
-  (exit $ac_status); }; } &&
 
5693
-        { ac_try='test -s conftest$ac_exeext'
 
5694
-  { (case "(($ac_try" in
 
5695
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5696
-  *) ac_try_echo=$ac_try;;
 
5697
-esac
 
5698
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5699
-  (eval "$ac_try") 2>&5
 
5700
-  ac_status=$?
 
5701
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5702
-  (exit $ac_status); }; }; then
 
5703
+  (exit $ac_status); } && {
 
5704
+        test -z "$ac_c_werror_flag" ||
 
5705
+        test ! -s conftest.err
 
5706
+       } && test -s conftest$ac_exeext &&
 
5707
+       $as_test_x conftest$ac_exeext; then
 
5708
   ac_cv_lib_jpeg_jpeg_destroy_decompress=yes
 
5709
 else
 
5710
   echo "$as_me: failed program was:" >&5
 
5711
@@ -28680,7 +26990,7 @@
 
5712
        ac_cv_lib_jpeg_jpeg_destroy_decompress=no
 
5713
 fi
 
5714
 
 
5715
-rm -f core conftest.err conftest.$ac_objext \
 
5716
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5717
       conftest$ac_exeext conftest.$ac_ext
 
5718
 LIBS=$ac_check_lib_save_LIBS
 
5719
 fi
 
5720
@@ -28721,17 +27031,10 @@
 
5721
   rm -f conftest.er1
 
5722
   cat conftest.err >&5
 
5723
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5724
-  (exit $ac_status); } >/dev/null; then
 
5725
-  if test -s conftest.err; then
 
5726
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5727
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5728
-  else
 
5729
-    ac_cpp_err=
 
5730
-  fi
 
5731
-else
 
5732
-  ac_cpp_err=yes
 
5733
-fi
 
5734
-if test -z "$ac_cpp_err"; then
 
5735
+  (exit $ac_status); } >/dev/null && {
 
5736
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5737
+        test ! -s conftest.err
 
5738
+       }; then
 
5739
   jpeg_ok=yes
 
5740
 else
 
5741
   echo "$as_me: failed program was:" >&5
 
5742
@@ -28787,27 +27090,11 @@
 
5743
   rm -f conftest.er1
 
5744
   cat conftest.err >&5
 
5745
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5746
-  (exit $ac_status); } &&
 
5747
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5748
-  { (case "(($ac_try" in
 
5749
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5750
-  *) ac_try_echo=$ac_try;;
 
5751
-esac
 
5752
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5753
-  (eval "$ac_try") 2>&5
 
5754
-  ac_status=$?
 
5755
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5756
-  (exit $ac_status); }; } &&
 
5757
-        { ac_try='test -s conftest$ac_exeext'
 
5758
-  { (case "(($ac_try" in
 
5759
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5760
-  *) ac_try_echo=$ac_try;;
 
5761
-esac
 
5762
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5763
-  (eval "$ac_try") 2>&5
 
5764
-  ac_status=$?
 
5765
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5766
-  (exit $ac_status); }; }; then
 
5767
+  (exit $ac_status); } && {
 
5768
+        test -z "$ac_c_werror_flag" ||
 
5769
+        test ! -s conftest.err
 
5770
+       } && test -s conftest$ac_exeext &&
 
5771
+       $as_test_x conftest$ac_exeext; then
 
5772
   ac_cv_lib_jpeg_jpeg_simple_progression=yes
 
5773
 else
 
5774
   echo "$as_me: failed program was:" >&5
 
5775
@@ -28816,7 +27103,7 @@
 
5776
        ac_cv_lib_jpeg_jpeg_simple_progression=no
 
5777
 fi
 
5778
 
 
5779
-rm -f core conftest.err conftest.$ac_objext \
 
5780
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5781
       conftest$ac_exeext conftest.$ac_ext
 
5782
 LIBS=$ac_check_lib_save_LIBS
 
5783
 fi
 
5784
@@ -28905,27 +27192,11 @@
 
5785
   rm -f conftest.er1
 
5786
   cat conftest.err >&5
 
5787
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5788
-  (exit $ac_status); } &&
 
5789
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5790
-  { (case "(($ac_try" in
 
5791
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5792
-  *) ac_try_echo=$ac_try;;
 
5793
-esac
 
5794
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5795
-  (eval "$ac_try") 2>&5
 
5796
-  ac_status=$?
 
5797
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5798
-  (exit $ac_status); }; } &&
 
5799
-        { ac_try='test -s conftest$ac_exeext'
 
5800
-  { (case "(($ac_try" in
 
5801
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5802
-  *) ac_try_echo=$ac_try;;
 
5803
-esac
 
5804
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5805
-  (eval "$ac_try") 2>&5
 
5806
-  ac_status=$?
 
5807
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5808
-  (exit $ac_status); }; }; then
 
5809
+  (exit $ac_status); } && {
 
5810
+        test -z "$ac_c_werror_flag" ||
 
5811
+        test ! -s conftest.err
 
5812
+       } && test -s conftest$ac_exeext &&
 
5813
+       $as_test_x conftest$ac_exeext; then
 
5814
   ac_cv_lib_png_png_read_info=yes
 
5815
 else
 
5816
   echo "$as_me: failed program was:" >&5
 
5817
@@ -28934,7 +27205,7 @@
 
5818
        ac_cv_lib_png_png_read_info=no
 
5819
 fi
 
5820
 
 
5821
-rm -f core conftest.err conftest.$ac_objext \
 
5822
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5823
       conftest$ac_exeext conftest.$ac_ext
 
5824
 LIBS=$ac_check_lib_save_LIBS
 
5825
 fi
 
5826
@@ -28975,27 +27246,10 @@
 
5827
   rm -f conftest.er1
 
5828
   cat conftest.err >&5
 
5829
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5830
-  (exit $ac_status); } &&
 
5831
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5832
-  { (case "(($ac_try" in
 
5833
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5834
-  *) ac_try_echo=$ac_try;;
 
5835
-esac
 
5836
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5837
-  (eval "$ac_try") 2>&5
 
5838
-  ac_status=$?
 
5839
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5840
-  (exit $ac_status); }; } &&
 
5841
-        { ac_try='test -s conftest.$ac_objext'
 
5842
-  { (case "(($ac_try" in
 
5843
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5844
-  *) ac_try_echo=$ac_try;;
 
5845
-esac
 
5846
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5847
-  (eval "$ac_try") 2>&5
 
5848
-  ac_status=$?
 
5849
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5850
-  (exit $ac_status); }; }; then
 
5851
+  (exit $ac_status); } && {
 
5852
+        test -z "$ac_c_werror_flag" ||
 
5853
+        test ! -s conftest.err
 
5854
+       } && test -s conftest.$ac_objext; then
 
5855
   ac_header_compiler=yes
 
5856
 else
 
5857
   echo "$as_me: failed program was:" >&5
 
5858
@@ -29031,17 +27285,10 @@
 
5859
   rm -f conftest.er1
 
5860
   cat conftest.err >&5
 
5861
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5862
-  (exit $ac_status); } >/dev/null; then
 
5863
-  if test -s conftest.err; then
 
5864
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
5865
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
5866
-  else
 
5867
-    ac_cpp_err=
 
5868
-  fi
 
5869
-else
 
5870
-  ac_cpp_err=yes
 
5871
-fi
 
5872
-if test -z "$ac_cpp_err"; then
 
5873
+  (exit $ac_status); } >/dev/null && {
 
5874
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
5875
+        test ! -s conftest.err
 
5876
+       }; then
 
5877
   ac_header_preproc=yes
 
5878
 else
 
5879
   echo "$as_me: failed program was:" >&5
 
5880
@@ -29138,27 +27385,10 @@
 
5881
   rm -f conftest.er1
 
5882
   cat conftest.err >&5
 
5883
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5884
-  (exit $ac_status); } &&
 
5885
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5886
-  { (case "(($ac_try" in
 
5887
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5888
-  *) ac_try_echo=$ac_try;;
 
5889
-esac
 
5890
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5891
-  (eval "$ac_try") 2>&5
 
5892
-  ac_status=$?
 
5893
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5894
-  (exit $ac_status); }; } &&
 
5895
-        { ac_try='test -s conftest.$ac_objext'
 
5896
-  { (case "(($ac_try" in
 
5897
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5898
-  *) ac_try_echo=$ac_try;;
 
5899
-esac
 
5900
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5901
-  (eval "$ac_try") 2>&5
 
5902
-  ac_status=$?
 
5903
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5904
-  (exit $ac_status); }; }; then
 
5905
+  (exit $ac_status); } && {
 
5906
+        test -z "$ac_c_werror_flag" ||
 
5907
+        test ! -s conftest.err
 
5908
+       } && test -s conftest.$ac_objext; then
 
5909
   png_ok=yes
 
5910
 else
 
5911
   echo "$as_me: failed program was:" >&5
 
5912
@@ -29309,27 +27539,10 @@
 
5913
   rm -f conftest.er1
 
5914
   cat conftest.err >&5
 
5915
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5916
-  (exit $ac_status); } &&
 
5917
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5918
-  { (case "(($ac_try" in
 
5919
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5920
-  *) ac_try_echo=$ac_try;;
 
5921
-esac
 
5922
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5923
-  (eval "$ac_try") 2>&5
 
5924
-  ac_status=$?
 
5925
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5926
-  (exit $ac_status); }; } &&
 
5927
-        { ac_try='test -s conftest.$ac_objext'
 
5928
-  { (case "(($ac_try" in
 
5929
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5930
-  *) ac_try_echo=$ac_try;;
 
5931
-esac
 
5932
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5933
-  (eval "$ac_try") 2>&5
 
5934
-  ac_status=$?
 
5935
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5936
-  (exit $ac_status); }; }; then
 
5937
+  (exit $ac_status); } && {
 
5938
+        test -z "$ac_c_werror_flag" ||
 
5939
+        test ! -s conftest.err
 
5940
+       } && test -s conftest.$ac_objext; then
 
5941
   ac_cv_header_sys_wait_h=yes
 
5942
 else
 
5943
   echo "$as_me: failed program was:" >&5
 
5944
@@ -29386,27 +27599,10 @@
 
5945
   rm -f conftest.er1
 
5946
   cat conftest.err >&5
 
5947
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5948
-  (exit $ac_status); } &&
 
5949
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
5950
-  { (case "(($ac_try" in
 
5951
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5952
-  *) ac_try_echo=$ac_try;;
 
5953
-esac
 
5954
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5955
-  (eval "$ac_try") 2>&5
 
5956
-  ac_status=$?
 
5957
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5958
-  (exit $ac_status); }; } &&
 
5959
-        { ac_try='test -s conftest.$ac_objext'
 
5960
-  { (case "(($ac_try" in
 
5961
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5962
-  *) ac_try_echo=$ac_try;;
 
5963
-esac
 
5964
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5965
-  (eval "$ac_try") 2>&5
 
5966
-  ac_status=$?
 
5967
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5968
-  (exit $ac_status); }; }; then
 
5969
+  (exit $ac_status); } && {
 
5970
+        test -z "$ac_c_werror_flag" ||
 
5971
+        test ! -s conftest.err
 
5972
+       } && test -s conftest.$ac_objext; then
 
5973
   ac_cv_type_signal=int
 
5974
 else
 
5975
   echo "$as_me: failed program was:" >&5
 
5976
@@ -29569,7 +27765,7 @@
 
5977
   IFS=$as_save_IFS
 
5978
   test -z "$as_dir" && as_dir=.
 
5979
   for ac_exec_ext in '' $ac_executable_extensions; do
 
5980
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5981
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5982
     ac_cv_path_GDK_PIXBUF_CSOURCE="$as_dir/$ac_word$ac_exec_ext"
 
5983
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
5984
     break 2
 
5985
@@ -29610,7 +27806,7 @@
 
5986
   IFS=$as_save_IFS
 
5987
   test -z "$as_dir" && as_dir=.
 
5988
   for ac_exec_ext in '' $ac_executable_extensions; do
 
5989
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5990
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5991
     ac_cv_path_GTK_UPDATE_ICON_CACHE="$as_dir/$ac_word$ac_exec_ext"
 
5992
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
5993
     break 2
 
5994
@@ -29840,17 +28036,10 @@
 
5995
   rm -f conftest.er1
 
5996
   cat conftest.err >&5
 
5997
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5998
-  (exit $ac_status); } >/dev/null; then
 
5999
-  if test -s conftest.err; then
 
6000
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
6001
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
6002
-  else
 
6003
-    ac_cpp_err=
 
6004
-  fi
 
6005
-else
 
6006
-  ac_cpp_err=yes
 
6007
-fi
 
6008
-if test -z "$ac_cpp_err"; then
 
6009
+  (exit $ac_status); } >/dev/null && {
 
6010
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
6011
+        test ! -s conftest.err
 
6012
+       }; then
 
6013
   # We can compile using X headers with no special include directory.
 
6014
 ac_x_includes=
 
6015
 else
 
6016
@@ -29873,7 +28062,7 @@
 
6017
   # See if we find them without any special options.
 
6018
   # Don't add to $LIBS permanently.
 
6019
   ac_save_LIBS=$LIBS
 
6020
-  LIBS="-lXt $LIBS"
 
6021
+  LIBS="-lX11 $LIBS"
 
6022
   cat >conftest.$ac_ext <<_ACEOF
 
6023
 /* confdefs.h.  */
 
6024
 _ACEOF
 
6025
@@ -29902,27 +28091,11 @@
 
6026
   rm -f conftest.er1
 
6027
   cat conftest.err >&5
 
6028
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6029
-  (exit $ac_status); } &&
 
6030
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6031
-  { (case "(($ac_try" in
 
6032
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6033
-  *) ac_try_echo=$ac_try;;
 
6034
-esac
 
6035
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6036
-  (eval "$ac_try") 2>&5
 
6037
-  ac_status=$?
 
6038
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6039
-  (exit $ac_status); }; } &&
 
6040
-        { ac_try='test -s conftest$ac_exeext'
 
6041
-  { (case "(($ac_try" in
 
6042
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6043
-  *) ac_try_echo=$ac_try;;
 
6044
-esac
 
6045
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6046
-  (eval "$ac_try") 2>&5
 
6047
-  ac_status=$?
 
6048
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6049
-  (exit $ac_status); }; }; then
 
6050
+  (exit $ac_status); } && {
 
6051
+        test -z "$ac_c_werror_flag" ||
 
6052
+        test ! -s conftest.err
 
6053
+       } && test -s conftest$ac_exeext &&
 
6054
+       $as_test_x conftest$ac_exeext; then
 
6055
   LIBS=$ac_save_LIBS
 
6056
 # We can link X programs with no special library path.
 
6057
 ac_x_libraries=
 
6058
@@ -29935,7 +28108,7 @@
 
6059
 do
 
6060
   # Don't even attempt the hair of trying to link an X program!
 
6061
   for ac_extension in a so sl; do
 
6062
-    if test -r "$ac_dir/libXt.$ac_extension"; then
 
6063
+    if test -r "$ac_dir/libX11.$ac_extension"; then
 
6064
       ac_x_libraries=$ac_dir
 
6065
       break 2
 
6066
     fi
 
6067
@@ -29943,7 +28116,7 @@
 
6068
 done
 
6069
 fi
 
6070
 
 
6071
-rm -f core conftest.err conftest.$ac_objext \
 
6072
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6073
       conftest$ac_exeext conftest.$ac_ext
 
6074
 fi # $ac_x_libraries = no
 
6075
 
 
6076
@@ -29998,12 +28171,12 @@
 
6077
     X_LIBS="$X_LIBS -L$x_libraries"
 
6078
     # For Solaris; some versions of Sun CC require a space after -R and
 
6079
     # others require no space.  Words are not sufficient . . . .
 
6080
-    case `(uname -sr) 2>/dev/null` in
 
6081
-    "SunOS 5"*)
 
6082
-      { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5
 
6083
+    { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5
 
6084
 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; }
 
6085
-      ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
 
6086
-      cat >conftest.$ac_ext <<_ACEOF
 
6087
+    ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
 
6088
+    ac_xsave_c_werror_flag=$ac_c_werror_flag
 
6089
+    ac_c_werror_flag=yes
 
6090
+    cat >conftest.$ac_ext <<_ACEOF
 
6091
 /* confdefs.h.  */
 
6092
 _ACEOF
 
6093
 cat confdefs.h >>conftest.$ac_ext
 
6094
@@ -30031,44 +28204,20 @@
 
6095
   rm -f conftest.er1
 
6096
   cat conftest.err >&5
 
6097
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6098
-  (exit $ac_status); } &&
 
6099
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6100
-  { (case "(($ac_try" in
 
6101
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6102
-  *) ac_try_echo=$ac_try;;
 
6103
-esac
 
6104
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6105
-  (eval "$ac_try") 2>&5
 
6106
-  ac_status=$?
 
6107
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6108
-  (exit $ac_status); }; } &&
 
6109
-        { ac_try='test -s conftest$ac_exeext'
 
6110
-  { (case "(($ac_try" in
 
6111
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6112
-  *) ac_try_echo=$ac_try;;
 
6113
-esac
 
6114
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6115
-  (eval "$ac_try") 2>&5
 
6116
-  ac_status=$?
 
6117
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6118
-  (exit $ac_status); }; }; then
 
6119
-  ac_R_nospace=yes
 
6120
+  (exit $ac_status); } && {
 
6121
+        test -z "$ac_c_werror_flag" ||
 
6122
+        test ! -s conftest.err
 
6123
+       } && test -s conftest$ac_exeext &&
 
6124
+       $as_test_x conftest$ac_exeext; then
 
6125
+  { echo "$as_me:$LINENO: result: no" >&5
 
6126
+echo "${ECHO_T}no" >&6; }
 
6127
+       X_LIBS="$X_LIBS -R$x_libraries"
 
6128
 else
 
6129
   echo "$as_me: failed program was:" >&5
 
6130
 sed 's/^/| /' conftest.$ac_ext >&5
 
6131
 
 
6132
-       ac_R_nospace=no
 
6133
-fi
 
6134
-
 
6135
-rm -f core conftest.err conftest.$ac_objext \
 
6136
-      conftest$ac_exeext conftest.$ac_ext
 
6137
-      if test $ac_R_nospace = yes; then
 
6138
-       { echo "$as_me:$LINENO: result: no" >&5
 
6139
-echo "${ECHO_T}no" >&6; }
 
6140
-       X_LIBS="$X_LIBS -R$x_libraries"
 
6141
-      else
 
6142
        LIBS="$ac_xsave_LIBS -R $x_libraries"
 
6143
-       cat >conftest.$ac_ext <<_ACEOF
 
6144
+       cat >conftest.$ac_ext <<_ACEOF
 
6145
 /* confdefs.h.  */
 
6146
 _ACEOF
 
6147
 cat confdefs.h >>conftest.$ac_ext
 
6148
@@ -30096,48 +28245,30 @@
 
6149
   rm -f conftest.er1
 
6150
   cat conftest.err >&5
 
6151
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6152
-  (exit $ac_status); } &&
 
6153
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6154
-  { (case "(($ac_try" in
 
6155
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6156
-  *) ac_try_echo=$ac_try;;
 
6157
-esac
 
6158
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6159
-  (eval "$ac_try") 2>&5
 
6160
-  ac_status=$?
 
6161
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6162
-  (exit $ac_status); }; } &&
 
6163
-        { ac_try='test -s conftest$ac_exeext'
 
6164
-  { (case "(($ac_try" in
 
6165
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6166
-  *) ac_try_echo=$ac_try;;
 
6167
-esac
 
6168
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6169
-  (eval "$ac_try") 2>&5
 
6170
-  ac_status=$?
 
6171
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6172
-  (exit $ac_status); }; }; then
 
6173
-  ac_R_space=yes
 
6174
+  (exit $ac_status); } && {
 
6175
+        test -z "$ac_c_werror_flag" ||
 
6176
+        test ! -s conftest.err
 
6177
+       } && test -s conftest$ac_exeext &&
 
6178
+       $as_test_x conftest$ac_exeext; then
 
6179
+  { echo "$as_me:$LINENO: result: yes" >&5
 
6180
+echo "${ECHO_T}yes" >&6; }
 
6181
+         X_LIBS="$X_LIBS -R $x_libraries"
 
6182
 else
 
6183
   echo "$as_me: failed program was:" >&5
 
6184
 sed 's/^/| /' conftest.$ac_ext >&5
 
6185
 
 
6186
-       ac_R_space=no
 
6187
+       { echo "$as_me:$LINENO: result: neither works" >&5
 
6188
+echo "${ECHO_T}neither works" >&6; }
 
6189
 fi
 
6190
 
 
6191
-rm -f core conftest.err conftest.$ac_objext \
 
6192
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6193
       conftest$ac_exeext conftest.$ac_ext
 
6194
-       if test $ac_R_space = yes; then
 
6195
-         { echo "$as_me:$LINENO: result: yes" >&5
 
6196
-echo "${ECHO_T}yes" >&6; }
 
6197
-         X_LIBS="$X_LIBS -R $x_libraries"
 
6198
-       else
 
6199
-         { echo "$as_me:$LINENO: result: neither works" >&5
 
6200
-echo "${ECHO_T}neither works" >&6; }
 
6201
-       fi
 
6202
-      fi
 
6203
-      LIBS=$ac_xsave_LIBS
 
6204
-    esac
 
6205
+fi
 
6206
+
 
6207
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6208
+      conftest$ac_exeext conftest.$ac_ext
 
6209
+    ac_c_werror_flag=$ac_xsave_c_werror_flag
 
6210
+    LIBS=$ac_xsave_LIBS
 
6211
   fi
 
6212
 
 
6213
   # Check for system-dependent libraries X programs must link with.
 
6214
@@ -30186,27 +28317,11 @@
 
6215
   rm -f conftest.er1
 
6216
   cat conftest.err >&5
 
6217
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6218
-  (exit $ac_status); } &&
 
6219
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6220
-  { (case "(($ac_try" in
 
6221
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6222
-  *) ac_try_echo=$ac_try;;
 
6223
-esac
 
6224
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6225
-  (eval "$ac_try") 2>&5
 
6226
-  ac_status=$?
 
6227
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6228
-  (exit $ac_status); }; } &&
 
6229
-        { ac_try='test -s conftest$ac_exeext'
 
6230
-  { (case "(($ac_try" in
 
6231
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6232
-  *) ac_try_echo=$ac_try;;
 
6233
-esac
 
6234
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6235
-  (eval "$ac_try") 2>&5
 
6236
-  ac_status=$?
 
6237
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6238
-  (exit $ac_status); }; }; then
 
6239
+  (exit $ac_status); } && {
 
6240
+        test -z "$ac_c_werror_flag" ||
 
6241
+        test ! -s conftest.err
 
6242
+       } && test -s conftest$ac_exeext &&
 
6243
+       $as_test_x conftest$ac_exeext; then
 
6244
   :
 
6245
 else
 
6246
   echo "$as_me: failed program was:" >&5
 
6247
@@ -30254,27 +28369,11 @@
 
6248
   rm -f conftest.er1
 
6249
   cat conftest.err >&5
 
6250
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6251
-  (exit $ac_status); } &&
 
6252
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6253
-  { (case "(($ac_try" in
 
6254
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6255
-  *) ac_try_echo=$ac_try;;
 
6256
-esac
 
6257
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6258
-  (eval "$ac_try") 2>&5
 
6259
-  ac_status=$?
 
6260
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6261
-  (exit $ac_status); }; } &&
 
6262
-        { ac_try='test -s conftest$ac_exeext'
 
6263
-  { (case "(($ac_try" in
 
6264
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6265
-  *) ac_try_echo=$ac_try;;
 
6266
-esac
 
6267
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6268
-  (eval "$ac_try") 2>&5
 
6269
-  ac_status=$?
 
6270
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6271
-  (exit $ac_status); }; }; then
 
6272
+  (exit $ac_status); } && {
 
6273
+        test -z "$ac_c_werror_flag" ||
 
6274
+        test ! -s conftest.err
 
6275
+       } && test -s conftest$ac_exeext &&
 
6276
+       $as_test_x conftest$ac_exeext; then
 
6277
   ac_cv_lib_dnet_dnet_ntoa=yes
 
6278
 else
 
6279
   echo "$as_me: failed program was:" >&5
 
6280
@@ -30283,7 +28382,7 @@
 
6281
        ac_cv_lib_dnet_dnet_ntoa=no
 
6282
 fi
 
6283
 
 
6284
-rm -f core conftest.err conftest.$ac_objext \
 
6285
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6286
       conftest$ac_exeext conftest.$ac_ext
 
6287
 LIBS=$ac_check_lib_save_LIBS
 
6288
 fi
 
6289
@@ -30336,27 +28435,11 @@
 
6290
   rm -f conftest.er1
 
6291
   cat conftest.err >&5
 
6292
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6293
-  (exit $ac_status); } &&
 
6294
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6295
-  { (case "(($ac_try" in
 
6296
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6297
-  *) ac_try_echo=$ac_try;;
 
6298
-esac
 
6299
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6300
-  (eval "$ac_try") 2>&5
 
6301
-  ac_status=$?
 
6302
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6303
-  (exit $ac_status); }; } &&
 
6304
-        { ac_try='test -s conftest$ac_exeext'
 
6305
-  { (case "(($ac_try" in
 
6306
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6307
-  *) ac_try_echo=$ac_try;;
 
6308
-esac
 
6309
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6310
-  (eval "$ac_try") 2>&5
 
6311
-  ac_status=$?
 
6312
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6313
-  (exit $ac_status); }; }; then
 
6314
+  (exit $ac_status); } && {
 
6315
+        test -z "$ac_c_werror_flag" ||
 
6316
+        test ! -s conftest.err
 
6317
+       } && test -s conftest$ac_exeext &&
 
6318
+       $as_test_x conftest$ac_exeext; then
 
6319
   ac_cv_lib_dnet_stub_dnet_ntoa=yes
 
6320
 else
 
6321
   echo "$as_me: failed program was:" >&5
 
6322
@@ -30365,7 +28448,7 @@
 
6323
        ac_cv_lib_dnet_stub_dnet_ntoa=no
 
6324
 fi
 
6325
 
 
6326
-rm -f core conftest.err conftest.$ac_objext \
 
6327
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6328
       conftest$ac_exeext conftest.$ac_ext
 
6329
 LIBS=$ac_check_lib_save_LIBS
 
6330
 fi
 
6331
@@ -30378,7 +28461,7 @@
 
6332
     fi
 
6333
 fi
 
6334
 
 
6335
-rm -f core conftest.err conftest.$ac_objext \
 
6336
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6337
       conftest$ac_exeext conftest.$ac_ext
 
6338
     LIBS="$ac_xsave_LIBS"
 
6339
 
 
6340
@@ -30453,27 +28536,11 @@
 
6341
   rm -f conftest.er1
 
6342
   cat conftest.err >&5
 
6343
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6344
-  (exit $ac_status); } &&
 
6345
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6346
-  { (case "(($ac_try" in
 
6347
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6348
-  *) ac_try_echo=$ac_try;;
 
6349
-esac
 
6350
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6351
-  (eval "$ac_try") 2>&5
 
6352
-  ac_status=$?
 
6353
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6354
-  (exit $ac_status); }; } &&
 
6355
-        { ac_try='test -s conftest$ac_exeext'
 
6356
-  { (case "(($ac_try" in
 
6357
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6358
-  *) ac_try_echo=$ac_try;;
 
6359
-esac
 
6360
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6361
-  (eval "$ac_try") 2>&5
 
6362
-  ac_status=$?
 
6363
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6364
-  (exit $ac_status); }; }; then
 
6365
+  (exit $ac_status); } && {
 
6366
+        test -z "$ac_c_werror_flag" ||
 
6367
+        test ! -s conftest.err
 
6368
+       } && test -s conftest$ac_exeext &&
 
6369
+       $as_test_x conftest$ac_exeext; then
 
6370
   ac_cv_func_gethostbyname=yes
 
6371
 else
 
6372
   echo "$as_me: failed program was:" >&5
 
6373
@@ -30482,7 +28549,7 @@
 
6374
        ac_cv_func_gethostbyname=no
 
6375
 fi
 
6376
 
 
6377
-rm -f core conftest.err conftest.$ac_objext \
 
6378
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6379
       conftest$ac_exeext conftest.$ac_ext
 
6380
 fi
 
6381
 { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5
 
6382
@@ -30531,27 +28598,11 @@
 
6383
   rm -f conftest.er1
 
6384
   cat conftest.err >&5
 
6385
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6386
-  (exit $ac_status); } &&
 
6387
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6388
-  { (case "(($ac_try" in
 
6389
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6390
-  *) ac_try_echo=$ac_try;;
 
6391
-esac
 
6392
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6393
-  (eval "$ac_try") 2>&5
 
6394
-  ac_status=$?
 
6395
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6396
-  (exit $ac_status); }; } &&
 
6397
-        { ac_try='test -s conftest$ac_exeext'
 
6398
-  { (case "(($ac_try" in
 
6399
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6400
-  *) ac_try_echo=$ac_try;;
 
6401
-esac
 
6402
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6403
-  (eval "$ac_try") 2>&5
 
6404
-  ac_status=$?
 
6405
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6406
-  (exit $ac_status); }; }; then
 
6407
+  (exit $ac_status); } && {
 
6408
+        test -z "$ac_c_werror_flag" ||
 
6409
+        test ! -s conftest.err
 
6410
+       } && test -s conftest$ac_exeext &&
 
6411
+       $as_test_x conftest$ac_exeext; then
 
6412
   ac_cv_lib_nsl_gethostbyname=yes
 
6413
 else
 
6414
   echo "$as_me: failed program was:" >&5
 
6415
@@ -30560,7 +28611,7 @@
 
6416
        ac_cv_lib_nsl_gethostbyname=no
 
6417
 fi
 
6418
 
 
6419
-rm -f core conftest.err conftest.$ac_objext \
 
6420
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6421
       conftest$ac_exeext conftest.$ac_ext
 
6422
 LIBS=$ac_check_lib_save_LIBS
 
6423
 fi
 
6424
@@ -30613,27 +28664,11 @@
 
6425
   rm -f conftest.er1
 
6426
   cat conftest.err >&5
 
6427
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6428
-  (exit $ac_status); } &&
 
6429
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6430
-  { (case "(($ac_try" in
 
6431
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6432
-  *) ac_try_echo=$ac_try;;
 
6433
-esac
 
6434
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6435
-  (eval "$ac_try") 2>&5
 
6436
-  ac_status=$?
 
6437
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6438
-  (exit $ac_status); }; } &&
 
6439
-        { ac_try='test -s conftest$ac_exeext'
 
6440
-  { (case "(($ac_try" in
 
6441
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6442
-  *) ac_try_echo=$ac_try;;
 
6443
-esac
 
6444
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6445
-  (eval "$ac_try") 2>&5
 
6446
-  ac_status=$?
 
6447
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6448
-  (exit $ac_status); }; }; then
 
6449
+  (exit $ac_status); } && {
 
6450
+        test -z "$ac_c_werror_flag" ||
 
6451
+        test ! -s conftest.err
 
6452
+       } && test -s conftest$ac_exeext &&
 
6453
+       $as_test_x conftest$ac_exeext; then
 
6454
   ac_cv_lib_bsd_gethostbyname=yes
 
6455
 else
 
6456
   echo "$as_me: failed program was:" >&5
 
6457
@@ -30642,7 +28677,7 @@
 
6458
        ac_cv_lib_bsd_gethostbyname=no
 
6459
 fi
 
6460
 
 
6461
-rm -f core conftest.err conftest.$ac_objext \
 
6462
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6463
       conftest$ac_exeext conftest.$ac_ext
 
6464
 LIBS=$ac_check_lib_save_LIBS
 
6465
 fi
 
6466
@@ -30725,27 +28760,11 @@
 
6467
   rm -f conftest.er1
 
6468
   cat conftest.err >&5
 
6469
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6470
-  (exit $ac_status); } &&
 
6471
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6472
-  { (case "(($ac_try" in
 
6473
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6474
-  *) ac_try_echo=$ac_try;;
 
6475
-esac
 
6476
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6477
-  (eval "$ac_try") 2>&5
 
6478
-  ac_status=$?
 
6479
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6480
-  (exit $ac_status); }; } &&
 
6481
-        { ac_try='test -s conftest$ac_exeext'
 
6482
-  { (case "(($ac_try" in
 
6483
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6484
-  *) ac_try_echo=$ac_try;;
 
6485
-esac
 
6486
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6487
-  (eval "$ac_try") 2>&5
 
6488
-  ac_status=$?
 
6489
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6490
-  (exit $ac_status); }; }; then
 
6491
+  (exit $ac_status); } && {
 
6492
+        test -z "$ac_c_werror_flag" ||
 
6493
+        test ! -s conftest.err
 
6494
+       } && test -s conftest$ac_exeext &&
 
6495
+       $as_test_x conftest$ac_exeext; then
 
6496
   ac_cv_func_connect=yes
 
6497
 else
 
6498
   echo "$as_me: failed program was:" >&5
 
6499
@@ -30754,7 +28773,7 @@
 
6500
        ac_cv_func_connect=no
 
6501
 fi
 
6502
 
 
6503
-rm -f core conftest.err conftest.$ac_objext \
 
6504
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6505
       conftest$ac_exeext conftest.$ac_ext
 
6506
 fi
 
6507
 { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5
 
6508
@@ -30803,27 +28822,11 @@
 
6509
   rm -f conftest.er1
 
6510
   cat conftest.err >&5
 
6511
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6512
-  (exit $ac_status); } &&
 
6513
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6514
-  { (case "(($ac_try" in
 
6515
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6516
-  *) ac_try_echo=$ac_try;;
 
6517
-esac
 
6518
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6519
-  (eval "$ac_try") 2>&5
 
6520
-  ac_status=$?
 
6521
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6522
-  (exit $ac_status); }; } &&
 
6523
-        { ac_try='test -s conftest$ac_exeext'
 
6524
-  { (case "(($ac_try" in
 
6525
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6526
-  *) ac_try_echo=$ac_try;;
 
6527
-esac
 
6528
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6529
-  (eval "$ac_try") 2>&5
 
6530
-  ac_status=$?
 
6531
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6532
-  (exit $ac_status); }; }; then
 
6533
+  (exit $ac_status); } && {
 
6534
+        test -z "$ac_c_werror_flag" ||
 
6535
+        test ! -s conftest.err
 
6536
+       } && test -s conftest$ac_exeext &&
 
6537
+       $as_test_x conftest$ac_exeext; then
 
6538
   ac_cv_lib_socket_connect=yes
 
6539
 else
 
6540
   echo "$as_me: failed program was:" >&5
 
6541
@@ -30832,7 +28835,7 @@
 
6542
        ac_cv_lib_socket_connect=no
 
6543
 fi
 
6544
 
 
6545
-rm -f core conftest.err conftest.$ac_objext \
 
6546
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6547
       conftest$ac_exeext conftest.$ac_ext
 
6548
 LIBS=$ac_check_lib_save_LIBS
 
6549
 fi
 
6550
@@ -30908,27 +28911,11 @@
 
6551
   rm -f conftest.er1
 
6552
   cat conftest.err >&5
 
6553
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6554
-  (exit $ac_status); } &&
 
6555
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6556
-  { (case "(($ac_try" in
 
6557
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6558
-  *) ac_try_echo=$ac_try;;
 
6559
-esac
 
6560
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6561
-  (eval "$ac_try") 2>&5
 
6562
-  ac_status=$?
 
6563
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6564
-  (exit $ac_status); }; } &&
 
6565
-        { ac_try='test -s conftest$ac_exeext'
 
6566
-  { (case "(($ac_try" in
 
6567
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6568
-  *) ac_try_echo=$ac_try;;
 
6569
-esac
 
6570
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6571
-  (eval "$ac_try") 2>&5
 
6572
-  ac_status=$?
 
6573
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6574
-  (exit $ac_status); }; }; then
 
6575
+  (exit $ac_status); } && {
 
6576
+        test -z "$ac_c_werror_flag" ||
 
6577
+        test ! -s conftest.err
 
6578
+       } && test -s conftest$ac_exeext &&
 
6579
+       $as_test_x conftest$ac_exeext; then
 
6580
   ac_cv_func_remove=yes
 
6581
 else
 
6582
   echo "$as_me: failed program was:" >&5
 
6583
@@ -30937,7 +28924,7 @@
 
6584
        ac_cv_func_remove=no
 
6585
 fi
 
6586
 
 
6587
-rm -f core conftest.err conftest.$ac_objext \
 
6588
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6589
       conftest$ac_exeext conftest.$ac_ext
 
6590
 fi
 
6591
 { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5
 
6592
@@ -30986,27 +28973,11 @@
 
6593
   rm -f conftest.er1
 
6594
   cat conftest.err >&5
 
6595
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6596
-  (exit $ac_status); } &&
 
6597
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6598
-  { (case "(($ac_try" in
 
6599
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6600
-  *) ac_try_echo=$ac_try;;
 
6601
-esac
 
6602
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6603
-  (eval "$ac_try") 2>&5
 
6604
-  ac_status=$?
 
6605
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6606
-  (exit $ac_status); }; } &&
 
6607
-        { ac_try='test -s conftest$ac_exeext'
 
6608
-  { (case "(($ac_try" in
 
6609
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6610
-  *) ac_try_echo=$ac_try;;
 
6611
-esac
 
6612
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6613
-  (eval "$ac_try") 2>&5
 
6614
-  ac_status=$?
 
6615
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6616
-  (exit $ac_status); }; }; then
 
6617
+  (exit $ac_status); } && {
 
6618
+        test -z "$ac_c_werror_flag" ||
 
6619
+        test ! -s conftest.err
 
6620
+       } && test -s conftest$ac_exeext &&
 
6621
+       $as_test_x conftest$ac_exeext; then
 
6622
   ac_cv_lib_posix_remove=yes
 
6623
 else
 
6624
   echo "$as_me: failed program was:" >&5
 
6625
@@ -31015,7 +28986,7 @@
 
6626
        ac_cv_lib_posix_remove=no
 
6627
 fi
 
6628
 
 
6629
-rm -f core conftest.err conftest.$ac_objext \
 
6630
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6631
       conftest$ac_exeext conftest.$ac_ext
 
6632
 LIBS=$ac_check_lib_save_LIBS
 
6633
 fi
 
6634
@@ -31091,27 +29062,11 @@
 
6635
   rm -f conftest.er1
 
6636
   cat conftest.err >&5
 
6637
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6638
-  (exit $ac_status); } &&
 
6639
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6640
-  { (case "(($ac_try" in
 
6641
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6642
-  *) ac_try_echo=$ac_try;;
 
6643
-esac
 
6644
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6645
-  (eval "$ac_try") 2>&5
 
6646
-  ac_status=$?
 
6647
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6648
-  (exit $ac_status); }; } &&
 
6649
-        { ac_try='test -s conftest$ac_exeext'
 
6650
-  { (case "(($ac_try" in
 
6651
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6652
-  *) ac_try_echo=$ac_try;;
 
6653
-esac
 
6654
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6655
-  (eval "$ac_try") 2>&5
 
6656
-  ac_status=$?
 
6657
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6658
-  (exit $ac_status); }; }; then
 
6659
+  (exit $ac_status); } && {
 
6660
+        test -z "$ac_c_werror_flag" ||
 
6661
+        test ! -s conftest.err
 
6662
+       } && test -s conftest$ac_exeext &&
 
6663
+       $as_test_x conftest$ac_exeext; then
 
6664
   ac_cv_func_shmat=yes
 
6665
 else
 
6666
   echo "$as_me: failed program was:" >&5
 
6667
@@ -31120,7 +29075,7 @@
 
6668
        ac_cv_func_shmat=no
 
6669
 fi
 
6670
 
 
6671
-rm -f core conftest.err conftest.$ac_objext \
 
6672
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6673
       conftest$ac_exeext conftest.$ac_ext
 
6674
 fi
 
6675
 { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5
 
6676
@@ -31150,46 +29105,30 @@
 
6677
 char shmat ();
 
6678
 int
 
6679
 main ()
 
6680
-{
 
6681
-return shmat ();
 
6682
-  ;
 
6683
-  return 0;
 
6684
-}
 
6685
-_ACEOF
 
6686
-rm -f conftest.$ac_objext conftest$ac_exeext
 
6687
-if { (ac_try="$ac_link"
 
6688
-case "(($ac_try" in
 
6689
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6690
-  *) ac_try_echo=$ac_try;;
 
6691
-esac
 
6692
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6693
-  (eval "$ac_link") 2>conftest.er1
 
6694
-  ac_status=$?
 
6695
-  grep -v '^ *+' conftest.er1 >conftest.err
 
6696
-  rm -f conftest.er1
 
6697
-  cat conftest.err >&5
 
6698
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6699
-  (exit $ac_status); } &&
 
6700
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6701
-  { (case "(($ac_try" in
 
6702
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6703
-  *) ac_try_echo=$ac_try;;
 
6704
-esac
 
6705
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6706
-  (eval "$ac_try") 2>&5
 
6707
-  ac_status=$?
 
6708
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6709
-  (exit $ac_status); }; } &&
 
6710
-        { ac_try='test -s conftest$ac_exeext'
 
6711
-  { (case "(($ac_try" in
 
6712
+{
 
6713
+return shmat ();
 
6714
+  ;
 
6715
+  return 0;
 
6716
+}
 
6717
+_ACEOF
 
6718
+rm -f conftest.$ac_objext conftest$ac_exeext
 
6719
+if { (ac_try="$ac_link"
 
6720
+case "(($ac_try" in
 
6721
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6722
   *) ac_try_echo=$ac_try;;
 
6723
 esac
 
6724
 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6725
-  (eval "$ac_try") 2>&5
 
6726
+  (eval "$ac_link") 2>conftest.er1
 
6727
   ac_status=$?
 
6728
+  grep -v '^ *+' conftest.er1 >conftest.err
 
6729
+  rm -f conftest.er1
 
6730
+  cat conftest.err >&5
 
6731
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6732
-  (exit $ac_status); }; }; then
 
6733
+  (exit $ac_status); } && {
 
6734
+        test -z "$ac_c_werror_flag" ||
 
6735
+        test ! -s conftest.err
 
6736
+       } && test -s conftest$ac_exeext &&
 
6737
+       $as_test_x conftest$ac_exeext; then
 
6738
   ac_cv_lib_ipc_shmat=yes
 
6739
 else
 
6740
   echo "$as_me: failed program was:" >&5
 
6741
@@ -31198,7 +29137,7 @@
 
6742
        ac_cv_lib_ipc_shmat=no
 
6743
 fi
 
6744
 
 
6745
-rm -f core conftest.err conftest.$ac_objext \
 
6746
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6747
       conftest$ac_exeext conftest.$ac_ext
 
6748
 LIBS=$ac_check_lib_save_LIBS
 
6749
 fi
 
6750
@@ -31262,27 +29201,11 @@
 
6751
   rm -f conftest.er1
 
6752
   cat conftest.err >&5
 
6753
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6754
-  (exit $ac_status); } &&
 
6755
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6756
-  { (case "(($ac_try" in
 
6757
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6758
-  *) ac_try_echo=$ac_try;;
 
6759
-esac
 
6760
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6761
-  (eval "$ac_try") 2>&5
 
6762
-  ac_status=$?
 
6763
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6764
-  (exit $ac_status); }; } &&
 
6765
-        { ac_try='test -s conftest$ac_exeext'
 
6766
-  { (case "(($ac_try" in
 
6767
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6768
-  *) ac_try_echo=$ac_try;;
 
6769
-esac
 
6770
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6771
-  (eval "$ac_try") 2>&5
 
6772
-  ac_status=$?
 
6773
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6774
-  (exit $ac_status); }; }; then
 
6775
+  (exit $ac_status); } && {
 
6776
+        test -z "$ac_c_werror_flag" ||
 
6777
+        test ! -s conftest.err
 
6778
+       } && test -s conftest$ac_exeext &&
 
6779
+       $as_test_x conftest$ac_exeext; then
 
6780
   ac_cv_lib_ICE_IceConnectionNumber=yes
 
6781
 else
 
6782
   echo "$as_me: failed program was:" >&5
 
6783
@@ -31291,7 +29214,7 @@
 
6784
        ac_cv_lib_ICE_IceConnectionNumber=no
 
6785
 fi
 
6786
 
 
6787
-rm -f core conftest.err conftest.$ac_objext \
 
6788
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6789
       conftest$ac_exeext conftest.$ac_ext
 
6790
 LIBS=$ac_check_lib_save_LIBS
 
6791
 fi
 
6792
@@ -31394,27 +29317,11 @@
 
6793
   rm -f conftest.er1
 
6794
   cat conftest.err >&5
 
6795
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6796
-  (exit $ac_status); } &&
 
6797
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6798
-  { (case "(($ac_try" in
 
6799
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6800
-  *) ac_try_echo=$ac_try;;
 
6801
-esac
 
6802
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6803
-  (eval "$ac_try") 2>&5
 
6804
-  ac_status=$?
 
6805
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6806
-  (exit $ac_status); }; } &&
 
6807
-        { ac_try='test -s conftest$ac_exeext'
 
6808
-  { (case "(($ac_try" in
 
6809
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6810
-  *) ac_try_echo=$ac_try;;
 
6811
-esac
 
6812
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6813
-  (eval "$ac_try") 2>&5
 
6814
-  ac_status=$?
 
6815
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6816
-  (exit $ac_status); }; }; then
 
6817
+  (exit $ac_status); } && {
 
6818
+        test -z "$ac_c_werror_flag" ||
 
6819
+        test ! -s conftest.err
 
6820
+       } && test -s conftest$ac_exeext &&
 
6821
+       $as_test_x conftest$ac_exeext; then
 
6822
   ac_cv_func_XOpenDisplay=yes
 
6823
 else
 
6824
   echo "$as_me: failed program was:" >&5
 
6825
@@ -31423,7 +29330,7 @@
 
6826
        ac_cv_func_XOpenDisplay=no
 
6827
 fi
 
6828
 
 
6829
-rm -f core conftest.err conftest.$ac_objext \
 
6830
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6831
       conftest$ac_exeext conftest.$ac_ext
 
6832
 fi
 
6833
 { echo "$as_me:$LINENO: result: $ac_cv_func_XOpenDisplay" >&5
 
6834
@@ -31499,27 +29406,11 @@
 
6835
   rm -f conftest.er1
 
6836
   cat conftest.err >&5
 
6837
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6838
-  (exit $ac_status); } &&
 
6839
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6840
-  { (case "(($ac_try" in
 
6841
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6842
-  *) ac_try_echo=$ac_try;;
 
6843
-esac
 
6844
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6845
-  (eval "$ac_try") 2>&5
 
6846
-  ac_status=$?
 
6847
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6848
-  (exit $ac_status); }; } &&
 
6849
-        { ac_try='test -s conftest$ac_exeext'
 
6850
-  { (case "(($ac_try" in
 
6851
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6852
-  *) ac_try_echo=$ac_try;;
 
6853
-esac
 
6854
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6855
-  (eval "$ac_try") 2>&5
 
6856
-  ac_status=$?
 
6857
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6858
-  (exit $ac_status); }; }; then
 
6859
+  (exit $ac_status); } && {
 
6860
+        test -z "$ac_c_werror_flag" ||
 
6861
+        test ! -s conftest.err
 
6862
+       } && test -s conftest$ac_exeext &&
 
6863
+       $as_test_x conftest$ac_exeext; then
 
6864
   ac_cv_func_XextFindDisplay=yes
 
6865
 else
 
6866
   echo "$as_me: failed program was:" >&5
 
6867
@@ -31528,7 +29419,7 @@
 
6868
        ac_cv_func_XextFindDisplay=no
 
6869
 fi
 
6870
 
 
6871
-rm -f core conftest.err conftest.$ac_objext \
 
6872
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6873
       conftest$ac_exeext conftest.$ac_ext
 
6874
 fi
 
6875
 { echo "$as_me:$LINENO: result: $ac_cv_func_XextFindDisplay" >&5
 
6876
@@ -31604,27 +29495,11 @@
 
6877
   rm -f conftest.er1
 
6878
   cat conftest.err >&5
 
6879
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6880
-  (exit $ac_status); } &&
 
6881
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6882
-  { (case "(($ac_try" in
 
6883
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6884
-  *) ac_try_echo=$ac_try;;
 
6885
-esac
 
6886
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6887
-  (eval "$ac_try") 2>&5
 
6888
-  ac_status=$?
 
6889
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6890
-  (exit $ac_status); }; } &&
 
6891
-        { ac_try='test -s conftest$ac_exeext'
 
6892
-  { (case "(($ac_try" in
 
6893
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6894
-  *) ac_try_echo=$ac_try;;
 
6895
-esac
 
6896
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6897
-  (eval "$ac_try") 2>&5
 
6898
-  ac_status=$?
 
6899
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6900
-  (exit $ac_status); }; }; then
 
6901
+  (exit $ac_status); } && {
 
6902
+        test -z "$ac_c_werror_flag" ||
 
6903
+        test ! -s conftest.err
 
6904
+       } && test -s conftest$ac_exeext &&
 
6905
+       $as_test_x conftest$ac_exeext; then
 
6906
   ac_cv_func_XRenderQueryExtension=yes
 
6907
 else
 
6908
   echo "$as_me: failed program was:" >&5
 
6909
@@ -31633,7 +29508,7 @@
 
6910
        ac_cv_func_XRenderQueryExtension=no
 
6911
 fi
 
6912
 
 
6913
-rm -f core conftest.err conftest.$ac_objext \
 
6914
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6915
       conftest$ac_exeext conftest.$ac_ext
 
6916
 fi
 
6917
 { echo "$as_me:$LINENO: result: $ac_cv_func_XRenderQueryExtension" >&5
 
6918
@@ -31679,27 +29554,10 @@
 
6919
   rm -f conftest.er1
 
6920
   cat conftest.err >&5
 
6921
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6922
-  (exit $ac_status); } &&
 
6923
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6924
-  { (case "(($ac_try" in
 
6925
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6926
-  *) ac_try_echo=$ac_try;;
 
6927
-esac
 
6928
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6929
-  (eval "$ac_try") 2>&5
 
6930
-  ac_status=$?
 
6931
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6932
-  (exit $ac_status); }; } &&
 
6933
-        { ac_try='test -s conftest.$ac_objext'
 
6934
-  { (case "(($ac_try" in
 
6935
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6936
-  *) ac_try_echo=$ac_try;;
 
6937
-esac
 
6938
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6939
-  (eval "$ac_try") 2>&5
 
6940
-  ac_status=$?
 
6941
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6942
-  (exit $ac_status); }; }; then
 
6943
+  (exit $ac_status); } && {
 
6944
+        test -z "$ac_c_werror_flag" ||
 
6945
+        test ! -s conftest.err
 
6946
+       } && test -s conftest.$ac_objext; then
 
6947
   { echo "$as_me:$LINENO: result: no" >&5
 
6948
 echo "${ECHO_T}no" >&6; }
 
6949
 else
 
6950
@@ -31735,27 +29593,10 @@
 
6951
   rm -f conftest.er1
 
6952
   cat conftest.err >&5
 
6953
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6954
-  (exit $ac_status); } &&
 
6955
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6956
-  { (case "(($ac_try" in
 
6957
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6958
-  *) ac_try_echo=$ac_try;;
 
6959
-esac
 
6960
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6961
-  (eval "$ac_try") 2>&5
 
6962
-  ac_status=$?
 
6963
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6964
-  (exit $ac_status); }; } &&
 
6965
-        { ac_try='test -s conftest.$ac_objext'
 
6966
-  { (case "(($ac_try" in
 
6967
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6968
-  *) ac_try_echo=$ac_try;;
 
6969
-esac
 
6970
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6971
-  (eval "$ac_try") 2>&5
 
6972
-  ac_status=$?
 
6973
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6974
-  (exit $ac_status); }; }; then
 
6975
+  (exit $ac_status); } && {
 
6976
+        test -z "$ac_c_werror_flag" ||
 
6977
+        test ! -s conftest.err
 
6978
+       } && test -s conftest.$ac_objext; then
 
6979
   { echo "$as_me:$LINENO: result: yes" >&5
 
6980
 echo "${ECHO_T}yes" >&6; }
 
6981
 
 
6982
@@ -31849,27 +29690,11 @@
 
6983
   rm -f conftest.er1
 
6984
   cat conftest.err >&5
 
6985
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6986
-  (exit $ac_status); } &&
 
6987
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
6988
-  { (case "(($ac_try" in
 
6989
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6990
-  *) ac_try_echo=$ac_try;;
 
6991
-esac
 
6992
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6993
-  (eval "$ac_try") 2>&5
 
6994
-  ac_status=$?
 
6995
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6996
-  (exit $ac_status); }; } &&
 
6997
-        { ac_try='test -s conftest$ac_exeext'
 
6998
-  { (case "(($ac_try" in
 
6999
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7000
-  *) ac_try_echo=$ac_try;;
 
7001
-esac
 
7002
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7003
-  (eval "$ac_try") 2>&5
 
7004
-  ac_status=$?
 
7005
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7006
-  (exit $ac_status); }; }; then
 
7007
+  (exit $ac_status); } && {
 
7008
+        test -z "$ac_c_werror_flag" ||
 
7009
+        test ! -s conftest.err
 
7010
+       } && test -s conftest$ac_exeext &&
 
7011
+       $as_test_x conftest$ac_exeext; then
 
7012
   eval "$as_ac_var=yes"
 
7013
 else
 
7014
   echo "$as_me: failed program was:" >&5
 
7015
@@ -31878,7 +29703,7 @@
 
7016
        eval "$as_ac_var=no"
 
7017
 fi
 
7018
 
 
7019
-rm -f core conftest.err conftest.$ac_objext \
 
7020
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7021
       conftest$ac_exeext conftest.$ac_ext
 
7022
 fi
 
7023
 ac_res=`eval echo '${'$as_ac_var'}'`
 
7024
@@ -31962,27 +29787,11 @@
 
7025
   rm -f conftest.er1
 
7026
   cat conftest.err >&5
 
7027
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7028
-  (exit $ac_status); } &&
 
7029
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7030
-  { (case "(($ac_try" in
 
7031
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7032
-  *) ac_try_echo=$ac_try;;
 
7033
-esac
 
7034
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7035
-  (eval "$ac_try") 2>&5
 
7036
-  ac_status=$?
 
7037
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7038
-  (exit $ac_status); }; } &&
 
7039
-        { ac_try='test -s conftest$ac_exeext'
 
7040
-  { (case "(($ac_try" in
 
7041
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7042
-  *) ac_try_echo=$ac_try;;
 
7043
-esac
 
7044
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7045
-  (eval "$ac_try") 2>&5
 
7046
-  ac_status=$?
 
7047
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7048
-  (exit $ac_status); }; }; then
 
7049
+  (exit $ac_status); } && {
 
7050
+        test -z "$ac_c_werror_flag" ||
 
7051
+        test ! -s conftest.err
 
7052
+       } && test -s conftest$ac_exeext &&
 
7053
+       $as_test_x conftest$ac_exeext; then
 
7054
   ac_cv_func_XAddConnectionWatch=yes
 
7055
 else
 
7056
   echo "$as_me: failed program was:" >&5
 
7057
@@ -31991,7 +29800,7 @@
 
7058
        ac_cv_func_XAddConnectionWatch=no
 
7059
 fi
 
7060
 
 
7061
-rm -f core conftest.err conftest.$ac_objext \
 
7062
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7063
       conftest$ac_exeext conftest.$ac_ext
 
7064
 fi
 
7065
 { echo "$as_me:$LINENO: result: $ac_cv_func_XAddConnectionWatch" >&5
 
7066
@@ -32092,27 +29901,11 @@
 
7067
   rm -f conftest.er1
 
7068
   cat conftest.err >&5
 
7069
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7070
-  (exit $ac_status); } &&
 
7071
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7072
-  { (case "(($ac_try" in
 
7073
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7074
-  *) ac_try_echo=$ac_try;;
 
7075
-esac
 
7076
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7077
-  (eval "$ac_try") 2>&5
 
7078
-  ac_status=$?
 
7079
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7080
-  (exit $ac_status); }; } &&
 
7081
-        { ac_try='test -s conftest$ac_exeext'
 
7082
-  { (case "(($ac_try" in
 
7083
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7084
-  *) ac_try_echo=$ac_try;;
 
7085
-esac
 
7086
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7087
-  (eval "$ac_try") 2>&5
 
7088
-  ac_status=$?
 
7089
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7090
-  (exit $ac_status); }; }; then
 
7091
+  (exit $ac_status); } && {
 
7092
+        test -z "$ac_c_werror_flag" ||
 
7093
+        test ! -s conftest.err
 
7094
+       } && test -s conftest$ac_exeext &&
 
7095
+       $as_test_x conftest$ac_exeext; then
 
7096
   ac_cv_func_XkbQueryExtension=yes
 
7097
 else
 
7098
   echo "$as_me: failed program was:" >&5
 
7099
@@ -32121,7 +29914,7 @@
 
7100
        ac_cv_func_XkbQueryExtension=no
 
7101
 fi
 
7102
 
 
7103
-rm -f core conftest.err conftest.$ac_objext \
 
7104
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7105
       conftest$ac_exeext conftest.$ac_ext
 
7106
 fi
 
7107
 { echo "$as_me:$LINENO: result: $ac_cv_func_XkbQueryExtension" >&5
 
7108
@@ -32203,27 +29996,11 @@
 
7109
   rm -f conftest.er1
 
7110
   cat conftest.err >&5
 
7111
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7112
-  (exit $ac_status); } &&
 
7113
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7114
-  { (case "(($ac_try" in
 
7115
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7116
-  *) ac_try_echo=$ac_try;;
 
7117
-esac
 
7118
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7119
-  (eval "$ac_try") 2>&5
 
7120
-  ac_status=$?
 
7121
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7122
-  (exit $ac_status); }; } &&
 
7123
-        { ac_try='test -s conftest$ac_exeext'
 
7124
-  { (case "(($ac_try" in
 
7125
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7126
-  *) ac_try_echo=$ac_try;;
 
7127
-esac
 
7128
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7129
-  (eval "$ac_try") 2>&5
 
7130
-  ac_status=$?
 
7131
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7132
-  (exit $ac_status); }; }; then
 
7133
+  (exit $ac_status); } && {
 
7134
+        test -z "$ac_c_werror_flag" ||
 
7135
+        test ! -s conftest.err
 
7136
+       } && test -s conftest$ac_exeext &&
 
7137
+       $as_test_x conftest$ac_exeext; then
 
7138
   ac_cv_func_XShapeCombineMask=yes
 
7139
 else
 
7140
   echo "$as_me: failed program was:" >&5
 
7141
@@ -32232,7 +30009,7 @@
 
7142
        ac_cv_func_XShapeCombineMask=no
 
7143
 fi
 
7144
 
 
7145
-rm -f core conftest.err conftest.$ac_objext \
 
7146
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7147
       conftest$ac_exeext conftest.$ac_ext
 
7148
 fi
 
7149
 { echo "$as_me:$LINENO: result: $ac_cv_func_XShapeCombineMask" >&5
 
7150
@@ -32312,27 +30089,11 @@
 
7151
   rm -f conftest.er1
 
7152
   cat conftest.err >&5
 
7153
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7154
-  (exit $ac_status); } &&
 
7155
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7156
-  { (case "(($ac_try" in
 
7157
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7158
-  *) ac_try_echo=$ac_try;;
 
7159
-esac
 
7160
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7161
-  (eval "$ac_try") 2>&5
 
7162
-  ac_status=$?
 
7163
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7164
-  (exit $ac_status); }; } &&
 
7165
-        { ac_try='test -s conftest$ac_exeext'
 
7166
-  { (case "(($ac_try" in
 
7167
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7168
-  *) ac_try_echo=$ac_try;;
 
7169
-esac
 
7170
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7171
-  (eval "$ac_try") 2>&5
 
7172
-  ac_status=$?
 
7173
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7174
-  (exit $ac_status); }; }; then
 
7175
+  (exit $ac_status); } && {
 
7176
+        test -z "$ac_c_werror_flag" ||
 
7177
+        test ! -s conftest.err
 
7178
+       } && test -s conftest$ac_exeext &&
 
7179
+       $as_test_x conftest$ac_exeext; then
 
7180
   ac_cv_func_XSyncQueryExtension=yes
 
7181
 else
 
7182
   echo "$as_me: failed program was:" >&5
 
7183
@@ -32341,7 +30102,7 @@
 
7184
        ac_cv_func_XSyncQueryExtension=no
 
7185
 fi
 
7186
 
 
7187
-rm -f core conftest.err conftest.$ac_objext \
 
7188
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7189
       conftest$ac_exeext conftest.$ac_ext
 
7190
 fi
 
7191
 { echo "$as_me:$LINENO: result: $ac_cv_func_XSyncQueryExtension" >&5
 
7192
@@ -32375,27 +30136,10 @@
 
7193
   rm -f conftest.er1
 
7194
   cat conftest.err >&5
 
7195
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7196
-  (exit $ac_status); } &&
 
7197
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7198
-  { (case "(($ac_try" in
 
7199
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7200
-  *) ac_try_echo=$ac_try;;
 
7201
-esac
 
7202
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7203
-  (eval "$ac_try") 2>&5
 
7204
-  ac_status=$?
 
7205
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7206
-  (exit $ac_status); }; } &&
 
7207
-        { ac_try='test -s conftest.$ac_objext'
 
7208
-  { (case "(($ac_try" in
 
7209
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7210
-  *) ac_try_echo=$ac_try;;
 
7211
-esac
 
7212
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7213
-  (eval "$ac_try") 2>&5
 
7214
-  ac_status=$?
 
7215
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7216
-  (exit $ac_status); }; }; then
 
7217
+  (exit $ac_status); } && {
 
7218
+        test -z "$ac_c_werror_flag" ||
 
7219
+        test ! -s conftest.err
 
7220
+       } && test -s conftest.$ac_objext; then
 
7221
   ac_cv_header_X11_extensions_sync_h=yes
 
7222
 else
 
7223
   echo "$as_me: failed program was:" >&5
 
7224
@@ -32491,27 +30235,11 @@
 
7225
   rm -f conftest.er1
 
7226
   cat conftest.err >&5
 
7227
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7228
-  (exit $ac_status); } &&
 
7229
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7230
-  { (case "(($ac_try" in
 
7231
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7232
-  *) ac_try_echo=$ac_try;;
 
7233
-esac
 
7234
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7235
-  (eval "$ac_try") 2>&5
 
7236
-  ac_status=$?
 
7237
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7238
-  (exit $ac_status); }; } &&
 
7239
-        { ac_try='test -s conftest$ac_exeext'
 
7240
-  { (case "(($ac_try" in
 
7241
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7242
-  *) ac_try_echo=$ac_try;;
 
7243
-esac
 
7244
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7245
-  (eval "$ac_try") 2>&5
 
7246
-  ac_status=$?
 
7247
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7248
-  (exit $ac_status); }; }; then
 
7249
+  (exit $ac_status); } && {
 
7250
+        test -z "$ac_c_werror_flag" ||
 
7251
+        test ! -s conftest.err
 
7252
+       } && test -s conftest$ac_exeext &&
 
7253
+       $as_test_x conftest$ac_exeext; then
 
7254
   ac_cv_func_XShmAttach=yes
 
7255
 else
 
7256
   echo "$as_me: failed program was:" >&5
 
7257
@@ -32520,7 +30248,7 @@
 
7258
        ac_cv_func_XShmAttach=no
 
7259
 fi
 
7260
 
 
7261
-rm -f core conftest.err conftest.$ac_objext \
 
7262
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7263
       conftest$ac_exeext conftest.$ac_ext
 
7264
 fi
 
7265
 { echo "$as_me:$LINENO: result: $ac_cv_func_XShmAttach" >&5
 
7266
@@ -32571,27 +30299,11 @@
 
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" || test ! -s conftest.err'
 
7272
-  { (case "(($ac_try" in
 
7273
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7274
-  *) ac_try_echo=$ac_try;;
 
7275
-esac
 
7276
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7277
-  (eval "$ac_try") 2>&5
 
7278
-  ac_status=$?
 
7279
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7280
-  (exit $ac_status); }; } &&
 
7281
-        { ac_try='test -s conftest$ac_exeext'
 
7282
-  { (case "(($ac_try" in
 
7283
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7284
-  *) ac_try_echo=$ac_try;;
 
7285
-esac
 
7286
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7287
-  (eval "$ac_try") 2>&5
 
7288
-  ac_status=$?
 
7289
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7290
-  (exit $ac_status); }; }; then
 
7291
+  (exit $ac_status); } && {
 
7292
+        test -z "$ac_c_werror_flag" ||
 
7293
+        test ! -s conftest.err
 
7294
+       } && test -s conftest$ac_exeext &&
 
7295
+       $as_test_x conftest$ac_exeext; then
 
7296
   ac_cv_lib_XextSam_XShmAttach=yes
 
7297
 else
 
7298
   echo "$as_me: failed program was:" >&5
 
7299
@@ -32600,7 +30312,7 @@
 
7300
        ac_cv_lib_XextSam_XShmAttach=no
 
7301
 fi
 
7302
 
 
7303
-rm -f core conftest.err conftest.$ac_objext \
 
7304
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7305
       conftest$ac_exeext conftest.$ac_ext
 
7306
 LIBS=$ac_check_lib_save_LIBS
 
7307
 fi
 
7308
@@ -32654,27 +30366,10 @@
 
7309
   rm -f conftest.er1
 
7310
   cat conftest.err >&5
 
7311
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7312
-  (exit $ac_status); } &&
 
7313
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7314
-  { (case "(($ac_try" in
 
7315
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7316
-  *) ac_try_echo=$ac_try;;
 
7317
-esac
 
7318
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7319
-  (eval "$ac_try") 2>&5
 
7320
-  ac_status=$?
 
7321
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7322
-  (exit $ac_status); }; } &&
 
7323
-        { ac_try='test -s conftest.$ac_objext'
 
7324
-  { (case "(($ac_try" in
 
7325
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7326
-  *) ac_try_echo=$ac_try;;
 
7327
-esac
 
7328
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7329
-  (eval "$ac_try") 2>&5
 
7330
-  ac_status=$?
 
7331
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7332
-  (exit $ac_status); }; }; then
 
7333
+  (exit $ac_status); } && {
 
7334
+        test -z "$ac_c_werror_flag" ||
 
7335
+        test ! -s conftest.err
 
7336
+       } && test -s conftest.$ac_objext; then
 
7337
   ac_header_compiler=yes
 
7338
 else
 
7339
   echo "$as_me: failed program was:" >&5
 
7340
@@ -32710,17 +30405,10 @@
 
7341
   rm -f conftest.er1
 
7342
   cat conftest.err >&5
 
7343
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7344
-  (exit $ac_status); } >/dev/null; then
 
7345
-  if test -s conftest.err; then
 
7346
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
7347
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
7348
-  else
 
7349
-    ac_cpp_err=
 
7350
-  fi
 
7351
-else
 
7352
-  ac_cpp_err=yes
 
7353
-fi
 
7354
-if test -z "$ac_cpp_err"; then
 
7355
+  (exit $ac_status); } >/dev/null && {
 
7356
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
7357
+        test ! -s conftest.err
 
7358
+       }; then
 
7359
   ac_header_preproc=yes
 
7360
 else
 
7361
   echo "$as_me: failed program was:" >&5
 
7362
@@ -32818,27 +30506,10 @@
 
7363
   rm -f conftest.er1
 
7364
   cat conftest.err >&5
 
7365
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7366
-  (exit $ac_status); } &&
 
7367
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7368
-  { (case "(($ac_try" in
 
7369
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7370
-  *) ac_try_echo=$ac_try;;
 
7371
-esac
 
7372
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7373
-  (eval "$ac_try") 2>&5
 
7374
-  ac_status=$?
 
7375
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7376
-  (exit $ac_status); }; } &&
 
7377
-        { ac_try='test -s conftest.$ac_objext'
 
7378
-  { (case "(($ac_try" in
 
7379
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7380
-  *) ac_try_echo=$ac_try;;
 
7381
-esac
 
7382
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7383
-  (eval "$ac_try") 2>&5
 
7384
-  ac_status=$?
 
7385
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7386
-  (exit $ac_status); }; }; then
 
7387
+  (exit $ac_status); } && {
 
7388
+        test -z "$ac_c_werror_flag" ||
 
7389
+        test ! -s conftest.err
 
7390
+       } && test -s conftest.$ac_objext; then
 
7391
   ac_header_compiler=yes
 
7392
 else
 
7393
   echo "$as_me: failed program was:" >&5
 
7394
@@ -32874,17 +30545,10 @@
 
7395
   rm -f conftest.er1
 
7396
   cat conftest.err >&5
 
7397
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7398
-  (exit $ac_status); } >/dev/null; then
 
7399
-  if test -s conftest.err; then
 
7400
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
7401
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
7402
-  else
 
7403
-    ac_cpp_err=
 
7404
-  fi
 
7405
-else
 
7406
-  ac_cpp_err=yes
 
7407
-fi
 
7408
-if test -z "$ac_cpp_err"; then
 
7409
+  (exit $ac_status); } >/dev/null && {
 
7410
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
7411
+        test ! -s conftest.err
 
7412
+       }; then
 
7413
   ac_header_preproc=yes
 
7414
 else
 
7415
   echo "$as_me: failed program was:" >&5
 
7416
@@ -32994,27 +30658,10 @@
 
7417
   rm -f conftest.er1
 
7418
   cat conftest.err >&5
 
7419
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7420
-  (exit $ac_status); } &&
 
7421
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7422
-  { (case "(($ac_try" in
 
7423
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7424
-  *) ac_try_echo=$ac_try;;
 
7425
-esac
 
7426
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7427
-  (eval "$ac_try") 2>&5
 
7428
-  ac_status=$?
 
7429
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7430
-  (exit $ac_status); }; } &&
 
7431
-        { ac_try='test -s conftest.$ac_objext'
 
7432
-  { (case "(($ac_try" in
 
7433
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7434
-  *) ac_try_echo=$ac_try;;
 
7435
-esac
 
7436
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7437
-  (eval "$ac_try") 2>&5
 
7438
-  ac_status=$?
 
7439
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7440
-  (exit $ac_status); }; }; then
 
7441
+  (exit $ac_status); } && {
 
7442
+        test -z "$ac_c_werror_flag" ||
 
7443
+        test ! -s conftest.err
 
7444
+       } && test -s conftest.$ac_objext; then
 
7445
   have_xshm=yes
 
7446
 else
 
7447
   echo "$as_me: failed program was:" >&5
 
7448
@@ -33111,27 +30758,11 @@
 
7449
   rm -f conftest.er1
 
7450
   cat conftest.err >&5
 
7451
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7452
-  (exit $ac_status); } &&
 
7453
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7454
-  { (case "(($ac_try" in
 
7455
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7456
-  *) ac_try_echo=$ac_try;;
 
7457
-esac
 
7458
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7459
-  (eval "$ac_try") 2>&5
 
7460
-  ac_status=$?
 
7461
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7462
-  (exit $ac_status); }; } &&
 
7463
-        { ac_try='test -s conftest$ac_exeext'
 
7464
-  { (case "(($ac_try" in
 
7465
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7466
-  *) ac_try_echo=$ac_try;;
 
7467
-esac
 
7468
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7469
-  (eval "$ac_try") 2>&5
 
7470
-  ac_status=$?
 
7471
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7472
-  (exit $ac_status); }; }; then
 
7473
+  (exit $ac_status); } && {
 
7474
+        test -z "$ac_c_werror_flag" ||
 
7475
+        test ! -s conftest.err
 
7476
+       } && test -s conftest$ac_exeext &&
 
7477
+       $as_test_x conftest$ac_exeext; then
 
7478
   ac_cv_func_XineramaGetInfo=yes
 
7479
 else
 
7480
   echo "$as_me: failed program was:" >&5
 
7481
@@ -33140,7 +30771,7 @@
 
7482
        ac_cv_func_XineramaGetInfo=no
 
7483
 fi
 
7484
 
 
7485
-rm -f core conftest.err conftest.$ac_objext \
 
7486
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7487
       conftest$ac_exeext conftest.$ac_ext
 
7488
 fi
 
7489
 { echo "$as_me:$LINENO: result: $ac_cv_func_XineramaGetInfo" >&5
 
7490
@@ -33174,27 +30805,10 @@
 
7491
   rm -f conftest.er1
 
7492
   cat conftest.err >&5
 
7493
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7494
-  (exit $ac_status); } &&
 
7495
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7496
-  { (case "(($ac_try" in
 
7497
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7498
-  *) ac_try_echo=$ac_try;;
 
7499
-esac
 
7500
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7501
-  (eval "$ac_try") 2>&5
 
7502
-  ac_status=$?
 
7503
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7504
-  (exit $ac_status); }; } &&
 
7505
-        { ac_try='test -s conftest.$ac_objext'
 
7506
-  { (case "(($ac_try" in
 
7507
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7508
-  *) ac_try_echo=$ac_try;;
 
7509
-esac
 
7510
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7511
-  (eval "$ac_try") 2>&5
 
7512
-  ac_status=$?
 
7513
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7514
-  (exit $ac_status); }; }; then
 
7515
+  (exit $ac_status); } && {
 
7516
+        test -z "$ac_c_werror_flag" ||
 
7517
+        test ! -s conftest.err
 
7518
+       } && test -s conftest.$ac_objext; then
 
7519
   ac_cv_header_X11_extensions_xinerama_h=yes
 
7520
 else
 
7521
   echo "$as_me: failed program was:" >&5
 
7522
@@ -33285,27 +30899,11 @@
 
7523
   rm -f conftest.er1
 
7524
   cat conftest.err >&5
 
7525
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7526
-  (exit $ac_status); } &&
 
7527
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7528
-  { (case "(($ac_try" in
 
7529
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7530
-  *) ac_try_echo=$ac_try;;
 
7531
-esac
 
7532
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7533
-  (eval "$ac_try") 2>&5
 
7534
-  ac_status=$?
 
7535
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7536
-  (exit $ac_status); }; } &&
 
7537
-        { ac_try='test -s conftest$ac_exeext'
 
7538
-  { (case "(($ac_try" in
 
7539
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7540
-  *) ac_try_echo=$ac_try;;
 
7541
-esac
 
7542
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7543
-  (eval "$ac_try") 2>&5
 
7544
-  ac_status=$?
 
7545
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7546
-  (exit $ac_status); }; }; then
 
7547
+  (exit $ac_status); } && {
 
7548
+        test -z "$ac_c_werror_flag" ||
 
7549
+        test ! -s conftest.err
 
7550
+       } && test -s conftest$ac_exeext &&
 
7551
+       $as_test_x conftest$ac_exeext; then
 
7552
   ac_cv_lib_Xinerama_XineramaQueryExtension=yes
 
7553
 else
 
7554
   echo "$as_me: failed program was:" >&5
 
7555
@@ -33314,7 +30912,7 @@
 
7556
        ac_cv_lib_Xinerama_XineramaQueryExtension=no
 
7557
 fi
 
7558
 
 
7559
-rm -f core conftest.err conftest.$ac_objext \
 
7560
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7561
       conftest$ac_exeext conftest.$ac_ext
 
7562
 LIBS=$ac_check_lib_save_LIBS
 
7563
 fi
 
7564
@@ -33349,27 +30947,10 @@
 
7565
   rm -f conftest.er1
 
7566
   cat conftest.err >&5
 
7567
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7568
-  (exit $ac_status); } &&
 
7569
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7570
-  { (case "(($ac_try" in
 
7571
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7572
-  *) ac_try_echo=$ac_try;;
 
7573
-esac
 
7574
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7575
-  (eval "$ac_try") 2>&5
 
7576
-  ac_status=$?
 
7577
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7578
-  (exit $ac_status); }; } &&
 
7579
-        { ac_try='test -s conftest.$ac_objext'
 
7580
-  { (case "(($ac_try" in
 
7581
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7582
-  *) ac_try_echo=$ac_try;;
 
7583
-esac
 
7584
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7585
-  (eval "$ac_try") 2>&5
 
7586
-  ac_status=$?
 
7587
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7588
-  (exit $ac_status); }; }; then
 
7589
+  (exit $ac_status); } && {
 
7590
+        test -z "$ac_c_werror_flag" ||
 
7591
+        test ! -s conftest.err
 
7592
+       } && test -s conftest.$ac_objext; then
 
7593
   ac_cv_header_X11_extensions_Xinerama_h=yes
 
7594
 else
 
7595
   echo "$as_me: failed program was:" >&5
 
7596
@@ -33500,27 +31081,11 @@
 
7597
   rm -f conftest.er1
 
7598
   cat conftest.err >&5
 
7599
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7600
-  (exit $ac_status); } &&
 
7601
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7602
-  { (case "(($ac_try" in
 
7603
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7604
-  *) ac_try_echo=$ac_try;;
 
7605
-esac
 
7606
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7607
-  (eval "$ac_try") 2>&5
 
7608
-  ac_status=$?
 
7609
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7610
-  (exit $ac_status); }; } &&
 
7611
-        { ac_try='test -s conftest$ac_exeext'
 
7612
-  { (case "(($ac_try" in
 
7613
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7614
-  *) ac_try_echo=$ac_try;;
 
7615
-esac
 
7616
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7617
-  (eval "$ac_try") 2>&5
 
7618
-  ac_status=$?
 
7619
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7620
-  (exit $ac_status); }; }; then
 
7621
+  (exit $ac_status); } && {
 
7622
+        test -z "$ac_c_werror_flag" ||
 
7623
+        test ! -s conftest.err
 
7624
+       } && test -s conftest$ac_exeext &&
 
7625
+       $as_test_x conftest$ac_exeext; then
 
7626
   ac_cv_lib_Xrandr_XRRUpdateConfiguration=yes
 
7627
 else
 
7628
   echo "$as_me: failed program was:" >&5
 
7629
@@ -33529,7 +31094,7 @@
 
7630
        ac_cv_lib_Xrandr_XRRUpdateConfiguration=no
 
7631
 fi
 
7632
 
 
7633
-rm -f core conftest.err conftest.$ac_objext \
 
7634
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7635
       conftest$ac_exeext conftest.$ac_ext
 
7636
 LIBS=$ac_check_lib_save_LIBS
 
7637
 fi
 
7638
@@ -33564,27 +31129,10 @@
 
7639
   rm -f conftest.er1
 
7640
   cat conftest.err >&5
 
7641
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7642
-  (exit $ac_status); } &&
 
7643
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7644
-  { (case "(($ac_try" in
 
7645
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7646
-  *) ac_try_echo=$ac_try;;
 
7647
-esac
 
7648
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7649
-  (eval "$ac_try") 2>&5
 
7650
-  ac_status=$?
 
7651
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7652
-  (exit $ac_status); }; } &&
 
7653
-        { ac_try='test -s conftest.$ac_objext'
 
7654
-  { (case "(($ac_try" in
 
7655
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7656
-  *) ac_try_echo=$ac_try;;
 
7657
-esac
 
7658
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7659
-  (eval "$ac_try") 2>&5
 
7660
-  ac_status=$?
 
7661
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7662
-  (exit $ac_status); }; }; then
 
7663
+  (exit $ac_status); } && {
 
7664
+        test -z "$ac_c_werror_flag" ||
 
7665
+        test ! -s conftest.err
 
7666
+       } && test -s conftest.$ac_objext; then
 
7667
   ac_cv_header_X11_extensions_Xrandr_h=yes
 
7668
 else
 
7669
   echo "$as_me: failed program was:" >&5
 
7670
@@ -33957,27 +31505,11 @@
 
7671
   rm -f conftest.er1
 
7672
   cat conftest.err >&5
 
7673
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7674
-  (exit $ac_status); } &&
 
7675
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7676
-  { (case "(($ac_try" in
 
7677
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7678
-  *) ac_try_echo=$ac_try;;
 
7679
-esac
 
7680
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7681
-  (eval "$ac_try") 2>&5
 
7682
-  ac_status=$?
 
7683
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7684
-  (exit $ac_status); }; } &&
 
7685
-        { ac_try='test -s conftest$ac_exeext'
 
7686
-  { (case "(($ac_try" in
 
7687
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7688
-  *) ac_try_echo=$ac_try;;
 
7689
-esac
 
7690
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7691
-  (eval "$ac_try") 2>&5
 
7692
-  ac_status=$?
 
7693
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7694
-  (exit $ac_status); }; }; then
 
7695
+  (exit $ac_status); } && {
 
7696
+        test -z "$ac_c_werror_flag" ||
 
7697
+        test ! -s conftest.err
 
7698
+       } && test -s conftest$ac_exeext &&
 
7699
+       $as_test_x conftest$ac_exeext; then
 
7700
   :
 
7701
 else
 
7702
   echo "$as_me: failed program was:" >&5
 
7703
@@ -33992,7 +31524,7 @@
 
7704
    { (exit 1); exit 1; }; }
 
7705
 fi
 
7706
 
 
7707
-rm -f core conftest.err conftest.$ac_objext \
 
7708
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7709
       conftest$ac_exeext conftest.$ac_ext
 
7710
         LIBS="$gtk_save_LIBS"
 
7711
 fi
 
7712
@@ -34088,27 +31620,11 @@
 
7713
   rm -f conftest.er1
 
7714
   cat conftest.err >&5
 
7715
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7716
-  (exit $ac_status); } &&
 
7717
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7718
-  { (case "(($ac_try" in
 
7719
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7720
-  *) ac_try_echo=$ac_try;;
 
7721
-esac
 
7722
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7723
-  (eval "$ac_try") 2>&5
 
7724
-  ac_status=$?
 
7725
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7726
-  (exit $ac_status); }; } &&
 
7727
-        { ac_try='test -s conftest$ac_exeext'
 
7728
-  { (case "(($ac_try" in
 
7729
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7730
-  *) ac_try_echo=$ac_try;;
 
7731
-esac
 
7732
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7733
-  (eval "$ac_try") 2>&5
 
7734
-  ac_status=$?
 
7735
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7736
-  (exit $ac_status); }; }; then
 
7737
+  (exit $ac_status); } && {
 
7738
+        test -z "$ac_c_werror_flag" ||
 
7739
+        test ! -s conftest.err
 
7740
+       } && test -s conftest$ac_exeext &&
 
7741
+       $as_test_x conftest$ac_exeext; then
 
7742
   :
 
7743
 else
 
7744
   echo "$as_me: failed program was:" >&5
 
7745
@@ -34123,7 +31639,7 @@
 
7746
    { (exit 1); exit 1; }; }
 
7747
 fi
 
7748
 
 
7749
-rm -f core conftest.err conftest.$ac_objext \
 
7750
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7751
       conftest$ac_exeext conftest.$ac_ext
 
7752
         LIBS="$gtk_save_LIBS"
 
7753
 fi
 
7754
@@ -34170,7 +31686,7 @@
 
7755
   IFS=$as_save_IFS
 
7756
   test -z "$as_dir" && as_dir=.
 
7757
   for ac_exec_ext in '' $ac_executable_extensions; do
 
7758
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7759
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7760
     ac_cv_path_CUPS_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
7761
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7762
     break 2
 
7763
@@ -34262,27 +31778,10 @@
 
7764
   rm -f conftest.er1
 
7765
   cat conftest.err >&5
 
7766
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7767
-  (exit $ac_status); } &&
 
7768
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7769
-  { (case "(($ac_try" in
 
7770
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7771
-  *) ac_try_echo=$ac_try;;
 
7772
-esac
 
7773
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7774
-  (eval "$ac_try") 2>&5
 
7775
-  ac_status=$?
 
7776
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7777
-  (exit $ac_status); }; } &&
 
7778
-        { ac_try='test -s conftest.$ac_objext'
 
7779
-  { (case "(($ac_try" in
 
7780
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7781
-  *) ac_try_echo=$ac_try;;
 
7782
-esac
 
7783
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7784
-  (eval "$ac_try") 2>&5
 
7785
-  ac_status=$?
 
7786
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7787
-  (exit $ac_status); }; }; then
 
7788
+  (exit $ac_status); } && {
 
7789
+        test -z "$ac_c_werror_flag" ||
 
7790
+        test ! -s conftest.err
 
7791
+       } && test -s conftest.$ac_objext; then
 
7792
   ac_header_compiler=yes
 
7793
 else
 
7794
   echo "$as_me: failed program was:" >&5
 
7795
@@ -34318,17 +31817,10 @@
 
7796
   rm -f conftest.er1
 
7797
   cat conftest.err >&5
 
7798
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7799
-  (exit $ac_status); } >/dev/null; then
 
7800
-  if test -s conftest.err; then
 
7801
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
7802
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
7803
-  else
 
7804
-    ac_cpp_err=
 
7805
-  fi
 
7806
-else
 
7807
-  ac_cpp_err=yes
 
7808
-fi
 
7809
-if test -z "$ac_cpp_err"; then
 
7810
+  (exit $ac_status); } >/dev/null && {
 
7811
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
7812
+        test ! -s conftest.err
 
7813
+       }; then
 
7814
   ac_header_preproc=yes
 
7815
 else
 
7816
   echo "$as_me: failed program was:" >&5
 
7817
@@ -34431,27 +31923,10 @@
 
7818
   rm -f conftest.er1
 
7819
   cat conftest.err >&5
 
7820
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7821
-  (exit $ac_status); } &&
 
7822
-        { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
 
7823
-  { (case "(($ac_try" in
 
7824
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7825
-  *) ac_try_echo=$ac_try;;
 
7826
-esac
 
7827
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7828
-  (eval "$ac_try") 2>&5
 
7829
-  ac_status=$?
 
7830
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7831
-  (exit $ac_status); }; } &&
 
7832
-        { ac_try='test -s conftest.$ac_objext'
 
7833
-  { (case "(($ac_try" in
 
7834
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7835
-  *) ac_try_echo=$ac_try;;
 
7836
-esac
 
7837
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7838
-  (eval "$ac_try") 2>&5
 
7839
-  ac_status=$?
 
7840
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7841
-  (exit $ac_status); }; }; then
 
7842
+  (exit $ac_status); } && {
 
7843
+        test -z "$ac_c_werror_flag" ||
 
7844
+        test ! -s conftest.err
 
7845
+       } && test -s conftest.$ac_objext; then
 
7846
   ac_header_compiler=yes
 
7847
 else
 
7848
   echo "$as_me: failed program was:" >&5
 
7849
@@ -34487,17 +31962,10 @@
 
7850
   rm -f conftest.er1
 
7851
   cat conftest.err >&5
 
7852
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7853
-  (exit $ac_status); } >/dev/null; then
 
7854
-  if test -s conftest.err; then
 
7855
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
7856
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
7857
-  else
 
7858
-    ac_cpp_err=
 
7859
-  fi
 
7860
-else
 
7861
-  ac_cpp_err=yes
 
7862
-fi
 
7863
-if test -z "$ac_cpp_err"; then
 
7864
+  (exit $ac_status); } >/dev/null && {
 
7865
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
7866
+        test ! -s conftest.err
 
7867
+       }; then
 
7868
   ac_header_preproc=yes
 
7869
 else
 
7870
   echo "$as_me: failed program was:" >&5
 
7871
@@ -34637,7 +32105,7 @@
 
7872
   IFS=$as_save_IFS
 
7873
   test -z "$as_dir" && as_dir=.
 
7874
   for ac_exec_ext in '' $ac_executable_extensions; do
 
7875
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7876
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7877
     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
7878
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7879
     break 2
 
7880
@@ -34722,7 +32190,7 @@
 
7881
   IFS=$as_save_IFS
 
7882
   test -z "$as_dir" && as_dir=.
 
7883
   for ac_exec_ext in '' $ac_executable_extensions; do
 
7884
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7885
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7886
     ac_cv_prog_DB2HTML="true"
 
7887
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7888
     break 2
 
7889
@@ -34782,7 +32250,7 @@
 
7890
   IFS=$as_save_IFS
 
7891
   test -z "$as_dir" && as_dir=.
 
7892
   for ac_exec_ext in '' $ac_executable_extensions; do
 
7893
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7894
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7895
     ac_cv_path_XSLTPROC="$as_dir/$ac_word$ac_exec_ext"
 
7896
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7897
     break 2
 
7898
@@ -34851,7 +32319,7 @@
 
7899
   IFS=$as_save_IFS
 
7900
   test -z "$as_dir" && as_dir=.
 
7901
   for ac_exec_ext in '' $ac_executable_extensions; do
 
7902
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7903
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7904
     ac_cv_path_XMLCATALOG="$as_dir/$ac_word$ac_exec_ext"
 
7905
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7906
     break 2
 
7907
@@ -35052,6 +32520,13 @@
 
7908
 Usually this means the macro was only invoked conditionally." >&2;}
 
7909
    { (exit 1); exit 1; }; }
 
7910
 fi
 
7911
+if test -z "${ENABLE_STATIC_TRUE}" && test -z "${ENABLE_STATIC_FALSE}"; then
 
7912
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_STATIC\" was never defined.
 
7913
+Usually this means the macro was only invoked conditionally." >&5
 
7914
+echo "$as_me: error: conditional \"ENABLE_STATIC\" was never defined.
 
7915
+Usually this means the macro was only invoked conditionally." >&2;}
 
7916
+   { (exit 1); exit 1; }; }
 
7917
+fi
 
7918
 if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
 
7919
   { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
 
7920
 Usually this means the macro was only invoked conditionally." >&5
 
7921
@@ -35342,7 +32817,8 @@
 
7922
 ## M4sh Initialization.  ##
 
7923
 ## --------------------- ##
 
7924
 
 
7925
-# Be Bourne compatible
 
7926
+# Be more Bourne compatible
 
7927
+DUALCASE=1; export DUALCASE # for MKS sh
 
7928
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
7929
   emulate sh
 
7930
   NULLCMD=:
 
7931
@@ -35351,10 +32827,13 @@
 
7932
   alias -g '${1+"$@"}'='"$@"'
 
7933
   setopt NO_GLOB_SUBST
 
7934
 else
 
7935
-  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
 
7936
+  case `(set -o) 2>/dev/null` in
 
7937
+  *posix*) set -o posix ;;
 
7938
+esac
 
7939
+
 
7940
 fi
 
7941
-BIN_SH=xpg4; export BIN_SH # for Tru64
 
7942
-DUALCASE=1; export DUALCASE # for MKS sh
 
7943
+
 
7944
+
 
7945
 
 
7946
 
 
7947
 # PATH needs CR
 
7948
@@ -35578,19 +33057,28 @@
 
7949
   as_mkdir_p=false
 
7950
 fi
 
7951
 
 
7952
-# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
 
7953
-# systems may use methods other than mode bits to determine executability.
 
7954
-cat >conf$$.file <<_ASEOF
 
7955
-#! /bin/sh
 
7956
-exit 0
 
7957
-_ASEOF
 
7958
-chmod +x conf$$.file
 
7959
-if test -x conf$$.file >/dev/null 2>&1; then
 
7960
-  as_executable_p="test -x"
 
7961
+if test -x / >/dev/null 2>&1; then
 
7962
+  as_test_x='test -x'
 
7963
 else
 
7964
-  as_executable_p=:
 
7965
+  if ls -dL / >/dev/null 2>&1; then
 
7966
+    as_ls_L_option=L
 
7967
+  else
 
7968
+    as_ls_L_option=
 
7969
+  fi
 
7970
+  as_test_x='
 
7971
+    eval sh -c '\''
 
7972
+      if test -d "$1"; then
 
7973
+        test -d "$1/.";
 
7974
+      else
 
7975
+       case $1 in
 
7976
+        -*)set "./$1";;
 
7977
+       esac;
 
7978
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
7979
+       ???[sx]*):;;*)false;;esac;fi
 
7980
+    '\'' sh
 
7981
+  '
 
7982
 fi
 
7983
-rm -f conf$$.file
 
7984
+as_executable_p=$as_test_x
 
7985
 
 
7986
 # Sed expression to map a string onto a valid CPP name.
 
7987
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
7988
@@ -35606,7 +33094,7 @@
 
7989
 # values after options handling.
 
7990
 ac_log="
 
7991
 This file was extended by gtk+ $as_me 2.10.12, which was
 
7992
-generated by GNU Autoconf 2.60.  Invocation command line was
 
7993
+generated by GNU Autoconf 2.61.  Invocation command line was
 
7994
 
 
7995
   CONFIG_FILES    = $CONFIG_FILES
 
7996
   CONFIG_HEADERS  = $CONFIG_HEADERS
 
7997
@@ -35635,7 +33123,7 @@
 
7998
 Usage: $0 [OPTIONS] [FILE]...
 
7999
 
 
8000
   -h, --help       print this help, then exit
 
8001
-  -V, --version    print version number, then exit
 
8002
+  -V, --version    print version number and configuration settings, then exit
 
8003
   -q, --quiet      do not print progress messages
 
8004
   -d, --debug      don't remove temporary files
 
8005
       --recheck    update $as_me by reconfiguring in the same conditions
 
8006
@@ -35659,7 +33147,7 @@
 
8007
 cat >>$CONFIG_STATUS <<_ACEOF
 
8008
 ac_cs_version="\\
 
8009
 gtk+ config.status 2.10.12
 
8010
-configured by $0, generated by GNU Autoconf 2.60,
 
8011
+configured by $0, generated by GNU Autoconf 2.61,
 
8012
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
8013
 
 
8014
 Copyright (C) 2006 Free Software Foundation, Inc.
 
8015
@@ -36029,9 +33517,9 @@
 
8016
 CCDEPMODE!$CCDEPMODE$ac_delim
 
8017
 am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
 
8018
 am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
 
8019
+ENABLE_STATIC_TRUE!$ENABLE_STATIC_TRUE$ac_delim
 
8020
+ENABLE_STATIC_FALSE!$ENABLE_STATIC_FALSE$ac_delim
 
8021
 GREP!$GREP$ac_delim
 
8022
-EGREP!$EGREP$ac_delim
 
8023
-LN_S!$LN_S$ac_delim
 
8024
 _ACEOF
 
8025
 
 
8026
   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
8027
@@ -36073,6 +33561,8 @@
 
8028
 ac_delim='%!_!# '
 
8029
 for ac_last_try in false false false false false :; do
 
8030
   cat >conf$$subs.sed <<_ACEOF
 
8031
+EGREP!$EGREP$ac_delim
 
8032
+LN_S!$LN_S$ac_delim
 
8033
 ECHO!$ECHO$ac_delim
 
8034
 AR!$AR$ac_delim
 
8035
 RANLIB!$RANLIB$ac_delim
 
8036
@@ -36168,8 +33658,6 @@
 
8037
 CROSS_COMPILING_FALSE!$CROSS_COMPILING_FALSE$ac_delim
 
8038
 GDK_PIXBUF_CSOURCE!$GDK_PIXBUF_CSOURCE$ac_delim
 
8039
 GTK_UPDATE_ICON_CACHE!$GTK_UPDATE_ICON_CACHE$ac_delim
 
8040
-REBUILD_PNGS!$REBUILD_PNGS$ac_delim
 
8041
-GDK_PIXBUF_PACKAGES!$GDK_PIXBUF_PACKAGES$ac_delim
 
8042
 _ACEOF
 
8043
 
 
8044
   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
8045
@@ -36211,6 +33699,8 @@
 
8046
 ac_delim='%!_!# '
 
8047
 for ac_last_try in false false false false false :; do
 
8048
   cat >conf$$subs.sed <<_ACEOF
 
8049
+REBUILD_PNGS!$REBUILD_PNGS$ac_delim
 
8050
+GDK_PIXBUF_PACKAGES!$GDK_PIXBUF_PACKAGES$ac_delim
 
8051
 GDK_PIXBUF_EXTRA_LIBS!$GDK_PIXBUF_EXTRA_LIBS$ac_delim
 
8052
 GDK_PIXBUF_EXTRA_CFLAGS!$GDK_PIXBUF_EXTRA_CFLAGS$ac_delim
 
8053
 GDK_PIXBUF_DEP_LIBS!$GDK_PIXBUF_DEP_LIBS$ac_delim
 
8054
@@ -36278,7 +33768,7 @@
 
8055
 LTLIBOBJS!$LTLIBOBJS$ac_delim
 
8056
 _ACEOF
 
8057
 
 
8058
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 65; then
 
8059
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 67; then
 
8060
     break
 
8061
   elif $ac_last_try; then
 
8062
     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
8063
diff -urN gtk+2.0-2.10.12.orig/contrib/Makefile.in gtk+2.0-2.10.12/contrib/Makefile.in
 
8064
--- gtk+2.0-2.10.12.orig/contrib/Makefile.in    2007-05-02 18:41:49.000000000 +0200
 
8065
+++ gtk+2.0-2.10.12/contrib/Makefile.in 2007-05-03 15:11:23.000000000 +0200
 
8066
@@ -90,6 +90,8 @@
 
8067
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8068
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8069
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8070
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8071
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8072
 EXEEXT = @EXEEXT@
 
8073
 F77 = @F77@
 
8074
 FFLAGS = @FFLAGS@
 
8075
diff -urN gtk+2.0-2.10.12.orig/contrib/gdk-pixbuf-xlib/Makefile.in gtk+2.0-2.10.12/contrib/gdk-pixbuf-xlib/Makefile.in
 
8076
--- gtk+2.0-2.10.12.orig/contrib/gdk-pixbuf-xlib/Makefile.in    2007-05-02 18:41:49.000000000 +0200
 
8077
+++ gtk+2.0-2.10.12/contrib/gdk-pixbuf-xlib/Makefile.in 2007-05-03 15:11:23.000000000 +0200
 
8078
@@ -89,6 +89,8 @@
 
8079
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8080
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8081
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8082
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8083
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8084
 EXEEXT = @EXEEXT@
 
8085
 F77 = @F77@
 
8086
 FFLAGS = @FFLAGS@
 
8087
diff -urN gtk+2.0-2.10.12.orig/demos/Makefile.in gtk+2.0-2.10.12/demos/Makefile.in
 
8088
--- gtk+2.0-2.10.12.orig/demos/Makefile.in      2007-05-02 18:41:49.000000000 +0200
 
8089
+++ gtk+2.0-2.10.12/demos/Makefile.in   2007-05-03 15:11:23.000000000 +0200
 
8090
@@ -90,6 +90,8 @@
 
8091
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8092
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8093
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8094
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8095
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8096
 EXEEXT = @EXEEXT@
 
8097
 F77 = @F77@
 
8098
 FFLAGS = @FFLAGS@
 
8099
diff -urN gtk+2.0-2.10.12.orig/demos/gtk-demo/Makefile.in gtk+2.0-2.10.12/demos/gtk-demo/Makefile.in
 
8100
--- gtk+2.0-2.10.12.orig/demos/gtk-demo/Makefile.in     2007-05-02 18:41:49.000000000 +0200
 
8101
+++ gtk+2.0-2.10.12/demos/gtk-demo/Makefile.in  2007-05-03 15:11:23.000000000 +0200
 
8102
@@ -89,6 +89,8 @@
 
8103
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8104
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8105
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8106
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8107
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8108
 EXEEXT = @EXEEXT@
 
8109
 F77 = @F77@
 
8110
 FFLAGS = @FFLAGS@
 
8111
diff -urN gtk+2.0-2.10.12.orig/docs/Makefile.in gtk+2.0-2.10.12/docs/Makefile.in
 
8112
--- gtk+2.0-2.10.12.orig/docs/Makefile.in       2007-05-02 18:41:50.000000000 +0200
 
8113
+++ gtk+2.0-2.10.12/docs/Makefile.in    2007-05-03 15:11:23.000000000 +0200
 
8114
@@ -89,6 +89,8 @@
 
8115
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8116
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8117
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8118
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8119
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8120
 EXEEXT = @EXEEXT@
 
8121
 F77 = @F77@
 
8122
 FFLAGS = @FFLAGS@
 
8123
diff -urN gtk+2.0-2.10.12.orig/docs/faq/Makefile.in gtk+2.0-2.10.12/docs/faq/Makefile.in
 
8124
--- gtk+2.0-2.10.12.orig/docs/faq/Makefile.in   2007-05-02 18:41:50.000000000 +0200
 
8125
+++ gtk+2.0-2.10.12/docs/faq/Makefile.in        2007-05-03 15:11:23.000000000 +0200
 
8126
@@ -89,6 +89,8 @@
 
8127
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8128
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8129
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8130
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8131
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8132
 EXEEXT = @EXEEXT@
 
8133
 F77 = @F77@
 
8134
 FFLAGS = @FFLAGS@
 
8135
diff -urN gtk+2.0-2.10.12.orig/docs/reference/Makefile.in gtk+2.0-2.10.12/docs/reference/Makefile.in
 
8136
--- gtk+2.0-2.10.12.orig/docs/reference/Makefile.in     2007-05-02 18:41:50.000000000 +0200
 
8137
+++ gtk+2.0-2.10.12/docs/reference/Makefile.in  2007-05-03 15:11:23.000000000 +0200
 
8138
@@ -89,6 +89,8 @@
 
8139
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8140
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8141
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8142
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8143
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8144
 EXEEXT = @EXEEXT@
 
8145
 F77 = @F77@
 
8146
 FFLAGS = @FFLAGS@
 
8147
diff -urN gtk+2.0-2.10.12.orig/docs/reference/gdk/Makefile.in gtk+2.0-2.10.12/docs/reference/gdk/Makefile.in
 
8148
--- gtk+2.0-2.10.12.orig/docs/reference/gdk/Makefile.in 2007-05-02 18:41:50.000000000 +0200
 
8149
+++ gtk+2.0-2.10.12/docs/reference/gdk/Makefile.in      2007-05-03 15:11:24.000000000 +0200
 
8150
@@ -95,6 +95,8 @@
 
8151
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8152
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8153
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8154
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8155
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8156
 EXEEXT = @EXEEXT@
 
8157
 F77 = @F77@
 
8158
 FFLAGS = @FFLAGS@
 
8159
diff -urN gtk+2.0-2.10.12.orig/docs/reference/gdk-pixbuf/Makefile.in gtk+2.0-2.10.12/docs/reference/gdk-pixbuf/Makefile.in
 
8160
--- gtk+2.0-2.10.12.orig/docs/reference/gdk-pixbuf/Makefile.in  2007-05-02 18:41:50.000000000 +0200
 
8161
+++ gtk+2.0-2.10.12/docs/reference/gdk-pixbuf/Makefile.in       2007-05-03 15:11:23.000000000 +0200
 
8162
@@ -95,6 +95,8 @@
 
8163
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8164
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8165
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8166
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8167
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8168
 EXEEXT = @EXEEXT@
 
8169
 F77 = @F77@
 
8170
 FFLAGS = @FFLAGS@
 
8171
diff -urN gtk+2.0-2.10.12.orig/docs/reference/gtk/Makefile.in gtk+2.0-2.10.12/docs/reference/gtk/Makefile.in
 
8172
--- gtk+2.0-2.10.12.orig/docs/reference/gtk/Makefile.in 2007-05-02 18:41:50.000000000 +0200
 
8173
+++ gtk+2.0-2.10.12/docs/reference/gtk/Makefile.in      2007-05-03 15:11:24.000000000 +0200
 
8174
@@ -95,6 +95,8 @@
 
8175
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8176
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8177
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8178
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8179
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8180
 EXEEXT = @EXEEXT@
 
8181
 F77 = @F77@
 
8182
 FFLAGS = @FFLAGS@
 
8183
diff -urN gtk+2.0-2.10.12.orig/docs/tools/Makefile.in gtk+2.0-2.10.12/docs/tools/Makefile.in
 
8184
--- gtk+2.0-2.10.12.orig/docs/tools/Makefile.in 2007-05-02 18:41:50.000000000 +0200
 
8185
+++ gtk+2.0-2.10.12/docs/tools/Makefile.in      2007-05-03 15:11:24.000000000 +0200
 
8186
@@ -89,6 +89,8 @@
 
8187
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8188
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8189
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8190
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8191
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8192
 EXEEXT = @EXEEXT@
 
8193
 F77 = @F77@
 
8194
 FFLAGS = @FFLAGS@
 
8195
diff -urN gtk+2.0-2.10.12.orig/docs/tutorial/Makefile.in gtk+2.0-2.10.12/docs/tutorial/Makefile.in
 
8196
--- gtk+2.0-2.10.12.orig/docs/tutorial/Makefile.in      2007-05-02 18:41:50.000000000 +0200
 
8197
+++ gtk+2.0-2.10.12/docs/tutorial/Makefile.in   2007-05-03 15:11:24.000000000 +0200
 
8198
@@ -89,6 +89,8 @@
 
8199
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8200
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8201
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8202
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8203
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8204
 EXEEXT = @EXEEXT@
 
8205
 F77 = @F77@
 
8206
 FFLAGS = @FFLAGS@
 
8207
diff -urN gtk+2.0-2.10.12.orig/gdk/Makefile.in gtk+2.0-2.10.12/gdk/Makefile.in
 
8208
--- gtk+2.0-2.10.12.orig/gdk/Makefile.in        2007-05-02 18:41:51.000000000 +0200
 
8209
+++ gtk+2.0-2.10.12/gdk/Makefile.in     2007-05-03 15:11:24.000000000 +0200
 
8210
@@ -91,6 +91,8 @@
 
8211
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8212
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8213
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8214
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8215
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8216
 EXEEXT = @EXEEXT@
 
8217
 F77 = @F77@
 
8218
 FFLAGS = @FFLAGS@
 
8219
diff -urN gtk+2.0-2.10.12.orig/gdk/directfb/Makefile.in gtk+2.0-2.10.12/gdk/directfb/Makefile.in
 
8220
--- gtk+2.0-2.10.12.orig/gdk/directfb/Makefile.in       2007-05-02 18:41:51.000000000 +0200
 
8221
+++ gtk+2.0-2.10.12/gdk/directfb/Makefile.in    2007-05-03 15:11:24.000000000 +0200
 
8222
@@ -89,6 +89,8 @@
 
8223
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8224
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8225
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8226
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8227
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8228
 EXEEXT = @EXEEXT@
 
8229
 F77 = @F77@
 
8230
 FFLAGS = @FFLAGS@
 
8231
@@ -299,12 +301,11 @@
 
8232
 
 
8233
 INCLUDES = \
 
8234
        -DG_LOG_DOMAIN=\"Gdk-DirectFB\" \
 
8235
+       -DGDK_COMPILATION \
 
8236
        -I$(top_srcdir)                 \
 
8237
        -I$(top_srcdir)/gdk             \
 
8238
        -I$(top_builddir)/gdk           \
 
8239
        -DG_DISABLE_DEPRECATED          \
 
8240
-       -DGDK_PIXBUF_DISABLE_DEPRECATED \
 
8241
-       -DGDK_DISABLE_DEPRECATED        \
 
8242
        @GTK_DEBUG_FLAGS@               \
 
8243
        @GDK_DEP_CFLAGS@                
 
8244
 
 
8245
diff -urN gtk+2.0-2.10.12.orig/gdk/linux-fb/Makefile.in gtk+2.0-2.10.12/gdk/linux-fb/Makefile.in
 
8246
--- gtk+2.0-2.10.12.orig/gdk/linux-fb/Makefile.in       2007-05-02 18:41:51.000000000 +0200
 
8247
+++ gtk+2.0-2.10.12/gdk/linux-fb/Makefile.in    2007-05-03 15:11:25.000000000 +0200
 
8248
@@ -90,6 +90,8 @@
 
8249
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8250
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8251
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8252
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8253
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8254
 EXEEXT = @EXEEXT@
 
8255
 F77 = @F77@
 
8256
 FFLAGS = @FFLAGS@
 
8257
diff -urN gtk+2.0-2.10.12.orig/gdk/quartz/Makefile.in gtk+2.0-2.10.12/gdk/quartz/Makefile.in
 
8258
--- gtk+2.0-2.10.12.orig/gdk/quartz/Makefile.in 2007-05-02 18:41:51.000000000 +0200
 
8259
+++ gtk+2.0-2.10.12/gdk/quartz/Makefile.in      2007-05-03 15:11:25.000000000 +0200
 
8260
@@ -89,6 +89,8 @@
 
8261
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8262
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8263
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8264
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8265
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8266
 EXEEXT = @EXEEXT@
 
8267
 F77 = @F77@
 
8268
 FFLAGS = @FFLAGS@
 
8269
diff -urN gtk+2.0-2.10.12.orig/gdk/win32/Makefile.in gtk+2.0-2.10.12/gdk/win32/Makefile.in
 
8270
--- gtk+2.0-2.10.12.orig/gdk/win32/Makefile.in  2007-05-02 18:41:51.000000000 +0200
 
8271
+++ gtk+2.0-2.10.12/gdk/win32/Makefile.in       2007-05-03 15:11:25.000000000 +0200
 
8272
@@ -89,6 +89,8 @@
 
8273
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8274
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8275
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8276
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8277
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8278
 EXEEXT = @EXEEXT@
 
8279
 F77 = @F77@
 
8280
 FFLAGS = @FFLAGS@
 
8281
diff -urN gtk+2.0-2.10.12.orig/gdk/win32/rc/Makefile.in gtk+2.0-2.10.12/gdk/win32/rc/Makefile.in
 
8282
--- gtk+2.0-2.10.12.orig/gdk/win32/rc/Makefile.in       2007-05-02 18:41:51.000000000 +0200
 
8283
+++ gtk+2.0-2.10.12/gdk/win32/rc/Makefile.in    2007-05-03 15:11:25.000000000 +0200
 
8284
@@ -89,6 +89,8 @@
 
8285
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8286
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8287
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8288
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8289
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8290
 EXEEXT = @EXEEXT@
 
8291
 F77 = @F77@
 
8292
 FFLAGS = @FFLAGS@
 
8293
diff -urN gtk+2.0-2.10.12.orig/gdk/x11/Makefile.in gtk+2.0-2.10.12/gdk/x11/Makefile.in
 
8294
--- gtk+2.0-2.10.12.orig/gdk/x11/Makefile.in    2007-05-02 18:41:51.000000000 +0200
 
8295
+++ gtk+2.0-2.10.12/gdk/x11/Makefile.in 2007-05-03 15:11:25.000000000 +0200
 
8296
@@ -91,6 +91,8 @@
 
8297
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8298
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8299
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8300
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8301
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8302
 EXEEXT = @EXEEXT@
 
8303
 F77 = @F77@
 
8304
 FFLAGS = @FFLAGS@
 
8305
diff -urN gtk+2.0-2.10.12.orig/gdk-pixbuf/Makefile.in gtk+2.0-2.10.12/gdk-pixbuf/Makefile.in
 
8306
--- gtk+2.0-2.10.12.orig/gdk-pixbuf/Makefile.in 2007-05-02 18:41:50.000000000 +0200
 
8307
+++ gtk+2.0-2.10.12/gdk-pixbuf/Makefile.in      2007-05-03 15:11:24.000000000 +0200
 
8308
@@ -89,6 +89,8 @@
 
8309
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8310
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8311
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8312
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8313
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8314
 EXEEXT = @EXEEXT@
 
8315
 F77 = @F77@
 
8316
 FFLAGS = @FFLAGS@
 
8317
diff -urN gtk+2.0-2.10.12.orig/gdk-pixbuf/pixops/Makefile.in gtk+2.0-2.10.12/gdk-pixbuf/pixops/Makefile.in
 
8318
--- gtk+2.0-2.10.12.orig/gdk-pixbuf/pixops/Makefile.in  2007-05-02 18:41:50.000000000 +0200
 
8319
+++ gtk+2.0-2.10.12/gdk-pixbuf/pixops/Makefile.in       2007-05-03 15:11:24.000000000 +0200
 
8320
@@ -89,6 +89,8 @@
 
8321
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8322
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8323
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8324
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8325
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8326
 EXEEXT = @EXEEXT@
 
8327
 F77 = @F77@
 
8328
 FFLAGS = @FFLAGS@
 
8329
diff -urN gtk+2.0-2.10.12.orig/gtk/Makefile.in gtk+2.0-2.10.12/gtk/Makefile.in
 
8330
--- gtk+2.0-2.10.12.orig/gtk/Makefile.in        2007-05-02 18:41:52.000000000 +0200
 
8331
+++ gtk+2.0-2.10.12/gtk/Makefile.in     2007-05-03 15:11:25.000000000 +0200
 
8332
@@ -110,6 +110,8 @@
 
8333
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8334
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8335
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8336
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8337
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8338
 EXEEXT = @EXEEXT@
 
8339
 F77 = @F77@
 
8340
 FFLAGS = @FFLAGS@
 
8341
diff -urN gtk+2.0-2.10.12.orig/gtk/theme-bits/Makefile.in gtk+2.0-2.10.12/gtk/theme-bits/Makefile.in
 
8342
--- gtk+2.0-2.10.12.orig/gtk/theme-bits/Makefile.in     2007-05-02 18:41:52.000000000 +0200
 
8343
+++ gtk+2.0-2.10.12/gtk/theme-bits/Makefile.in  2007-05-03 15:11:25.000000000 +0200
 
8344
@@ -89,6 +89,8 @@
 
8345
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8346
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8347
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8348
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8349
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8350
 EXEEXT = @EXEEXT@
 
8351
 F77 = @F77@
 
8352
 FFLAGS = @FFLAGS@
 
8353
diff -urN gtk+2.0-2.10.12.orig/gtk/xdgmime/Makefile.in gtk+2.0-2.10.12/gtk/xdgmime/Makefile.in
 
8354
--- gtk+2.0-2.10.12.orig/gtk/xdgmime/Makefile.in        2007-05-02 18:41:52.000000000 +0200
 
8355
+++ gtk+2.0-2.10.12/gtk/xdgmime/Makefile.in     2007-05-03 15:11:26.000000000 +0200
 
8356
@@ -89,6 +89,8 @@
 
8357
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8358
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8359
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8360
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8361
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8362
 EXEEXT = @EXEEXT@
 
8363
 F77 = @F77@
 
8364
 FFLAGS = @FFLAGS@
 
8365
diff -urN gtk+2.0-2.10.12.orig/ltmain.sh gtk+2.0-2.10.12/ltmain.sh
 
8366
--- gtk+2.0-2.10.12.orig/ltmain.sh      2007-01-14 05:15:09.000000000 +0100
 
8367
+++ gtk+2.0-2.10.12/ltmain.sh   2006-03-11 19:49:04.000000000 +0100
 
8368
@@ -43,7 +43,7 @@
 
8369
 
 
8370
 PROGRAM=ltmain.sh
 
8371
 PACKAGE=libtool
 
8372
-VERSION=1.5.22
 
8373
+VERSION="1.5.22 Debian 1.5.22-4"
 
8374
 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
 
8375
 
 
8376
 # See if we are running on zsh, and set the options which allow our
 
8377
@@ -2082,7 +2082,10 @@
 
8378
        case $pass in
 
8379
        dlopen) libs="$dlfiles" ;;
 
8380
        dlpreopen) libs="$dlprefiles" ;;
 
8381
-       link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
 
8382
+       link)
 
8383
+         libs="$deplibs %DEPLIBS%"
 
8384
+         test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
 
8385
+         ;;
 
8386
        esac
 
8387
       fi
 
8388
       if test "$pass" = dlopen; then
 
8389
@@ -3201,6 +3204,11 @@
 
8390
            age="$number_minor"
 
8391
            revision="$number_minor"
 
8392
            ;;
 
8393
+         *)
 
8394
+           $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
8395
+           $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
8396
+           exit $EXIT_FAILURE
 
8397
+           ;;
 
8398
          esac
 
8399
          ;;
 
8400
        no)
 
8401
diff -urN gtk+2.0-2.10.12.orig/m4macros/Makefile.in gtk+2.0-2.10.12/m4macros/Makefile.in
 
8402
--- gtk+2.0-2.10.12.orig/m4macros/Makefile.in   2007-05-02 18:41:52.000000000 +0200
 
8403
+++ gtk+2.0-2.10.12/m4macros/Makefile.in        2007-05-03 15:11:26.000000000 +0200
 
8404
@@ -89,6 +89,8 @@
 
8405
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8406
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8407
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8408
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8409
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8410
 EXEEXT = @EXEEXT@
 
8411
 F77 = @F77@
 
8412
 FFLAGS = @FFLAGS@
 
8413
diff -urN gtk+2.0-2.10.12.orig/modules/Makefile.in gtk+2.0-2.10.12/modules/Makefile.in
 
8414
--- gtk+2.0-2.10.12.orig/modules/Makefile.in    2007-05-02 18:41:52.000000000 +0200
 
8415
+++ gtk+2.0-2.10.12/modules/Makefile.in 2007-05-03 15:11:26.000000000 +0200
 
8416
@@ -89,6 +89,8 @@
 
8417
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8418
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8419
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8420
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8421
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8422
 EXEEXT = @EXEEXT@
 
8423
 F77 = @F77@
 
8424
 FFLAGS = @FFLAGS@
 
8425
diff -urN gtk+2.0-2.10.12.orig/modules/engines/Makefile.in gtk+2.0-2.10.12/modules/engines/Makefile.in
 
8426
--- gtk+2.0-2.10.12.orig/modules/engines/Makefile.in    2007-05-02 18:41:52.000000000 +0200
 
8427
+++ gtk+2.0-2.10.12/modules/engines/Makefile.in 2007-05-03 15:11:26.000000000 +0200
 
8428
@@ -89,6 +89,8 @@
 
8429
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8430
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8431
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8432
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8433
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8434
 EXEEXT = @EXEEXT@
 
8435
 F77 = @F77@
 
8436
 FFLAGS = @FFLAGS@
 
8437
diff -urN gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Makefile.in gtk+2.0-2.10.12/modules/engines/ms-windows/Makefile.in
 
8438
--- gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Makefile.in 2007-05-02 18:41:52.000000000 +0200
 
8439
+++ gtk+2.0-2.10.12/modules/engines/ms-windows/Makefile.in      2007-05-03 15:11:26.000000000 +0200
 
8440
@@ -89,6 +89,8 @@
 
8441
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8442
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8443
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8444
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8445
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8446
 EXEEXT = @EXEEXT@
 
8447
 F77 = @F77@
 
8448
 FFLAGS = @FFLAGS@
 
8449
diff -urN gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Theme/Makefile.in gtk+2.0-2.10.12/modules/engines/ms-windows/Theme/Makefile.in
 
8450
--- gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Theme/Makefile.in   2007-05-02 18:41:52.000000000 +0200
 
8451
+++ gtk+2.0-2.10.12/modules/engines/ms-windows/Theme/Makefile.in        2007-05-03 15:11:26.000000000 +0200
 
8452
@@ -89,6 +89,8 @@
 
8453
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8454
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8455
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8456
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8457
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8458
 EXEEXT = @EXEEXT@
 
8459
 F77 = @F77@
 
8460
 FFLAGS = @FFLAGS@
 
8461
diff -urN gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in gtk+2.0-2.10.12/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in
 
8462
--- gtk+2.0-2.10.12.orig/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in   2007-05-02 18:41:52.000000000 +0200
 
8463
+++ gtk+2.0-2.10.12/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in        2007-05-03 15:11:26.000000000 +0200
 
8464
@@ -89,6 +89,8 @@
 
8465
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8466
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8467
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8468
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8469
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8470
 EXEEXT = @EXEEXT@
 
8471
 F77 = @F77@
 
8472
 FFLAGS = @FFLAGS@
 
8473
diff -urN gtk+2.0-2.10.12.orig/modules/engines/pixbuf/Makefile.in gtk+2.0-2.10.12/modules/engines/pixbuf/Makefile.in
 
8474
--- gtk+2.0-2.10.12.orig/modules/engines/pixbuf/Makefile.in     2007-05-02 18:41:52.000000000 +0200
 
8475
+++ gtk+2.0-2.10.12/modules/engines/pixbuf/Makefile.in  2007-05-03 15:11:26.000000000 +0200
 
8476
@@ -89,6 +89,8 @@
 
8477
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8478
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8479
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8480
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8481
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8482
 EXEEXT = @EXEEXT@
 
8483
 F77 = @F77@
 
8484
 FFLAGS = @FFLAGS@
 
8485
diff -urN gtk+2.0-2.10.12.orig/modules/input/Makefile.in gtk+2.0-2.10.12/modules/input/Makefile.in
 
8486
--- gtk+2.0-2.10.12.orig/modules/input/Makefile.in      2007-05-02 18:41:52.000000000 +0200
 
8487
+++ gtk+2.0-2.10.12/modules/input/Makefile.in   2007-05-03 15:11:26.000000000 +0200
 
8488
@@ -89,6 +89,8 @@
 
8489
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8490
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8491
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8492
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8493
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8494
 EXEEXT = @EXEEXT@
 
8495
 F77 = @F77@
 
8496
 FFLAGS = @FFLAGS@
 
8497
@@ -384,9 +386,10 @@
 
8498
 
 
8499
 im_ime_la_LIBADD = -limm32 $(LDADDS)
 
8500
 @USE_WIN32_TRUE@IM_IME_MODULE = im-ime.la 
 
8501
+@CROSS_COMPILING_FALSE@@ENABLE_STATIC_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)"
 
8502
 
 
8503
 @CROSS_COMPILING_TRUE@RUN_QUERY_IMMODULES_TEST = false
 
8504
-@CROSS_COMPILING_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)"
 
8505
+@CROSS_COMPILING_FALSE@@ENABLE_STATIC_TRUE@RUN_QUERY_IMMODULES_TEST = false
 
8506
 
 
8507
 module_LTLIBRARIES = \
 
8508
        $(IM_XIM_MODULE)                        \
 
8509
@@ -838,7 +841,18 @@
 
8510
        rm -f $(DESTDIR)$(sysconfdir)/gtk-2.0/gtk.immodules
 
8511
 
 
8512
 gtk.immodules: Makefile.am $(module_LTLIBRARIES)
 
8513
-       $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules
 
8514
+       @if $(RUN_QUERY_IMMODULES_TEST) ; then \
 
8515
+         echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > gtk.immodules" ; \
 
8516
+       $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules; \
 
8517
+       else \
 
8518
+         echo "***" ; \
 
8519
+         echo "*** Warning: gtk.immodules not built" ; \
 
8520
+         echo "***" ; \
 
8521
+         echo "*** Generate this file manually on host" ; \
 
8522
+         echo "*** system using gtk-query-immodules-2.0" ; \
 
8523
+         echo "***" ; \
 
8524
+         touch gtk.immodules; \
 
8525
+        fi
 
8526
 
 
8527
 @CROSS_COMPILING_FALSE@all-local: gtk.immodules
 
8528
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 
8529
diff -urN gtk+2.0-2.10.12.orig/modules/printbackends/Makefile.in gtk+2.0-2.10.12/modules/printbackends/Makefile.in
 
8530
--- gtk+2.0-2.10.12.orig/modules/printbackends/Makefile.in      2007-05-02 18:41:52.000000000 +0200
 
8531
+++ gtk+2.0-2.10.12/modules/printbackends/Makefile.in   2007-05-03 15:11:26.000000000 +0200
 
8532
@@ -90,6 +90,8 @@
 
8533
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8534
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8535
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8536
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8537
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8538
 EXEEXT = @EXEEXT@
 
8539
 F77 = @F77@
 
8540
 FFLAGS = @FFLAGS@
 
8541
diff -urN gtk+2.0-2.10.12.orig/modules/printbackends/cups/Makefile.in gtk+2.0-2.10.12/modules/printbackends/cups/Makefile.in
 
8542
--- gtk+2.0-2.10.12.orig/modules/printbackends/cups/Makefile.in 2007-05-02 18:41:52.000000000 +0200
 
8543
+++ gtk+2.0-2.10.12/modules/printbackends/cups/Makefile.in      2007-05-03 15:11:26.000000000 +0200
 
8544
@@ -89,6 +89,8 @@
 
8545
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8546
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8547
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8548
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8549
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8550
 EXEEXT = @EXEEXT@
 
8551
 F77 = @F77@
 
8552
 FFLAGS = @FFLAGS@
 
8553
diff -urN gtk+2.0-2.10.12.orig/modules/printbackends/file/Makefile.in gtk+2.0-2.10.12/modules/printbackends/file/Makefile.in
 
8554
--- gtk+2.0-2.10.12.orig/modules/printbackends/file/Makefile.in 2007-05-02 18:41:53.000000000 +0200
 
8555
+++ gtk+2.0-2.10.12/modules/printbackends/file/Makefile.in      2007-05-03 15:11:27.000000000 +0200
 
8556
@@ -89,6 +89,8 @@
 
8557
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8558
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8559
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8560
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8561
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8562
 EXEEXT = @EXEEXT@
 
8563
 F77 = @F77@
 
8564
 FFLAGS = @FFLAGS@
 
8565
diff -urN gtk+2.0-2.10.12.orig/modules/printbackends/lpr/Makefile.in gtk+2.0-2.10.12/modules/printbackends/lpr/Makefile.in
 
8566
--- gtk+2.0-2.10.12.orig/modules/printbackends/lpr/Makefile.in  2007-05-02 18:41:53.000000000 +0200
 
8567
+++ gtk+2.0-2.10.12/modules/printbackends/lpr/Makefile.in       2007-05-03 15:11:27.000000000 +0200
 
8568
@@ -89,6 +89,8 @@
 
8569
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8570
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8571
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8572
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8573
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8574
 EXEEXT = @EXEEXT@
 
8575
 F77 = @F77@
 
8576
 FFLAGS = @FFLAGS@
 
8577
diff -urN gtk+2.0-2.10.12.orig/perf/Makefile.in gtk+2.0-2.10.12/perf/Makefile.in
 
8578
--- gtk+2.0-2.10.12.orig/perf/Makefile.in       2007-05-02 18:41:53.000000000 +0200
 
8579
+++ gtk+2.0-2.10.12/perf/Makefile.in    2007-05-03 15:11:27.000000000 +0200
 
8580
@@ -89,6 +89,8 @@
 
8581
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8582
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8583
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8584
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8585
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8586
 EXEEXT = @EXEEXT@
 
8587
 F77 = @F77@
 
8588
 FFLAGS = @FFLAGS@
 
8589
diff -urN gtk+2.0-2.10.12.orig/tests/Makefile.in gtk+2.0-2.10.12/tests/Makefile.in
 
8590
--- gtk+2.0-2.10.12.orig/tests/Makefile.in      2007-05-02 18:41:53.000000000 +0200
 
8591
+++ gtk+2.0-2.10.12/tests/Makefile.in   2007-05-03 15:11:28.000000000 +0200
 
8592
@@ -89,6 +89,8 @@
 
8593
 ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@
 
8594
 ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@
 
8595
 ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@
 
8596
+ENABLE_STATIC_FALSE = @ENABLE_STATIC_FALSE@
 
8597
+ENABLE_STATIC_TRUE = @ENABLE_STATIC_TRUE@
 
8598
 EXEEXT = @EXEEXT@
 
8599
 F77 = @F77@
 
8600
 FFLAGS = @FFLAGS@