~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/configure

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 #! /bin/sh
  2 # Guess values for system-dependent variables and create Makefiles.
  3 # Generated by GNU Autoconf 2.61 for Wine 1.1.2.
  4 #
  5 # Report bugs to <wine-devel@winehq.org>.
  6 #
  7 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
  8 # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
  9 # This configure script is free software; the Free Software Foundation
 10 # gives unlimited permission to copy, distribute and modify it.
 11 ## --------------------- ##
 12 ## M4sh Initialization.  ##
 13 ## --------------------- ##
 14 
 15 # Be more Bourne compatible
 16 DUALCASE=1; export DUALCASE # for MKS sh
 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 18   emulate sh
 19   NULLCMD=:
 20   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 21   # is contrary to our usage.  Disable this feature.
 22   alias -g '${1+"$@"}'='"$@"'
 23   setopt NO_GLOB_SUBST
 24 else
 25   case `(set -o) 2>/dev/null` in
 26   *posix*) set -o posix ;;
 27 esac
 28 
 29 fi
 30 
 31 
 32 
 33 
 34 # PATH needs CR
 35 # Avoid depending upon Character Ranges.
 36 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 37 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 38 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 39 as_cr_digits='0123456789'
 40 as_cr_alnum=$as_cr_Letters$as_cr_digits
 41 
 42 # The user is always right.
 43 if test "${PATH_SEPARATOR+set}" != set; then
 44   echo "#! /bin/sh" >conf$$.sh
 45   echo  "exit 0"   >>conf$$.sh
 46   chmod +x conf$$.sh
 47   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 48     PATH_SEPARATOR=';'
 49   else
 50     PATH_SEPARATOR=:
 51   fi
 52   rm -f conf$$.sh
 53 fi
 54 
 55 # Support unset when possible.
 56 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 57   as_unset=unset
 58 else
 59   as_unset=false
 60 fi
 61 
 62 
 63 # IFS
 64 # We need space, tab and new line, in precisely that order.  Quoting is
 65 # there to prevent editors from complaining about space-tab.
 66 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
 67 # splitting by setting IFS to empty value.)
 68 as_nl='
 69 '
 70 IFS=" ""        $as_nl"
 71 
 72 # Find who we are.  Look in the path if we contain no directory separator.
 73 case $0 in
 74   *[\\/]* ) as_myself=$0 ;;
 75   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 76 for as_dir in $PATH
 77 do
 78   IFS=$as_save_IFS
 79   test -z "$as_dir" && as_dir=.
 80   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 81 done
 82 IFS=$as_save_IFS
 83 
 84      ;;
 85 esac
 86 # We did not find ourselves, most probably we were run as `sh COMMAND'
 87 # in which case we are not to be found in the path.
 88 if test "x$as_myself" = x; then
 89   as_myself=$0
 90 fi
 91 if test ! -f "$as_myself"; then
 92   echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 93   { (exit 1); exit 1; }
 94 fi
 95 
 96 # Work around bugs in pre-3.0 UWIN ksh.
 97 for as_var in ENV MAIL MAILPATH
 98 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 99 done
100 PS1='$ '
101 PS2='> '
102 PS4='+ '
103 
104 # NLS nuisances.
105 for as_var in \
106   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
107   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
108   LC_TELEPHONE LC_TIME
109 do
110   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
111     eval $as_var=C; export $as_var
112   else
113     ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
114   fi
115 done
116 
117 # Required to use basename.
118 if expr a : '\(a\)' >/dev/null 2>&1 &&
119    test "X`expr 00001 : '.*\(...\)'`" = X001; then
120   as_expr=expr
121 else
122   as_expr=false
123 fi
124 
125 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
126   as_basename=basename
127 else
128   as_basename=false
129 fi
130 
131 
132 # Name of the executable.
133 as_me=`$as_basename -- "$0" ||
134 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
135          X"$0" : 'X\(//\)$' \| \
136          X"$0" : 'X\(/\)' \| . 2>/dev/null ||
137 echo X/"$0" |
138     sed '/^.*\/\([^/][^/]*\)\/*$/{
139             s//\1/
140             q
141           }
142           /^X\/\(\/\/\)$/{
143             s//\1/
144             q
145           }
146           /^X\/\(\/\).*/{
147             s//\1/
148             q
149           }
150           s/.*/./; q'`
151 
152 # CDPATH.
153 $as_unset CDPATH
154 
155 
156 if test "x$CONFIG_SHELL" = x; then
157   if (eval ":") 2>/dev/null; then
158   as_have_required=yes
159 else
160   as_have_required=no
161 fi
162 
163   if test $as_have_required = yes &&     (eval ":
164 (as_func_return () {
165   (exit \$1)
166 }
167 as_func_success () {
168   as_func_return 0
169 }
170 as_func_failure () {
171   as_func_return 1
172 }
173 as_func_ret_success () {
174   return 0
175 }
176 as_func_ret_failure () {
177   return 1
178 }
179 
180 exitcode=0
181 if as_func_success; then
182   :
183 else
184   exitcode=1
185   echo as_func_success failed.
186 fi
187 
188 if as_func_failure; then
189   exitcode=1
190   echo as_func_failure succeeded.
191 fi
192 
193 if as_func_ret_success; then
194   :
195 else
196   exitcode=1
197   echo as_func_ret_success failed.
198 fi
199 
200 if as_func_ret_failure; then
201   exitcode=1
202   echo as_func_ret_failure succeeded.
203 fi
204 
205 if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
206   :
207 else
208   exitcode=1
209   echo positional parameters were not saved.
210 fi
211 
212 test \$exitcode = 0) || { (exit 1); exit 1; }
213 
214 (
215   as_lineno_1=\$LINENO
216   as_lineno_2=\$LINENO
217   test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
218   test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
219 ") 2> /dev/null; then
220   :
221 else
222   as_candidate_shells=
223     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
224 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
225 do
226   IFS=$as_save_IFS
227   test -z "$as_dir" && as_dir=.
228   case $as_dir in
229          /*)
230            for as_base in sh bash ksh sh5; do
231              as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
232            done;;
233        esac
234 done
235 IFS=$as_save_IFS
236 
237 
238       for as_shell in $as_candidate_shells $SHELL; do
239          # Try only shells that exist, to save several forks.
240          if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
241                 { ("$as_shell") 2> /dev/null <<\_ASEOF
242 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
243   emulate sh
244   NULLCMD=:
245   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
246   # is contrary to our usage.  Disable this feature.
247   alias -g '${1+"$@"}'='"$@"'
248   setopt NO_GLOB_SUBST
249 else
250   case `(set -o) 2>/dev/null` in
251   *posix*) set -o posix ;;
252 esac
253 
254 fi
255 
256 
257 :
258 _ASEOF
259 }; then
260   CONFIG_SHELL=$as_shell
261                as_have_required=yes
262                if { "$as_shell" 2> /dev/null <<\_ASEOF
263 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
264   emulate sh
265   NULLCMD=:
266   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
267   # is contrary to our usage.  Disable this feature.
268   alias -g '${1+"$@"}'='"$@"'
269   setopt NO_GLOB_SUBST
270 else
271   case `(set -o) 2>/dev/null` in
272   *posix*) set -o posix ;;
273 esac
274 
275 fi
276 
277 
278 :
279 (as_func_return () {
280   (exit $1)
281 }
282 as_func_success () {
283   as_func_return 0
284 }
285 as_func_failure () {
286   as_func_return 1
287 }
288 as_func_ret_success () {
289   return 0
290 }
291 as_func_ret_failure () {
292   return 1
293 }
294 
295 exitcode=0
296 if as_func_success; then
297   :
298 else
299   exitcode=1
300   echo as_func_success failed.
301 fi
302 
303 if as_func_failure; then
304   exitcode=1
305   echo as_func_failure succeeded.
306 fi
307 
308 if as_func_ret_success; then
309   :
310 else
311   exitcode=1
312   echo as_func_ret_success failed.
313 fi
314 
315 if as_func_ret_failure; then
316   exitcode=1
317   echo as_func_ret_failure succeeded.
318 fi
319 
320 if ( set x; as_func_ret_success y && test x = "$1" ); then
321   :
322 else
323   exitcode=1
324   echo positional parameters were not saved.
325 fi
326 
327 test $exitcode = 0) || { (exit 1); exit 1; }
328 
329 (
330   as_lineno_1=$LINENO
331   as_lineno_2=$LINENO
332   test "x$as_lineno_1" != "x$as_lineno_2" &&
333   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
334 
335 _ASEOF
336 }; then
337   break
338 fi
339 
340 fi
341 
342       done
343 
344       if test "x$CONFIG_SHELL" != x; then
345   for as_var in BASH_ENV ENV
346         do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
347         done
348         export CONFIG_SHELL
349         exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
350 fi
351 
352 
353     if test $as_have_required = no; then
354   echo This script requires a shell more modern than all the
355       echo shells that I found on your system.  Please install a
356       echo modern shell, or manually run the script under such a
357       echo shell if you do have one.
358       { (exit 1); exit 1; }
359 fi
360 
361 
362 fi
363 
364 fi
365 
366 
367 
368 (eval "as_func_return () {
369   (exit \$1)
370 }
371 as_func_success () {
372   as_func_return 0
373 }
374 as_func_failure () {
375   as_func_return 1
376 }
377 as_func_ret_success () {
378   return 0
379 }
380 as_func_ret_failure () {
381   return 1
382 }
383 
384 exitcode=0
385 if as_func_success; then
386   :
387 else
388   exitcode=1
389   echo as_func_success failed.
390 fi
391 
392 if as_func_failure; then
393   exitcode=1
394   echo as_func_failure succeeded.
395 fi
396 
397 if as_func_ret_success; then
398   :
399 else
400   exitcode=1
401   echo as_func_ret_success failed.
402 fi
403 
404 if as_func_ret_failure; then
405   exitcode=1
406   echo as_func_ret_failure succeeded.
407 fi
408 
409 if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
410   :
411 else
412   exitcode=1
413   echo positional parameters were not saved.
414 fi
415 
416 test \$exitcode = 0") || {
417   echo No shell found that supports shell functions.
418   echo Please tell autoconf@gnu.org about your system,
419   echo including any error possibly output before this
420   echo message
421 }
422 
423 
424 
425   as_lineno_1=$LINENO
426   as_lineno_2=$LINENO
427   test "x$as_lineno_1" != "x$as_lineno_2" &&
428   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
429 
430   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
431   # uniformly replaced by the line number.  The first 'sed' inserts a
432   # line-number line after each line using $LINENO; the second 'sed'
433   # does the real work.  The second script uses 'N' to pair each
434   # line-number line with the line containing $LINENO, and appends
435   # trailing '-' during substitution so that $LINENO is not a special
436   # case at line end.
437   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
438   # scripts with optimization help from Paolo Bonzini.  Blame Lee
439   # E. McMahon (1931-1989) for sed's syntax.  :-)
440   sed -n '
441     p
442     /[$]LINENO/=
443   ' <$as_myself |
444     sed '
445       s/[$]LINENO.*/&-/
446       t lineno
447       b
448       :lineno
449       N
450       :loop
451       s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
452       t loop
453       s/-\n.*//
454     ' >$as_me.lineno &&
455   chmod +x "$as_me.lineno" ||
456     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
457    { (exit 1); exit 1; }; }
458 
459   # Don't try to exec as it changes $[0], causing all sort of problems
460   # (the dirname of $[0] is not the place where we might find the
461   # original and so on.  Autoconf is especially sensitive to this).
462   . "./$as_me.lineno"
463   # Exit status is that of the last command.
464   exit
465 }
466 
467 
468 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
469   as_dirname=dirname
470 else
471   as_dirname=false
472 fi
473 
474 ECHO_C= ECHO_N= ECHO_T=
475 case `echo -n x` in
476 -n*)
477   case `echo 'x\c'` in
478   *c*) ECHO_T=' ';;     # ECHO_T is single tab character.
479   *)   ECHO_C='\c';;
480   esac;;
481 *)
482   ECHO_N='-n';;
483 esac
484 
485 if expr a : '\(a\)' >/dev/null 2>&1 &&
486    test "X`expr 00001 : '.*\(...\)'`" = X001; then
487   as_expr=expr
488 else
489   as_expr=false
490 fi
491 
492 rm -f conf$$ conf$$.exe conf$$.file
493 if test -d conf$$.dir; then
494   rm -f conf$$.dir/conf$$.file
495 else
496   rm -f conf$$.dir
497   mkdir conf$$.dir
498 fi
499 echo >conf$$.file
500 if ln -s conf$$.file conf$$ 2>/dev/null; then
501   as_ln_s='ln -s'
502   # ... but there are two gotchas:
503   # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
504   # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
505   # In both cases, we have to default to `cp -p'.
506   ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
507     as_ln_s='cp -p'
508 elif ln conf$$.file conf$$ 2>/dev/null; then
509   as_ln_s=ln
510 else
511   as_ln_s='cp -p'
512 fi
513 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
514 rmdir conf$$.dir 2>/dev/null
515 
516 if mkdir -p . 2>/dev/null; then
517   as_mkdir_p=:
518 else
519   test -d ./-p && rmdir ./-p
520   as_mkdir_p=false
521 fi
522 
523 if test -x / >/dev/null 2>&1; then
524   as_test_x='test -x'
525 else
526   if ls -dL / >/dev/null 2>&1; then
527     as_ls_L_option=L
528   else
529     as_ls_L_option=
530   fi
531   as_test_x='
532     eval sh -c '\''
533       if test -d "$1"; then
534         test -d "$1/.";
535       else
536         case $1 in
537         -*)set "./$1";;
538         esac;
539         case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
540         ???[sx]*):;;*)false;;esac;fi
541     '\'' sh
542   '
543 fi
544 as_executable_p=$as_test_x
545 
546 # Sed expression to map a string onto a valid CPP name.
547 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
548 
549 # Sed expression to map a string onto a valid variable name.
550 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
551 
552 
553 
554 exec 7<&0 </dev/null 6>&1
555 
556 # Name of the host.
557 # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
558 # so uname gets run too.
559 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
560 
561 #
562 # Initializations.
563 #
564 ac_default_prefix=/usr/local
565 ac_clean_files=
566 ac_config_libobj_dir=.
567 LIBOBJS=
568 cross_compiling=no
569 subdirs=
570 MFLAGS=
571 MAKEFLAGS=
572 SHELL=${CONFIG_SHELL-/bin/sh}
573 
574 # Identity of this package.
575 PACKAGE_NAME='Wine'
576 PACKAGE_TARNAME='wine'
577 PACKAGE_VERSION='1.1.2'
578 PACKAGE_STRING='Wine 1.1.2'
579 PACKAGE_BUGREPORT='wine-devel@winehq.org'
580 
581 ac_unique_file="server/atom.c"
582 # Factoring default headers for most tests.
583 ac_includes_default="\
584 #include <stdio.h>
585 #ifdef HAVE_SYS_TYPES_H
586 # include <sys/types.h>
587 #endif
588 #ifdef HAVE_SYS_STAT_H
589 # include <sys/stat.h>
590 #endif
591 #ifdef STDC_HEADERS
592 # include <stdlib.h>
593 # include <stddef.h>
594 #else
595 # ifdef HAVE_STDLIB_H
596 #  include <stdlib.h>
597 # endif
598 #endif
599 #ifdef HAVE_STRING_H
600 # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
601 #  include <memory.h>
602 # endif
603 # include <string.h>
604 #endif
605 #ifdef HAVE_STRINGS_H
606 # include <strings.h>
607 #endif
608 #ifdef HAVE_INTTYPES_H
609 # include <inttypes.h>
610 #endif
611 #ifdef HAVE_STDINT_H
612 # include <stdint.h>
613 #endif
614 #ifdef HAVE_UNISTD_H
615 # include <unistd.h>
616 #endif"
617 
618 ac_subst_vars='SHELL
619 PATH_SEPARATOR
620 PACKAGE_NAME
621 PACKAGE_TARNAME
622 PACKAGE_VERSION
623 PACKAGE_STRING
624 PACKAGE_BUGREPORT
625 exec_prefix
626 prefix
627 program_transform_name
628 bindir
629 sbindir
630 libexecdir
631 datarootdir
632 datadir
633 sysconfdir
634 sharedstatedir
635 localstatedir
636 includedir
637 oldincludedir
638 docdir
639 infodir
640 htmldir
641 dvidir
642 pdfdir
643 psdir
644 libdir
645 localedir
646 mandir
647 DEFS
648 ECHO_C
649 ECHO_N
650 ECHO_T
651 LIBS
652 build_alias
653 host_alias
654 target_alias
655 MAINTAINER_MODE
656 build
657 build_cpu
658 build_vendor
659 build_os
660 host
661 host_cpu
662 host_vendor
663 host_os
664 WIN16_FILES
665 WIN16_INSTALL
666 SET_MAKE
667 CC
668 CFLAGS
669 LDFLAGS
670 CPPFLAGS
671 ac_ct_CC
672 EXEEXT
673 OBJEXT
674 CXX
675 CXXFLAGS
676 ac_ct_CXX
677 CPPBIN
678 TOOLSDIR
679 XMKMF
680 CPP
681 X_CFLAGS
682 X_PRE_LIBS
683 X_LIBS
684 X_EXTRA_LIBS
685 FLEX
686 BISON
687 AS
688 ac_ct_AS
689 LD
690 ac_ct_LD
691 NM
692 ac_ct_NM
693 AR
694 ac_ct_AR
695 ARFLAGS
696 RANLIB
697 STRIP
698 WINDRES
699 LN_S
700 LN
701 GREP
702 EGREP
703 LDCONFIG
704 INSTALL_PROGRAM
705 INSTALL_SCRIPT
706 INSTALL_DATA
707 LINT
708 LINTFLAGS
709 FONTFORGE
710 PKG_CONFIG
711 RSVG
712 ICOTOOL
713 PRELINK
714 LIBPTHREAD
715 XLIB
716 XFILES
717 OPENGLFILES
718 GLU32FILES
719 OPENGL_LIBS
720 QUARTZFILES
721 DLLEXT
722 DLLFLAGS
723 LDSHARED
724 LDDLLFLAGS
725 LIBEXT
726 IMPLIBEXT
727 LDRPATH_INSTALL
728 LDRPATH_LOCAL
729 LDD
730 DLLTOOL
731 DLLWRAP
732 MINGWAR
733 SECURITYLIB
734 COREFOUNDATIONLIB
735 IOKITLIB
736 LDEXECFLAGS
737 DISKARBITRATIONLIB
738 COREAUDIO
739 CARBONLIB
740 CROSSTEST
741 CROSSCC
742 CROSSWINDRES
743 NASLIBS
744 XML2LIBS
745 XML2INCL
746 XSLTLIBS
747 XSLTINCL
748 HALINCL
749 sane_devel
750 SANEINCL
751 gphoto2_devel
752 gphoto2port_devel
753 GPHOTO2LIBS
754 GPHOTO2INCL
755 RESOLVLIBS
756 LCMSLIBS
757 ft_devel
758 FREETYPELIBS
759 FREETYPEINCL
760 FONTSSUBDIRS
761 ESDCONFIG
762 ESDINCL
763 ESDLIBS
764 ALSALIBS
765 AUDIOIOLIBS
766 CUPSINCL
767 FONTCONFIGINCL
768 EXTRACFLAGS
769 BUILTINFLAG
770 LDPATH
771 CRTLIBS
772 SOCKETLIBS
773 MAIN_BINARY
774 EXTRA_BINARIES
775 LIBDL
776 LIBPOLL
777 LDAPLIBS
778 DEPENDENCIES
779 LIBOBJS
780 LTLIBOBJS'
781 ac_subst_files='MAKE_RULES
782 MAKE_DLL_RULES
783 MAKE_IMPLIB_RULES
784 MAKE_TEST_RULES
785 MAKE_PROG_RULES'
786       ac_precious_vars='build_alias
787 host_alias
788 target_alias
789 CC
790 CFLAGS
791 LDFLAGS
792 LIBS
793 CPPFLAGS
794 CXX
795 CXXFLAGS
796 CCC
797 XMKMF
798 CPP'
799 
800 
801 # Initialize some variables set by options.
802 ac_init_help=
803 ac_init_version=false
804 # The variables have the same names as the options, with
805 # dashes changed to underlines.
806 cache_file=/dev/null
807 exec_prefix=NONE
808 no_create=
809 no_recursion=
810 prefix=NONE
811 program_prefix=NONE
812 program_suffix=NONE
813 program_transform_name=s,x,x,
814 silent=
815 site=
816 srcdir=
817 verbose=
818 x_includes=NONE
819 x_libraries=NONE
820 
821 # Installation directory options.
822 # These are left unexpanded so users can "make install exec_prefix=/foo"
823 # and all the variables that are supposed to be based on exec_prefix
824 # by default will actually change.
825 # Use braces instead of parens because sh, perl, etc. also accept them.
826 # (The list follows the same order as the GNU Coding Standards.)
827 bindir='${exec_prefix}/bin'
828 sbindir='${exec_prefix}/sbin'
829 libexecdir='${exec_prefix}/libexec'
830 datarootdir='${prefix}/share'
831 datadir='${datarootdir}'
832 sysconfdir='${prefix}/etc'
833 sharedstatedir='${prefix}/com'
834 localstatedir='${prefix}/var'
835 includedir='${prefix}/include'
836 oldincludedir='/usr/include'
837 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
838 infodir='${datarootdir}/info'
839 htmldir='${docdir}'
840 dvidir='${docdir}'
841 pdfdir='${docdir}'
842 psdir='${docdir}'
843 libdir='${exec_prefix}/lib'
844 localedir='${datarootdir}/locale'
845 mandir='${datarootdir}/man'
846 
847 ac_prev=
848 ac_dashdash=
849 for ac_option
850 do
851   # If the previous option needs an argument, assign it.
852   if test -n "$ac_prev"; then
853     eval $ac_prev=\$ac_option
854     ac_prev=
855     continue
856   fi
857 
858   case $ac_option in
859   *=*)  ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
860   *)    ac_optarg=yes ;;
861   esac
862 
863   # Accept the important Cygnus configure options, so we can diagnose typos.
864 
865   case $ac_dashdash$ac_option in
866   --)
867     ac_dashdash=yes ;;
868 
869   -bindir | --bindir | --bindi | --bind | --bin | --bi)
870     ac_prev=bindir ;;
871   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
872     bindir=$ac_optarg ;;
873 
874   -build | --build | --buil | --bui | --bu)
875     ac_prev=build_alias ;;
876   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
877     build_alias=$ac_optarg ;;
878 
879   -cache-file | --cache-file | --cache-fil | --cache-fi \
880   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
881     ac_prev=cache_file ;;
882   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
883   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
884     cache_file=$ac_optarg ;;
885 
886   --config-cache | -C)
887     cache_file=config.cache ;;
888 
889   -datadir | --datadir | --datadi | --datad)
890     ac_prev=datadir ;;
891   -datadir=* | --datadir=* | --datadi=* | --datad=*)
892     datadir=$ac_optarg ;;
893 
894   -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
895   | --dataroo | --dataro | --datar)
896     ac_prev=datarootdir ;;
897   -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
898   | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
899     datarootdir=$ac_optarg ;;
900 
901   -disable-* | --disable-*)
902     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
903     # Reject names that are not valid shell variable names.
904     expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
905       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
906    { (exit 1); exit 1; }; }
907     ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
908     eval enable_$ac_feature=no ;;
909 
910   -docdir | --docdir | --docdi | --doc | --do)
911     ac_prev=docdir ;;
912   -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
913     docdir=$ac_optarg ;;
914 
915   -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
916     ac_prev=dvidir ;;
917   -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
918     dvidir=$ac_optarg ;;
919 
920   -enable-* | --enable-*)
921     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
922     # Reject names that are not valid shell variable names.
923     expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
924       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
925    { (exit 1); exit 1; }; }
926     ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
927     eval enable_$ac_feature=\$ac_optarg ;;
928 
929   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
930   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
931   | --exec | --exe | --ex)
932     ac_prev=exec_prefix ;;
933   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
934   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
935   | --exec=* | --exe=* | --ex=*)
936     exec_prefix=$ac_optarg ;;
937 
938   -gas | --gas | --ga | --g)
939     # Obsolete; use --with-gas.
940     with_gas=yes ;;
941 
942   -help | --help | --hel | --he | -h)
943     ac_init_help=long ;;
944   -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
945     ac_init_help=recursive ;;
946   -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
947     ac_init_help=short ;;
948 
949   -host | --host | --hos | --ho)
950     ac_prev=host_alias ;;
951   -host=* | --host=* | --hos=* | --ho=*)
952     host_alias=$ac_optarg ;;
953 
954   -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
955     ac_prev=htmldir ;;
956   -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
957   | --ht=*)
958     htmldir=$ac_optarg ;;
959 
960   -includedir | --includedir | --includedi | --included | --include \
961   | --includ | --inclu | --incl | --inc)
962     ac_prev=includedir ;;
963   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
964   | --includ=* | --inclu=* | --incl=* | --inc=*)
965     includedir=$ac_optarg ;;
966 
967   -infodir | --infodir | --infodi | --infod | --info | --inf)
968     ac_prev=infodir ;;
969   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
970     infodir=$ac_optarg ;;
971 
972   -libdir | --libdir | --libdi | --libd)
973     ac_prev=libdir ;;
974   -libdir=* | --libdir=* | --libdi=* | --libd=*)
975     libdir=$ac_optarg ;;
976 
977   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
978   | --libexe | --libex | --libe)
979     ac_prev=libexecdir ;;
980   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
981   | --libexe=* | --libex=* | --libe=*)
982     libexecdir=$ac_optarg ;;
983 
984   -localedir | --localedir | --localedi | --localed | --locale)
985     ac_prev=localedir ;;
986   -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
987     localedir=$ac_optarg ;;
988 
989   -localstatedir | --localstatedir | --localstatedi | --localstated \
990   | --localstate | --localstat | --localsta | --localst | --locals)
991     ac_prev=localstatedir ;;
992   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
993   | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
994     localstatedir=$ac_optarg ;;
995 
996   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
997     ac_prev=mandir ;;
998   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
999     mandir=$ac_optarg ;;
1000 
1001   -nfp | --nfp | --nf)
1002     # Obsolete; use --without-fp.
1003     with_fp=no ;;
1004 
1005   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
1006   | --no-cr | --no-c | -n)
1007     no_create=yes ;;
1008 
1009   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
1010   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
1011     no_recursion=yes ;;
1012 
1013   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
1014   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
1015   | --oldin | --oldi | --old | --ol | --o)
1016     ac_prev=oldincludedir ;;
1017   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
1018   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
1019   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
1020     oldincludedir=$ac_optarg ;;
1021 
1022   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
1023     ac_prev=prefix ;;
1024   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
1025     prefix=$ac_optarg ;;
1026 
1027   -program-prefix | --program-prefix | --program-prefi | --program-pref \
1028   | --program-pre | --program-pr | --program-p)
1029     ac_prev=program_prefix ;;
1030   -program-prefix=* | --program-prefix=* | --program-prefi=* \
1031   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
1032     program_prefix=$ac_optarg ;;
1033 
1034   -program-suffix | --program-suffix | --program-suffi | --program-suff \
1035   | --program-suf | --program-su | --program-s)
1036     ac_prev=program_suffix ;;
1037   -program-suffix=* | --program-suffix=* | --program-suffi=* \
1038   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
1039     program_suffix=$ac_optarg ;;
1040 
1041   -program-transform-name | --program-transform-name \
1042   | --program-transform-nam | --program-transform-na \
1043   | --program-transform-n | --program-transform- \
1044   | --program-transform | --program-transfor \
1045   | --program-transfo | --program-transf \
1046   | --program-trans | --program-tran \
1047   | --progr-tra | --program-tr | --program-t)
1048     ac_prev=program_transform_name ;;
1049   -program-transform-name=* | --program-transform-name=* \
1050   | --program-transform-nam=* | --program-transform-na=* \
1051   | --program-transform-n=* | --program-transform-=* \
1052   | --program-transform=* | --program-transfor=* \
1053   | --program-transfo=* | --program-transf=* \
1054   | --program-trans=* | --program-tran=* \
1055   | --progr-tra=* | --program-tr=* | --program-t=*)
1056     program_transform_name=$ac_optarg ;;
1057 
1058   -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
1059     ac_prev=pdfdir ;;
1060   -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
1061     pdfdir=$ac_optarg ;;
1062 
1063   -psdir | --psdir | --psdi | --psd | --ps)
1064     ac_prev=psdir ;;
1065   -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
1066     psdir=$ac_optarg ;;
1067 
1068   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1069   | -silent | --silent | --silen | --sile | --sil)
1070     silent=yes ;;
1071 
1072   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1073     ac_prev=sbindir ;;
1074   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1075   | --sbi=* | --sb=*)
1076     sbindir=$ac_optarg ;;
1077 
1078   -sharedstatedir | --sharedstatedir | --sharedstatedi \
1079   | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1080   | --sharedst | --shareds | --shared | --share | --shar \
1081   | --sha | --sh)
1082     ac_prev=sharedstatedir ;;
1083   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1084   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1085   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1086   | --sha=* | --sh=*)
1087     sharedstatedir=$ac_optarg ;;
1088 
1089   -site | --site | --sit)
1090     ac_prev=site ;;
1091   -site=* | --site=* | --sit=*)
1092     site=$ac_optarg ;;
1093 
1094   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1095     ac_prev=srcdir ;;
1096   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1097     srcdir=$ac_optarg ;;
1098 
1099   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1100   | --syscon | --sysco | --sysc | --sys | --sy)
1101     ac_prev=sysconfdir ;;
1102   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1103   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1104     sysconfdir=$ac_optarg ;;
1105 
1106   -target | --target | --targe | --targ | --tar | --ta | --t)
1107     ac_prev=target_alias ;;
1108   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1109     target_alias=$ac_optarg ;;
1110 
1111   -v | -verbose | --verbose | --verbos | --verbo | --verb)
1112     verbose=yes ;;
1113 
1114   -version | --version | --versio | --versi | --vers | -V)
1115     ac_init_version=: ;;
1116 
1117   -with-* | --with-*)
1118     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1119     # Reject names that are not valid shell variable names.
1120     expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1121       { echo "$as_me: error: invalid package name: $ac_package" >&2
1122    { (exit 1); exit 1; }; }
1123     ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1124     eval with_$ac_package=\$ac_optarg ;;
1125 
1126   -without-* | --without-*)
1127     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1128     # Reject names that are not valid shell variable names.
1129     expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1130       { echo "$as_me: error: invalid package name: $ac_package" >&2
1131    { (exit 1); exit 1; }; }
1132     ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1133     eval with_$ac_package=no ;;
1134 
1135   --x)
1136     # Obsolete; use --with-x.
1137     with_x=yes ;;
1138 
1139   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1140   | --x-incl | --x-inc | --x-in | --x-i)
1141     ac_prev=x_includes ;;
1142   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1143   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1144     x_includes=$ac_optarg ;;
1145 
1146   -x-libraries | --x-libraries | --x-librarie | --x-librari \
1147   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1148     ac_prev=x_libraries ;;
1149   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1150   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1151     x_libraries=$ac_optarg ;;
1152 
1153   -*) { echo "$as_me: error: unrecognized option: $ac_option
1154 Try \`$0 --help' for more information." >&2
1155    { (exit 1); exit 1; }; }
1156     ;;
1157 
1158   *=*)
1159     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1160     # Reject names that are not valid shell variable names.
1161     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
1162       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
1163    { (exit 1); exit 1; }; }
1164     eval $ac_envvar=\$ac_optarg
1165     export $ac_envvar ;;
1166 
1167   *)
1168     # FIXME: should be removed in autoconf 3.0.
1169     echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1170     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1171       echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1172     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1173     ;;
1174 
1175   esac
1176 done
1177 
1178 if test -n "$ac_prev"; then
1179   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1180   { echo "$as_me: error: missing argument to $ac_option" >&2
1181    { (exit 1); exit 1; }; }
1182 fi
1183 
1184 # Be sure to have absolute directory names.
1185 for ac_var in   exec_prefix prefix bindir sbindir libexecdir datarootdir \
1186                 datadir sysconfdir sharedstatedir localstatedir includedir \
1187                 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1188                 libdir localedir mandir
1189 do
1190   eval ac_val=\$$ac_var
1191   case $ac_val in
1192     [\\/$]* | ?:[\\/]* )  continue;;
1193     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1194   esac
1195   { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
1196    { (exit 1); exit 1; }; }
1197 done
1198 
1199 # There might be people who depend on the old broken behavior: `$host'
1200 # used to hold the argument of --host etc.
1201 # FIXME: To remove some day.
1202 build=$build_alias
1203 host=$host_alias
1204 target=$target_alias
1205 
1206 # FIXME: To remove some day.
1207 if test "x$host_alias" != x; then
1208   if test "x$build_alias" = x; then
1209     cross_compiling=maybe
1210     echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1211     If a cross compiler is detected then cross compile mode will be used." >&2
1212   elif test "x$build_alias" != "x$host_alias"; then
1213     cross_compiling=yes
1214   fi
1215 fi
1216 
1217 ac_tool_prefix=
1218 test -n "$host_alias" && ac_tool_prefix=$host_alias-
1219 
1220 test "$silent" = yes && exec 6>/dev/null
1221 
1222 
1223 ac_pwd=`pwd` && test -n "$ac_pwd" &&
1224 ac_ls_di=`ls -di .` &&
1225 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1226   { echo "$as_me: error: Working directory cannot be determined" >&2
1227    { (exit 1); exit 1; }; }
1228 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1229   { echo "$as_me: error: pwd does not report name of working directory" >&2
1230    { (exit 1); exit 1; }; }
1231 
1232 
1233 # Find the source files, if location was not specified.
1234 if test -z "$srcdir"; then
1235   ac_srcdir_defaulted=yes
1236   # Try the directory containing this script, then the parent directory.
1237   ac_confdir=`$as_dirname -- "$0" ||
1238 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1239          X"$0" : 'X\(//\)[^/]' \| \
1240          X"$0" : 'X\(//\)$' \| \
1241          X"$0" : 'X\(/\)' \| . 2>/dev/null ||
1242 echo X"$0" |
1243     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1244             s//\1/
1245             q
1246           }
1247           /^X\(\/\/\)[^/].*/{
1248             s//\1/
1249             q
1250           }
1251           /^X\(\/\/\)$/{
1252             s//\1/
1253             q
1254           }
1255           /^X\(\/\).*/{
1256             s//\1/
1257             q
1258           }
1259           s/.*/./; q'`
1260   srcdir=$ac_confdir
1261   if test ! -r "$srcdir/$ac_unique_file"; then
1262     srcdir=..
1263   fi
1264 else
1265   ac_srcdir_defaulted=no
1266 fi
1267 if test ! -r "$srcdir/$ac_unique_file"; then
1268   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1269   { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1270    { (exit 1); exit 1; }; }
1271 fi
1272 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1273 ac_abs_confdir=`(
1274         cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
1275    { (exit 1); exit 1; }; }
1276         pwd)`
1277 # When building in place, set srcdir=.
1278 if test "$ac_abs_confdir" = "$ac_pwd"; then
1279   srcdir=.
1280 fi
1281 # Remove unnecessary trailing slashes from srcdir.
1282 # Double slashes in file names in object file debugging info
1283 # mess up M-x gdb in Emacs.
1284 case $srcdir in
1285 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1286 esac
1287 for ac_var in $ac_precious_vars; do
1288   eval ac_env_${ac_var}_set=\${${ac_var}+set}
1289   eval ac_env_${ac_var}_value=\$${ac_var}
1290   eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1291   eval ac_cv_env_${ac_var}_value=\$${ac_var}
1292 done
1293 
1294 #
1295 # Report the --help message.
1296 #
1297 if test "$ac_init_help" = "long"; then
1298   # Omit some internal or obsolete options to make the list less imposing.
1299   # This message is too long to be a string in the A/UX 3.1 sh.
1300   cat <<_ACEOF
1301 \`configure' configures Wine 1.1.2 to adapt to many kinds of systems.
1302 
1303 Usage: $0 [OPTION]... [VAR=VALUE]...
1304 
1305 To assign environment variables (e.g., CC, CFLAGS...), specify them as
1306 VAR=VALUE.  See below for descriptions of some of the useful variables.
1307 
1308 Defaults for the options are specified in brackets.
1309 
1310 Configuration:
1311   -h, --help              display this help and exit
1312       --help=short        display options specific to this package
1313       --help=recursive    display the short help of all the included packages
1314   -V, --version           display version information and exit
1315   -q, --quiet, --silent   do not print \`checking...' messages
1316       --cache-file=FILE   cache test results in FILE [disabled]
1317   -C, --config-cache      alias for \`--cache-file=config.cache'
1318   -n, --no-create         do not create output files
1319       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1320 
1321 Installation directories:
1322   --prefix=PREFIX         install architecture-independent files in PREFIX
1323                           [$ac_default_prefix]
1324   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1325                           [PREFIX]
1326 
1327 By default, \`make install' will install all the files in
1328 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1329 an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1330 for instance \`--prefix=\$HOME'.
1331 
1332 For better control, use the options below.
1333 
1334 Fine tuning of the installation directories:
1335   --bindir=DIR           user executables [EPREFIX/bin]
1336   --sbindir=DIR          system admin executables [EPREFIX/sbin]
1337   --libexecdir=DIR       program executables [EPREFIX/libexec]
1338   --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
1339   --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
1340   --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
1341   --libdir=DIR           object code libraries [EPREFIX/lib]
1342   --includedir=DIR       C header files [PREFIX/include]
1343   --oldincludedir=DIR    C header files for non-gcc [/usr/include]
1344   --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
1345   --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
1346   --infodir=DIR          info documentation [DATAROOTDIR/info]
1347   --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
1348   --mandir=DIR           man documentation [DATAROOTDIR/man]
1349   --docdir=DIR           documentation root [DATAROOTDIR/doc/wine]
1350   --htmldir=DIR          html documentation [DOCDIR]
1351   --dvidir=DIR           dvi documentation [DOCDIR]
1352   --pdfdir=DIR           pdf documentation [DOCDIR]
1353   --psdir=DIR            ps documentation [DOCDIR]
1354 _ACEOF
1355 
1356   cat <<\_ACEOF
1357 
1358 X features:
1359   --x-includes=DIR    X include files are in DIR
1360   --x-libraries=DIR   X library files are in DIR
1361 
1362 System types:
1363   --build=BUILD     configure for building on BUILD [guessed]
1364   --host=HOST       cross-compile to build programs to run on HOST [BUILD]
1365 _ACEOF
1366 fi
1367 
1368 if test -n "$ac_init_help"; then
1369   case $ac_init_help in
1370      short | recursive ) echo "Configuration of Wine 1.1.2:";;
1371    esac
1372   cat <<\_ACEOF
1373 
1374 Optional Features:
1375   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1376   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1377   --disable-win16         do not include Win16 support
1378   --enable-win64          build a Win64 emulator on AMD64 (won't run Win32
1379                           binaries)
1380   --enable-maintainer-mode
1381                           enable maintainer-specific build rules
1382 
1383 Optional Packages:
1384   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1385   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1386   --without-alsa          do not use the Alsa sound support
1387   --without-audioio       do not use the AudioIO sound support
1388   --without-capi          do not use CAPI (ISDN support)
1389   --without-cms           do not use CMS (color management support)
1390   --without-coreaudio     do not use the CoreAudio sound support
1391   --without-cups          do not use CUPS
1392   --without-curses        do not use (n)curses
1393   --without-esd           do not use the EsounD sound support
1394   --without-fontconfig    do not use fontconfig
1395   --without-freetype      do not use the FreeType library
1396   --without-gphoto        do not use gphoto (Digital Camera support)
1397   --without-glu           do not use the GLU library
1398   --without-hal           do not use HAL (dynamic device support)
1399   --without-jack          do not use the Jack sound support
1400   --without-jpeg          do not use JPEG
1401   --without-ldap          do not use LDAP
1402   --without-nas           do not use the NAS sound support
1403   --without-opengl        do not use OpenGL
1404   --without-openssl       do not use OpenSSL
1405   --without-oss           do not use the OSS sound support
1406   --without-png           do not use PNG
1407   --without-sane          do not use SANE (scanner support)
1408   --without-xcomposite    do not use the Xcomposite extension
1409   --without-xcursor       do not use the Xcursor extension
1410   --without-xinerama      do not use Xinerama (multi-monitor support)
1411   --without-xinput        do not use the Xinput extension
1412   --without-xml           do not use XML
1413   --without-xrandr        do not use Xrandr (resolution changes)
1414   --without-xrender       do not use the Xrender extension
1415   --without-xshape        do not use the Xshape extension
1416   --without-xshm          do not use XShm (shared memory extension)
1417   --without-xslt          do not use XSLT
1418   --without-xxf86vm       do not use XFree video mode extension
1419   --with-wine-tools=DIR   use Wine tools from directory DIR
1420   --with-x                use the X Window System
1421 
1422 Some influential environment variables:
1423   CC          C compiler command
1424   CFLAGS      C compiler flags
1425   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
1426               nonstandard directory <lib dir>
1427   LIBS        libraries to pass to the linker, e.g. -l<library>
1428   CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
1429               you have headers in a nonstandard directory <include dir>
1430   CXX         C++ compiler command
1431   CXXFLAGS    C++ compiler flags
1432   XMKMF       Path to xmkmf, Makefile generator for X Window System
1433   CPP         C preprocessor
1434 
1435 Use these variables to override the choices made by `configure' or to help
1436 it to find libraries and programs with nonstandard names/locations.
1437 
1438 Report bugs to <wine-devel@winehq.org>.
1439 _ACEOF
1440 ac_status=$?
1441 fi
1442 
1443 if test "$ac_init_help" = "recursive"; then
1444   # If there are subdirs, report their specific --help.
1445   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1446     test -d "$ac_dir" || continue
1447     ac_builddir=.
1448 
1449 case "$ac_dir" in
1450 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1451 *)
1452   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
1453   # A ".." for each directory in $ac_dir_suffix.
1454   ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
1455   case $ac_top_builddir_sub in
1456   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1457   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1458   esac ;;
1459 esac
1460 ac_abs_top_builddir=$ac_pwd
1461 ac_abs_builddir=$ac_pwd$ac_dir_suffix
1462 # for backward compatibility:
1463 ac_top_builddir=$ac_top_build_prefix
1464 
1465 case $srcdir in
1466   .)  # We are building in place.
1467     ac_srcdir=.
1468     ac_top_srcdir=$ac_top_builddir_sub
1469     ac_abs_top_srcdir=$ac_pwd ;;
1470   [\\/]* | ?:[\\/]* )  # Absolute name.
1471     ac_srcdir=$srcdir$ac_dir_suffix;
1472     ac_top_srcdir=$srcdir
1473     ac_abs_top_srcdir=$srcdir ;;
1474   *) # Relative name.
1475     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1476     ac_top_srcdir=$ac_top_build_prefix$srcdir
1477     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1478 esac
1479 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1480 
1481     cd "$ac_dir" || { ac_status=$?; continue; }
1482     # Check for guested configure.
1483     if test -f "$ac_srcdir/configure.gnu"; then
1484       echo &&
1485       $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1486     elif test -f "$ac_srcdir/configure"; then
1487       echo &&
1488       $SHELL "$ac_srcdir/configure" --help=recursive
1489     else
1490       echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1491     fi || ac_status=$?
1492     cd "$ac_pwd" || { ac_status=$?; break; }
1493   done
1494 fi
1495 
1496 test -n "$ac_init_help" && exit $ac_status
1497 if $ac_init_version; then
1498   cat <<\_ACEOF
1499 Wine configure 1.1.2
1500 generated by GNU Autoconf 2.61
1501 
1502 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
1503 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1504 This configure script is free software; the Free Software Foundation
1505 gives unlimited permission to copy, distribute and modify it.
1506 _ACEOF
1507   exit
1508 fi
1509 cat >config.log <<_ACEOF
1510 This file contains any messages produced by compilers while
1511 running configure, to aid debugging if configure makes a mistake.
1512 
1513 It was created by Wine $as_me 1.1.2, which was
1514 generated by GNU Autoconf 2.61.  Invocation command line was
1515 
1516   $ $0 $@
1517 
1518 _ACEOF
1519 exec 5>>config.log
1520 {
1521 cat <<_ASUNAME
1522 ## --------- ##
1523 ## Platform. ##
1524 ## --------- ##
1525 
1526 hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1527 uname -m = `(uname -m) 2>/dev/null || echo unknown`
1528 uname -r = `(uname -r) 2>/dev/null || echo unknown`
1529 uname -s = `(uname -s) 2>/dev/null || echo unknown`
1530 uname -v = `(uname -v) 2>/dev/null || echo unknown`
1531 
1532 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1533 /bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1534 
1535 /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1536 /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1537 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1538 /usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1539 /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1540 /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1541 /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1542 
1543 _ASUNAME
1544 
1545 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1546 for as_dir in $PATH
1547 do
1548   IFS=$as_save_IFS
1549   test -z "$as_dir" && as_dir=.
1550   echo "PATH: $as_dir"
1551 done
1552 IFS=$as_save_IFS
1553 
1554 } >&5
1555 
1556 cat >&5 <<_ACEOF
1557 
1558 
1559 ## ----------- ##
1560 ## Core tests. ##
1561 ## ----------- ##
1562 
1563 _ACEOF
1564 
1565 
1566 # Keep a trace of the command line.
1567 # Strip out --no-create and --no-recursion so they do not pile up.
1568 # Strip out --silent because we don't want to record it for future runs.
1569 # Also quote any args containing shell meta-characters.
1570 # Make two passes to allow for proper duplicate-argument suppression.
1571 ac_configure_args=
1572 ac_configure_args0=
1573 ac_configure_args1=
1574 ac_must_keep_next=false
1575 for ac_pass in 1 2
1576 do
1577   for ac_arg
1578   do
1579     case $ac_arg in
1580     -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1581     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1582     | -silent | --silent | --silen | --sile | --sil)
1583       continue ;;
1584     *\'*)
1585       ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1586     esac
1587     case $ac_pass in
1588     1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1589     2)
1590       ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1591       if test $ac_must_keep_next = true; then
1592         ac_must_keep_next=false # Got value, back to normal.
1593       else
1594         case $ac_arg in
1595           *=* | --config-cache | -C | -disable-* | --disable-* \
1596           | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1597           | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1598           | -with-* | --with-* | -without-* | --without-* | --x)
1599             case "$ac_configure_args0 " in
1600               "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1601             esac
1602             ;;
1603           -* ) ac_must_keep_next=true ;;
1604         esac
1605       fi
1606       ac_configure_args="$ac_configure_args '$ac_arg'"
1607       ;;
1608     esac
1609   done
1610 done
1611 $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1612 $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1613 
1614 # When interrupted or exit'd, cleanup temporary files, and complete
1615 # config.log.  We remove comments because anyway the quotes in there
1616 # would cause problems or look ugly.
1617 # WARNING: Use '\'' to represent an apostrophe within the trap.
1618 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1619 trap 'exit_status=$?
1620   # Save into config.log some information that might help in debugging.
1621   {
1622     echo
1623 
1624     cat <<\_ASBOX
1625 ## ---------------- ##
1626 ## Cache variables. ##
1627 ## ---------------- ##
1628 _ASBOX
1629     echo
1630     # The following way of writing the cache mishandles newlines in values,
1631 (
1632   for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1633     eval ac_val=\$$ac_var
1634     case $ac_val in #(
1635     *${as_nl}*)
1636       case $ac_var in #(
1637       *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
1638 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
1639       esac
1640       case $ac_var in #(
1641       _ | IFS | as_nl) ;; #(
1642       *) $as_unset $ac_var ;;
1643       esac ;;
1644     esac
1645   done
1646   (set) 2>&1 |
1647     case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1648     *${as_nl}ac_space=\ *)
1649       sed -n \
1650         "s/'\''/'\''\\\\'\'''\''/g;
1651           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1652       ;; #(
1653     *)
1654       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1655       ;;
1656     esac |
1657     sort
1658 )
1659     echo
1660 
1661     cat <<\_ASBOX
1662 ## ----------------- ##
1663 ## Output variables. ##
1664 ## ----------------- ##
1665 _ASBOX
1666     echo
1667     for ac_var in $ac_subst_vars
1668     do
1669       eval ac_val=\$$ac_var
1670       case $ac_val in
1671       *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1672       esac
1673       echo "$ac_var='\''$ac_val'\''"
1674     done | sort
1675     echo
1676 
1677     if test -n "$ac_subst_files"; then
1678       cat <<\_ASBOX
1679 ## ------------------- ##
1680 ## File substitutions. ##
1681 ## ------------------- ##
1682 _ASBOX
1683       echo
1684       for ac_var in $ac_subst_files
1685       do
1686         eval ac_val=\$$ac_var
1687         case $ac_val in
1688         *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1689         esac
1690         echo "$ac_var='\''$ac_val'\''"
1691       done | sort
1692       echo
1693     fi
1694 
1695     if test -s confdefs.h; then
1696       cat <<\_ASBOX
1697 ## ----------- ##
1698 ## confdefs.h. ##
1699 ## ----------- ##
1700 _ASBOX
1701       echo
1702       cat confdefs.h
1703       echo
1704     fi
1705     test "$ac_signal" != 0 &&
1706       echo "$as_me: caught signal $ac_signal"
1707     echo "$as_me: exit $exit_status"
1708   } >&5
1709   rm -f core *.core core.conftest.* &&
1710     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1711     exit $exit_status
1712 ' 0
1713 for ac_signal in 1 2 13 15; do
1714   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1715 done
1716 ac_signal=0
1717 
1718 # confdefs.h avoids OS command line length limits that DEFS can exceed.
1719 rm -f -r conftest* confdefs.h
1720 
1721 # Predefined preprocessor variables.
1722 
1723 cat >>confdefs.h <<_ACEOF
1724 #define PACKAGE_NAME "$PACKAGE_NAME"
1725 _ACEOF
1726 
1727 
1728 cat >>confdefs.h <<_ACEOF
1729 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1730 _ACEOF
1731 
1732 
1733 cat >>confdefs.h <<_ACEOF
1734 #define PACKAGE_VERSION "$PACKAGE_VERSION"
1735 _ACEOF
1736 
1737 
1738 cat >>confdefs.h <<_ACEOF
1739 #define PACKAGE_STRING "$PACKAGE_STRING"
1740 _ACEOF
1741 
1742 
1743 cat >>confdefs.h <<_ACEOF
1744 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1745 _ACEOF
1746 
1747 
1748 # Let the site file select an alternate cache file if it wants to.
1749 # Prefer explicitly selected file to automatically selected ones.
1750 if test -n "$CONFIG_SITE"; then
1751   set x "$CONFIG_SITE"
1752 elif test "x$prefix" != xNONE; then
1753   set x "$prefix/share/config.site" "$prefix/etc/config.site"
1754 else
1755   set x "$ac_default_prefix/share/config.site" \
1756         "$ac_default_prefix/etc/config.site"
1757 fi
1758 shift
1759 for ac_site_file
1760 do
1761   if test -r "$ac_site_file"; then
1762     { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1763 echo "$as_me: loading site script $ac_site_file" >&6;}
1764     sed 's/^/| /' "$ac_site_file" >&5
1765     . "$ac_site_file"
1766   fi
1767 done
1768 
1769 if test -r "$cache_file"; then
1770   # Some versions of bash will fail to source /dev/null (special
1771   # files actually), so we avoid doing that.
1772   if test -f "$cache_file"; then
1773     { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1774 echo "$as_me: loading cache $cache_file" >&6;}
1775     case $cache_file in
1776       [\\/]* | ?:[\\/]* ) . "$cache_file";;
1777       *)                      . "./$cache_file";;
1778     esac
1779   fi
1780 else
1781   { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1782 echo "$as_me: creating cache $cache_file" >&6;}
1783   >$cache_file
1784 fi
1785 
1786 # Check that the precious variables saved in the cache have kept the same
1787 # value.
1788 ac_cache_corrupted=false
1789 for ac_var in $ac_precious_vars; do
1790   eval ac_old_set=\$ac_cv_env_${ac_var}_set
1791   eval ac_new_set=\$ac_env_${ac_var}_set
1792   eval ac_old_val=\$ac_cv_env_${ac_var}_value
1793   eval ac_new_val=\$ac_env_${ac_var}_value
1794   case $ac_old_set,$ac_new_set in
1795     set,)
1796       { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1797 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1798       ac_cache_corrupted=: ;;
1799     ,set)
1800       { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1801 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1802       ac_cache_corrupted=: ;;
1803     ,);;
1804     *)
1805       if test "x$ac_old_val" != "x$ac_new_val"; then
1806         { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1807 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1808         { echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
1809 echo "$as_me:   former value:  $ac_old_val" >&2;}
1810         { echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
1811 echo "$as_me:   current value: $ac_new_val" >&2;}
1812         ac_cache_corrupted=:
1813       fi;;
1814   esac
1815   # Pass precious variables to config.status.
1816   if test "$ac_new_set" = set; then
1817     case $ac_new_val in
1818     *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1819     *) ac_arg=$ac_var=$ac_new_val ;;
1820     esac
1821     case " $ac_configure_args " in
1822       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1823       *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1824     esac
1825   fi
1826 done
1827 if $ac_cache_corrupted; then
1828   { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1829 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1830   { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1831 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1832    { (exit 1); exit 1; }; }
1833 fi
1834 
1835 
1836 
1837 
1838 
1839 
1840 
1841 
1842 
1843 
1844 
1845 
1846 
1847 
1848 
1849 
1850 
1851 
1852 
1853 
1854 
1855 
1856 
1857 
1858 
1859 ac_ext=c
1860 ac_cpp='$CPP $CPPFLAGS'
1861 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1862 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1863 ac_compiler_gnu=$ac_cv_c_compiler_gnu
1864 
1865 
1866 
1867 ac_config_headers="$ac_config_headers include/config.h"
1868 
1869 ac_aux_dir=
1870 for ac_dir in tools "$srcdir"/tools; do
1871   if test -f "$ac_dir/install-sh"; then
1872     ac_aux_dir=$ac_dir
1873     ac_install_sh="$ac_aux_dir/install-sh -c"
1874     break
1875   elif test -f "$ac_dir/install.sh"; then
1876     ac_aux_dir=$ac_dir
1877     ac_install_sh="$ac_aux_dir/install.sh -c"
1878     break
1879   elif test -f "$ac_dir/shtool"; then
1880     ac_aux_dir=$ac_dir
1881     ac_install_sh="$ac_aux_dir/shtool install -c"
1882     break
1883   fi
1884 done
1885 if test -z "$ac_aux_dir"; then
1886   { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in tools \"$srcdir\"/tools" >&5
1887 echo "$as_me: error: cannot find install-sh or install.sh in tools \"$srcdir\"/tools" >&2;}
1888    { (exit 1); exit 1; }; }
1889 fi
1890 
1891 # These three variables are undocumented and unsupported,
1892 # and are intended to be withdrawn in a future Autoconf release.
1893 # They can cause serious problems if a builder's source tree is in a directory
1894 # whose full name contains unusual characters.
1895 ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1896 ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1897 ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1898 
1899 
1900 
1901 
1902 # Check whether --enable-win16 was given.
1903 if test "${enable_win16+set}" = set; then
1904   enableval=$enable_win16;
1905 fi
1906 
1907 # Check whether --enable-win64 was given.
1908 if test "${enable_win64+set}" = set; then
1909   enableval=$enable_win64;
1910 fi
1911 
1912 # Check whether --enable-maintainer-mode was given.
1913 if test "${enable_maintainer_mode+set}" = set; then
1914   enableval=$enable_maintainer_mode;
1915 else
1916   MAINTAINER_MODE=\#
1917 
1918 fi
1919 
1920 
1921 
1922 # Check whether --with-alsa was given.
1923 if test "${with_alsa+set}" = set; then
1924   withval=$with_alsa; if test "x$withval" = "xno"; then ac_cv_header_sys_asoundlib_h=no; ac_cv_header_alsa_asoundlib_h=no; fi
1925 fi
1926 
1927 
1928 # Check whether --with-audioio was given.
1929 if test "${with_audioio+set}" = set; then
1930   withval=$with_audioio; if test "x$withval" = "xno"; then ac_cv_header_libaudioio_h=no; fi
1931 fi
1932 
1933 
1934 # Check whether --with-capi was given.
1935 if test "${with_capi+set}" = set; then
1936   withval=$with_capi; if test "x$withval" = "xno"; then ac_cv_header_capi20_h=no; ac_cv_header_linux_capi_h=no; fi
1937 fi
1938 
1939 
1940 # Check whether --with-cms was given.
1941 if test "${with_cms+set}" = set; then
1942   withval=$with_cms; if test "x$withval" = "xno"; then ac_cv_header_lcms_h=no; ac_cv_header_lcms_lcms_h=no; fi
1943 fi
1944 
1945 
1946 # Check whether --with-coreaudio was given.
1947 if test "${with_coreaudio+set}" = set; then
1948   withval=$with_coreaudio; if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi
1949 fi
1950 
1951 
1952 # Check whether --with-cups was given.
1953 if test "${with_cups+set}" = set; then
1954   withval=$with_cups;
1955 fi
1956 
1957 
1958 # Check whether --with-curses was given.
1959 if test "${with_curses+set}" = set; then
1960   withval=$with_curses; if test "x$withval" = "xno"; then ac_cv_header_ncurses_h=no; ac_cv_header_curses_h=no; fi
1961 fi
1962 
1963 
1964 # Check whether --with-esd was given.
1965 if test "${with_esd+set}" = set; then
1966   withval=$with_esd;
1967 fi
1968 
1969 
1970 # Check whether --with-fontconfig was given.
1971 if test "${with_fontconfig+set}" = set; then
1972   withval=$with_fontconfig; if test "x$withval" = "xno"; then ac_cv_header_fontconfig_fontconfig_h=no; fi
1973 fi
1974 
1975 
1976 # Check whether --with-freetype was given.
1977 if test "${with_freetype+set}" = set; then
1978   withval=$with_freetype;
1979 fi
1980 
1981 
1982 # Check whether --with-gphoto was given.
1983 if test "${with_gphoto+set}" = set; then
1984   withval=$with_gphoto;
1985 fi
1986 
1987 
1988 # Check whether --with-glu was given.
1989 if test "${with_glu+set}" = set; then
1990   withval=$with_glu; if test "x$withval" = "xno"; then ac_cv_header_GL_glu_h=no; fi
1991 fi
1992 
1993 
1994 # Check whether --with-hal was given.
1995 if test "${with_hal+set}" = set; then
1996   withval=$with_hal;
1997 fi
1998 
1999 
2000 # Check whether --with-jack was given.
2001 if test "${with_jack+set}" = set; then
2002   withval=$with_jack; if test "x$withval" = "xno"; then ac_cv_header_jack_jack_h=no; fi
2003 fi
2004 
2005 
2006 # Check whether --with-jpeg was given.
2007 if test "${with_jpeg+set}" = set; then
2008   withval=$with_jpeg; if test "x$withval" = "xno"; then ac_cv_header_jpeglib_h=no; fi
2009 fi
2010 
2011 
2012 # Check whether --with-ldap was given.
2013 if test "${with_ldap+set}" = set; then
2014   withval=$with_ldap; if test "x$withval" = "xno"; then ac_cv_header_ldap_h=no; ac_cv_header_lber_h=no; fi
2015 fi
2016 
2017 
2018 # Check whether --with-nas was given.
2019 if test "${with_nas+set}" = set; then
2020   withval=$with_nas; if test "x$withval" = "xno"; then ac_cv_header_audio_audiolib_h=no; fi
2021 fi
2022 
2023 
2024 # Check whether --with-opengl was given.
2025 if test "${with_opengl+set}" = set; then
2026   withval=$with_opengl;
2027 fi
2028 
2029 
2030 # Check whether --with-openssl was given.
2031 if test "${with_openssl+set}" = set; then
2032   withval=$with_openssl; if test "x$withval" = "xno"; then ac_cv_header_openssl_err_h=no; ac_cv_header_openssl_ssl_h=no; fi
2033 fi
2034 
2035 
2036 # Check whether --with-oss was given.
2037 if test "${with_oss+set}" = set; then
2038   withval=$with_oss; if test "x$withval" = "xno"; then ac_cv_header_soundcard_h=no; ac_cv_header_sys_soundcard_h=no; ac_cv_header_machine_soundcard_h=no; fi
2039 fi
2040 
2041 
2042 # Check whether --with-png was given.
2043 if test "${with_png+set}" = set; then
2044   withval=$with_png; if test "x$withval" = "xno"; then ac_cv_header_png_h=no; fi
2045 fi
2046 
2047 
2048 # Check whether --with-sane was given.
2049 if test "${with_sane+set}" = set; then
2050   withval=$with_sane;
2051 fi
2052 
2053 
2054 # Check whether --with-xcomposite was given.
2055 if test "${with_xcomposite+set}" = set; then
2056   withval=$with_xcomposite; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi
2057 fi
2058 
2059 
2060 # Check whether --with-xcursor was given.
2061 if test "${with_xcursor+set}" = set; then
2062   withval=$with_xcursor; if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi
2063 fi
2064 
2065 
2066 # Check whether --with-xinerama was given.
2067 if test "${with_xinerama+set}" = set; then
2068   withval=$with_xinerama; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi
2069 fi
2070 
2071 
2072 # Check whether --with-xinput was given.
2073 if test "${with_xinput+set}" = set; then
2074   withval=$with_xinput; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi
2075 fi
2076 
2077 
2078 # Check whether --with-xml was given.
2079 if test "${with_xml+set}" = set; then
2080   withval=$with_xml;
2081 fi
2082 
2083 
2084 # Check whether --with-xrandr was given.
2085 if test "${with_xrandr+set}" = set; then
2086   withval=$with_xrandr; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi
2087 fi
2088 
2089 
2090 # Check whether --with-xrender was given.
2091 if test "${with_xrender+set}" = set; then
2092   withval=$with_xrender; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi
2093 fi
2094 
2095 
2096 # Check whether --with-xshape was given.
2097 if test "${with_xshape+set}" = set; then
2098   withval=$with_xshape; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi
2099 fi
2100 
2101 
2102 # Check whether --with-xshm was given.
2103 if test "${with_xshm+set}" = set; then
2104   withval=$with_xshm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi
2105 fi
2106 
2107 
2108 # Check whether --with-xslt was given.
2109 if test "${with_xslt+set}" = set; then
2110   withval=$with_xslt;
2111 fi
2112 
2113 
2114 # Check whether --with-xxf86vm was given.
2115 if test "${with_xxf86vm+set}" = set; then
2116   withval=$with_xxf86vm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; fi
2117 fi
2118 
2119 
2120 
2121 # Check whether --with-wine-tools was given.
2122 if test "${with_wine_tools+set}" = set; then
2123   withval=$with_wine_tools;
2124 fi
2125 
2126 
2127 # Make sure we can run config.sub.
2128 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
2129   { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
2130 echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
2131    { (exit 1); exit 1; }; }
2132 
2133 { echo "$as_me:$LINENO: checking build system type" >&5
2134 echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
2135 if test "${ac_cv_build+set}" = set; then
2136   echo $ECHO_N "(cached) $ECHO_C" >&6
2137 else
2138   ac_build_alias=$build_alias
2139 test "x$ac_build_alias" = x &&
2140   ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
2141 test "x$ac_build_alias" = x &&
2142   { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
2143 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
2144    { (exit 1); exit 1; }; }
2145 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
2146   { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
2147 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
2148    { (exit 1); exit 1; }; }
2149 
2150 fi
2151 { echo "$as_me:$LINENO: result: $ac_cv_build" >&5
2152 echo "${ECHO_T}$ac_cv_build" >&6; }
2153 case $ac_cv_build in
2154 *-*-*) ;;
2155 *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
2156 echo "$as_me: error: invalid value of canonical build" >&2;}
2157    { (exit 1); exit 1; }; };;
2158 esac
2159 build=$ac_cv_build
2160 ac_save_IFS=$IFS; IFS='-'
2161 set x $ac_cv_build
2162 shift
2163 build_cpu=$1
2164 build_vendor=$2
2165 shift; shift
2166 # Remember, the first character of IFS is used to create $*,
2167 # except with old shells:
2168 build_os=$*
2169 IFS=$ac_save_IFS
2170 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
2171 
2172 
2173 { echo "$as_me:$LINENO: checking host system type" >&5
2174 echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
2175 if test "${ac_cv_host+set}" = set; then
2176   echo $ECHO_N "(cached) $ECHO_C" >&6
2177 else
2178   if test "x$host_alias" = x; then
2179   ac_cv_host=$ac_cv_build
2180 else
2181   ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
2182     { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
2183 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
2184    { (exit 1); exit 1; }; }
2185 fi
2186 
2187 fi
2188 { echo "$as_me:$LINENO: result: $ac_cv_host" >&5
2189 echo "${ECHO_T}$ac_cv_host" >&6; }
2190 case $ac_cv_host in
2191 *-*-*) ;;
2192 *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
2193 echo "$as_me: error: invalid value of canonical host" >&2;}
2194    { (exit 1); exit 1; }; };;
2195 esac
2196 host=$ac_cv_host
2197 ac_save_IFS=$IFS; IFS='-'
2198 set x $ac_cv_host
2199 shift
2200 host_cpu=$1
2201 host_vendor=$2
2202 shift; shift
2203 # Remember, the first character of IFS is used to create $*,
2204 # except with old shells:
2205 host_os=$*
2206 IFS=$ac_save_IFS
2207 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
2208 
2209 
2210 case $host in
2211   x86_64*linux*)
2212     if test "x$enable_win64" != "xyes"
2213     then
2214       test -n "$CC" || CC="gcc -m32"
2215       test -n "$CXX"|| CXX="g++ -m32"
2216       test -n "$LD" || LD="ld -m elf_i386"
2217       test -n "$AS" || AS="as --32"
2218       host_cpu="i386"
2219     fi
2220     ;;
2221 esac
2222 
2223 case $host_cpu in
2224   *i[3456789]86*)
2225     if test "x$enable_win16" != "xno"
2226     then
2227       enable_win16="yes"
2228     fi
2229     ;;
2230 esac
2231 
2232 WIN16_FILES="\$(WIN16_FILES)"
2233 
2234 WIN16_INSTALL="\$(WIN16_INSTALL)"
2235 
2236 if test "x$enable_win16" != "xyes"
2237 then
2238   WIN16_FILES=""
2239   WIN16_INSTALL=""
2240 fi
2241 
2242 case "$srcdir" in
2243  .) ;;
2244  *) if test -f "$srcdir/Makefile" -o -f "$srcdir/include/config.h"; then
2245       { { echo "$as_me:$LINENO: error: you are building out of the source tree, but the source tree contains object files.
2246 You need to run 'make distclean' in the source tree first." >&5
2247 echo "$as_me: error: you are building out of the source tree, but the source tree contains object files.
2248 You need to run 'make distclean' in the source tree first." >&2;}
2249    { (exit 1); exit 1; }; }
2250     fi ;;
2251 esac
2252 
2253 
2254 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2255 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
2256 set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2257 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
2258   echo $ECHO_N "(cached) $ECHO_C" >&6
2259 else
2260   cat >conftest.make <<\_ACEOF
2261 SHELL = /bin/sh
2262 all:
2263         @echo '@@@%%%=$(MAKE)=@@@%%%'
2264 _ACEOF
2265 # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2266 case `${MAKE-make} -f conftest.make 2>/dev/null` in
2267   *@@@%%%=?*=@@@%%%*)
2268     eval ac_cv_prog_make_${ac_make}_set=yes;;
2269   *)
2270     eval ac_cv_prog_make_${ac_make}_set=no;;
2271 esac
2272 rm -f conftest.make
2273 fi
2274 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2275   { echo "$as_me:$LINENO: result: yes" >&5
2276 echo "${ECHO_T}yes" >&6; }
2277   SET_MAKE=
2278 else
2279   { echo "$as_me:$LINENO: result: no" >&5
2280 echo "${ECHO_T}no" >&6; }
2281   SET_MAKE="MAKE=${MAKE-make}"
2282 fi
2283 
2284 ac_ext=c
2285 ac_cpp='$CPP $CPPFLAGS'
2286 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2287 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2288 ac_compiler_gnu=$ac_cv_c_compiler_gnu
2289 if test -n "$ac_tool_prefix"; then
2290   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2291 set dummy ${ac_tool_prefix}gcc; ac_word=$2
2292 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2293 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2294 if test "${ac_cv_prog_CC+set}" = set; then
2295   echo $ECHO_N "(cached) $ECHO_C" >&6
2296 else
2297   if test -n "$CC"; then
2298   ac_cv_prog_CC="$CC" # Let the user override the test.
2299 else
2300 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2301 for as_dir in $PATH
2302 do
2303   IFS=$as_save_IFS
2304   test -z "$as_dir" && as_dir=.
2305   for ac_exec_ext in '' $ac_executable_extensions; do
2306   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2307     ac_cv_prog_CC="${ac_tool_prefix}gcc"
2308     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2309     break 2
2310   fi
2311 done
2312 done
2313 IFS=$as_save_IFS
2314 
2315 fi
2316 fi
2317 CC=$ac_cv_prog_CC
2318 if test -n "$CC"; then
2319   { echo "$as_me:$LINENO: result: $CC" >&5
2320 echo "${ECHO_T}$CC" >&6; }
2321 else
2322   { echo "$as_me:$LINENO: result: no" >&5
2323 echo "${ECHO_T}no" >&6; }
2324 fi
2325 
2326 
2327 fi
2328 if test -z "$ac_cv_prog_CC"; then
2329   ac_ct_CC=$CC
2330   # Extract the first word of "gcc", so it can be a program name with args.
2331 set dummy gcc; ac_word=$2
2332 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2333 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2334 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
2335   echo $ECHO_N "(cached) $ECHO_C" >&6
2336 else
2337   if test -n "$ac_ct_CC"; then
2338   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2339 else
2340 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2341 for as_dir in $PATH
2342 do
2343   IFS=$as_save_IFS
2344   test -z "$as_dir" && as_dir=.
2345   for ac_exec_ext in '' $ac_executable_extensions; do
2346   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2347     ac_cv_prog_ac_ct_CC="gcc"
2348     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2349     break 2
2350   fi
2351 done
2352 done
2353 IFS=$as_save_IFS
2354 
2355 fi
2356 fi
2357 ac_ct_CC=$ac_cv_prog_ac_ct_CC
2358 if test -n "$ac_ct_CC"; then
2359   { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
2360 echo "${ECHO_T}$ac_ct_CC" >&6; }
2361 else
2362   { echo "$as_me:$LINENO: result: no" >&5
2363 echo "${ECHO_T}no" >&6; }
2364 fi
2365 
2366   if test "x$ac_ct_CC" = x; then
2367     CC=""
2368   else
2369     case $cross_compiling:$ac_tool_warned in
2370 yes:)
2371 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2372 whose name does not start with the host triplet.  If you think this
2373 configuration is useful to you, please write to autoconf@gnu.org." >&5
2374 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2375 whose name does not start with the host triplet.  If you think this
2376 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2377 ac_tool_warned=yes ;;
2378 esac
2379     CC=$ac_ct_CC
2380   fi
2381 else
2382   CC="$ac_cv_prog_CC"
2383 fi
2384 
2385 if test -z "$CC"; then
2386           if test -n "$ac_tool_prefix"; then
2387     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2388 set dummy ${ac_tool_prefix}cc; ac_word=$2
2389 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2390 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2391 if test "${ac_cv_prog_CC+set}" = set; then
2392   echo $ECHO_N "(cached) $ECHO_C" >&6
2393 else
2394   if test -n "$CC"; then
2395   ac_cv_prog_CC="$CC" # Let the user override the test.
2396 else
2397 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2398 for as_dir in $PATH
2399 do
2400   IFS=$as_save_IFS
2401   test -z "$as_dir" && as_dir=.
2402   for ac_exec_ext in '' $ac_executable_extensions; do
2403   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2404     ac_cv_prog_CC="${ac_tool_prefix}cc"
2405     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2406     break 2
2407   fi
2408 done
2409 done
2410 IFS=$as_save_IFS
2411 
2412 fi
2413 fi
2414 CC=$ac_cv_prog_CC
2415 if test -n "$CC"; then
2416   { echo "$as_me:$LINENO: result: $CC" >&5
2417 echo "${ECHO_T}$CC" >&6; }
2418 else
2419   { echo "$as_me:$LINENO: result: no" >&5
2420 echo "${ECHO_T}no" >&6; }
2421 fi
2422 
2423 
2424   fi
2425 fi
2426 if test -z "$CC"; then
2427   # Extract the first word of "cc", so it can be a program name with args.
2428 set dummy cc; ac_word=$2
2429 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2430 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2431 if test "${ac_cv_prog_CC+set}" = set; then
2432   echo $ECHO_N "(cached) $ECHO_C" >&6
2433 else
2434   if test -n "$CC"; then
2435   ac_cv_prog_CC="$CC" # Let the user override the test.
2436 else
2437   ac_prog_rejected=no
2438 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2439 for as_dir in $PATH
2440 do
2441   IFS=$as_save_IFS
2442   test -z "$as_dir" && as_dir=.
2443   for ac_exec_ext in '' $ac_executable_extensions; do
2444   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2445     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
2446        ac_prog_rejected=yes
2447        continue
2448      fi
2449     ac_cv_prog_CC="cc"
2450     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2451     break 2
2452   fi
2453 done
2454 done
2455 IFS=$as_save_IFS
2456 
2457 if test $ac_prog_rejected = yes; then
2458   # We found a bogon in the path, so make sure we never use it.
2459   set dummy $ac_cv_prog_CC
2460   shift
2461   if test $# != 0; then
2462     # We chose a different compiler from the bogus one.
2463     # However, it has the same basename, so the bogon will be chosen
2464     # first if we set CC to just the basename; use the full file name.
2465     shift
2466     ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
2467   fi
2468 fi
2469 fi
2470 fi
2471 CC=$ac_cv_prog_CC
2472 if test -n "$CC"; then
2473   { echo "$as_me:$LINENO: result: $CC" >&5
2474 echo "${ECHO_T}$CC" >&6; }
2475 else
2476   { echo "$as_me:$LINENO: result: no" >&5
2477 echo "${ECHO_T}no" >&6; }
2478 fi
2479 
2480 
2481 fi
2482 if test -z "$CC"; then
2483   if test -n "$ac_tool_prefix"; then
2484   for ac_prog in cl.exe
2485   do
2486     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2487 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2488 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2489 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2490 if test "${ac_cv_prog_CC+set}" = set; then
2491   echo $ECHO_N "(cached) $ECHO_C" >&6
2492 else
2493   if test -n "$CC"; then
2494   ac_cv_prog_CC="$CC" # Let the user override the test.
2495 else
2496 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2497 for as_dir in $PATH
2498 do
2499   IFS=$as_save_IFS
2500   test -z "$as_dir" && as_dir=.
2501   for ac_exec_ext in '' $ac_executable_extensions; do
2502   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2503     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
2504     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2505     break 2
2506   fi
2507 done
2508 done
2509 IFS=$as_save_IFS
2510 
2511 fi
2512 fi
2513 CC=$ac_cv_prog_CC
2514 if test -n "$CC"; then
2515   { echo "$as_me:$LINENO: result: $CC" >&5
2516 echo "${ECHO_T}$CC" >&6; }
2517 else
2518   { echo "$as_me:$LINENO: result: no" >&5
2519 echo "${ECHO_T}no" >&6; }
2520 fi
2521 
2522 
2523     test -n "$CC" && break
2524   done
2525 fi
2526 if test -z "$CC"; then
2527   ac_ct_CC=$CC
2528   for ac_prog in cl.exe
2529 do
2530   # Extract the first word of "$ac_prog", so it can be a program name with args.
2531 set dummy $ac_prog; ac_word=$2
2532 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2533 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2534 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
2535   echo $ECHO_N "(cached) $ECHO_C" >&6
2536 else
2537   if test -n "$ac_ct_CC"; then
2538   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2539 else
2540 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2541 for as_dir in $PATH
2542 do
2543   IFS=$as_save_IFS
2544   test -z "$as_dir" && as_dir=.
2545   for ac_exec_ext in '' $ac_executable_extensions; do
2546   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2547     ac_cv_prog_ac_ct_CC="$ac_prog"
2548     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2549     break 2
2550   fi
2551 done
2552 done
2553 IFS=$as_save_IFS
2554 
2555 fi
2556 fi
2557 ac_ct_CC=$ac_cv_prog_ac_ct_CC
2558 if test -n "$ac_ct_CC"; then
2559   { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
2560 echo "${ECHO_T}$ac_ct_CC" >&6; }
2561 else
2562   { echo "$as_me:$LINENO: result: no" >&5
2563 echo "${ECHO_T}no" >&6; }
2564 fi
2565 
2566 
2567   test -n "$ac_ct_CC" && break
2568 done
2569 
2570   if test "x$ac_ct_CC" = x; then
2571     CC=""
2572   else
2573     case $cross_compiling:$ac_tool_warned in
2574 yes:)
2575 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2576 whose name does not start with the host triplet.  If you think this
2577 configuration is useful to you, please write to autoconf@gnu.org." >&5
2578 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2579 whose name does not start with the host triplet.  If you think this
2580 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2581 ac_tool_warned=yes ;;
2582 esac
2583     CC=$ac_ct_CC
2584   fi
2585 fi
2586 
2587 fi
2588 
2589 
2590 test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
2591 See \`config.log' for more details." >&5
2592 echo "$as_me: error: no acceptable C compiler found in \$PATH
2593 See \`config.log' for more details." >&2;}
2594    { (exit 1); exit 1; }; }
2595 
2596 # Provide some information about the compiler.
2597 echo "$as_me:$LINENO: checking for C compiler version" >&5
2598 ac_compiler=`set X $ac_compile; echo $2`
2599 { (ac_try="$ac_compiler --version >&5"
2600 case "(($ac_try" in
2601   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2602   *) ac_try_echo=$ac_try;;
2603 esac
2604 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2605   (eval "$ac_compiler --version >&5") 2>&5
2606   ac_status=$?
2607   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2608   (exit $ac_status); }
2609 { (ac_try="$ac_compiler -v >&5"
2610 case "(($ac_try" in
2611   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2612   *) ac_try_echo=$ac_try;;
2613 esac
2614 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2615   (eval "$ac_compiler -v >&5") 2>&5
2616   ac_status=$?
2617   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2618   (exit $ac_status); }
2619 { (ac_try="$ac_compiler -V >&5"
2620 case "(($ac_try" in
2621   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2622   *) ac_try_echo=$ac_try;;
2623 esac
2624 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2625   (eval "$ac_compiler -V >&5") 2>&5
2626   ac_status=$?
2627   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2628   (exit $ac_status); }
2629 
2630 cat >conftest.$ac_ext <<_ACEOF
2631 /* confdefs.h.  */
2632 _ACEOF
2633 cat confdefs.h >>conftest.$ac_ext
2634 cat >>conftest.$ac_ext <<_ACEOF
2635 /* end confdefs.h.  */
2636 
2637 int
2638 main ()
2639 {
2640 
2641   ;
2642   return 0;
2643 }
2644 _ACEOF
2645 ac_clean_files_save=$ac_clean_files
2646 ac_clean_files="$ac_clean_files a.out a.exe b.out"
2647 # Try to create an executable without -o first, disregard a.out.
2648 # It will help us diagnose broken compilers, and finding out an intuition
2649 # of exeext.
2650 { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
2651 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
2652 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
2653 #
2654 # List of possible output files, starting from the most likely.
2655 # The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
2656 # only as a last resort.  b.out is created by i960 compilers.
2657 ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
2658 #
2659 # The IRIX 6 linker writes into existing files which may not be
2660 # executable, retaining their permissions.  Remove them first so a
2661 # subsequent execution test works.
2662 ac_rmfiles=
2663 for ac_file in $ac_files
2664 do
2665   case $ac_file in
2666     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
2667     * ) ac_rmfiles="$ac_rmfiles $ac_file";;
2668   esac
2669 done
2670 rm -f $ac_rmfiles
2671 
2672 if { (ac_try="$ac_link_default"
2673 case "(($ac_try" in
2674   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2675   *) ac_try_echo=$ac_try;;
2676 esac
2677 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2678   (eval "$ac_link_default") 2>&5
2679   ac_status=$?
2680   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2681   (exit $ac_status); }; then
2682   # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
2683 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
2684 # in a Makefile.  We should not override ac_cv_exeext if it was cached,
2685 # so that the user can short-circuit this test for compilers unknown to
2686 # Autoconf.
2687 for ac_file in $ac_files ''
2688 do
2689   test -f "$ac_file" || continue
2690   case $ac_file in
2691     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
2692         ;;
2693     [ab].out )
2694         # We found the default executable, but exeext='' is most
2695         # certainly right.
2696         break;;
2697     *.* )
2698         if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
2699         then :; else
2700            ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
2701         fi
2702         # We set ac_cv_exeext here because the later test for it is not
2703         # safe: cross compilers may not add the suffix if given an `-o'
2704         # argument, so we may need to know it at that point already.
2705         # Even if this section looks crufty: it has the advantage of
2706         # actually working.
2707         break;;
2708     * )
2709         break;;
2710   esac
2711 done
2712 test "$ac_cv_exeext" = no && ac_cv_exeext=
2713 
2714 else
2715   ac_file=''
2716 fi
2717 
2718 { echo "$as_me:$LINENO: result: $ac_file" >&5
2719 echo "${ECHO_T}$ac_file" >&6; }
2720 if test -z "$ac_file"; then
2721   echo "$as_me: failed program was:" >&5
2722 sed 's/^/| /' conftest.$ac_ext >&5
2723 
2724 { { echo "$as_me:$LINENO: error: C compiler cannot create executables
2725 See \`config.log' for more details." >&5
2726 echo "$as_me: error: C compiler cannot create executables
2727 See \`config.log' for more details." >&2;}
2728    { (exit 77); exit 77; }; }
2729 fi
2730 
2731 ac_exeext=$ac_cv_exeext
2732 
2733 # Check that the compiler produces executables we can run.  If not, either
2734 # the compiler is broken, or we cross compile.
2735 { echo "$as_me:$LINENO: checking whether the C compiler works" >&5
2736 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
2737 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
2738 # If not cross compiling, check that we can run a simple program.
2739 if test "$cross_compiling" != yes; then
2740   if { ac_try='./$ac_file'
2741   { (case "(($ac_try" in
2742   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2743   *) ac_try_echo=$ac_try;;
2744 esac
2745 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2746   (eval "$ac_try") 2>&5
2747   ac_status=$?
2748   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2749   (exit $ac_status); }; }; then
2750     cross_compiling=no
2751   else
2752     if test "$cross_compiling" = maybe; then
2753         cross_compiling=yes
2754     else
2755         { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
2756 If you meant to cross compile, use \`--host'.
2757 See \`config.log' for more details." >&5
2758 echo "$as_me: error: cannot run C compiled programs.
2759 If you meant to cross compile, use \`--host'.
2760 See \`config.log' for more details." >&2;}
2761    { (exit 1); exit 1; }; }
2762     fi
2763   fi
2764 fi
2765 { echo "$as_me:$LINENO: result: yes" >&5
2766 echo "${ECHO_T}yes" >&6; }
2767 
2768 rm -f a.out a.exe conftest$ac_cv_exeext b.out
2769 ac_clean_files=$ac_clean_files_save
2770 # Check that the compiler produces executables we can run.  If not, either
2771 # the compiler is broken, or we cross compile.
2772 { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
2773 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
2774 { echo "$as_me:$LINENO: result: $cross_compiling" >&5
2775 echo "${ECHO_T}$cross_compiling" >&6; }
2776 
2777 { echo "$as_me:$LINENO: checking for suffix of executables" >&5
2778 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
2779 if { (ac_try="$ac_link"
2780 case "(($ac_try" in
2781   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2782   *) ac_try_echo=$ac_try;;
2783 esac
2784 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2785   (eval "$ac_link") 2>&5
2786   ac_status=$?
2787   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2788   (exit $ac_status); }; then
2789   # If both `conftest.exe' and `conftest' are `present' (well, observable)
2790 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
2791 # work properly (i.e., refer to `conftest.exe'), while it won't with
2792 # `rm'.
2793 for ac_file in conftest.exe conftest conftest.*; do
2794   test -f "$ac_file" || continue
2795   case $ac_file in
2796     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
2797     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
2798           break;;
2799     * ) break;;
2800   esac
2801 done
2802 else
2803   { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
2804 See \`config.log' for more details." >&5
2805 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
2806 See \`config.log' for more details." >&2;}
2807    { (exit 1); exit 1; }; }
2808 fi
2809 
2810 rm -f conftest$ac_cv_exeext
2811 { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
2812 echo "${ECHO_T}$ac_cv_exeext" >&6; }
2813 
2814 rm -f conftest.$ac_ext
2815 EXEEXT=$ac_cv_exeext
2816 ac_exeext=$EXEEXT
2817 { echo "$as_me:$LINENO: checking for suffix of object files" >&5
2818 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
2819 if test "${ac_cv_objext+set}" = set; then
2820   echo $ECHO_N "(cached) $ECHO_C" >&6
2821 else
2822   cat >conftest.$ac_ext <<_ACEOF
2823 /* confdefs.h.  */
2824 _ACEOF
2825 cat confdefs.h >>conftest.$ac_ext
2826 cat >>conftest.$ac_ext <<_ACEOF
2827 /* end confdefs.h.  */
2828 
2829 int
2830 main ()
2831 {
2832 
2833   ;
2834   return 0;
2835 }
2836 _ACEOF
2837 rm -f conftest.o conftest.obj
2838 if { (ac_try="$ac_compile"
2839 case "(($ac_try" in
2840   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2841   *) ac_try_echo=$ac_try;;
2842 esac
2843 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2844   (eval "$ac_compile") 2>&5
2845   ac_status=$?
2846   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2847   (exit $ac_status); }; then
2848   for ac_file in conftest.o conftest.obj conftest.*; do
2849   test -f "$ac_file" || continue;
2850   case $ac_file in
2851     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
2852     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
2853        break;;
2854   esac
2855 done
2856 else
2857   echo "$as_me: failed program was:" >&5
2858 sed 's/^/| /' conftest.$ac_ext >&5
2859 
2860 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
2861 See \`config.log' for more details." >&5
2862 echo "$as_me: error: cannot compute suffix of object files: cannot compile
2863 See \`config.log' for more details." >&2;}
2864    { (exit 1); exit 1; }; }
2865 fi
2866 
2867 rm -f conftest.$ac_cv_objext conftest.$ac_ext
2868 fi
2869 { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
2870 echo "${ECHO_T}$ac_cv_objext" >&6; }
2871 OBJEXT=$ac_cv_objext
2872 ac_objext=$OBJEXT
2873 { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
2874 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
2875 if test "${ac_cv_c_compiler_gnu+set}" = set; then
2876   echo $ECHO_N "(cached) $ECHO_C" >&6
2877 else
2878   cat >conftest.$ac_ext <<_ACEOF
2879 /* confdefs.h.  */
2880 _ACEOF
2881 cat confdefs.h >>conftest.$ac_ext
2882 cat >>conftest.$ac_ext <<_ACEOF
2883 /* end confdefs.h.  */
2884 
2885 int
2886 main ()
2887 {
2888 #ifndef __GNUC__
2889        choke me
2890 #endif
2891 
2892   ;
2893   return 0;
2894 }
2895 _ACEOF
2896 rm -f conftest.$ac_objext
2897 if { (ac_try="$ac_compile"
2898 case "(($ac_try" in
2899   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2900   *) ac_try_echo=$ac_try;;
2901 esac
2902 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2903   (eval "$ac_compile") 2>conftest.er1
2904   ac_status=$?
2905   grep -v '^ *+' conftest.er1 >conftest.err
2906   rm -f conftest.er1
2907   cat conftest.err >&5
2908   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2909   (exit $ac_status); } && {
2910          test -z "$ac_c_werror_flag" ||
2911          test ! -s conftest.err
2912        } && test -s conftest.$ac_objext; then
2913   ac_compiler_gnu=yes
2914 else
2915   echo "$as_me: failed program was:" >&5
2916 sed 's/^/| /' conftest.$ac_ext >&5
2917 
2918         ac_compiler_gnu=no
2919 fi
2920 
2921 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2922 ac_cv_c_compiler_gnu=$ac_compiler_gnu
2923 
2924 fi
2925 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
2926 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
2927 GCC=`test $ac_compiler_gnu = yes && echo yes`
2928 ac_test_CFLAGS=${CFLAGS+set}
2929 ac_save_CFLAGS=$CFLAGS
2930 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
2931 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
2932 if test "${ac_cv_prog_cc_g+set}" = set; then
2933   echo $ECHO_N "(cached) $ECHO_C" >&6
2934 else
2935   ac_save_c_werror_flag=$ac_c_werror_flag
2936    ac_c_werror_flag=yes
2937    ac_cv_prog_cc_g=no
2938    CFLAGS="-g"
2939    cat >conftest.$ac_ext <<_ACEOF
2940 /* confdefs.h.  */
2941 _ACEOF
2942 cat confdefs.h >>conftest.$ac_ext
2943 cat >>conftest.$ac_ext <<_ACEOF
2944 /* end confdefs.h.  */
2945 
2946 int
2947 main ()
2948 {
2949 
2950   ;
2951   return 0;
2952 }
2953 _ACEOF
2954 rm -f conftest.$ac_objext
2955 if { (ac_try="$ac_compile"
2956 case "(($ac_try" in
2957   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2958   *) ac_try_echo=$ac_try;;
2959 esac
2960 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2961   (eval "$ac_compile") 2>conftest.er1
2962   ac_status=$?
2963   grep -v '^ *+' conftest.er1 >conftest.err
2964   rm -f conftest.er1
2965   cat conftest.err >&5
2966   echo "$as_me:$LINENO: \$? = $ac_status" >&5
2967   (exit $ac_status); } && {
2968          test -z "$ac_c_werror_flag" ||
2969          test ! -s conftest.err
2970        } && test -s conftest.$ac_objext; then
2971   ac_cv_prog_cc_g=yes
2972 else
2973   echo "$as_me: failed program was:" >&5
2974 sed 's/^/| /' conftest.$ac_ext >&5
2975 
2976         CFLAGS=""
2977       cat >conftest.$ac_ext <<_ACEOF
2978 /* confdefs.h.  */
2979 _ACEOF
2980 cat confdefs.h >>conftest.$ac_ext
2981 cat >>conftest.$ac_ext <<_ACEOF
2982 /* end confdefs.h.  */
2983 
2984 int
2985 main ()
2986 {
2987 
2988   ;
2989   return 0;
2990 }
2991 _ACEOF
2992 rm -f conftest.$ac_objext
2993 if { (ac_try="$ac_compile"
2994 case "(($ac_try" in
2995   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2996   *) ac_try_echo=$ac_try;;
2997 esac
2998 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
2999   (eval "$ac_compile") 2>conftest.er1
3000   ac_status=$?
3001   grep -v '^ *+' conftest.er1 >conftest.err
3002   rm -f conftest.er1
3003   cat conftest.err >&5
3004   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3005   (exit $ac_status); } && {
3006          test -z "$ac_c_werror_flag" ||
3007          test ! -s conftest.err
3008        } && test -s conftest.$ac_objext; then
3009   :
3010 else
3011   echo "$as_me: failed program was:" >&5
3012 sed 's/^/| /' conftest.$ac_ext >&5
3013 
3014         ac_c_werror_flag=$ac_save_c_werror_flag
3015          CFLAGS="-g"
3016          cat >conftest.$ac_ext <<_ACEOF
3017 /* confdefs.h.  */
3018 _ACEOF
3019 cat confdefs.h >>conftest.$ac_ext
3020 cat >>conftest.$ac_ext <<_ACEOF
3021 /* end confdefs.h.  */
3022 
3023 int
3024 main ()
3025 {
3026 
3027   ;
3028   return 0;
3029 }
3030 _ACEOF
3031 rm -f conftest.$ac_objext
3032 if { (ac_try="$ac_compile"
3033 case "(($ac_try" in
3034   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3035   *) ac_try_echo=$ac_try;;
3036 esac
3037 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3038   (eval "$ac_compile") 2>conftest.er1
3039   ac_status=$?
3040   grep -v '^ *+' conftest.er1 >conftest.err
3041   rm -f conftest.er1
3042   cat conftest.err >&5
3043   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3044   (exit $ac_status); } && {
3045          test -z "$ac_c_werror_flag" ||
3046          test ! -s conftest.err
3047        } && test -s conftest.$ac_objext; then
3048   ac_cv_prog_cc_g=yes
3049 else
3050   echo "$as_me: failed program was:" >&5
3051 sed 's/^/| /' conftest.$ac_ext >&5
3052 
3053 
3054 fi
3055 
3056 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3057 fi
3058 
3059 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3060 fi
3061 
3062 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3063    ac_c_werror_flag=$ac_save_c_werror_flag
3064 fi
3065 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
3066 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
3067 if test "$ac_test_CFLAGS" = set; then
3068   CFLAGS=$ac_save_CFLAGS
3069 elif test $ac_cv_prog_cc_g = yes; then
3070   if test "$GCC" = yes; then
3071     CFLAGS="-g -O2"
3072   else
3073     CFLAGS="-g"
3074   fi
3075 else
3076   if test "$GCC" = yes; then
3077     CFLAGS="-O2"
3078   else
3079     CFLAGS=
3080   fi
3081 fi
3082 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
3083 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
3084 if test "${ac_cv_prog_cc_c89+set}" = set; then
3085   echo $ECHO_N "(cached) $ECHO_C" >&6
3086 else
3087   ac_cv_prog_cc_c89=no
3088 ac_save_CC=$CC
3089 cat >conftest.$ac_ext <<_ACEOF
3090 /* confdefs.h.  */
3091 _ACEOF
3092 cat confdefs.h >>conftest.$ac_ext
3093 cat >>conftest.$ac_ext <<_ACEOF
3094 /* end confdefs.h.  */
3095 #include <stdarg.h>
3096 #include <stdio.h>
3097 #include <sys/types.h>
3098 #include <sys/stat.h>
3099 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
3100 struct buf { int x; };
3101 FILE * (*rcsopen) (struct buf *, struct stat *, int);
3102 static char *e (p, i)
3103      char **p;
3104      int i;
3105 {
3106   return p[i];
3107 }
3108 static char *f (char * (*g) (char **, int), char **p, ...)
3109 {
3110   char *s;
3111   va_list v;
3112   va_start (v,p);
3113   s = g (p, va_arg (v,int));
3114   va_end (v);
3115   return s;
3116 }
3117 
3118 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
3119    function prototypes and stuff, but not '\xHH' hex character constants.
3120    These don't provoke an error unfortunately, instead are silently treated
3121    as 'x'.  The following induces an error, until -std is added to get
3122    proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
3123    array size at least.  It's necessary to write '\x00'==0 to get something
3124    that's true only with -std.  */
3125 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3126 
3127 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
3128    inside strings and character constants.  */
3129 #define FOO(x) 'x'
3130 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
3131 
3132 int test (int i, double x);
3133 struct s1 {int (*f) (int a);};
3134 struct s2 {int (*f) (double a);};
3135 int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3136 int argc;
3137 char **argv;
3138 int
3139 main ()
3140 {
3141 return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
3142   ;
3143   return 0;
3144 }
3145 _ACEOF
3146 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
3147         -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
3148 do
3149   CC="$ac_save_CC $ac_arg"
3150   rm -f conftest.$ac_objext
3151 if { (ac_try="$ac_compile"
3152 case "(($ac_try" in
3153   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3154   *) ac_try_echo=$ac_try;;
3155 esac
3156 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3157   (eval "$ac_compile") 2>conftest.er1
3158   ac_status=$?
3159   grep -v '^ *+' conftest.er1 >conftest.err
3160   rm -f conftest.er1
3161   cat conftest.err >&5
3162   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3163   (exit $ac_status); } && {
3164          test -z "$ac_c_werror_flag" ||
3165          test ! -s conftest.err
3166        } && test -s conftest.$ac_objext; then
3167   ac_cv_prog_cc_c89=$ac_arg
3168 else
3169   echo "$as_me: failed program was:" >&5
3170 sed 's/^/| /' conftest.$ac_ext >&5
3171 
3172 
3173 fi
3174 
3175 rm -f core conftest.err conftest.$ac_objext
3176   test "x$ac_cv_prog_cc_c89" != "xno" && break
3177 done
3178 rm -f conftest.$ac_ext
3179 CC=$ac_save_CC
3180 
3181 fi
3182 # AC_CACHE_VAL
3183 case "x$ac_cv_prog_cc_c89" in
3184   x)
3185     { echo "$as_me:$LINENO: result: none needed" >&5
3186 echo "${ECHO_T}none needed" >&6; } ;;
3187   xno)
3188     { echo "$as_me:$LINENO: result: unsupported" >&5
3189 echo "${ECHO_T}unsupported" >&6; } ;;
3190   *)
3191     CC="$CC $ac_cv_prog_cc_c89"
3192     { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
3193 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
3194 esac
3195 
3196 
3197 ac_ext=c
3198 ac_cpp='$CPP $CPPFLAGS'
3199 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3200 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3201 ac_compiler_gnu=$ac_cv_c_compiler_gnu
3202 
3203 ac_ext=cpp
3204 ac_cpp='$CXXCPP $CPPFLAGS'
3205 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3206 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3207 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
3208 if test -z "$CXX"; then
3209   if test -n "$CCC"; then
3210     CXX=$CCC
3211   else
3212     if test -n "$ac_tool_prefix"; then
3213   for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
3214   do
3215     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3216 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3217 { echo "$as_me:$LINENO: checking for $ac_word" >&5
3218 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3219 if test "${ac_cv_prog_CXX+set}" = set; then
3220   echo $ECHO_N "(cached) $ECHO_C" >&6
3221 else
3222   if test -n "$CXX"; then
3223   ac_cv_prog_CXX="$CXX" # Let the user override the test.
3224 else
3225 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3226 for as_dir in $PATH
3227 do
3228   IFS=$as_save_IFS
3229   test -z "$as_dir" && as_dir=.
3230   for ac_exec_ext in '' $ac_executable_extensions; do
3231   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3232     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
3233     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3234     break 2
3235   fi
3236 done
3237 done
3238 IFS=$as_save_IFS
3239 
3240 fi
3241 fi
3242 CXX=$ac_cv_prog_CXX
3243 if test -n "$CXX"; then
3244   { echo "$as_me:$LINENO: result: $CXX" >&5
3245 echo "${ECHO_T}$CXX" >&6; }
3246 else
3247   { echo "$as_me:$LINENO: result: no" >&5
3248 echo "${ECHO_T}no" >&6; }
3249 fi
3250 
3251 
3252     test -n "$CXX" && break
3253   done
3254 fi
3255 if test -z "$CXX"; then
3256   ac_ct_CXX=$CXX
3257   for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
3258 do
3259   # Extract the first word of "$ac_prog", so it can be a program name with args.
3260 set dummy $ac_prog; ac_word=$2
3261 { echo "$as_me:$LINENO: checking for $ac_word" >&5
3262 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3263 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
3264   echo $ECHO_N "(cached) $ECHO_C" >&6
3265 else
3266   if test -n "$ac_ct_CXX"; then
3267   ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
3268 else
3269 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3270 for as_dir in $PATH
3271 do
3272   IFS=$as_save_IFS
3273   test -z "$as_dir" && as_dir=.
3274   for ac_exec_ext in '' $ac_executable_extensions; do
3275   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3276     ac_cv_prog_ac_ct_CXX="$ac_prog"
3277     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3278     break 2
3279   fi
3280 done
3281 done
3282 IFS=$as_save_IFS
3283 
3284 fi
3285 fi
3286 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
3287 if test -n "$ac_ct_CXX"; then
3288   { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
3289 echo "${ECHO_T}$ac_ct_CXX" >&6; }
3290 else
3291   { echo "$as_me:$LINENO: result: no" >&5
3292 echo "${ECHO_T}no" >&6; }
3293 fi
3294 
3295 
3296   test -n "$ac_ct_CXX" && break
3297 done
3298 
3299   if test "x$ac_ct_CXX" = x; then
3300     CXX="g++"
3301   else
3302     case $cross_compiling:$ac_tool_warned in
3303 yes:)
3304 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
3305 whose name does not start with the host triplet.  If you think this
3306 configuration is useful to you, please write to autoconf@gnu.org." >&5
3307 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
3308 whose name does not start with the host triplet.  If you think this
3309 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
3310 ac_tool_warned=yes ;;
3311 esac
3312     CXX=$ac_ct_CXX
3313   fi
3314 fi
3315 
3316   fi
3317 fi
3318 # Provide some information about the compiler.
3319 echo "$as_me:$LINENO: checking for C++ compiler version" >&5
3320 ac_compiler=`set X $ac_compile; echo $2`
3321 { (ac_try="$ac_compiler --version >&5"
3322 case "(($ac_try" in
3323   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3324   *) ac_try_echo=$ac_try;;
3325 esac
3326 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3327   (eval "$ac_compiler --version >&5") 2>&5
3328   ac_status=$?
3329   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3330   (exit $ac_status); }
3331 { (ac_try="$ac_compiler -v >&5"
3332 case "(($ac_try" in
3333   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3334   *) ac_try_echo=$ac_try;;
3335 esac
3336 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3337   (eval "$ac_compiler -v >&5") 2>&5
3338   ac_status=$?
3339   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3340   (exit $ac_status); }
3341 { (ac_try="$ac_compiler -V >&5"
3342 case "(($ac_try" in
3343   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3344   *) ac_try_echo=$ac_try;;
3345 esac
3346 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3347   (eval "$ac_compiler -V >&5") 2>&5
3348   ac_status=$?
3349   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3350   (exit $ac_status); }
3351 
3352 { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
3353 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; }
3354 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
3355   echo $ECHO_N "(cached) $ECHO_C" >&6
3356 else
3357   cat >conftest.$ac_ext <<_ACEOF
3358 /* confdefs.h.  */
3359 _ACEOF
3360 cat confdefs.h >>conftest.$ac_ext
3361 cat >>conftest.$ac_ext <<_ACEOF
3362 /* end confdefs.h.  */
3363 
3364 int
3365 main ()
3366 {
3367 #ifndef __GNUC__
3368        choke me
3369 #endif
3370 
3371   ;
3372   return 0;
3373 }
3374 _ACEOF
3375 rm -f conftest.$ac_objext
3376 if { (ac_try="$ac_compile"
3377 case "(($ac_try" in
3378   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3379   *) ac_try_echo=$ac_try;;
3380 esac
3381 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3382   (eval "$ac_compile") 2>conftest.er1
3383   ac_status=$?
3384   grep -v '^ *+' conftest.er1 >conftest.err
3385   rm -f conftest.er1
3386   cat conftest.err >&5
3387   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3388   (exit $ac_status); } && {
3389          test -z "$ac_cxx_werror_flag" ||
3390          test ! -s conftest.err
3391        } && test -s conftest.$ac_objext; then
3392   ac_compiler_gnu=yes
3393 else
3394   echo "$as_me: failed program was:" >&5
3395 sed 's/^/| /' conftest.$ac_ext >&5
3396 
3397         ac_compiler_gnu=no
3398 fi
3399 
3400 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3401 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
3402 
3403 fi
3404 { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
3405 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
3406 GXX=`test $ac_compiler_gnu = yes && echo yes`
3407 ac_test_CXXFLAGS=${CXXFLAGS+set}
3408 ac_save_CXXFLAGS=$CXXFLAGS
3409 { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
3410 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; }
3411 if test "${ac_cv_prog_cxx_g+set}" = set; then
3412   echo $ECHO_N "(cached) $ECHO_C" >&6
3413 else
3414   ac_save_cxx_werror_flag=$ac_cxx_werror_flag
3415    ac_cxx_werror_flag=yes
3416    ac_cv_prog_cxx_g=no
3417    CXXFLAGS="-g"
3418    cat >conftest.$ac_ext <<_ACEOF
3419 /* confdefs.h.  */
3420 _ACEOF
3421 cat confdefs.h >>conftest.$ac_ext
3422 cat >>conftest.$ac_ext <<_ACEOF
3423 /* end confdefs.h.  */
3424 
3425 int
3426 main ()
3427 {
3428 
3429   ;
3430   return 0;
3431 }
3432 _ACEOF
3433 rm -f conftest.$ac_objext
3434 if { (ac_try="$ac_compile"
3435 case "(($ac_try" in
3436   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3437   *) ac_try_echo=$ac_try;;
3438 esac
3439 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3440   (eval "$ac_compile") 2>conftest.er1
3441   ac_status=$?
3442   grep -v '^ *+' conftest.er1 >conftest.err
3443   rm -f conftest.er1
3444   cat conftest.err >&5
3445   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3446   (exit $ac_status); } && {
3447          test -z "$ac_cxx_werror_flag" ||
3448          test ! -s conftest.err
3449        } && test -s conftest.$ac_objext; then
3450   ac_cv_prog_cxx_g=yes
3451 else
3452   echo "$as_me: failed program was:" >&5
3453 sed 's/^/| /' conftest.$ac_ext >&5
3454 
3455         CXXFLAGS=""
3456       cat >conftest.$ac_ext <<_ACEOF
3457 /* confdefs.h.  */
3458 _ACEOF
3459 cat confdefs.h >>conftest.$ac_ext
3460 cat >>conftest.$ac_ext <<_ACEOF
3461 /* end confdefs.h.  */
3462 
3463 int
3464 main ()
3465 {
3466 
3467   ;
3468   return 0;
3469 }
3470 _ACEOF
3471 rm -f conftest.$ac_objext
3472 if { (ac_try="$ac_compile"
3473 case "(($ac_try" in
3474   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3475   *) ac_try_echo=$ac_try;;
3476 esac
3477 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3478   (eval "$ac_compile") 2>conftest.er1
3479   ac_status=$?
3480   grep -v '^ *+' conftest.er1 >conftest.err
3481   rm -f conftest.er1
3482   cat conftest.err >&5
3483   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3484   (exit $ac_status); } && {
3485          test -z "$ac_cxx_werror_flag" ||
3486          test ! -s conftest.err
3487        } && test -s conftest.$ac_objext; then
3488   :
3489 else
3490   echo "$as_me: failed program was:" >&5
3491 sed 's/^/| /' conftest.$ac_ext >&5
3492 
3493         ac_cxx_werror_flag=$ac_save_cxx_werror_flag
3494          CXXFLAGS="-g"
3495          cat >conftest.$ac_ext <<_ACEOF
3496 /* confdefs.h.  */
3497 _ACEOF
3498 cat confdefs.h >>conftest.$ac_ext
3499 cat >>conftest.$ac_ext <<_ACEOF
3500 /* end confdefs.h.  */
3501 
3502 int
3503 main ()
3504 {
3505 
3506   ;
3507   return 0;
3508 }
3509 _ACEOF
3510 rm -f conftest.$ac_objext
3511 if { (ac_try="$ac_compile"
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_compile") 2>conftest.er1
3518   ac_status=$?
3519   grep -v '^ *+' conftest.er1 >conftest.err
3520   rm -f conftest.er1
3521   cat conftest.err >&5
3522   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3523   (exit $ac_status); } && {
3524          test -z "$ac_cxx_werror_flag" ||
3525          test ! -s conftest.err
3526        } && test -s conftest.$ac_objext; then
3527   ac_cv_prog_cxx_g=yes
3528 else
3529   echo "$as_me: failed program was:" >&5
3530 sed 's/^/| /' conftest.$ac_ext >&5
3531 
3532 
3533 fi
3534 
3535 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3536 fi
3537 
3538 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3539 fi
3540 
3541 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3542    ac_cxx_werror_flag=$ac_save_cxx_werror_flag
3543 fi
3544 { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
3545 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; }
3546 if test "$ac_test_CXXFLAGS" = set; then
3547   CXXFLAGS=$ac_save_CXXFLAGS
3548 elif test $ac_cv_prog_cxx_g = yes; then
3549   if test "$GXX" = yes; then
3550     CXXFLAGS="-g -O2"
3551   else
3552     CXXFLAGS="-g"
3553   fi
3554 else
3555   if test "$GXX" = yes; then
3556     CXXFLAGS="-O2"
3557   else
3558     CXXFLAGS=
3559   fi
3560 fi
3561 ac_ext=c
3562 ac_cpp='$CPP $CPPFLAGS'
3563 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3564 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3565 ac_compiler_gnu=$ac_cv_c_compiler_gnu
3566 
3567 if test -n "$ac_tool_prefix"; then
3568   # Extract the first word of "${ac_tool_prefix}cpp", so it can be a program name with args.
3569 set dummy ${ac_tool_prefix}cpp; ac_word=$2
3570 { echo "$as_me:$LINENO: checking for $ac_word" >&5
3571 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3572 if test "${ac_cv_prog_CPPBIN+set}" = set; then
3573   echo $ECHO_N "(cached) $ECHO_C" >&6
3574 else
3575   if test -n "$CPPBIN"; then
3576   ac_cv_prog_CPPBIN="$CPPBIN" # Let the user override the test.
3577 else
3578 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3579 for as_dir in $PATH
3580 do
3581   IFS=$as_save_IFS
3582   test -z "$as_dir" && as_dir=.
3583   for ac_exec_ext in '' $ac_executable_extensions; do
3584   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3585     ac_cv_prog_CPPBIN="${ac_tool_prefix}cpp"
3586     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3587     break 2
3588   fi
3589 done
3590 done
3591 IFS=$as_save_IFS
3592 
3593 fi
3594 fi
3595 CPPBIN=$ac_cv_prog_CPPBIN
3596 if test -n "$CPPBIN"; then
3597   { echo "$as_me:$LINENO: result: $CPPBIN" >&5
3598 echo "${ECHO_T}$CPPBIN" >&6; }
3599 else
3600   { echo "$as_me:$LINENO: result: no" >&5
3601 echo "${ECHO_T}no" >&6; }
3602 fi
3603 
3604 
3605 fi
3606 if test -z "$ac_cv_prog_CPPBIN"; then
3607   ac_ct_CPPBIN=$CPPBIN
3608   # Extract the first word of "cpp", so it can be a program name with args.
3609 set dummy cpp; ac_word=$2
3610 { echo "$as_me:$LINENO: checking for $ac_word" >&5
3611 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
3612 if test "${ac_cv_prog_ac_ct_CPPBIN+set}" = set; then
3613   echo $ECHO_N "(cached) $ECHO_C" >&6
3614 else
3615   if test -n "$ac_ct_CPPBIN"; then
3616   ac_cv_prog_ac_ct_CPPBIN="$ac_ct_CPPBIN" # Let the user override the test.
3617 else
3618 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3619 for as_dir in $PATH
3620 do
3621   IFS=$as_save_IFS
3622   test -z "$as_dir" && as_dir=.
3623   for ac_exec_ext in '' $ac_executable_extensions; do
3624   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
3625     ac_cv_prog_ac_ct_CPPBIN="cpp"
3626     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3627     break 2
3628   fi
3629 done
3630 done
3631 IFS=$as_save_IFS
3632 
3633 fi
3634 fi
3635 ac_ct_CPPBIN=$ac_cv_prog_ac_ct_CPPBIN
3636 if test -n "$ac_ct_CPPBIN"; then
3637   { echo "$as_me:$LINENO: result: $ac_ct_CPPBIN" >&5
3638 echo "${ECHO_T}$ac_ct_CPPBIN" >&6; }
3639 else
3640   { echo "$as_me:$LINENO: result: no" >&5
3641 echo "${ECHO_T}no" >&6; }
3642 fi
3643 
3644   if test "x$ac_ct_CPPBIN" = x; then
3645     CPPBIN="cpp"
3646   else
3647     case $cross_compiling:$ac_tool_warned in
3648 yes:)
3649 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
3650 whose name does not start with the host triplet.  If you think this
3651 configuration is useful to you, please write to autoconf@gnu.org." >&5
3652 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
3653 whose name does not start with the host triplet.  If you think this
3654 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
3655 ac_tool_warned=yes ;;
3656 esac
3657     CPPBIN=$ac_ct_CPPBIN
3658   fi
3659 else
3660   CPPBIN="$ac_cv_prog_CPPBIN"
3661 fi
3662 
3663 
3664 { echo "$as_me:$LINENO: checking for the directory containing the Wine tools" >&5
3665 echo $ECHO_N "checking for the directory containing the Wine tools... $ECHO_C" >&6; }
3666 if test "${wine_cv_toolsdir+set}" = set; then
3667   echo $ECHO_N "(cached) $ECHO_C" >&6
3668 else
3669   if test -z "$with_wine_tools"; then
3670      if test "$cross_compiling" = "yes"; then
3671        { { echo "$as_me:$LINENO: error: you must use the --with-wine-tools option when cross-compiling." >&5
3672 echo "$as_me: error: you must use the --with-wine-tools option when cross-compiling." >&2;}
3673    { (exit 1); exit 1; }; }
3674      else
3675        wine_cv_toolsdir="\$(TOPOBJDIR)"
3676      fi
3677    elif test -d "$with_wine_tools/tools/winebuild"; then
3678      case $with_wine_tools in
3679        /*) wine_cv_toolsdir="$with_wine_tools" ;;
3680        *)  wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;;
3681      esac
3682    else
3683      { { echo "$as_me:$LINENO: error: could not find Wine tools in $with_wine_tools." >&5
3684 echo "$as_me: error: could not find Wine tools in $with_wine_tools." >&2;}
3685    { (exit 1); exit 1; }; }
3686    fi
3687 fi
3688 { echo "$as_me:$LINENO: result: $wine_cv_toolsdir" >&5
3689 echo "${ECHO_T}$wine_cv_toolsdir" >&6; }
3690 TOOLSDIR=$wine_cv_toolsdir
3691 
3692 
3693 
3694 ac_ext=c
3695 ac_cpp='$CPP $CPPFLAGS'
3696 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3697 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3698 ac_compiler_gnu=$ac_cv_c_compiler_gnu
3699 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
3700 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
3701 # On Suns, sometimes $CPP names a directory.
3702 if test -n "$CPP" && test -d "$CPP"; then
3703   CPP=
3704 fi
3705 if test -z "$CPP"; then
3706   if test "${ac_cv_prog_CPP+set}" = set; then
3707   echo $ECHO_N "(cached) $ECHO_C" >&6
3708 else
3709       # Double quotes because CPP needs to be expanded
3710     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
3711     do
3712       ac_preproc_ok=false
3713 for ac_c_preproc_warn_flag in '' yes
3714 do
3715   # Use a header file that comes with gcc, so configuring glibc
3716   # with a fresh cross-compiler works.
3717   # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3718   # <limits.h> exists even on freestanding compilers.
3719   # On the NeXT, cc -E runs the code through the compiler's parser,
3720   # not just through cpp. "Syntax error" is here to catch this case.
3721   cat >conftest.$ac_ext <<_ACEOF
3722 /* confdefs.h.  */
3723 _ACEOF
3724 cat confdefs.h >>conftest.$ac_ext
3725 cat >>conftest.$ac_ext <<_ACEOF
3726 /* end confdefs.h.  */
3727 #ifdef __STDC__
3728 # include <limits.h>
3729 #else
3730 # include <assert.h>
3731 #endif
3732                      Syntax error
3733 _ACEOF
3734 if { (ac_try="$ac_cpp conftest.$ac_ext"
3735 case "(($ac_try" in
3736   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3737   *) ac_try_echo=$ac_try;;
3738 esac
3739 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3740   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
3741   ac_status=$?
3742   grep -v '^ *+' conftest.er1 >conftest.err
3743   rm -f conftest.er1
3744   cat conftest.err >&5
3745   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3746   (exit $ac_status); } >/dev/null && {
3747          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
3748          test ! -s conftest.err
3749        }; then
3750   :
3751 else
3752   echo "$as_me: failed program was:" >&5
3753 sed 's/^/| /' conftest.$ac_ext >&5
3754 
3755   # Broken: fails on valid input.
3756 continue
3757 fi
3758 
3759 rm -f conftest.err conftest.$ac_ext
3760 
3761   # OK, works on sane cases.  Now check whether nonexistent headers
3762   # can be detected and how.
3763   cat >conftest.$ac_ext <<_ACEOF
3764 /* confdefs.h.  */
3765 _ACEOF
3766 cat confdefs.h >>conftest.$ac_ext
3767 cat >>conftest.$ac_ext <<_ACEOF
3768 /* end confdefs.h.  */
3769 #include <ac_nonexistent.h>
3770 _ACEOF
3771 if { (ac_try="$ac_cpp conftest.$ac_ext"
3772 case "(($ac_try" in
3773   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3774   *) ac_try_echo=$ac_try;;
3775 esac
3776 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3777   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
3778   ac_status=$?
3779   grep -v '^ *+' conftest.er1 >conftest.err
3780   rm -f conftest.er1
3781   cat conftest.err >&5
3782   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3783   (exit $ac_status); } >/dev/null && {
3784          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
3785          test ! -s conftest.err
3786        }; then
3787   # Broken: success on invalid input.
3788 continue
3789 else
3790   echo "$as_me: failed program was:" >&5
3791 sed 's/^/| /' conftest.$ac_ext >&5
3792 
3793   # Passes both tests.
3794 ac_preproc_ok=:
3795 break
3796 fi
3797 
3798 rm -f conftest.err conftest.$ac_ext
3799 
3800 done
3801 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
3802 rm -f conftest.err conftest.$ac_ext
3803 if $ac_preproc_ok; then
3804   break
3805 fi
3806 
3807     done
3808     ac_cv_prog_CPP=$CPP
3809 
3810 fi
3811   CPP=$ac_cv_prog_CPP
3812 else
3813   ac_cv_prog_CPP=$CPP
3814 fi
3815 { echo "$as_me:$LINENO: result: $CPP" >&5
3816 echo "${ECHO_T}$CPP" >&6; }
3817 ac_preproc_ok=false
3818 for ac_c_preproc_warn_flag in '' yes
3819 do
3820   # Use a header file that comes with gcc, so configuring glibc
3821   # with a fresh cross-compiler works.
3822   # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3823   # <limits.h> exists even on freestanding compilers.
3824   # On the NeXT, cc -E runs the code through the compiler's parser,
3825   # not just through cpp. "Syntax error" is here to catch this case.
3826   cat >conftest.$ac_ext <<_ACEOF
3827 /* confdefs.h.  */
3828 _ACEOF
3829 cat confdefs.h >>conftest.$ac_ext
3830 cat >>conftest.$ac_ext <<_ACEOF
3831 /* end confdefs.h.  */
3832 #ifdef __STDC__
3833 # include <limits.h>
3834 #else
3835 # include <assert.h>
3836 #endif
3837                      Syntax error
3838 _ACEOF
3839 if { (ac_try="$ac_cpp conftest.$ac_ext"
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_cpp conftest.$ac_ext") 2>conftest.er1
3846   ac_status=$?
3847   grep -v '^ *+' conftest.er1 >conftest.err
3848   rm -f conftest.er1
3849   cat conftest.err >&5
3850   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3851   (exit $ac_status); } >/dev/null && {
3852          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
3853          test ! -s conftest.err
3854        }; then
3855   :
3856 else
3857   echo "$as_me: failed program was:" >&5
3858 sed 's/^/| /' conftest.$ac_ext >&5
3859 
3860   # Broken: fails on valid input.
3861 continue
3862 fi
3863 
3864 rm -f conftest.err conftest.$ac_ext
3865 
3866   # OK, works on sane cases.  Now check whether nonexistent headers
3867   # can be detected and how.
3868   cat >conftest.$ac_ext <<_ACEOF
3869 /* confdefs.h.  */
3870 _ACEOF
3871 cat confdefs.h >>conftest.$ac_ext
3872 cat >>conftest.$ac_ext <<_ACEOF
3873 /* end confdefs.h.  */
3874 #include <ac_nonexistent.h>
3875 _ACEOF
3876 if { (ac_try="$ac_cpp conftest.$ac_ext"
3877 case "(($ac_try" in
3878   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3879   *) ac_try_echo=$ac_try;;
3880 esac
3881 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3882   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
3883   ac_status=$?
3884   grep -v '^ *+' conftest.er1 >conftest.err
3885   rm -f conftest.er1
3886   cat conftest.err >&5
3887   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3888   (exit $ac_status); } >/dev/null && {
3889          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
3890          test ! -s conftest.err
3891        }; then
3892   # Broken: success on invalid input.
3893 continue
3894 else
3895   echo "$as_me: failed program was:" >&5
3896 sed 's/^/| /' conftest.$ac_ext >&5
3897 
3898   # Passes both tests.
3899 ac_preproc_ok=:
3900 break
3901 fi
3902 
3903 rm -f conftest.err conftest.$ac_ext
3904 
3905 done
3906 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
3907 rm -f conftest.err conftest.$ac_ext
3908 if $ac_preproc_ok; then
3909   :
3910 else
3911   { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
3912 See \`config.log' for more details." >&5
3913 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
3914 See \`config.log' for more details." >&2;}
3915    { (exit 1); exit 1; }; }
3916 fi
3917 
3918 ac_ext=c
3919 ac_cpp='$CPP $CPPFLAGS'
3920 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3921 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3922 ac_compiler_gnu=$ac_cv_c_compiler_gnu
3923 
3924 
3925 { echo "$as_me:$LINENO: checking for X" >&5
3926 echo $ECHO_N "checking for X... $ECHO_C" >&6; }
3927 
3928 
3929 # Check whether --with-x was given.
3930 if test "${with_x+set}" = set; then
3931   withval=$with_x;
3932 fi
3933 
3934 # $have_x is `yes', `no', `disabled', or empty when we do not yet know.
3935 if test "x$with_x" = xno; then
3936   # The user explicitly disabled X.
3937   have_x=disabled
3938 else
3939   case $x_includes,$x_libraries in #(
3940     *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5
3941 echo "$as_me: error: Cannot use X directory names containing '" >&2;}
3942    { (exit 1); exit 1; }; };; #(
3943     *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then
3944   echo $ECHO_N "(cached) $ECHO_C" >&6
3945 else
3946   # One or both of the vars are not set, and there is no cached value.
3947 ac_x_includes=no ac_x_libraries=no
3948 rm -f -r conftest.dir
3949 if mkdir conftest.dir; then
3950   cd conftest.dir
3951   cat >Imakefile <<'_ACEOF'
3952 incroot:
3953         @echo incroot='${INCROOT}'
3954 usrlibdir:
3955         @echo usrlibdir='${USRLIBDIR}'
3956 libdir:
3957         @echo libdir='${LIBDIR}'
3958 _ACEOF
3959   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
3960     # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
3961     for ac_var in incroot usrlibdir libdir; do
3962       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
3963     done
3964     # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
3965     for ac_extension in a so sl; do
3966       if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
3967          test -f "$ac_im_libdir/libX11.$ac_extension"; then
3968         ac_im_usrlibdir=$ac_im_libdir; break
3969       fi
3970     done
3971     # Screen out bogus values from the imake configuration.  They are
3972     # bogus both because they are the default anyway, and because
3973     # using them would break gcc on systems where it needs fixed includes.
3974     case $ac_im_incroot in
3975         /usr/include) ac_x_includes= ;;
3976         *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
3977     esac
3978     case $ac_im_usrlibdir in
3979         /usr/lib | /lib) ;;
3980         *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
3981     esac
3982   fi
3983   cd ..
3984   rm -f -r conftest.dir
3985 fi
3986 
3987 # Standard set of common directories for X headers.
3988 # Check X11 before X11Rn because it is often a symlink to the current release.
3989 ac_x_header_dirs='
3990 /usr/X11/include
3991 /usr/X11R6/include
3992 /usr/X11R5/include
3993 /usr/X11R4/include
3994 
3995 /usr/include/X11
3996 /usr/include/X11R6
3997 /usr/include/X11R5
3998 /usr/include/X11R4
3999 
4000 /usr/local/X11/include
4001 /usr/local/X11R6/include
4002 /usr/local/X11R5/include
4003 /usr/local/X11R4/include
4004 
4005 /usr/local/include/X11
4006 /usr/local/include/X11R6
4007 /usr/local/include/X11R5
4008 /usr/local/include/X11R4
4009 
4010 /usr/X386/include
4011 /usr/x386/include
4012 /usr/XFree86/include/X11
4013 
4014 /usr/include
4015 /usr/local/include
4016 /usr/unsupported/include
4017 /usr/athena/include
4018 /usr/local/x11r5/include
4019 /usr/lpp/Xamples/include
4020 
4021 /usr/openwin/include
4022 /usr/openwin/share/include'
4023 
4024 if test "$ac_x_includes" = no; then
4025   # Guess where to find include files, by looking for Xlib.h.
4026   # First, try using that file with no special directory specified.
4027   cat >conftest.$ac_ext <<_ACEOF
4028 /* confdefs.h.  */
4029 _ACEOF
4030 cat confdefs.h >>conftest.$ac_ext
4031 cat >>conftest.$ac_ext <<_ACEOF
4032 /* end confdefs.h.  */
4033 #include <X11/Xlib.h>
4034 _ACEOF
4035 if { (ac_try="$ac_cpp conftest.$ac_ext"
4036 case "(($ac_try" in
4037   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4038   *) ac_try_echo=$ac_try;;
4039 esac
4040 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4041   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
4042   ac_status=$?
4043   grep -v '^ *+' conftest.er1 >conftest.err
4044   rm -f conftest.er1
4045   cat conftest.err >&5
4046   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4047   (exit $ac_status); } >/dev/null && {
4048          test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
4049          test ! -s conftest.err
4050        }; then
4051   # We can compile using X headers with no special include directory.
4052 ac_x_includes=
4053 else
4054   echo "$as_me: failed program was:" >&5
4055 sed 's/^/| /' conftest.$ac_ext >&5
4056 
4057   for ac_dir in $ac_x_header_dirs; do
4058   if test -r "$ac_dir/X11/Xlib.h"; then
4059     ac_x_includes=$ac_dir
4060     break
4061   fi
4062 done
4063 fi
4064 
4065 rm -f conftest.err conftest.$ac_ext
4066 fi # $ac_x_includes = no
4067 
4068 if test "$ac_x_libraries" = no; then
4069   # Check for the libraries.
4070   # See if we find them without any special options.
4071   # Don't add to $LIBS permanently.
4072   ac_save_LIBS=$LIBS
4073   LIBS="-lX11 $LIBS"
4074   cat >conftest.$ac_ext <<_ACEOF
4075 /* confdefs.h.  */
4076 _ACEOF
4077 cat confdefs.h >>conftest.$ac_ext
4078 cat >>conftest.$ac_ext <<_ACEOF
4079 /* end confdefs.h.  */
4080 #include <X11/Xlib.h>
4081 int
4082 main ()
4083 {
4084 XrmInitialize ()
4085   ;
4086   return 0;
4087 }
4088 _ACEOF
4089 rm -f conftest.$ac_objext conftest$ac_exeext
4090 if { (ac_try="$ac_link"
4091 case "(($ac_try" in
4092   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4093   *) ac_try_echo=$ac_try;;
4094 esac
4095 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4096   (eval "$ac_link") 2>conftest.er1
4097   ac_status=$?
4098   grep -v '^ *+' conftest.er1 >conftest.err
4099   rm -f conftest.er1
4100   cat conftest.err >&5
4101   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4102   (exit $ac_status); } && {
4103          test -z "$ac_c_werror_flag" ||
4104          test ! -s conftest.err
4105        } && test -s conftest$ac_exeext &&
4106        $as_test_x conftest$ac_exeext; then
4107   LIBS=$ac_save_LIBS
4108 # We can link X programs with no special library path.
4109 ac_x_libraries=
4110 else
4111   echo "$as_me: failed program was:" >&5
4112 sed 's/^/| /' conftest.$ac_ext >&5
4113 
4114         LIBS=$ac_save_LIBS
4115 for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
4116 do
4117   # Don't even attempt the hair of trying to link an X program!
4118   for ac_extension in a so sl; do
4119     if test -r "$ac_dir/libX11.$ac_extension"; then
4120       ac_x_libraries=$ac_dir
4121       break 2
4122     fi
4123   done
4124 done
4125 fi
4126 
4127 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4128       conftest$ac_exeext conftest.$ac_ext
4129 fi # $ac_x_libraries = no
4130 
4131 case $ac_x_includes,$ac_x_libraries in #(
4132   no,* | *,no | *\'*)
4133     # Didn't find X, or a directory has "'" in its name.
4134     ac_cv_have_x="have_x=no";; #(
4135   *)
4136     # Record where we found X for the cache.
4137     ac_cv_have_x="have_x=yes\
4138         ac_x_includes='$ac_x_includes'\
4139         ac_x_libraries='$ac_x_libraries'"
4140 esac
4141 fi
4142 ;; #(
4143     *) have_x=yes;;
4144   esac
4145   eval "$ac_cv_have_x"
4146 fi # $with_x != no
4147 
4148 if test "$have_x" != yes; then
4149   { echo "$as_me:$LINENO: result: $have_x" >&5
4150 echo "${ECHO_T}$have_x" >&6; }
4151   no_x=yes
4152 else
4153   # If each of the values was on the command line, it overrides each guess.
4154   test "x$x_includes" = xNONE && x_includes=$ac_x_includes
4155   test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
4156   # Update the cache value to reflect the command line values.
4157   ac_cv_have_x="have_x=yes\
4158         ac_x_includes='$x_includes'\
4159         ac_x_libraries='$x_libraries'"
4160   { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5
4161 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; }
4162 fi
4163 
4164 if test "$no_x" = yes; then
4165   # Not all programs may use this symbol, but it does not hurt to define it.
4166 
4167 cat >>confdefs.h <<\_ACEOF
4168 #define X_DISPLAY_MISSING 1
4169 _ACEOF
4170 
4171   X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
4172 else
4173   if test -n "$x_includes"; then
4174     X_CFLAGS="$X_CFLAGS -I$x_includes"
4175   fi
4176 
4177   # It would also be nice to do this for all -L options, not just this one.
4178   if test -n "$x_libraries"; then
4179     X_LIBS="$X_LIBS -L$x_libraries"
4180     # For Solaris; some versions of Sun CC require a space after -R and
4181     # others require no space.  Words are not sufficient . . . .
4182     { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5
4183 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; }
4184     ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
4185     ac_xsave_c_werror_flag=$ac_c_werror_flag
4186     ac_c_werror_flag=yes
4187     cat >conftest.$ac_ext <<_ACEOF
4188 /* confdefs.h.  */
4189 _ACEOF
4190 cat confdefs.h >>conftest.$ac_ext
4191 cat >>conftest.$ac_ext <<_ACEOF
4192 /* end confdefs.h.  */
4193 
4194 int
4195 main ()
4196 {
4197 
4198   ;
4199   return 0;
4200 }
4201 _ACEOF
4202 rm -f conftest.$ac_objext conftest$ac_exeext
4203 if { (ac_try="$ac_link"
4204 case "(($ac_try" in
4205   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4206   *) ac_try_echo=$ac_try;;
4207 esac
4208 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4209   (eval "$ac_link") 2>conftest.er1
4210   ac_status=$?
4211   grep -v '^ *+' conftest.er1 >conftest.err
4212   rm -f conftest.er1
4213   cat conftest.err >&5
4214   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4215   (exit $ac_status); } && {
4216          test -z "$ac_c_werror_flag" ||
4217          test ! -s conftest.err
4218        } && test -s conftest$ac_exeext &&
4219        $as_test_x conftest$ac_exeext; then
4220   { echo "$as_me:$LINENO: result: no" >&5
4221 echo "${ECHO_T}no" >&6; }
4222        X_LIBS="$X_LIBS -R$x_libraries"
4223 else
4224   echo "$as_me: failed program was:" >&5
4225 sed 's/^/| /' conftest.$ac_ext >&5
4226 
4227         LIBS="$ac_xsave_LIBS -R $x_libraries"
4228        cat >conftest.$ac_ext <<_ACEOF
4229 /* confdefs.h.  */
4230 _ACEOF
4231 cat confdefs.h >>conftest.$ac_ext
4232 cat >>conftest.$ac_ext <<_ACEOF
4233 /* end confdefs.h.  */
4234 
4235 int
4236 main ()
4237 {
4238 
4239   ;
4240   return 0;
4241 }
4242 _ACEOF
4243 rm -f conftest.$ac_objext conftest$ac_exeext
4244 if { (ac_try="$ac_link"
4245 case "(($ac_try" in
4246   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4247   *) ac_try_echo=$ac_try;;
4248 esac
4249 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4250   (eval "$ac_link") 2>conftest.er1
4251   ac_status=$?
4252   grep -v '^ *+' conftest.er1 >conftest.err
4253   rm -f conftest.er1
4254   cat conftest.err >&5
4255   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4256   (exit $ac_status); } && {
4257          test -z "$ac_c_werror_flag" ||
4258          test ! -s conftest.err
4259        } && test -s conftest$ac_exeext &&
4260        $as_test_x conftest$ac_exeext; then
4261   { echo "$as_me:$LINENO: result: yes" >&5
4262 echo "${ECHO_T}yes" >&6; }
4263           X_LIBS="$X_LIBS -R $x_libraries"
4264 else
4265   echo "$as_me: failed program was:" >&5
4266 sed 's/^/| /' conftest.$ac_ext >&5
4267 
4268         { echo "$as_me:$LINENO: result: neither works" >&5
4269 echo "${ECHO_T}neither works" >&6; }
4270 fi
4271 
4272 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4273       conftest$ac_exeext conftest.$ac_ext
4274 fi
4275 
4276 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4277       conftest$ac_exeext conftest.$ac_ext
4278     ac_c_werror_flag=$ac_xsave_c_werror_flag
4279     LIBS=$ac_xsave_LIBS
4280   fi
4281 
4282   # Check for system-dependent libraries X programs must link with.
4283   # Do this before checking for the system-independent R6 libraries
4284   # (-lICE), since we may need -lsocket or whatever for X linking.
4285 
4286   if test "$ISC" = yes; then
4287     X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet"
4288   else
4289     # Martyn Johnson says this is needed for Ultrix, if the X
4290     # libraries were built with DECnet support.  And Karl Berry says
4291     # the Alpha needs dnet_stub (dnet does not exist).
4292     ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
4293     cat >conftest.$ac_ext <<_ACEOF
4294 /* confdefs.h.  */
4295 _ACEOF
4296 cat confdefs.h >>conftest.$ac_ext
4297 cat >>conftest.$ac_ext <<_ACEOF
4298 /* end confdefs.h.  */
4299 
4300 /* Override any GCC internal prototype to avoid an error.
4301    Use char because int might match the return type of a GCC
4302    builtin and then its argument prototype would still apply.  */
4303 #ifdef __cplusplus
4304 extern "C"
4305 #endif
4306 char XOpenDisplay ();
4307 int
4308 main ()
4309 {
4310 return XOpenDisplay ();
4311   ;
4312   return 0;
4313 }
4314 _ACEOF
4315 rm -f conftest.$ac_objext conftest$ac_exeext
4316 if { (ac_try="$ac_link"
4317 case "(($ac_try" in
4318   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4319   *) ac_try_echo=$ac_try;;
4320 esac
4321 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4322   (eval "$ac_link") 2>conftest.er1
4323   ac_status=$?
4324   grep -v '^ *+' conftest.er1 >conftest.err
4325   rm -f conftest.er1
4326   cat conftest.err >&5
4327   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4328   (exit $ac_status); } && {
4329          test -z "$ac_c_werror_flag" ||
4330          test ! -s conftest.err
4331        } && test -s conftest$ac_exeext &&
4332        $as_test_x conftest$ac_exeext; then
4333   :
4334 else
4335   echo "$as_me: failed program was:" >&5
4336 sed 's/^/| /' conftest.$ac_ext >&5
4337 
4338         { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5
4339 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6; }
4340 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
4341   echo $ECHO_N "(cached) $ECHO_C" >&6
4342 else
4343   ac_check_lib_save_LIBS=$LIBS
4344 LIBS="-ldnet  $LIBS"
4345 cat >conftest.$ac_ext <<_ACEOF
4346 /* confdefs.h.  */
4347 _ACEOF
4348 cat confdefs.h >>conftest.$ac_ext
4349 cat >>conftest.$ac_ext <<_ACEOF
4350 /* end confdefs.h.  */
4351 
4352 /* Override any GCC internal prototype to avoid an error.
4353    Use char because int might match the return type of a GCC
4354    builtin and then its argument prototype would still apply.  */
4355 #ifdef __cplusplus
4356 extern "C"
4357 #endif
4358 char dnet_ntoa ();
4359 int
4360 main ()
4361 {
4362 return dnet_ntoa ();
4363   ;
4364   return 0;
4365 }
4366 _ACEOF
4367 rm -f conftest.$ac_objext conftest$ac_exeext
4368 if { (ac_try="$ac_link"
4369 case "(($ac_try" in
4370   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4371   *) ac_try_echo=$ac_try;;
4372 esac
4373 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4374   (eval "$ac_link") 2>conftest.er1
4375   ac_status=$?
4376   grep -v '^ *+' conftest.er1 >conftest.err
4377   rm -f conftest.er1
4378   cat conftest.err >&5
4379   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4380   (exit $ac_status); } && {
4381          test -z "$ac_c_werror_flag" ||
4382          test ! -s conftest.err
4383        } && test -s conftest$ac_exeext &&
4384        $as_test_x conftest$ac_exeext; then
4385   ac_cv_lib_dnet_dnet_ntoa=yes
4386 else
4387   echo "$as_me: failed program was:" >&5
4388 sed 's/^/| /' conftest.$ac_ext >&5
4389 
4390         ac_cv_lib_dnet_dnet_ntoa=no
4391 fi
4392 
4393 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4394       conftest$ac_exeext conftest.$ac_ext
4395 LIBS=$ac_check_lib_save_LIBS
4396 fi
4397 { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
4398 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6; }
4399 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
4400   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
4401 fi
4402 
4403     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
4404       { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5
4405 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6; }
4406 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
4407   echo $ECHO_N "(cached) $ECHO_C" >&6
4408 else
4409   ac_check_lib_save_LIBS=$LIBS
4410 LIBS="-ldnet_stub  $LIBS"
4411 cat >conftest.$ac_ext <<_ACEOF
4412 /* confdefs.h.  */
4413 _ACEOF
4414 cat confdefs.h >>conftest.$ac_ext
4415 cat >>conftest.$ac_ext <<_ACEOF
4416 /* end confdefs.h.  */
4417 
4418 /* Override any GCC internal prototype to avoid an error.
4419    Use char because int might match the return type of a GCC
4420    builtin and then its argument prototype would still apply.  */
4421 #ifdef __cplusplus
4422 extern "C"
4423 #endif
4424 char dnet_ntoa ();
4425 int
4426 main ()
4427 {
4428 return dnet_ntoa ();
4429   ;
4430   return 0;
4431 }
4432 _ACEOF
4433 rm -f conftest.$ac_objext conftest$ac_exeext
4434 if { (ac_try="$ac_link"
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_link") 2>conftest.er1
4441   ac_status=$?
4442   grep -v '^ *+' conftest.er1 >conftest.err
4443   rm -f conftest.er1
4444   cat conftest.err >&5
4445   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4446   (exit $ac_status); } && {
4447          test -z "$ac_c_werror_flag" ||
4448          test ! -s conftest.err
4449        } && test -s conftest$ac_exeext &&
4450        $as_test_x conftest$ac_exeext; then
4451   ac_cv_lib_dnet_stub_dnet_ntoa=yes
4452 else
4453   echo "$as_me: failed program was:" >&5
4454 sed 's/^/| /' conftest.$ac_ext >&5
4455 
4456         ac_cv_lib_dnet_stub_dnet_ntoa=no
4457 fi
4458 
4459 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4460       conftest$ac_exeext conftest.$ac_ext
4461 LIBS=$ac_check_lib_save_LIBS
4462 fi
4463 { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
4464 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
4465 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
4466   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
4467 fi
4468 
4469     fi
4470 fi
4471 
4472 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4473       conftest$ac_exeext conftest.$ac_ext
4474     LIBS="$ac_xsave_LIBS"
4475 
4476     # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
4477     # to get the SysV transport functions.
4478     # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4)
4479     # needs -lnsl.
4480     # The nsl library prevents programs from opening the X display
4481     # on Irix 5.2, according to T.E. Dickey.
4482     # The functions gethostbyname, getservbyname, and inet_addr are
4483     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
4484     { echo "$as_me:$LINENO: checking for gethostbyname" >&5
4485 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; }
4486 if test "${ac_cv_func_gethostbyname+set}" = set; then
4487   echo $ECHO_N "(cached) $ECHO_C" >&6
4488 else
4489   cat >conftest.$ac_ext <<_ACEOF
4490 /* confdefs.h.  */
4491 _ACEOF
4492 cat confdefs.h >>conftest.$ac_ext
4493 cat >>conftest.$ac_ext <<_ACEOF
4494 /* end confdefs.h.  */
4495 /* Define gethostbyname to an innocuous variant, in case <limits.h> declares gethostbyname.
4496    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
4497 #define gethostbyname innocuous_gethostbyname
4498 
4499 /* System header to define __stub macros and hopefully few prototypes,
4500     which can conflict with char gethostbyname (); below.
4501     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4502     <limits.h> exists even on freestanding compilers.  */
4503 
4504 #ifdef __STDC__
4505 # include <limits.h>
4506 #else
4507 # include <assert.h>
4508 #endif
4509 
4510 #undef gethostbyname
4511 
4512 /* Override any GCC internal prototype to avoid an error.
4513    Use char because int might match the return type of a GCC
4514    builtin and then its argument prototype would still apply.  */
4515 #ifdef __cplusplus
4516 extern "C"
4517 #endif
4518 char gethostbyname ();
4519 /* The GNU C library defines this for functions which it implements
4520     to always fail with ENOSYS.  Some functions are actually named
4521     something starting with __ and the normal name is an alias.  */
4522 #if defined __stub_gethostbyname || defined __stub___gethostbyname
4523 choke me
4524 #endif
4525 
4526 int
4527 main ()
4528 {
4529 return gethostbyname ();
4530   ;
4531   return 0;
4532 }
4533 _ACEOF
4534 rm -f conftest.$ac_objext conftest$ac_exeext
4535 if { (ac_try="$ac_link"
4536 case "(($ac_try" in
4537   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4538   *) ac_try_echo=$ac_try;;
4539 esac
4540 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4541   (eval "$ac_link") 2>conftest.er1
4542   ac_status=$?
4543   grep -v '^ *+' conftest.er1 >conftest.err
4544   rm -f conftest.er1
4545   cat conftest.err >&5
4546   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4547   (exit $ac_status); } && {
4548          test -z "$ac_c_werror_flag" ||
4549          test ! -s conftest.err
4550        } && test -s conftest$ac_exeext &&
4551        $as_test_x conftest$ac_exeext; then
4552   ac_cv_func_gethostbyname=yes
4553 else
4554   echo "$as_me: failed program was:" >&5
4555 sed 's/^/| /' conftest.$ac_ext >&5
4556 
4557         ac_cv_func_gethostbyname=no
4558 fi
4559 
4560 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4561       conftest$ac_exeext conftest.$ac_ext
4562 fi
4563 { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5
4564 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; }
4565 
4566     if test $ac_cv_func_gethostbyname = no; then
4567       { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
4568 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; }
4569 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
4570   echo $ECHO_N "(cached) $ECHO_C" >&6
4571 else
4572   ac_check_lib_save_LIBS=$LIBS
4573 LIBS="-lnsl  $LIBS"
4574 cat >conftest.$ac_ext <<_ACEOF
4575 /* confdefs.h.  */
4576 _ACEOF
4577 cat confdefs.h >>conftest.$ac_ext
4578 cat >>conftest.$ac_ext <<_ACEOF
4579 /* end confdefs.h.  */
4580 
4581 /* Override any GCC internal prototype to avoid an error.
4582    Use char because int might match the return type of a GCC
4583    builtin and then its argument prototype would still apply.  */
4584 #ifdef __cplusplus
4585 extern "C"
4586 #endif
4587 char gethostbyname ();
4588 int
4589 main ()
4590 {
4591 return gethostbyname ();
4592   ;
4593   return 0;
4594 }
4595 _ACEOF
4596 rm -f conftest.$ac_objext conftest$ac_exeext
4597 if { (ac_try="$ac_link"
4598 case "(($ac_try" in
4599   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4600   *) ac_try_echo=$ac_try;;
4601 esac
4602 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4603   (eval "$ac_link") 2>conftest.er1
4604   ac_status=$?
4605   grep -v '^ *+' conftest.er1 >conftest.err
4606   rm -f conftest.er1
4607   cat conftest.err >&5
4608   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4609   (exit $ac_status); } && {
4610          test -z "$ac_c_werror_flag" ||
4611          test ! -s conftest.err
4612        } && test -s conftest$ac_exeext &&
4613        $as_test_x conftest$ac_exeext; then
4614   ac_cv_lib_nsl_gethostbyname=yes
4615 else
4616   echo "$as_me: failed program was:" >&5
4617 sed 's/^/| /' conftest.$ac_ext >&5
4618 
4619         ac_cv_lib_nsl_gethostbyname=no
4620 fi
4621 
4622 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4623       conftest$ac_exeext conftest.$ac_ext
4624 LIBS=$ac_check_lib_save_LIBS
4625 fi
4626 { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
4627 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; }
4628 if test $ac_cv_lib_nsl_gethostbyname = yes; then
4629   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
4630 fi
4631 
4632       if test $ac_cv_lib_nsl_gethostbyname = no; then
4633         { echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5
4634 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6; }
4635 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
4636   echo $ECHO_N "(cached) $ECHO_C" >&6
4637 else
4638   ac_check_lib_save_LIBS=$LIBS
4639 LIBS="-lbsd  $LIBS"
4640 cat >conftest.$ac_ext <<_ACEOF
4641 /* confdefs.h.  */
4642 _ACEOF
4643 cat confdefs.h >>conftest.$ac_ext
4644 cat >>conftest.$ac_ext <<_ACEOF
4645 /* end confdefs.h.  */
4646 
4647 /* Override any GCC internal prototype to avoid an error.
4648    Use char because int might match the return type of a GCC
4649    builtin and then its argument prototype would still apply.  */
4650 #ifdef __cplusplus
4651 extern "C"
4652 #endif
4653 char gethostbyname ();
4654 int
4655 main ()
4656 {
4657 return gethostbyname ();
4658   ;
4659   return 0;
4660 }
4661 _ACEOF
4662 rm -f conftest.$ac_objext conftest$ac_exeext
4663 if { (ac_try="$ac_link"
4664 case "(($ac_try" in
4665   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4666   *) ac_try_echo=$ac_try;;
4667 esac
4668 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4669   (eval "$ac_link") 2>conftest.er1
4670   ac_status=$?
4671   grep -v '^ *+' conftest.er1 >conftest.err
4672   rm -f conftest.er1
4673   cat conftest.err >&5
4674   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4675   (exit $ac_status); } && {
4676          test -z "$ac_c_werror_flag" ||
4677          test ! -s conftest.err
4678        } && test -s conftest$ac_exeext &&
4679        $as_test_x conftest$ac_exeext; then
4680   ac_cv_lib_bsd_gethostbyname=yes
4681 else
4682   echo "$as_me: failed program was:" >&5
4683 sed 's/^/| /' conftest.$ac_ext >&5
4684 
4685         ac_cv_lib_bsd_gethostbyname=no
4686 fi
4687 
4688 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4689       conftest$ac_exeext conftest.$ac_ext
4690 LIBS=$ac_check_lib_save_LIBS
4691 fi
4692 { echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5
4693 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6; }
4694 if test $ac_cv_lib_bsd_gethostbyname = yes; then
4695   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
4696 fi
4697 
4698       fi
4699     fi
4700 
4701     # lieder@skyler.mavd.honeywell.com says without -lsocket,
4702     # socket/setsockopt and other routines are undefined under SCO ODT
4703     # 2.0.  But -lsocket is broken on IRIX 5.2 (and is not necessary
4704     # on later versions), says Simon Leinen: it contains gethostby*
4705     # variants that don't use the name server (or something).  -lsocket
4706     # must be given before -lnsl if both are needed.  We assume that
4707     # if connect needs -lnsl, so does gethostbyname.
4708     { echo "$as_me:$LINENO: checking for connect" >&5
4709 echo $ECHO_N "checking for connect... $ECHO_C" >&6; }
4710 if test "${ac_cv_func_connect+set}" = set; then
4711   echo $ECHO_N "(cached) $ECHO_C" >&6
4712 else
4713   cat >conftest.$ac_ext <<_ACEOF
4714 /* confdefs.h.  */
4715 _ACEOF
4716 cat confdefs.h >>conftest.$ac_ext
4717 cat >>conftest.$ac_ext <<_ACEOF
4718 /* end confdefs.h.  */
4719 /* Define connect to an innocuous variant, in case <limits.h> declares connect.
4720    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
4721 #define connect innocuous_connect
4722 
4723 /* System header to define __stub macros and hopefully few prototypes,
4724     which can conflict with char connect (); below.
4725     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4726     <limits.h> exists even on freestanding compilers.  */
4727 
4728 #ifdef __STDC__
4729 # include <limits.h>
4730 #else
4731 # include <assert.h>
4732 #endif
4733 
4734 #undef connect
4735 
4736 /* Override any GCC internal prototype to avoid an error.
4737    Use char because int might match the return type of a GCC
4738    builtin and then its argument prototype would still apply.  */
4739 #ifdef __cplusplus
4740 extern "C"
4741 #endif
4742 char connect ();
4743 /* The GNU C library defines this for functions which it implements
4744     to always fail with ENOSYS.  Some functions are actually named
4745     something starting with __ and the normal name is an alias.  */
4746 #if defined __stub_connect || defined __stub___connect
4747 choke me
4748 #endif
4749 
4750 int
4751 main ()
4752 {
4753 return connect ();
4754   ;
4755   return 0;
4756 }
4757 _ACEOF
4758 rm -f conftest.$ac_objext conftest$ac_exeext
4759 if { (ac_try="$ac_link"
4760 case "(($ac_try" in
4761   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4762   *) ac_try_echo=$ac_try;;
4763 esac
4764 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4765   (eval "$ac_link") 2>conftest.er1
4766   ac_status=$?
4767   grep -v '^ *+' conftest.er1 >conftest.err
4768   rm -f conftest.er1
4769   cat conftest.err >&5
4770   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4771   (exit $ac_status); } && {
4772          test -z "$ac_c_werror_flag" ||
4773          test ! -s conftest.err
4774        } && test -s conftest$ac_exeext &&
4775        $as_test_x conftest$ac_exeext; then
4776   ac_cv_func_connect=yes
4777 else
4778   echo "$as_me: failed program was:" >&5
4779 sed 's/^/| /' conftest.$ac_ext >&5
4780 
4781         ac_cv_func_connect=no
4782 fi
4783 
4784 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4785       conftest$ac_exeext conftest.$ac_ext
4786 fi
4787 { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5
4788 echo "${ECHO_T}$ac_cv_func_connect" >&6; }
4789 
4790     if test $ac_cv_func_connect = no; then
4791       { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5
4792 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; }
4793 if test "${ac_cv_lib_socket_connect+set}" = set; then
4794   echo $ECHO_N "(cached) $ECHO_C" >&6
4795 else
4796   ac_check_lib_save_LIBS=$LIBS
4797 LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
4798 cat >conftest.$ac_ext <<_ACEOF
4799 /* confdefs.h.  */
4800 _ACEOF
4801 cat confdefs.h >>conftest.$ac_ext
4802 cat >>conftest.$ac_ext <<_ACEOF
4803 /* end confdefs.h.  */
4804 
4805 /* Override any GCC internal prototype to avoid an error.
4806    Use char because int might match the return type of a GCC
4807    builtin and then its argument prototype would still apply.  */
4808 #ifdef __cplusplus
4809 extern "C"
4810 #endif
4811 char connect ();
4812 int
4813 main ()
4814 {
4815 return connect ();
4816   ;
4817   return 0;
4818 }
4819 _ACEOF
4820 rm -f conftest.$ac_objext conftest$ac_exeext
4821 if { (ac_try="$ac_link"
4822 case "(($ac_try" in
4823   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4824   *) ac_try_echo=$ac_try;;
4825 esac
4826 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4827   (eval "$ac_link") 2>conftest.er1
4828   ac_status=$?
4829   grep -v '^ *+' conftest.er1 >conftest.err
4830   rm -f conftest.er1
4831   cat conftest.err >&5
4832   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4833   (exit $ac_status); } && {
4834          test -z "$ac_c_werror_flag" ||
4835          test ! -s conftest.err
4836        } && test -s conftest$ac_exeext &&
4837        $as_test_x conftest$ac_exeext; then
4838   ac_cv_lib_socket_connect=yes
4839 else
4840   echo "$as_me: failed program was:" >&5
4841 sed 's/^/| /' conftest.$ac_ext >&5
4842 
4843         ac_cv_lib_socket_connect=no
4844 fi
4845 
4846 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4847       conftest$ac_exeext conftest.$ac_ext
4848 LIBS=$ac_check_lib_save_LIBS
4849 fi
4850 { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5
4851 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; }
4852 if test $ac_cv_lib_socket_connect = yes; then
4853   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
4854 fi
4855 
4856     fi
4857 
4858     # Guillermo Gomez says -lposix is necessary on A/UX.
4859     { echo "$as_me:$LINENO: checking for remove" >&5
4860 echo $ECHO_N "checking for remove... $ECHO_C" >&6; }
4861 if test "${ac_cv_func_remove+set}" = set; then
4862   echo $ECHO_N "(cached) $ECHO_C" >&6
4863 else
4864   cat >conftest.$ac_ext <<_ACEOF
4865 /* confdefs.h.  */
4866 _ACEOF
4867 cat confdefs.h >>conftest.$ac_ext
4868 cat >>conftest.$ac_ext <<_ACEOF
4869 /* end confdefs.h.  */
4870 /* Define remove to an innocuous variant, in case <limits.h> declares remove.
4871    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
4872 #define remove innocuous_remove
4873 
4874 /* System header to define __stub macros and hopefully few prototypes,
4875     which can conflict with char remove (); below.
4876     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4877     <limits.h> exists even on freestanding compilers.  */
4878 
4879 #ifdef __STDC__
4880 # include <limits.h>
4881 #else
4882 # include <assert.h>
4883 #endif
4884 
4885 #undef remove
4886 
4887 /* Override any GCC internal prototype to avoid an error.
4888    Use char because int might match the return type of a GCC
4889    builtin and then its argument prototype would still apply.  */
4890 #ifdef __cplusplus
4891 extern "C"
4892 #endif
4893 char remove ();
4894 /* The GNU C library defines this for functions which it implements
4895     to always fail with ENOSYS.  Some functions are actually named
4896     something starting with __ and the normal name is an alias.  */
4897 #if defined __stub_remove || defined __stub___remove
4898 choke me
4899 #endif
4900 
4901 int
4902 main ()
4903 {
4904 return remove ();
4905   ;
4906   return 0;
4907 }
4908 _ACEOF
4909 rm -f conftest.$ac_objext conftest$ac_exeext
4910 if { (ac_try="$ac_link"
4911 case "(($ac_try" in
4912   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4913   *) ac_try_echo=$ac_try;;
4914 esac
4915 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4916   (eval "$ac_link") 2>conftest.er1
4917   ac_status=$?
4918   grep -v '^ *+' conftest.er1 >conftest.err
4919   rm -f conftest.er1
4920   cat conftest.err >&5
4921   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4922   (exit $ac_status); } && {
4923          test -z "$ac_c_werror_flag" ||
4924          test ! -s conftest.err
4925        } && test -s conftest$ac_exeext &&
4926        $as_test_x conftest$ac_exeext; then
4927   ac_cv_func_remove=yes
4928 else
4929   echo "$as_me: failed program was:" >&5
4930 sed 's/^/| /' conftest.$ac_ext >&5
4931 
4932         ac_cv_func_remove=no
4933 fi
4934 
4935 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4936       conftest$ac_exeext conftest.$ac_ext
4937 fi
4938 { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5
4939 echo "${ECHO_T}$ac_cv_func_remove" >&6; }
4940 
4941     if test $ac_cv_func_remove = no; then
4942       { echo "$as_me:$LINENO: checking for remove in -lposix" >&5
4943 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6; }
4944 if test "${ac_cv_lib_posix_remove+set}" = set; then
4945   echo $ECHO_N "(cached) $ECHO_C" >&6
4946 else
4947   ac_check_lib_save_LIBS=$LIBS
4948 LIBS="-lposix  $LIBS"
4949 cat >conftest.$ac_ext <<_ACEOF
4950 /* confdefs.h.  */
4951 _ACEOF
4952 cat confdefs.h >>conftest.$ac_ext
4953 cat >>conftest.$ac_ext <<_ACEOF
4954 /* end confdefs.h.  */
4955 
4956 /* Override any GCC internal prototype to avoid an error.
4957    Use char because int might match the return type of a GCC
4958    builtin and then its argument prototype would still apply.  */
4959 #ifdef __cplusplus
4960 extern "C"
4961 #endif
4962 char remove ();
4963 int
4964 main ()
4965 {
4966 return remove ();
4967   ;
4968   return 0;
4969 }
4970 _ACEOF
4971 rm -f conftest.$ac_objext conftest$ac_exeext
4972 if { (ac_try="$ac_link"
4973 case "(($ac_try" in
4974   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4975   *) ac_try_echo=$ac_try;;
4976 esac
4977 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4978   (eval "$ac_link") 2>conftest.er1
4979   ac_status=$?
4980   grep -v '^ *+' conftest.er1 >conftest.err
4981   rm -f conftest.er1
4982   cat conftest.err >&5
4983   echo "$as_me:$LINENO: \$? = $ac_status" >&5
4984   (exit $ac_status); } && {
4985          test -z "$ac_c_werror_flag" ||
4986          test ! -s conftest.err
4987        } && test -s conftest$ac_exeext &&
4988        $as_test_x conftest$ac_exeext; then
4989   ac_cv_lib_posix_remove=yes
4990 else
4991   echo "$as_me: failed program was:" >&5
4992 sed 's/^/| /' conftest.$ac_ext >&5
4993 
4994         ac_cv_lib_posix_remove=no
4995 fi
4996 
4997 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4998       conftest$ac_exeext conftest.$ac_ext
4999 LIBS=$ac_check_lib_save_LIBS
5000 fi
5001 { echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5
5002 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6; }
5003 if test $ac_cv_lib_posix_remove = yes; then
5004   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
5005 fi
5006 
5007     fi
5008 
5009     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
5010     { echo "$as_me:$LINENO: checking for shmat" >&5
5011 echo $ECHO_N "checking for shmat... $ECHO_C" >&6; }
5012 if test "${ac_cv_func_shmat+set}" = set; then
5013   echo $ECHO_N "(cached) $ECHO_C" >&6
5014 else
5015   cat >conftest.$ac_ext <<_ACEOF
5016 /* confdefs.h.  */
5017 _ACEOF
5018 cat confdefs.h >>conftest.$ac_ext
5019 cat >>conftest.$ac_ext <<_ACEOF
5020 /* end confdefs.h.  */
5021 /* Define shmat to an innocuous variant, in case <limits.h> declares shmat.
5022    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
5023 #define shmat innocuous_shmat
5024 
5025 /* System header to define __stub macros and hopefully few prototypes,
5026     which can conflict with char shmat (); below.
5027     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5028     <limits.h> exists even on freestanding compilers.  */
5029 
5030 #ifdef __STDC__
5031 # include <limits.h>
5032 #else
5033 # include <assert.h>
5034 #endif
5035 
5036 #undef shmat
5037 
5038 /* Override any GCC internal prototype to avoid an error.
5039    Use char because int might match the return type of a GCC
5040    builtin and then its argument prototype would still apply.  */
5041 #ifdef __cplusplus
5042 extern "C"
5043 #endif
5044 char shmat ();
5045 /* The GNU C library defines this for functions which it implements
5046     to always fail with ENOSYS.  Some functions are actually named
5047     something starting with __ and the normal name is an alias.  */
5048 #if defined __stub_shmat || defined __stub___shmat
5049 choke me
5050 #endif
5051 
5052 int
5053 main ()
5054 {
5055 return shmat ();
5056   ;
5057   return 0;
5058 }
5059 _ACEOF
5060 rm -f conftest.$ac_objext conftest$ac_exeext
5061 if { (ac_try="$ac_link"
5062 case "(($ac_try" in
5063   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5064   *) ac_try_echo=$ac_try;;
5065 esac
5066 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5067   (eval "$ac_link") 2>conftest.er1
5068   ac_status=$?
5069   grep -v '^ *+' conftest.er1 >conftest.err
5070   rm -f conftest.er1
5071   cat conftest.err >&5
5072   echo "$as_me:$LINENO: \$? = $ac_status" >&5
5073   (exit $ac_status); } && {
5074          test -z "$ac_c_werror_flag" ||
5075          test ! -s conftest.err
5076        } && test -s conftest$ac_exeext &&
5077        $as_test_x conftest$ac_exeext; then
5078   ac_cv_func_shmat=yes
5079 else
5080   echo "$as_me: failed program was:" >&5
5081 sed 's/^/| /' conftest.$ac_ext >&5
5082 
5083         ac_cv_func_shmat=no
5084 fi
5085 
5086 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
5087       conftest$ac_exeext conftest.$ac_ext
5088 fi
5089 { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5
5090 echo "${ECHO_T}$ac_cv_func_shmat" >&6; }
5091 
5092     if test $ac_cv_func_shmat = no; then
5093       { echo "$as_me:$LINENO: checking for shmat in -lipc" >&5
5094 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6; }
5095 if test "${ac_cv_lib_ipc_shmat+set}" = set; then
5096   echo $ECHO_N "(cached) $ECHO_C" >&6
5097 else
5098   ac_check_lib_save_LIBS=$LIBS
5099 LIBS="-lipc  $LIBS"
5100 cat >conftest.$ac_ext <<_ACEOF
5101 /* confdefs.h.  */
5102 _ACEOF
5103 cat confdefs.h >>conftest.$ac_ext
5104 cat >>conftest.$ac_ext <<_ACEOF
5105 /* end confdefs.h.  */
5106 
5107 /* Override any GCC internal prototype to avoid an error.
5108    Use char because int might match the return type of a GCC
5109    builtin and then its argument prototype would still apply.  */
5110 #ifdef __cplusplus
5111 extern "C"
5112 #endif
5113 char shmat ();
5114 int
5115 main ()
5116 {
5117 return shmat ();
5118   ;
5119   return 0;
5120 }
5121 _ACEOF
5122 rm -f conftest.$ac_objext conftest$ac_exeext
5123 if { (ac_try="$ac_link"
5124 case "(($ac_try" in
5125   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5126   *) ac_try_echo=$ac_try;;
5127 esac
5128 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5129   (eval "$ac_link") 2>conftest.er1
5130   ac_status=$?
5131   grep -v '^ *+' conftest.er1 >conftest.err
5132   rm -f conftest.er1
5133   cat conftest.err >&5
5134   echo "$as_me:$LINENO: \$? = $ac_status" >&5
5135   (exit $ac_status); } && {
5136          test -z "$ac_c_werror_flag" ||
5137          test ! -s conftest.err
5138        } && test -s conftest$ac_exeext &&
5139        $as_test_x conftest$ac_exeext; then
5140   ac_cv_lib_ipc_shmat=yes
5141 else
5142   echo "$as_me: failed program was:" >&5
5143 sed 's/^/| /' conftest.$ac_ext >&5
5144 
5145         ac_cv_lib_ipc_shmat=no
5146 fi
5147 
5148 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
5149       conftest$ac_exeext conftest.$ac_ext
5150 LIBS=$ac_check_lib_save_LIBS
5151 fi
5152 { echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5
5153 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6; }
5154 if test $ac_cv_lib_ipc_shmat = yes; then
5155   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
5156 fi
5157 
5158     fi
5159   fi
5160 
5161   # Check for libraries that X11R6 Xt/Xaw programs need.
5162   ac_save_LDFLAGS=$LDFLAGS
5163   test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries"
5164   # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
5165   # check for ICE first), but we must link in the order -lSM -lICE or
5166   # we get undefined symbols.  So assume we have SM if we have ICE.
5167   # These have to be linked with before -lX11, unlike the other
5168   # libraries we check for below, so use a different variable.
5169   # John Interrante, Karl Berry
5170   { echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5
5171 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6; }
5172 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
5173   echo $ECHO_N "(cached) $ECHO_C" >&6
5174 else
5175   ac_check_lib_save_LIBS=$LIBS
5176 LIBS="-lICE $X_EXTRA_LIBS $LIBS"
5177 cat >conftest.$ac_ext <<_ACEOF
5178 /* confdefs.h.  */
5179 _ACEOF
5180 cat confdefs.h >>conftest.$ac_ext
5181 cat >>conftest.$ac_ext <<_ACEOF
5182 /* end confdefs.h.  */
5183 
5184 /* Override any GCC internal prototype to avoid an error.
5185    Use char because int might match the return type of a GCC
5186    builtin and then its argument prototype would still apply.  */
5187 #ifdef __cplusplus
5188 extern "C"
5189 #endif
5190 char IceConnectionNumber ();
5191 int
5192 main ()
5193 {
5194 return IceConnectionNumber ();
5195   ;
5196   return 0;
5197 }
5198 _ACEOF
5199 rm -f conftest.$ac_objext conftest$ac_exeext
5200 if { (ac_try="$ac_link"
5201 case "(($ac_try" in
5202   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5203   *) ac_try_echo=$ac_try;;
5204 esac
5205 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5206   (eval "$ac_link") 2>conftest.er1
5207   ac_status=$?
5208   grep -v '^ *+' conftest.er1 >conftest.err
5209   rm -f conftest.er1
5210   cat conftest.err >&5
5211   echo "$as_me:$LINENO: \$? = $ac_status" >&5
5212   (exit $ac_status); } && {
5213          test -z "$ac_c_werror_flag" ||
5214          test ! -s conftest.err
5215        } && test -s conftest$ac_exeext &&
5216        $as_test_x conftest$ac_exeext; then
5217   ac_cv_lib_ICE_IceConnectionNumber=yes
5218 else
5219   echo "$as_me: failed program was:" >&5
5220 sed 's/^/| /' conftest.$ac_ext >&5
5221 
5222         ac_cv_lib_ICE_IceConnectionNumber=no
5223 fi
5224 
5225 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
5226       conftest$ac_exeext conftest.$ac_ext
5227 LIBS=$ac_check_lib_save_LIBS
5228 fi
5229 { echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
5230 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
5231 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
5232   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
5233 fi
5234 
5235   LDFLAGS=$ac_save_LDFLAGS
5236 
5237 fi
5238 
5239 
5240 for ac_prog in flex
5241 do
5242   # Extract the first word of "$ac_prog", so it can be a program name with args.
5243 set dummy $ac_prog; ac_word=$2
5244 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5245 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5246 if test "${ac_cv_prog_FLEX+set}" = set; then
5247   echo $ECHO_N "(cached) $ECHO_C" >&6
5248 else
5249   if test -n "$FLEX"; then
5250   ac_cv_prog_FLEX="$FLEX" # Let the user override the test.
5251 else
5252 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5253 for as_dir in $PATH
5254 do
5255   IFS=$as_save_IFS
5256   test -z "$as_dir" && as_dir=.
5257   for ac_exec_ext in '' $ac_executable_extensions; do
5258   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5259     ac_cv_prog_FLEX="$ac_prog"
5260     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5261     break 2
5262   fi
5263 done
5264 done
5265 IFS=$as_save_IFS
5266 
5267 fi
5268 fi
5269 FLEX=$ac_cv_prog_FLEX
5270 if test -n "$FLEX"; then
5271   { echo "$as_me:$LINENO: result: $FLEX" >&5
5272 echo "${ECHO_T}$FLEX" >&6; }
5273 else
5274   { echo "$as_me:$LINENO: result: no" >&5
5275 echo "${ECHO_T}no" >&6; }
5276 fi
5277 
5278 
5279   test -n "$FLEX" && break
5280 done
5281 test -n "$FLEX" || FLEX="none"
5282 
5283 if test "$FLEX" = "none"
5284 then
5285   { { echo "$as_me:$LINENO: error: no suitable flex found. Please install the 'flex' package." >&5
5286 echo "$as_me: error: no suitable flex found. Please install the 'flex' package." >&2;}
5287    { (exit 1); exit 1; }; }
5288 fi
5289 
5290 for ac_prog in bison
5291 do
5292   # Extract the first word of "$ac_prog", so it can be a program name with args.
5293 set dummy $ac_prog; ac_word=$2
5294 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5295 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5296 if test "${ac_cv_prog_BISON+set}" = set; then
5297   echo $ECHO_N "(cached) $ECHO_C" >&6
5298 else
5299   if test -n "$BISON"; then
5300   ac_cv_prog_BISON="$BISON" # Let the user override the test.
5301 else
5302 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5303 for as_dir in $PATH
5304 do
5305   IFS=$as_save_IFS
5306   test -z "$as_dir" && as_dir=.
5307   for ac_exec_ext in '' $ac_executable_extensions; do
5308   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5309     ac_cv_prog_BISON="$ac_prog"
5310     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5311     break 2
5312   fi
5313 done
5314 done
5315 IFS=$as_save_IFS
5316 
5317 fi
5318 fi
5319 BISON=$ac_cv_prog_BISON
5320 if test -n "$BISON"; then
5321   { echo "$as_me:$LINENO: result: $BISON" >&5
5322 echo "${ECHO_T}$BISON" >&6; }
5323 else
5324   { echo "$as_me:$LINENO: result: no" >&5
5325 echo "${ECHO_T}no" >&6; }
5326 fi
5327 
5328 
5329   test -n "$BISON" && break
5330 done
5331 test -n "$BISON" || BISON="none"
5332 
5333 if test "$BISON" = "none"
5334 then
5335   { { echo "$as_me:$LINENO: error: no suitable bison found. Please install the 'bison' package." >&5
5336 echo "$as_me: error: no suitable bison found. Please install the 'bison' package." >&2;}
5337    { (exit 1); exit 1; }; }
5338 fi
5339 
5340 if test -n "$ac_tool_prefix"; then
5341   for ac_prog in gas as
5342   do
5343     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
5344 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
5345 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5346 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5347 if test "${ac_cv_prog_AS+set}" = set; then
5348   echo $ECHO_N "(cached) $ECHO_C" >&6
5349 else
5350   if test -n "$AS"; then
5351   ac_cv_prog_AS="$AS" # Let the user override the test.
5352 else
5353 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5354 for as_dir in $PATH
5355 do
5356   IFS=$as_save_IFS
5357   test -z "$as_dir" && as_dir=.
5358   for ac_exec_ext in '' $ac_executable_extensions; do
5359   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5360     ac_cv_prog_AS="$ac_tool_prefix$ac_prog"
5361     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5362     break 2
5363   fi
5364 done
5365 done
5366 IFS=$as_save_IFS
5367 
5368 fi
5369 fi
5370 AS=$ac_cv_prog_AS
5371 if test -n "$AS"; then
5372   { echo "$as_me:$LINENO: result: $AS" >&5
5373 echo "${ECHO_T}$AS" >&6; }
5374 else
5375   { echo "$as_me:$LINENO: result: no" >&5
5376 echo "${ECHO_T}no" >&6; }
5377 fi
5378 
5379 
5380     test -n "$AS" && break
5381   done
5382 fi
5383 if test -z "$AS"; then
5384   ac_ct_AS=$AS
5385   for ac_prog in gas as
5386 do
5387   # Extract the first word of "$ac_prog", so it can be a program name with args.
5388 set dummy $ac_prog; ac_word=$2
5389 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5390 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5391 if test "${ac_cv_prog_ac_ct_AS+set}" = set; then
5392   echo $ECHO_N "(cached) $ECHO_C" >&6
5393 else
5394   if test -n "$ac_ct_AS"; then
5395   ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test.
5396 else
5397 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5398 for as_dir in $PATH
5399 do
5400   IFS=$as_save_IFS
5401   test -z "$as_dir" && as_dir=.
5402   for ac_exec_ext in '' $ac_executable_extensions; do
5403   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5404     ac_cv_prog_ac_ct_AS="$ac_prog"
5405     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5406     break 2
5407   fi
5408 done
5409 done
5410 IFS=$as_save_IFS
5411 
5412 fi
5413 fi
5414 ac_ct_AS=$ac_cv_prog_ac_ct_AS
5415 if test -n "$ac_ct_AS"; then
5416   { echo "$as_me:$LINENO: result: $ac_ct_AS" >&5
5417 echo "${ECHO_T}$ac_ct_AS" >&6; }
5418 else
5419   { echo "$as_me:$LINENO: result: no" >&5
5420 echo "${ECHO_T}no" >&6; }
5421 fi
5422 
5423 
5424   test -n "$ac_ct_AS" && break
5425 done
5426 
5427   if test "x$ac_ct_AS" = x; then
5428     AS="as"
5429   else
5430     case $cross_compiling:$ac_tool_warned in
5431 yes:)
5432 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5433 whose name does not start with the host triplet.  If you think this
5434 configuration is useful to you, please write to autoconf@gnu.org." >&5
5435 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5436 whose name does not start with the host triplet.  If you think this
5437 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5438 ac_tool_warned=yes ;;
5439 esac
5440     AS=$ac_ct_AS
5441   fi
5442 fi
5443 
5444 if test -n "$ac_tool_prefix"; then
5445   for ac_prog in ld gld
5446   do
5447     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
5448 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
5449 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5450 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5451 if test "${ac_cv_prog_LD+set}" = set; then
5452   echo $ECHO_N "(cached) $ECHO_C" >&6
5453 else
5454   if test -n "$LD"; then
5455   ac_cv_prog_LD="$LD" # Let the user override the test.
5456 else
5457 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5458 for as_dir in $PATH
5459 do
5460   IFS=$as_save_IFS
5461   test -z "$as_dir" && as_dir=.
5462   for ac_exec_ext in '' $ac_executable_extensions; do
5463   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5464     ac_cv_prog_LD="$ac_tool_prefix$ac_prog"
5465     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5466     break 2
5467   fi
5468 done
5469 done
5470 IFS=$as_save_IFS
5471 
5472 fi
5473 fi