1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for Xen Hypervisor Documentation 4.10.
4#
5# Report bugs to <xen-devel@lists.xen.org>.
6#
7#
8# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
9#
10#
11# This configure script is free software; the Free Software Foundation
12# gives unlimited permission to copy, distribute and modify it.
13## -------------------- ##
14## M4sh Initialization. ##
15## -------------------- ##
16
17# Be more Bourne compatible
18DUALCASE=1; export DUALCASE # for MKS sh
19if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20  emulate sh
21  NULLCMD=:
22  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23  # is contrary to our usage.  Disable this feature.
24  alias -g '${1+"$@"}'='"$@"'
25  setopt NO_GLOB_SUBST
26else
27  case `(set -o) 2>/dev/null` in #(
28  *posix*) :
29    set -o posix ;; #(
30  *) :
31     ;;
32esac
33fi
34
35
36as_nl='
37'
38export as_nl
39# Printing a long string crashes Solaris 7 /usr/bin/printf.
40as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43# Prefer a ksh shell builtin over an external printf program on Solaris,
44# but without wasting forks for bash or zsh.
45if test -z "$BASH_VERSION$ZSH_VERSION" \
46    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47  as_echo='print -r --'
48  as_echo_n='print -rn --'
49elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50  as_echo='printf %s\n'
51  as_echo_n='printf %s'
52else
53  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55    as_echo_n='/usr/ucb/echo -n'
56  else
57    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58    as_echo_n_body='eval
59      arg=$1;
60      case $arg in #(
61      *"$as_nl"*)
62	expr "X$arg" : "X\\(.*\\)$as_nl";
63	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64      esac;
65      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66    '
67    export as_echo_n_body
68    as_echo_n='sh -c $as_echo_n_body as_echo'
69  fi
70  export as_echo_body
71  as_echo='sh -c $as_echo_body as_echo'
72fi
73
74# The user is always right.
75if test "${PATH_SEPARATOR+set}" != set; then
76  PATH_SEPARATOR=:
77  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79      PATH_SEPARATOR=';'
80  }
81fi
82
83
84# IFS
85# We need space, tab and new line, in precisely that order.  Quoting is
86# there to prevent editors from complaining about space-tab.
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.)
89IFS=" ""	$as_nl"
90
91# Find who we are.  Look in the path if we contain no directory separator.
92as_myself=
93case $0 in #((
94  *[\\/]* ) as_myself=$0 ;;
95  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
96for as_dir in $PATH
97do
98  IFS=$as_save_IFS
99  test -z "$as_dir" && as_dir=.
100    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
101  done
102IFS=$as_save_IFS
103
104     ;;
105esac
106# We did not find ourselves, most probably we were run as `sh COMMAND'
107# in which case we are not to be found in the path.
108if test "x$as_myself" = x; then
109  as_myself=$0
110fi
111if test ! -f "$as_myself"; then
112  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113  exit 1
114fi
115
116# Unset variables that we do not need and which cause bugs (e.g. in
117# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
118# suppresses any "Segmentation fault" message there.  '((' could
119# trigger a bug in pdksh 5.2.14.
120for as_var in BASH_ENV ENV MAIL MAILPATH
121do eval test x\${$as_var+set} = xset \
122  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123done
124PS1='$ '
125PS2='> '
126PS4='+ '
127
128# NLS nuisances.
129LC_ALL=C
130export LC_ALL
131LANGUAGE=C
132export LANGUAGE
133
134# CDPATH.
135(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136
137# Use a proper internal environment variable to ensure we don't fall
138  # into an infinite loop, continuously re-executing ourselves.
139  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
140    _as_can_reexec=no; export _as_can_reexec;
141    # We cannot yet assume a decent shell, so we have to provide a
142# neutralization value for shells without unset; and this also
143# works around shells that cannot unset nonexistent variables.
144# Preserve -v and -x to the replacement shell.
145BASH_ENV=/dev/null
146ENV=/dev/null
147(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
148case $- in # ((((
149  *v*x* | *x*v* ) as_opts=-vx ;;
150  *v* ) as_opts=-v ;;
151  *x* ) as_opts=-x ;;
152  * ) as_opts= ;;
153esac
154exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
155# Admittedly, this is quite paranoid, since all the known shells bail
156# out after a failed `exec'.
157$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
158as_fn_exit 255
159  fi
160  # We don't want this to propagate to other subprocesses.
161          { _as_can_reexec=; unset _as_can_reexec;}
162if test "x$CONFIG_SHELL" = x; then
163  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
164  emulate sh
165  NULLCMD=:
166  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
167  # is contrary to our usage.  Disable this feature.
168  alias -g '\${1+\"\$@\"}'='\"\$@\"'
169  setopt NO_GLOB_SUBST
170else
171  case \`(set -o) 2>/dev/null\` in #(
172  *posix*) :
173    set -o posix ;; #(
174  *) :
175     ;;
176esac
177fi
178"
179  as_required="as_fn_return () { (exit \$1); }
180as_fn_success () { as_fn_return 0; }
181as_fn_failure () { as_fn_return 1; }
182as_fn_ret_success () { return 0; }
183as_fn_ret_failure () { return 1; }
184
185exitcode=0
186as_fn_success || { exitcode=1; echo as_fn_success failed.; }
187as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
188as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
189as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
190if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
191
192else
193  exitcode=1; echo positional parameters were not saved.
194fi
195test x\$exitcode = x0 || exit 1
196test -x / || exit 1"
197  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
198  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
199  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
200  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
201  if (eval "$as_required") 2>/dev/null; then :
202  as_have_required=yes
203else
204  as_have_required=no
205fi
206  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
207
208else
209  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
210as_found=false
211for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
212do
213  IFS=$as_save_IFS
214  test -z "$as_dir" && as_dir=.
215  as_found=:
216  case $as_dir in #(
217	 /*)
218	   for as_base in sh bash ksh sh5; do
219	     # Try only shells that exist, to save several forks.
220	     as_shell=$as_dir/$as_base
221	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
222		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
223  CONFIG_SHELL=$as_shell as_have_required=yes
224		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
225  break 2
226fi
227fi
228	   done;;
229       esac
230  as_found=false
231done
232$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
233	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
234  CONFIG_SHELL=$SHELL as_have_required=yes
235fi; }
236IFS=$as_save_IFS
237
238
239      if test "x$CONFIG_SHELL" != x; then :
240  export CONFIG_SHELL
241             # We cannot yet assume a decent shell, so we have to provide a
242# neutralization value for shells without unset; and this also
243# works around shells that cannot unset nonexistent variables.
244# Preserve -v and -x to the replacement shell.
245BASH_ENV=/dev/null
246ENV=/dev/null
247(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
248case $- in # ((((
249  *v*x* | *x*v* ) as_opts=-vx ;;
250  *v* ) as_opts=-v ;;
251  *x* ) as_opts=-x ;;
252  * ) as_opts= ;;
253esac
254exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
255# Admittedly, this is quite paranoid, since all the known shells bail
256# out after a failed `exec'.
257$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
258exit 255
259fi
260
261    if test x$as_have_required = xno; then :
262  $as_echo "$0: This script requires a shell more modern than all"
263  $as_echo "$0: the shells that I found on your system."
264  if test x${ZSH_VERSION+set} = xset ; then
265    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
266    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
267  else
268    $as_echo "$0: Please tell bug-autoconf@gnu.org and
269$0: xen-devel@lists.xen.org about your system, including
270$0: any error possibly output before this message. Then
271$0: install a modern shell, or manually run the script
272$0: under such a shell if you do have one."
273  fi
274  exit 1
275fi
276fi
277fi
278SHELL=${CONFIG_SHELL-/bin/sh}
279export SHELL
280# Unset more variables known to interfere with behavior of common tools.
281CLICOLOR_FORCE= GREP_OPTIONS=
282unset CLICOLOR_FORCE GREP_OPTIONS
283
284## --------------------- ##
285## M4sh Shell Functions. ##
286## --------------------- ##
287# as_fn_unset VAR
288# ---------------
289# Portably unset VAR.
290as_fn_unset ()
291{
292  { eval $1=; unset $1;}
293}
294as_unset=as_fn_unset
295
296# as_fn_set_status STATUS
297# -----------------------
298# Set $? to STATUS, without forking.
299as_fn_set_status ()
300{
301  return $1
302} # as_fn_set_status
303
304# as_fn_exit STATUS
305# -----------------
306# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
307as_fn_exit ()
308{
309  set +e
310  as_fn_set_status $1
311  exit $1
312} # as_fn_exit
313
314# as_fn_mkdir_p
315# -------------
316# Create "$as_dir" as a directory, including parents if necessary.
317as_fn_mkdir_p ()
318{
319
320  case $as_dir in #(
321  -*) as_dir=./$as_dir;;
322  esac
323  test -d "$as_dir" || eval $as_mkdir_p || {
324    as_dirs=
325    while :; do
326      case $as_dir in #(
327      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
328      *) as_qdir=$as_dir;;
329      esac
330      as_dirs="'$as_qdir' $as_dirs"
331      as_dir=`$as_dirname -- "$as_dir" ||
332$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
333	 X"$as_dir" : 'X\(//\)[^/]' \| \
334	 X"$as_dir" : 'X\(//\)$' \| \
335	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
336$as_echo X"$as_dir" |
337    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
338	    s//\1/
339	    q
340	  }
341	  /^X\(\/\/\)[^/].*/{
342	    s//\1/
343	    q
344	  }
345	  /^X\(\/\/\)$/{
346	    s//\1/
347	    q
348	  }
349	  /^X\(\/\).*/{
350	    s//\1/
351	    q
352	  }
353	  s/.*/./; q'`
354      test -d "$as_dir" && break
355    done
356    test -z "$as_dirs" || eval "mkdir $as_dirs"
357  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
358
359
360} # as_fn_mkdir_p
361
362# as_fn_executable_p FILE
363# -----------------------
364# Test if FILE is an executable regular file.
365as_fn_executable_p ()
366{
367  test -f "$1" && test -x "$1"
368} # as_fn_executable_p
369# as_fn_append VAR VALUE
370# ----------------------
371# Append the text in VALUE to the end of the definition contained in VAR. Take
372# advantage of any shell optimizations that allow amortized linear growth over
373# repeated appends, instead of the typical quadratic growth present in naive
374# implementations.
375if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
376  eval 'as_fn_append ()
377  {
378    eval $1+=\$2
379  }'
380else
381  as_fn_append ()
382  {
383    eval $1=\$$1\$2
384  }
385fi # as_fn_append
386
387# as_fn_arith ARG...
388# ------------------
389# Perform arithmetic evaluation on the ARGs, and store the result in the
390# global $as_val. Take advantage of shells that can avoid forks. The arguments
391# must be portable across $(()) and expr.
392if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
393  eval 'as_fn_arith ()
394  {
395    as_val=$(( $* ))
396  }'
397else
398  as_fn_arith ()
399  {
400    as_val=`expr "$@" || test $? -eq 1`
401  }
402fi # as_fn_arith
403
404
405# as_fn_error STATUS ERROR [LINENO LOG_FD]
406# ----------------------------------------
407# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
408# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
409# script with STATUS, using 1 if that was 0.
410as_fn_error ()
411{
412  as_status=$1; test $as_status -eq 0 && as_status=1
413  if test "$4"; then
414    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
415    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
416  fi
417  $as_echo "$as_me: error: $2" >&2
418  as_fn_exit $as_status
419} # as_fn_error
420
421if expr a : '\(a\)' >/dev/null 2>&1 &&
422   test "X`expr 00001 : '.*\(...\)'`" = X001; then
423  as_expr=expr
424else
425  as_expr=false
426fi
427
428if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
429  as_basename=basename
430else
431  as_basename=false
432fi
433
434if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
435  as_dirname=dirname
436else
437  as_dirname=false
438fi
439
440as_me=`$as_basename -- "$0" ||
441$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
442	 X"$0" : 'X\(//\)$' \| \
443	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
444$as_echo X/"$0" |
445    sed '/^.*\/\([^/][^/]*\)\/*$/{
446	    s//\1/
447	    q
448	  }
449	  /^X\/\(\/\/\)$/{
450	    s//\1/
451	    q
452	  }
453	  /^X\/\(\/\).*/{
454	    s//\1/
455	    q
456	  }
457	  s/.*/./; q'`
458
459# Avoid depending upon Character Ranges.
460as_cr_letters='abcdefghijklmnopqrstuvwxyz'
461as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
462as_cr_Letters=$as_cr_letters$as_cr_LETTERS
463as_cr_digits='0123456789'
464as_cr_alnum=$as_cr_Letters$as_cr_digits
465
466
467  as_lineno_1=$LINENO as_lineno_1a=$LINENO
468  as_lineno_2=$LINENO as_lineno_2a=$LINENO
469  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
470  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
471  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
472  sed -n '
473    p
474    /[$]LINENO/=
475  ' <$as_myself |
476    sed '
477      s/[$]LINENO.*/&-/
478      t lineno
479      b
480      :lineno
481      N
482      :loop
483      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
484      t loop
485      s/-\n.*//
486    ' >$as_me.lineno &&
487  chmod +x "$as_me.lineno" ||
488    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
489
490  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
491  # already done that, so ensure we don't try to do so again and fall
492  # in an infinite loop.  This has already happened in practice.
493  _as_can_reexec=no; export _as_can_reexec
494  # Don't try to exec as it changes $[0], causing all sort of problems
495  # (the dirname of $[0] is not the place where we might find the
496  # original and so on.  Autoconf is especially sensitive to this).
497  . "./$as_me.lineno"
498  # Exit status is that of the last command.
499  exit
500}
501
502ECHO_C= ECHO_N= ECHO_T=
503case `echo -n x` in #(((((
504-n*)
505  case `echo 'xy\c'` in
506  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
507  xy)  ECHO_C='\c';;
508  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
509       ECHO_T='	';;
510  esac;;
511*)
512  ECHO_N='-n';;
513esac
514
515rm -f conf$$ conf$$.exe conf$$.file
516if test -d conf$$.dir; then
517  rm -f conf$$.dir/conf$$.file
518else
519  rm -f conf$$.dir
520  mkdir conf$$.dir 2>/dev/null
521fi
522if (echo >conf$$.file) 2>/dev/null; then
523  if ln -s conf$$.file conf$$ 2>/dev/null; then
524    as_ln_s='ln -s'
525    # ... but there are two gotchas:
526    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
527    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
528    # In both cases, we have to default to `cp -pR'.
529    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
530      as_ln_s='cp -pR'
531  elif ln conf$$.file conf$$ 2>/dev/null; then
532    as_ln_s=ln
533  else
534    as_ln_s='cp -pR'
535  fi
536else
537  as_ln_s='cp -pR'
538fi
539rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
540rmdir conf$$.dir 2>/dev/null
541
542if mkdir -p . 2>/dev/null; then
543  as_mkdir_p='mkdir -p "$as_dir"'
544else
545  test -d ./-p && rmdir ./-p
546  as_mkdir_p=false
547fi
548
549as_test_x='test -x'
550as_executable_p=as_fn_executable_p
551
552# Sed expression to map a string onto a valid CPP name.
553as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
554
555# Sed expression to map a string onto a valid variable name.
556as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
557
558
559test -n "$DJDIR" || exec 7<&0 </dev/null
560exec 6>&1
561
562# Name of the host.
563# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
564# so uname gets run too.
565ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
566
567#
568# Initializations.
569#
570ac_default_prefix=/usr/local
571ac_clean_files=
572ac_config_libobj_dir=.
573LIBOBJS=
574cross_compiling=no
575subdirs=
576MFLAGS=
577MAKEFLAGS=
578
579# Identity of this package.
580PACKAGE_NAME='Xen Hypervisor Documentation'
581PACKAGE_TARNAME='xen'
582PACKAGE_VERSION='4.10'
583PACKAGE_STRING='Xen Hypervisor Documentation 4.10'
584PACKAGE_BUGREPORT='xen-devel@lists.xen.org'
585PACKAGE_URL='http://www.xen.org/'
586
587ac_unique_file="misc/xen-command-line.markdown"
588ac_subst_vars='LTLIBOBJS
589LIBOBJS
590PERL
591MARKDOWN
592PANDOC
593POD2TEXT
594POD2HTML
595POD2MAN
596FIG2DEV
597XEN_DUMP_DIR
598XEN_PAGING_DIR
599XEN_LOCK_DIR
600XEN_SCRIPT_DIR
601XEN_CONFIG_DIR
602INITD_DIR
603CONFIG_DIR
604SHAREDIR
605XEN_LIB_DIR
606XEN_RUN_STORED
607XEN_LIB_STORED
608XEN_LOG_DIR
609XEN_RUN_DIR
610XENFIRMWAREDIR
611LIBEXEC_INC
612LIBEXEC_LIB
613LIBEXEC_BIN
614LIBEXEC
615CONFIG_LEAF_DIR
616XENSTORED_PORT
617XENSTORED_KVA
618target_alias
619host_alias
620build_alias
621LIBS
622ECHO_T
623ECHO_N
624ECHO_C
625DEFS
626mandir
627localedir
628libdir
629psdir
630pdfdir
631dvidir
632htmldir
633infodir
634docdir
635oldincludedir
636includedir
637runstatedir
638localstatedir
639sharedstatedir
640sysconfdir
641datadir
642datarootdir
643libexecdir
644sbindir
645bindir
646program_transform_name
647prefix
648exec_prefix
649PACKAGE_URL
650PACKAGE_BUGREPORT
651PACKAGE_STRING
652PACKAGE_VERSION
653PACKAGE_TARNAME
654PACKAGE_NAME
655PATH_SEPARATOR
656SHELL'
657ac_subst_files=''
658ac_user_opts='
659enable_option_checking
660with_initddir
661with_sysconfig_leaf_dir
662with_libexec_leaf_dir
663with_xen_dumpdir
664with_rundir
665'
666      ac_precious_vars='build_alias
667host_alias
668target_alias
669FIG2DEV
670POD2MAN
671POD2HTML
672POD2TEXT
673PANDOC
674MARKDOWN
675PERL'
676
677
678# Initialize some variables set by options.
679ac_init_help=
680ac_init_version=false
681ac_unrecognized_opts=
682ac_unrecognized_sep=
683# The variables have the same names as the options, with
684# dashes changed to underlines.
685cache_file=/dev/null
686exec_prefix=NONE
687no_create=
688no_recursion=
689prefix=NONE
690program_prefix=NONE
691program_suffix=NONE
692program_transform_name=s,x,x,
693silent=
694site=
695srcdir=
696verbose=
697x_includes=NONE
698x_libraries=NONE
699
700# Installation directory options.
701# These are left unexpanded so users can "make install exec_prefix=/foo"
702# and all the variables that are supposed to be based on exec_prefix
703# by default will actually change.
704# Use braces instead of parens because sh, perl, etc. also accept them.
705# (The list follows the same order as the GNU Coding Standards.)
706bindir='${exec_prefix}/bin'
707sbindir='${exec_prefix}/sbin'
708libexecdir='${exec_prefix}/libexec'
709datarootdir='${prefix}/share'
710datadir='${datarootdir}'
711sysconfdir='${prefix}/etc'
712sharedstatedir='${prefix}/com'
713localstatedir='${prefix}/var'
714runstatedir='${localstatedir}/run'
715includedir='${prefix}/include'
716oldincludedir='/usr/include'
717docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
718infodir='${datarootdir}/info'
719htmldir='${docdir}'
720dvidir='${docdir}'
721pdfdir='${docdir}'
722psdir='${docdir}'
723libdir='${exec_prefix}/lib'
724localedir='${datarootdir}/locale'
725mandir='${datarootdir}/man'
726
727ac_prev=
728ac_dashdash=
729for ac_option
730do
731  # If the previous option needs an argument, assign it.
732  if test -n "$ac_prev"; then
733    eval $ac_prev=\$ac_option
734    ac_prev=
735    continue
736  fi
737
738  case $ac_option in
739  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
740  *=)   ac_optarg= ;;
741  *)    ac_optarg=yes ;;
742  esac
743
744  # Accept the important Cygnus configure options, so we can diagnose typos.
745
746  case $ac_dashdash$ac_option in
747  --)
748    ac_dashdash=yes ;;
749
750  -bindir | --bindir | --bindi | --bind | --bin | --bi)
751    ac_prev=bindir ;;
752  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
753    bindir=$ac_optarg ;;
754
755  -build | --build | --buil | --bui | --bu)
756    ac_prev=build_alias ;;
757  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
758    build_alias=$ac_optarg ;;
759
760  -cache-file | --cache-file | --cache-fil | --cache-fi \
761  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
762    ac_prev=cache_file ;;
763  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
764  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
765    cache_file=$ac_optarg ;;
766
767  --config-cache | -C)
768    cache_file=config.cache ;;
769
770  -datadir | --datadir | --datadi | --datad)
771    ac_prev=datadir ;;
772  -datadir=* | --datadir=* | --datadi=* | --datad=*)
773    datadir=$ac_optarg ;;
774
775  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
776  | --dataroo | --dataro | --datar)
777    ac_prev=datarootdir ;;
778  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
779  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
780    datarootdir=$ac_optarg ;;
781
782  -disable-* | --disable-*)
783    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
784    # Reject names that are not valid shell variable names.
785    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
786      as_fn_error $? "invalid feature name: $ac_useropt"
787    ac_useropt_orig=$ac_useropt
788    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
789    case $ac_user_opts in
790      *"
791"enable_$ac_useropt"
792"*) ;;
793      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
794	 ac_unrecognized_sep=', ';;
795    esac
796    eval enable_$ac_useropt=no ;;
797
798  -docdir | --docdir | --docdi | --doc | --do)
799    ac_prev=docdir ;;
800  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
801    docdir=$ac_optarg ;;
802
803  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
804    ac_prev=dvidir ;;
805  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
806    dvidir=$ac_optarg ;;
807
808  -enable-* | --enable-*)
809    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
810    # Reject names that are not valid shell variable names.
811    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
812      as_fn_error $? "invalid feature name: $ac_useropt"
813    ac_useropt_orig=$ac_useropt
814    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
815    case $ac_user_opts in
816      *"
817"enable_$ac_useropt"
818"*) ;;
819      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
820	 ac_unrecognized_sep=', ';;
821    esac
822    eval enable_$ac_useropt=\$ac_optarg ;;
823
824  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
825  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
826  | --exec | --exe | --ex)
827    ac_prev=exec_prefix ;;
828  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
829  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
830  | --exec=* | --exe=* | --ex=*)
831    exec_prefix=$ac_optarg ;;
832
833  -gas | --gas | --ga | --g)
834    # Obsolete; use --with-gas.
835    with_gas=yes ;;
836
837  -help | --help | --hel | --he | -h)
838    ac_init_help=long ;;
839  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
840    ac_init_help=recursive ;;
841  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
842    ac_init_help=short ;;
843
844  -host | --host | --hos | --ho)
845    ac_prev=host_alias ;;
846  -host=* | --host=* | --hos=* | --ho=*)
847    host_alias=$ac_optarg ;;
848
849  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
850    ac_prev=htmldir ;;
851  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
852  | --ht=*)
853    htmldir=$ac_optarg ;;
854
855  -includedir | --includedir | --includedi | --included | --include \
856  | --includ | --inclu | --incl | --inc)
857    ac_prev=includedir ;;
858  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
859  | --includ=* | --inclu=* | --incl=* | --inc=*)
860    includedir=$ac_optarg ;;
861
862  -infodir | --infodir | --infodi | --infod | --info | --inf)
863    ac_prev=infodir ;;
864  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
865    infodir=$ac_optarg ;;
866
867  -libdir | --libdir | --libdi | --libd)
868    ac_prev=libdir ;;
869  -libdir=* | --libdir=* | --libdi=* | --libd=*)
870    libdir=$ac_optarg ;;
871
872  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
873  | --libexe | --libex | --libe)
874    ac_prev=libexecdir ;;
875  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
876  | --libexe=* | --libex=* | --libe=*)
877    libexecdir=$ac_optarg ;;
878
879  -localedir | --localedir | --localedi | --localed | --locale)
880    ac_prev=localedir ;;
881  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
882    localedir=$ac_optarg ;;
883
884  -localstatedir | --localstatedir | --localstatedi | --localstated \
885  | --localstate | --localstat | --localsta | --localst | --locals)
886    ac_prev=localstatedir ;;
887  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
888  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
889    localstatedir=$ac_optarg ;;
890
891  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
892    ac_prev=mandir ;;
893  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
894    mandir=$ac_optarg ;;
895
896  -nfp | --nfp | --nf)
897    # Obsolete; use --without-fp.
898    with_fp=no ;;
899
900  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
901  | --no-cr | --no-c | -n)
902    no_create=yes ;;
903
904  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
905  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
906    no_recursion=yes ;;
907
908  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
909  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
910  | --oldin | --oldi | --old | --ol | --o)
911    ac_prev=oldincludedir ;;
912  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
913  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
914  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
915    oldincludedir=$ac_optarg ;;
916
917  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
918    ac_prev=prefix ;;
919  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
920    prefix=$ac_optarg ;;
921
922  -program-prefix | --program-prefix | --program-prefi | --program-pref \
923  | --program-pre | --program-pr | --program-p)
924    ac_prev=program_prefix ;;
925  -program-prefix=* | --program-prefix=* | --program-prefi=* \
926  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
927    program_prefix=$ac_optarg ;;
928
929  -program-suffix | --program-suffix | --program-suffi | --program-suff \
930  | --program-suf | --program-su | --program-s)
931    ac_prev=program_suffix ;;
932  -program-suffix=* | --program-suffix=* | --program-suffi=* \
933  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
934    program_suffix=$ac_optarg ;;
935
936  -program-transform-name | --program-transform-name \
937  | --program-transform-nam | --program-transform-na \
938  | --program-transform-n | --program-transform- \
939  | --program-transform | --program-transfor \
940  | --program-transfo | --program-transf \
941  | --program-trans | --program-tran \
942  | --progr-tra | --program-tr | --program-t)
943    ac_prev=program_transform_name ;;
944  -program-transform-name=* | --program-transform-name=* \
945  | --program-transform-nam=* | --program-transform-na=* \
946  | --program-transform-n=* | --program-transform-=* \
947  | --program-transform=* | --program-transfor=* \
948  | --program-transfo=* | --program-transf=* \
949  | --program-trans=* | --program-tran=* \
950  | --progr-tra=* | --program-tr=* | --program-t=*)
951    program_transform_name=$ac_optarg ;;
952
953  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
954    ac_prev=pdfdir ;;
955  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
956    pdfdir=$ac_optarg ;;
957
958  -psdir | --psdir | --psdi | --psd | --ps)
959    ac_prev=psdir ;;
960  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
961    psdir=$ac_optarg ;;
962
963  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
964  | -silent | --silent | --silen | --sile | --sil)
965    silent=yes ;;
966
967  -runstatedir | --runstatedir | --runstatedi | --runstated \
968  | --runstate | --runstat | --runsta | --runst | --runs \
969  | --run | --ru | --r)
970    ac_prev=runstatedir ;;
971  -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
972  | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
973  | --run=* | --ru=* | --r=*)
974    runstatedir=$ac_optarg ;;
975
976  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
977    ac_prev=sbindir ;;
978  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
979  | --sbi=* | --sb=*)
980    sbindir=$ac_optarg ;;
981
982  -sharedstatedir | --sharedstatedir | --sharedstatedi \
983  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
984  | --sharedst | --shareds | --shared | --share | --shar \
985  | --sha | --sh)
986    ac_prev=sharedstatedir ;;
987  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
988  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
989  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
990  | --sha=* | --sh=*)
991    sharedstatedir=$ac_optarg ;;
992
993  -site | --site | --sit)
994    ac_prev=site ;;
995  -site=* | --site=* | --sit=*)
996    site=$ac_optarg ;;
997
998  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
999    ac_prev=srcdir ;;
1000  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1001    srcdir=$ac_optarg ;;
1002
1003  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1004  | --syscon | --sysco | --sysc | --sys | --sy)
1005    ac_prev=sysconfdir ;;
1006  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1007  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1008    sysconfdir=$ac_optarg ;;
1009
1010  -target | --target | --targe | --targ | --tar | --ta | --t)
1011    ac_prev=target_alias ;;
1012  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1013    target_alias=$ac_optarg ;;
1014
1015  -v | -verbose | --verbose | --verbos | --verbo | --verb)
1016    verbose=yes ;;
1017
1018  -version | --version | --versio | --versi | --vers | -V)
1019    ac_init_version=: ;;
1020
1021  -with-* | --with-*)
1022    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1023    # Reject names that are not valid shell variable names.
1024    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1025      as_fn_error $? "invalid package name: $ac_useropt"
1026    ac_useropt_orig=$ac_useropt
1027    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1028    case $ac_user_opts in
1029      *"
1030"with_$ac_useropt"
1031"*) ;;
1032      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1033	 ac_unrecognized_sep=', ';;
1034    esac
1035    eval with_$ac_useropt=\$ac_optarg ;;
1036
1037  -without-* | --without-*)
1038    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1039    # Reject names that are not valid shell variable names.
1040    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1041      as_fn_error $? "invalid package name: $ac_useropt"
1042    ac_useropt_orig=$ac_useropt
1043    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1044    case $ac_user_opts in
1045      *"
1046"with_$ac_useropt"
1047"*) ;;
1048      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1049	 ac_unrecognized_sep=', ';;
1050    esac
1051    eval with_$ac_useropt=no ;;
1052
1053  --x)
1054    # Obsolete; use --with-x.
1055    with_x=yes ;;
1056
1057  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1058  | --x-incl | --x-inc | --x-in | --x-i)
1059    ac_prev=x_includes ;;
1060  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1061  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1062    x_includes=$ac_optarg ;;
1063
1064  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1065  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1066    ac_prev=x_libraries ;;
1067  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1068  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1069    x_libraries=$ac_optarg ;;
1070
1071  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1072Try \`$0 --help' for more information"
1073    ;;
1074
1075  *=*)
1076    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1077    # Reject names that are not valid shell variable names.
1078    case $ac_envvar in #(
1079      '' | [0-9]* | *[!_$as_cr_alnum]* )
1080      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1081    esac
1082    eval $ac_envvar=\$ac_optarg
1083    export $ac_envvar ;;
1084
1085  *)
1086    # FIXME: should be removed in autoconf 3.0.
1087    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1088    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1089      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1090    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1091    ;;
1092
1093  esac
1094done
1095
1096if test -n "$ac_prev"; then
1097  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1098  as_fn_error $? "missing argument to $ac_option"
1099fi
1100
1101if test -n "$ac_unrecognized_opts"; then
1102  case $enable_option_checking in
1103    no) ;;
1104    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1105    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1106  esac
1107fi
1108
1109# Check all directory arguments for consistency.
1110for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1111		datadir sysconfdir sharedstatedir localstatedir includedir \
1112		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1113		libdir localedir mandir runstatedir
1114do
1115  eval ac_val=\$$ac_var
1116  # Remove trailing slashes.
1117  case $ac_val in
1118    */ )
1119      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1120      eval $ac_var=\$ac_val;;
1121  esac
1122  # Be sure to have absolute directory names.
1123  case $ac_val in
1124    [\\/$]* | ?:[\\/]* )  continue;;
1125    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1126  esac
1127  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1128done
1129
1130# There might be people who depend on the old broken behavior: `$host'
1131# used to hold the argument of --host etc.
1132# FIXME: To remove some day.
1133build=$build_alias
1134host=$host_alias
1135target=$target_alias
1136
1137# FIXME: To remove some day.
1138if test "x$host_alias" != x; then
1139  if test "x$build_alias" = x; then
1140    cross_compiling=maybe
1141  elif test "x$build_alias" != "x$host_alias"; then
1142    cross_compiling=yes
1143  fi
1144fi
1145
1146ac_tool_prefix=
1147test -n "$host_alias" && ac_tool_prefix=$host_alias-
1148
1149test "$silent" = yes && exec 6>/dev/null
1150
1151
1152ac_pwd=`pwd` && test -n "$ac_pwd" &&
1153ac_ls_di=`ls -di .` &&
1154ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1155  as_fn_error $? "working directory cannot be determined"
1156test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1157  as_fn_error $? "pwd does not report name of working directory"
1158
1159
1160# Find the source files, if location was not specified.
1161if test -z "$srcdir"; then
1162  ac_srcdir_defaulted=yes
1163  # Try the directory containing this script, then the parent directory.
1164  ac_confdir=`$as_dirname -- "$as_myself" ||
1165$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1166	 X"$as_myself" : 'X\(//\)[^/]' \| \
1167	 X"$as_myself" : 'X\(//\)$' \| \
1168	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1169$as_echo X"$as_myself" |
1170    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1171	    s//\1/
1172	    q
1173	  }
1174	  /^X\(\/\/\)[^/].*/{
1175	    s//\1/
1176	    q
1177	  }
1178	  /^X\(\/\/\)$/{
1179	    s//\1/
1180	    q
1181	  }
1182	  /^X\(\/\).*/{
1183	    s//\1/
1184	    q
1185	  }
1186	  s/.*/./; q'`
1187  srcdir=$ac_confdir
1188  if test ! -r "$srcdir/$ac_unique_file"; then
1189    srcdir=..
1190  fi
1191else
1192  ac_srcdir_defaulted=no
1193fi
1194if test ! -r "$srcdir/$ac_unique_file"; then
1195  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1196  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1197fi
1198ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1199ac_abs_confdir=`(
1200	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1201	pwd)`
1202# When building in place, set srcdir=.
1203if test "$ac_abs_confdir" = "$ac_pwd"; then
1204  srcdir=.
1205fi
1206# Remove unnecessary trailing slashes from srcdir.
1207# Double slashes in file names in object file debugging info
1208# mess up M-x gdb in Emacs.
1209case $srcdir in
1210*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1211esac
1212for ac_var in $ac_precious_vars; do
1213  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1214  eval ac_env_${ac_var}_value=\$${ac_var}
1215  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1216  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1217done
1218
1219#
1220# Report the --help message.
1221#
1222if test "$ac_init_help" = "long"; then
1223  # Omit some internal or obsolete options to make the list less imposing.
1224  # This message is too long to be a string in the A/UX 3.1 sh.
1225  cat <<_ACEOF
1226\`configure' configures Xen Hypervisor Documentation 4.10 to adapt to many kinds of systems.
1227
1228Usage: $0 [OPTION]... [VAR=VALUE]...
1229
1230To assign environment variables (e.g., CC, CFLAGS...), specify them as
1231VAR=VALUE.  See below for descriptions of some of the useful variables.
1232
1233Defaults for the options are specified in brackets.
1234
1235Configuration:
1236  -h, --help              display this help and exit
1237      --help=short        display options specific to this package
1238      --help=recursive    display the short help of all the included packages
1239  -V, --version           display version information and exit
1240  -q, --quiet, --silent   do not print \`checking ...' messages
1241      --cache-file=FILE   cache test results in FILE [disabled]
1242  -C, --config-cache      alias for \`--cache-file=config.cache'
1243  -n, --no-create         do not create output files
1244      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1245
1246Installation directories:
1247  --prefix=PREFIX         install architecture-independent files in PREFIX
1248                          [$ac_default_prefix]
1249  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1250                          [PREFIX]
1251
1252By default, \`make install' will install all the files in
1253\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1254an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1255for instance \`--prefix=\$HOME'.
1256
1257For better control, use the options below.
1258
1259Fine tuning of the installation directories:
1260  --bindir=DIR            user executables [EPREFIX/bin]
1261  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1262  --libexecdir=DIR        program executables [EPREFIX/libexec]
1263  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1264  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1265  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1266  --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
1267  --libdir=DIR            object code libraries [EPREFIX/lib]
1268  --includedir=DIR        C header files [PREFIX/include]
1269  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1270  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1271  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1272  --infodir=DIR           info documentation [DATAROOTDIR/info]
1273  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1274  --mandir=DIR            man documentation [DATAROOTDIR/man]
1275  --docdir=DIR            documentation root [DATAROOTDIR/doc/xen]
1276  --htmldir=DIR           html documentation [DOCDIR]
1277  --dvidir=DIR            dvi documentation [DOCDIR]
1278  --pdfdir=DIR            pdf documentation [DOCDIR]
1279  --psdir=DIR             ps documentation [DOCDIR]
1280_ACEOF
1281
1282  cat <<\_ACEOF
1283_ACEOF
1284fi
1285
1286if test -n "$ac_init_help"; then
1287  case $ac_init_help in
1288     short | recursive ) echo "Configuration of Xen Hypervisor Documentation 4.10:";;
1289   esac
1290  cat <<\_ACEOF
1291
1292Optional Packages:
1293  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1294  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1295  --with-initddir=DIR     Path to directory with sysv runlevel scripts.
1296                          [SYSCONFDIR/init.d]
1297  --with-sysconfig-leaf-dir=SUBDIR
1298                          Name of subdirectory in /etc to store runtime
1299                          options for runlevel scripts and daemons such as
1300                          xenstored. This should be either "sysconfig" or
1301                          "default". [sysconfig]
1302  --with-libexec-leaf-dir=SUBDIR
1303                          Name of subdirectory in libexecdir to use.
1304  --with-xen-dumpdir=DIR  Path to directory for domU crash dumps.
1305                          [LOCALSTATEDIR/lib/xen/dump]
1306  --with-rundir=DIR       Path to directory for runtime data.
1307                          [LOCALSTATEDIR/run]
1308
1309Some influential environment variables:
1310  FIG2DEV     Path to fig2dev tool
1311  POD2MAN     Path to pod2man tool
1312  POD2HTML    Path to pod2html tool
1313  POD2TEXT    Path to pod2text tool
1314  PANDOC      Path to pandoc tool
1315  MARKDOWN    Path to markdown tool
1316  PERL        Path to Perl parser
1317
1318Use these variables to override the choices made by `configure' or to help
1319it to find libraries and programs with nonstandard names/locations.
1320
1321Report bugs to <xen-devel@lists.xen.org>.
1322Xen Hypervisor Documentation home page: <http://www.xen.org/>.
1323_ACEOF
1324ac_status=$?
1325fi
1326
1327if test "$ac_init_help" = "recursive"; then
1328  # If there are subdirs, report their specific --help.
1329  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1330    test -d "$ac_dir" ||
1331      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1332      continue
1333    ac_builddir=.
1334
1335case "$ac_dir" in
1336.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1337*)
1338  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1339  # A ".." for each directory in $ac_dir_suffix.
1340  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1341  case $ac_top_builddir_sub in
1342  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1343  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1344  esac ;;
1345esac
1346ac_abs_top_builddir=$ac_pwd
1347ac_abs_builddir=$ac_pwd$ac_dir_suffix
1348# for backward compatibility:
1349ac_top_builddir=$ac_top_build_prefix
1350
1351case $srcdir in
1352  .)  # We are building in place.
1353    ac_srcdir=.
1354    ac_top_srcdir=$ac_top_builddir_sub
1355    ac_abs_top_srcdir=$ac_pwd ;;
1356  [\\/]* | ?:[\\/]* )  # Absolute name.
1357    ac_srcdir=$srcdir$ac_dir_suffix;
1358    ac_top_srcdir=$srcdir
1359    ac_abs_top_srcdir=$srcdir ;;
1360  *) # Relative name.
1361    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1362    ac_top_srcdir=$ac_top_build_prefix$srcdir
1363    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1364esac
1365ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1366
1367    cd "$ac_dir" || { ac_status=$?; continue; }
1368    # Check for guested configure.
1369    if test -f "$ac_srcdir/configure.gnu"; then
1370      echo &&
1371      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1372    elif test -f "$ac_srcdir/configure"; then
1373      echo &&
1374      $SHELL "$ac_srcdir/configure" --help=recursive
1375    else
1376      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1377    fi || ac_status=$?
1378    cd "$ac_pwd" || { ac_status=$?; break; }
1379  done
1380fi
1381
1382test -n "$ac_init_help" && exit $ac_status
1383if $ac_init_version; then
1384  cat <<\_ACEOF
1385Xen Hypervisor Documentation configure 4.10
1386generated by GNU Autoconf 2.69
1387
1388Copyright (C) 2012 Free Software Foundation, Inc.
1389This configure script is free software; the Free Software Foundation
1390gives unlimited permission to copy, distribute and modify it.
1391_ACEOF
1392  exit
1393fi
1394
1395## ------------------------ ##
1396## Autoconf initialization. ##
1397## ------------------------ ##
1398cat >config.log <<_ACEOF
1399This file contains any messages produced by compilers while
1400running configure, to aid debugging if configure makes a mistake.
1401
1402It was created by Xen Hypervisor Documentation $as_me 4.10, which was
1403generated by GNU Autoconf 2.69.  Invocation command line was
1404
1405  $ $0 $@
1406
1407_ACEOF
1408exec 5>>config.log
1409{
1410cat <<_ASUNAME
1411## --------- ##
1412## Platform. ##
1413## --------- ##
1414
1415hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1416uname -m = `(uname -m) 2>/dev/null || echo unknown`
1417uname -r = `(uname -r) 2>/dev/null || echo unknown`
1418uname -s = `(uname -s) 2>/dev/null || echo unknown`
1419uname -v = `(uname -v) 2>/dev/null || echo unknown`
1420
1421/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1422/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1423
1424/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1425/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1426/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1427/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1428/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1429/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1430/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1431
1432_ASUNAME
1433
1434as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1435for as_dir in $PATH
1436do
1437  IFS=$as_save_IFS
1438  test -z "$as_dir" && as_dir=.
1439    $as_echo "PATH: $as_dir"
1440  done
1441IFS=$as_save_IFS
1442
1443} >&5
1444
1445cat >&5 <<_ACEOF
1446
1447
1448## ----------- ##
1449## Core tests. ##
1450## ----------- ##
1451
1452_ACEOF
1453
1454
1455# Keep a trace of the command line.
1456# Strip out --no-create and --no-recursion so they do not pile up.
1457# Strip out --silent because we don't want to record it for future runs.
1458# Also quote any args containing shell meta-characters.
1459# Make two passes to allow for proper duplicate-argument suppression.
1460ac_configure_args=
1461ac_configure_args0=
1462ac_configure_args1=
1463ac_must_keep_next=false
1464for ac_pass in 1 2
1465do
1466  for ac_arg
1467  do
1468    case $ac_arg in
1469    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1470    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1471    | -silent | --silent | --silen | --sile | --sil)
1472      continue ;;
1473    *\'*)
1474      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1475    esac
1476    case $ac_pass in
1477    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1478    2)
1479      as_fn_append ac_configure_args1 " '$ac_arg'"
1480      if test $ac_must_keep_next = true; then
1481	ac_must_keep_next=false # Got value, back to normal.
1482      else
1483	case $ac_arg in
1484	  *=* | --config-cache | -C | -disable-* | --disable-* \
1485	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1486	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1487	  | -with-* | --with-* | -without-* | --without-* | --x)
1488	    case "$ac_configure_args0 " in
1489	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1490	    esac
1491	    ;;
1492	  -* ) ac_must_keep_next=true ;;
1493	esac
1494      fi
1495      as_fn_append ac_configure_args " '$ac_arg'"
1496      ;;
1497    esac
1498  done
1499done
1500{ ac_configure_args0=; unset ac_configure_args0;}
1501{ ac_configure_args1=; unset ac_configure_args1;}
1502
1503# When interrupted or exit'd, cleanup temporary files, and complete
1504# config.log.  We remove comments because anyway the quotes in there
1505# would cause problems or look ugly.
1506# WARNING: Use '\'' to represent an apostrophe within the trap.
1507# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1508trap 'exit_status=$?
1509  # Save into config.log some information that might help in debugging.
1510  {
1511    echo
1512
1513    $as_echo "## ---------------- ##
1514## Cache variables. ##
1515## ---------------- ##"
1516    echo
1517    # The following way of writing the cache mishandles newlines in values,
1518(
1519  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1520    eval ac_val=\$$ac_var
1521    case $ac_val in #(
1522    *${as_nl}*)
1523      case $ac_var in #(
1524      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1525$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1526      esac
1527      case $ac_var in #(
1528      _ | IFS | as_nl) ;; #(
1529      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1530      *) { eval $ac_var=; unset $ac_var;} ;;
1531      esac ;;
1532    esac
1533  done
1534  (set) 2>&1 |
1535    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1536    *${as_nl}ac_space=\ *)
1537      sed -n \
1538	"s/'\''/'\''\\\\'\'''\''/g;
1539	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1540      ;; #(
1541    *)
1542      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1543      ;;
1544    esac |
1545    sort
1546)
1547    echo
1548
1549    $as_echo "## ----------------- ##
1550## Output variables. ##
1551## ----------------- ##"
1552    echo
1553    for ac_var in $ac_subst_vars
1554    do
1555      eval ac_val=\$$ac_var
1556      case $ac_val in
1557      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1558      esac
1559      $as_echo "$ac_var='\''$ac_val'\''"
1560    done | sort
1561    echo
1562
1563    if test -n "$ac_subst_files"; then
1564      $as_echo "## ------------------- ##
1565## File substitutions. ##
1566## ------------------- ##"
1567      echo
1568      for ac_var in $ac_subst_files
1569      do
1570	eval ac_val=\$$ac_var
1571	case $ac_val in
1572	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1573	esac
1574	$as_echo "$ac_var='\''$ac_val'\''"
1575      done | sort
1576      echo
1577    fi
1578
1579    if test -s confdefs.h; then
1580      $as_echo "## ----------- ##
1581## confdefs.h. ##
1582## ----------- ##"
1583      echo
1584      cat confdefs.h
1585      echo
1586    fi
1587    test "$ac_signal" != 0 &&
1588      $as_echo "$as_me: caught signal $ac_signal"
1589    $as_echo "$as_me: exit $exit_status"
1590  } >&5
1591  rm -f core *.core core.conftest.* &&
1592    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1593    exit $exit_status
1594' 0
1595for ac_signal in 1 2 13 15; do
1596  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1597done
1598ac_signal=0
1599
1600# confdefs.h avoids OS command line length limits that DEFS can exceed.
1601rm -f -r conftest* confdefs.h
1602
1603$as_echo "/* confdefs.h */" > confdefs.h
1604
1605# Predefined preprocessor variables.
1606
1607cat >>confdefs.h <<_ACEOF
1608#define PACKAGE_NAME "$PACKAGE_NAME"
1609_ACEOF
1610
1611cat >>confdefs.h <<_ACEOF
1612#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1613_ACEOF
1614
1615cat >>confdefs.h <<_ACEOF
1616#define PACKAGE_VERSION "$PACKAGE_VERSION"
1617_ACEOF
1618
1619cat >>confdefs.h <<_ACEOF
1620#define PACKAGE_STRING "$PACKAGE_STRING"
1621_ACEOF
1622
1623cat >>confdefs.h <<_ACEOF
1624#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1625_ACEOF
1626
1627cat >>confdefs.h <<_ACEOF
1628#define PACKAGE_URL "$PACKAGE_URL"
1629_ACEOF
1630
1631
1632# Let the site file select an alternate cache file if it wants to.
1633# Prefer an explicitly selected file to automatically selected ones.
1634ac_site_file1=NONE
1635ac_site_file2=NONE
1636if test -n "$CONFIG_SITE"; then
1637  # We do not want a PATH search for config.site.
1638  case $CONFIG_SITE in #((
1639    -*)  ac_site_file1=./$CONFIG_SITE;;
1640    */*) ac_site_file1=$CONFIG_SITE;;
1641    *)   ac_site_file1=./$CONFIG_SITE;;
1642  esac
1643elif test "x$prefix" != xNONE; then
1644  ac_site_file1=$prefix/share/config.site
1645  ac_site_file2=$prefix/etc/config.site
1646else
1647  ac_site_file1=$ac_default_prefix/share/config.site
1648  ac_site_file2=$ac_default_prefix/etc/config.site
1649fi
1650for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1651do
1652  test "x$ac_site_file" = xNONE && continue
1653  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1654    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1655$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1656    sed 's/^/| /' "$ac_site_file" >&5
1657    . "$ac_site_file" \
1658      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1659$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1660as_fn_error $? "failed to load site script $ac_site_file
1661See \`config.log' for more details" "$LINENO" 5; }
1662  fi
1663done
1664
1665if test -r "$cache_file"; then
1666  # Some versions of bash will fail to source /dev/null (special files
1667  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1668  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1669    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1670$as_echo "$as_me: loading cache $cache_file" >&6;}
1671    case $cache_file in
1672      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1673      *)                      . "./$cache_file";;
1674    esac
1675  fi
1676else
1677  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1678$as_echo "$as_me: creating cache $cache_file" >&6;}
1679  >$cache_file
1680fi
1681
1682# Check that the precious variables saved in the cache have kept the same
1683# value.
1684ac_cache_corrupted=false
1685for ac_var in $ac_precious_vars; do
1686  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1687  eval ac_new_set=\$ac_env_${ac_var}_set
1688  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1689  eval ac_new_val=\$ac_env_${ac_var}_value
1690  case $ac_old_set,$ac_new_set in
1691    set,)
1692      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1693$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1694      ac_cache_corrupted=: ;;
1695    ,set)
1696      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1697$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1698      ac_cache_corrupted=: ;;
1699    ,);;
1700    *)
1701      if test "x$ac_old_val" != "x$ac_new_val"; then
1702	# differences in whitespace do not lead to failure.
1703	ac_old_val_w=`echo x $ac_old_val`
1704	ac_new_val_w=`echo x $ac_new_val`
1705	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1706	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1707$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1708	  ac_cache_corrupted=:
1709	else
1710	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1711$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1712	  eval $ac_var=\$ac_old_val
1713	fi
1714	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1715$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1716	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1717$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1718      fi;;
1719  esac
1720  # Pass precious variables to config.status.
1721  if test "$ac_new_set" = set; then
1722    case $ac_new_val in
1723    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1724    *) ac_arg=$ac_var=$ac_new_val ;;
1725    esac
1726    case " $ac_configure_args " in
1727      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1728      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1729    esac
1730  fi
1731done
1732if $ac_cache_corrupted; then
1733  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1734$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1735  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1736$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1737  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1738fi
1739## -------------------- ##
1740## Main body of script. ##
1741## -------------------- ##
1742
1743ac_ext=c
1744ac_cpp='$CPP $CPPFLAGS'
1745ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1746ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1747ac_compiler_gnu=$ac_cv_c_compiler_gnu
1748
1749
1750
1751ac_config_files="$ac_config_files ../config/Docs.mk man/xl.cfg.pod.5 man/xl.pod.1"
1752
1753ac_aux_dir=
1754for ac_dir in ../ "$srcdir"/../; do
1755  if test -f "$ac_dir/install-sh"; then
1756    ac_aux_dir=$ac_dir
1757    ac_install_sh="$ac_aux_dir/install-sh -c"
1758    break
1759  elif test -f "$ac_dir/install.sh"; then
1760    ac_aux_dir=$ac_dir
1761    ac_install_sh="$ac_aux_dir/install.sh -c"
1762    break
1763  elif test -f "$ac_dir/shtool"; then
1764    ac_aux_dir=$ac_dir
1765    ac_install_sh="$ac_aux_dir/shtool install -c"
1766    break
1767  fi
1768done
1769if test -z "$ac_aux_dir"; then
1770  as_fn_error $? "cannot find install-sh, install.sh, or shtool in ../ \"$srcdir\"/../" "$LINENO" 5
1771fi
1772
1773# These three variables are undocumented and unsupported,
1774# and are intended to be withdrawn in a future Autoconf release.
1775# They can cause serious problems if a builder's source tree is in a directory
1776# whose full name contains unusual characters.
1777ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1778ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1779ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1780
1781
1782
1783# M4 Macro includes
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798case "$host_os" in
1799*freebsd*) XENSTORED_KVA=/dev/xen/xenstored ;;
1800*) XENSTORED_KVA=/proc/xen/xsd_kva ;;
1801esac
1802
1803
1804case "$host_os" in
1805*freebsd*) XENSTORED_PORT=/dev/xen/xenstored ;;
1806*) XENSTORED_PORT=/proc/xen/xsd_port ;;
1807esac
1808
1809
1810
1811
1812test "x$prefix" = "xNONE" && prefix=$ac_default_prefix
1813test "x$exec_prefix" = "xNONE" && exec_prefix=${prefix}
1814
1815if test "$localstatedir" = '${prefix}/var' ; then
1816    localstatedir=/var
1817fi
1818
1819bindir=`eval echo $bindir`
1820sbindir=`eval echo $sbindir`
1821libdir=`eval echo $libdir`
1822
1823if test "x$sysconfdir" = 'x${prefix}/etc' ; then
1824    case "$host_os" in
1825         *freebsd*)
1826         sysconfdir=$prefix/etc
1827         ;;
1828         *solaris*)
1829         if test "$prefix" = "/usr" ; then
1830             sysconfdir=/etc
1831         else
1832             sysconfdir=$prefix/etc
1833         fi
1834         ;;
1835         *)
1836         sysconfdir=/etc
1837         ;;
1838    esac
1839fi
1840
1841
1842# Check whether --with-initddir was given.
1843if test "${with_initddir+set}" = set; then :
1844  withval=$with_initddir; initddir_path=$withval
1845else
1846  case "$host_os" in
1847         *linux*)
1848         if test -d $sysconfdir/rc.d/init.d ; then
1849             initddir_path=$sysconfdir/rc.d/init.d
1850         else
1851             initddir_path=$sysconfdir/init.d
1852         fi
1853         ;;
1854         *)
1855         initddir_path=$sysconfdir/rc.d
1856         ;;
1857     esac
1858fi
1859
1860
1861
1862# Check whether --with-sysconfig-leaf-dir was given.
1863if test "${with_sysconfig_leaf_dir+set}" = set; then :
1864  withval=$with_sysconfig_leaf_dir; config_leaf_dir=$withval
1865else
1866  config_leaf_dir=sysconfig
1867    if test ! -d /etc/sysconfig ; then config_leaf_dir=default ; fi
1868fi
1869
1870CONFIG_LEAF_DIR=$config_leaf_dir
1871
1872
1873
1874# Check whether --with-libexec-leaf-dir was given.
1875if test "${with_libexec_leaf_dir+set}" = set; then :
1876  withval=$with_libexec_leaf_dir; libexec_subdir=$withval
1877else
1878  libexec_subdir=$PACKAGE_TARNAME
1879fi
1880
1881
1882
1883# Check whether --with-xen-dumpdir was given.
1884if test "${with_xen_dumpdir+set}" = set; then :
1885  withval=$with_xen_dumpdir; xen_dumpdir_path=$withval
1886else
1887  xen_dumpdir_path=$localstatedir/lib/xen/dump
1888fi
1889
1890
1891
1892# Check whether --with-rundir was given.
1893if test "${with_rundir+set}" = set; then :
1894  withval=$with_rundir; rundir_path=$withval
1895else
1896  rundir_path=$localstatedir/run
1897fi
1898
1899
1900if test "$libexecdir" = '${exec_prefix}/libexec' ; then
1901    case "$host_os" in
1902         *netbsd*) ;;
1903         *)
1904         libexecdir='${exec_prefix}/lib'
1905         ;;
1906    esac
1907fi
1908LIBEXEC=`eval echo $libexecdir/$libexec_subdir`
1909
1910
1911LIBEXEC_BIN=${LIBEXEC}/bin
1912
1913LIBEXEC_LIB=${LIBEXEC}/lib
1914
1915LIBEXEC_INC=${LIBEXEC}/include
1916
1917XENFIRMWAREDIR=${LIBEXEC}/boot
1918
1919
1920XEN_RUN_DIR=$rundir_path/xen
1921
1922
1923XEN_LOG_DIR=$localstatedir/log/xen
1924
1925
1926XEN_LIB_STORED=$localstatedir/lib/xenstored
1927
1928
1929XEN_RUN_STORED=$rundir_path/xenstored
1930
1931
1932XEN_LIB_DIR=$localstatedir/lib/xen
1933
1934
1935SHAREDIR=$prefix/share
1936
1937
1938CONFIG_DIR=$sysconfdir
1939
1940
1941INITD_DIR=$initddir_path
1942
1943
1944XEN_CONFIG_DIR=$CONFIG_DIR/xen
1945
1946
1947XEN_SCRIPT_DIR=$XEN_CONFIG_DIR/scripts
1948
1949
1950case "$host_os" in
1951*freebsd*) XEN_LOCK_DIR=$localstatedir/lib ;;
1952*netbsd*) XEN_LOCK_DIR=$localstatedir/lib ;;
1953*) XEN_LOCK_DIR=$localstatedir/lock ;;
1954esac
1955
1956
1957XEN_PAGING_DIR=$localstatedir/lib/xen/xenpaging
1958
1959
1960XEN_DUMP_DIR=$xen_dumpdir_path
1961
1962
1963
1964
1965
1966    # Extract the first word of "fig2dev", so it can be a program name with args.
1967set dummy fig2dev; ac_word=$2
1968{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1969$as_echo_n "checking for $ac_word... " >&6; }
1970if ${ac_cv_path_FIG2DEV+:} false; then :
1971  $as_echo_n "(cached) " >&6
1972else
1973  case $FIG2DEV in
1974  [\\/]* | ?:[\\/]*)
1975  ac_cv_path_FIG2DEV="$FIG2DEV" # Let the user override the test with a path.
1976  ;;
1977  *)
1978  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1979for as_dir in $PATH
1980do
1981  IFS=$as_save_IFS
1982  test -z "$as_dir" && as_dir=.
1983    for ac_exec_ext in '' $ac_executable_extensions; do
1984  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1985    ac_cv_path_FIG2DEV="$as_dir/$ac_word$ac_exec_ext"
1986    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1987    break 2
1988  fi
1989done
1990  done
1991IFS=$as_save_IFS
1992
1993  ;;
1994esac
1995fi
1996FIG2DEV=$ac_cv_path_FIG2DEV
1997if test -n "$FIG2DEV"; then
1998  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FIG2DEV" >&5
1999$as_echo "$FIG2DEV" >&6; }
2000else
2001  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2002$as_echo "no" >&6; }
2003fi
2004
2005
2006    if ! test -x "$ac_cv_path_FIG2DEV"; then :
2007
2008        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fig2dev is not available so some documentation won't be built" >&5
2009$as_echo "$as_me: WARNING: fig2dev is not available so some documentation won't be built" >&2;}
2010
2011fi
2012
2013
2014
2015    # Extract the first word of "pod2man", so it can be a program name with args.
2016set dummy pod2man; ac_word=$2
2017{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2018$as_echo_n "checking for $ac_word... " >&6; }
2019if ${ac_cv_path_POD2MAN+:} false; then :
2020  $as_echo_n "(cached) " >&6
2021else
2022  case $POD2MAN in
2023  [\\/]* | ?:[\\/]*)
2024  ac_cv_path_POD2MAN="$POD2MAN" # Let the user override the test with a path.
2025  ;;
2026  *)
2027  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2028for as_dir in $PATH
2029do
2030  IFS=$as_save_IFS
2031  test -z "$as_dir" && as_dir=.
2032    for ac_exec_ext in '' $ac_executable_extensions; do
2033  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2034    ac_cv_path_POD2MAN="$as_dir/$ac_word$ac_exec_ext"
2035    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2036    break 2
2037  fi
2038done
2039  done
2040IFS=$as_save_IFS
2041
2042  ;;
2043esac
2044fi
2045POD2MAN=$ac_cv_path_POD2MAN
2046if test -n "$POD2MAN"; then
2047  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2MAN" >&5
2048$as_echo "$POD2MAN" >&6; }
2049else
2050  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2051$as_echo "no" >&6; }
2052fi
2053
2054
2055    if ! test -x "$ac_cv_path_POD2MAN"; then :
2056
2057        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2man is not available so some documentation won't be built" >&5
2058$as_echo "$as_me: WARNING: pod2man is not available so some documentation won't be built" >&2;}
2059
2060fi
2061
2062
2063
2064    # Extract the first word of "pod2html", so it can be a program name with args.
2065set dummy pod2html; ac_word=$2
2066{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2067$as_echo_n "checking for $ac_word... " >&6; }
2068if ${ac_cv_path_POD2HTML+:} false; then :
2069  $as_echo_n "(cached) " >&6
2070else
2071  case $POD2HTML in
2072  [\\/]* | ?:[\\/]*)
2073  ac_cv_path_POD2HTML="$POD2HTML" # Let the user override the test with a path.
2074  ;;
2075  *)
2076  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2077for as_dir in $PATH
2078do
2079  IFS=$as_save_IFS
2080  test -z "$as_dir" && as_dir=.
2081    for ac_exec_ext in '' $ac_executable_extensions; do
2082  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2083    ac_cv_path_POD2HTML="$as_dir/$ac_word$ac_exec_ext"
2084    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2085    break 2
2086  fi
2087done
2088  done
2089IFS=$as_save_IFS
2090
2091  ;;
2092esac
2093fi
2094POD2HTML=$ac_cv_path_POD2HTML
2095if test -n "$POD2HTML"; then
2096  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2HTML" >&5
2097$as_echo "$POD2HTML" >&6; }
2098else
2099  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2100$as_echo "no" >&6; }
2101fi
2102
2103
2104    if ! test -x "$ac_cv_path_POD2HTML"; then :
2105
2106        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2html is not available so some documentation won't be built" >&5
2107$as_echo "$as_me: WARNING: pod2html is not available so some documentation won't be built" >&2;}
2108
2109fi
2110
2111
2112
2113    # Extract the first word of "pod2text", so it can be a program name with args.
2114set dummy pod2text; ac_word=$2
2115{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2116$as_echo_n "checking for $ac_word... " >&6; }
2117if ${ac_cv_path_POD2TEXT+:} false; then :
2118  $as_echo_n "(cached) " >&6
2119else
2120  case $POD2TEXT in
2121  [\\/]* | ?:[\\/]*)
2122  ac_cv_path_POD2TEXT="$POD2TEXT" # Let the user override the test with a path.
2123  ;;
2124  *)
2125  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2126for as_dir in $PATH
2127do
2128  IFS=$as_save_IFS
2129  test -z "$as_dir" && as_dir=.
2130    for ac_exec_ext in '' $ac_executable_extensions; do
2131  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2132    ac_cv_path_POD2TEXT="$as_dir/$ac_word$ac_exec_ext"
2133    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2134    break 2
2135  fi
2136done
2137  done
2138IFS=$as_save_IFS
2139
2140  ;;
2141esac
2142fi
2143POD2TEXT=$ac_cv_path_POD2TEXT
2144if test -n "$POD2TEXT"; then
2145  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2TEXT" >&5
2146$as_echo "$POD2TEXT" >&6; }
2147else
2148  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2149$as_echo "no" >&6; }
2150fi
2151
2152
2153    if ! test -x "$ac_cv_path_POD2TEXT"; then :
2154
2155        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2text is not available so some documentation won't be built" >&5
2156$as_echo "$as_me: WARNING: pod2text is not available so some documentation won't be built" >&2;}
2157
2158fi
2159
2160
2161
2162    # Extract the first word of "pandoc", so it can be a program name with args.
2163set dummy pandoc; ac_word=$2
2164{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2165$as_echo_n "checking for $ac_word... " >&6; }
2166if ${ac_cv_path_PANDOC+:} false; then :
2167  $as_echo_n "(cached) " >&6
2168else
2169  case $PANDOC in
2170  [\\/]* | ?:[\\/]*)
2171  ac_cv_path_PANDOC="$PANDOC" # Let the user override the test with a path.
2172  ;;
2173  *)
2174  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2175for as_dir in $PATH
2176do
2177  IFS=$as_save_IFS
2178  test -z "$as_dir" && as_dir=.
2179    for ac_exec_ext in '' $ac_executable_extensions; do
2180  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2181    ac_cv_path_PANDOC="$as_dir/$ac_word$ac_exec_ext"
2182    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2183    break 2
2184  fi
2185done
2186  done
2187IFS=$as_save_IFS
2188
2189  ;;
2190esac
2191fi
2192PANDOC=$ac_cv_path_PANDOC
2193if test -n "$PANDOC"; then
2194  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PANDOC" >&5
2195$as_echo "$PANDOC" >&6; }
2196else
2197  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2198$as_echo "no" >&6; }
2199fi
2200
2201
2202    if ! test -x "$ac_cv_path_PANDOC"; then :
2203
2204        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pandoc is not available so some documentation won't be built" >&5
2205$as_echo "$as_me: WARNING: pandoc is not available so some documentation won't be built" >&2;}
2206
2207fi
2208
2209
2210
2211    for ac_prog in markdown markdown_py
2212do
2213  # Extract the first word of "$ac_prog", so it can be a program name with args.
2214set dummy $ac_prog; ac_word=$2
2215{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2216$as_echo_n "checking for $ac_word... " >&6; }
2217if ${ac_cv_path_MARKDOWN+:} false; then :
2218  $as_echo_n "(cached) " >&6
2219else
2220  case $MARKDOWN in
2221  [\\/]* | ?:[\\/]*)
2222  ac_cv_path_MARKDOWN="$MARKDOWN" # Let the user override the test with a path.
2223  ;;
2224  *)
2225  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2226for as_dir in $PATH
2227do
2228  IFS=$as_save_IFS
2229  test -z "$as_dir" && as_dir=.
2230    for ac_exec_ext in '' $ac_executable_extensions; do
2231  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2232    ac_cv_path_MARKDOWN="$as_dir/$ac_word$ac_exec_ext"
2233    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2234    break 2
2235  fi
2236done
2237  done
2238IFS=$as_save_IFS
2239
2240  ;;
2241esac
2242fi
2243MARKDOWN=$ac_cv_path_MARKDOWN
2244if test -n "$MARKDOWN"; then
2245  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MARKDOWN" >&5
2246$as_echo "$MARKDOWN" >&6; }
2247else
2248  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2249$as_echo "no" >&6; }
2250fi
2251
2252
2253  test -n "$MARKDOWN" && break
2254done
2255
2256    if ! test -x "$ac_cv_path_MARKDOWN"; then :
2257
2258        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: markdown is not available so some documentation won't be built" >&5
2259$as_echo "$as_me: WARNING: markdown is not available so some documentation won't be built" >&2;}
2260
2261fi
2262
2263
2264
2265# Extract the first word of "perl", so it can be a program name with args.
2266set dummy perl; ac_word=$2
2267{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2268$as_echo_n "checking for $ac_word... " >&6; }
2269if ${ac_cv_path_PERL+:} false; then :
2270  $as_echo_n "(cached) " >&6
2271else
2272  case $PERL in
2273  [\\/]* | ?:[\\/]*)
2274  ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
2275  ;;
2276  *)
2277  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2278for as_dir in $PATH
2279do
2280  IFS=$as_save_IFS
2281  test -z "$as_dir" && as_dir=.
2282    for ac_exec_ext in '' $ac_executable_extensions; do
2283  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2284    ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
2285    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2286    break 2
2287  fi
2288done
2289  done
2290IFS=$as_save_IFS
2291
2292  test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="no"
2293  ;;
2294esac
2295fi
2296PERL=$ac_cv_path_PERL
2297if test -n "$PERL"; then
2298  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5
2299$as_echo "$PERL" >&6; }
2300else
2301  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2302$as_echo "no" >&6; }
2303fi
2304
2305
2306if test x"${PERL}" = x"no"
2307then
2308    as_fn_error $? "Unable to find perl, please install perl" "$LINENO" 5
2309fi
2310
2311cat >confcache <<\_ACEOF
2312# This file is a shell script that caches the results of configure
2313# tests run on this system so they can be shared between configure
2314# scripts and configure runs, see configure's option --config-cache.
2315# It is not useful on other systems.  If it contains results you don't
2316# want to keep, you may remove or edit it.
2317#
2318# config.status only pays attention to the cache file if you give it
2319# the --recheck option to rerun configure.
2320#
2321# `ac_cv_env_foo' variables (set or unset) will be overridden when
2322# loading this file, other *unset* `ac_cv_foo' will be assigned the
2323# following values.
2324
2325_ACEOF
2326
2327# The following way of writing the cache mishandles newlines in values,
2328# but we know of no workaround that is simple, portable, and efficient.
2329# So, we kill variables containing newlines.
2330# Ultrix sh set writes to stderr and can't be redirected directly,
2331# and sets the high bit in the cache file unless we assign to the vars.
2332(
2333  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
2334    eval ac_val=\$$ac_var
2335    case $ac_val in #(
2336    *${as_nl}*)
2337      case $ac_var in #(
2338      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2339$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2340      esac
2341      case $ac_var in #(
2342      _ | IFS | as_nl) ;; #(
2343      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
2344      *) { eval $ac_var=; unset $ac_var;} ;;
2345      esac ;;
2346    esac
2347  done
2348
2349  (set) 2>&1 |
2350    case $as_nl`(ac_space=' '; set) 2>&1` in #(
2351    *${as_nl}ac_space=\ *)
2352      # `set' does not quote correctly, so add quotes: double-quote
2353      # substitution turns \\\\ into \\, and sed turns \\ into \.
2354      sed -n \
2355	"s/'/'\\\\''/g;
2356	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
2357      ;; #(
2358    *)
2359      # `set' quotes correctly as required by POSIX, so do not add quotes.
2360      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2361      ;;
2362    esac |
2363    sort
2364) |
2365  sed '
2366     /^ac_cv_env_/b end
2367     t clear
2368     :clear
2369     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
2370     t end
2371     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
2372     :end' >>confcache
2373if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
2374  if test -w "$cache_file"; then
2375    if test "x$cache_file" != "x/dev/null"; then
2376      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
2377$as_echo "$as_me: updating cache $cache_file" >&6;}
2378      if test ! -f "$cache_file" || test -h "$cache_file"; then
2379	cat confcache >"$cache_file"
2380      else
2381        case $cache_file in #(
2382        */* | ?:*)
2383	  mv -f confcache "$cache_file"$$ &&
2384	  mv -f "$cache_file"$$ "$cache_file" ;; #(
2385        *)
2386	  mv -f confcache "$cache_file" ;;
2387	esac
2388      fi
2389    fi
2390  else
2391    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
2392$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
2393  fi
2394fi
2395rm -f confcache
2396
2397test "x$prefix" = xNONE && prefix=$ac_default_prefix
2398# Let make expand exec_prefix.
2399test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
2400
2401# Transform confdefs.h into DEFS.
2402# Protect against shell expansion while executing Makefile rules.
2403# Protect against Makefile macro expansion.
2404#
2405# If the first sed substitution is executed (which looks for macros that
2406# take arguments), then branch to the quote section.  Otherwise,
2407# look for a macro that doesn't take arguments.
2408ac_script='
2409:mline
2410/\\$/{
2411 N
2412 s,\\\n,,
2413 b mline
2414}
2415t clear
2416:clear
2417s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
2418t quote
2419s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
2420t quote
2421b any
2422:quote
2423s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
2424s/\[/\\&/g
2425s/\]/\\&/g
2426s/\$/$$/g
2427H
2428:any
2429${
2430	g
2431	s/^\n//
2432	s/\n/ /g
2433	p
2434}
2435'
2436DEFS=`sed -n "$ac_script" confdefs.h`
2437
2438
2439ac_libobjs=
2440ac_ltlibobjs=
2441U=
2442for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
2443  # 1. Remove the extension, and $U if already installed.
2444  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
2445  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
2446  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
2447  #    will be set to the directory where LIBOBJS objects are built.
2448  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
2449  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
2450done
2451LIBOBJS=$ac_libobjs
2452
2453LTLIBOBJS=$ac_ltlibobjs
2454
2455
2456
2457: "${CONFIG_STATUS=./config.status}"
2458ac_write_fail=0
2459ac_clean_files_save=$ac_clean_files
2460ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2461{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
2462$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
2463as_write_fail=0
2464cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
2465#! $SHELL
2466# Generated by $as_me.
2467# Run this file to recreate the current configuration.
2468# Compiler output produced by configure, useful for debugging
2469# configure, is in config.log if it exists.
2470
2471debug=false
2472ac_cs_recheck=false
2473ac_cs_silent=false
2474
2475SHELL=\${CONFIG_SHELL-$SHELL}
2476export SHELL
2477_ASEOF
2478cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
2479## -------------------- ##
2480## M4sh Initialization. ##
2481## -------------------- ##
2482
2483# Be more Bourne compatible
2484DUALCASE=1; export DUALCASE # for MKS sh
2485if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
2486  emulate sh
2487  NULLCMD=:
2488  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
2489  # is contrary to our usage.  Disable this feature.
2490  alias -g '${1+"$@"}'='"$@"'
2491  setopt NO_GLOB_SUBST
2492else
2493  case `(set -o) 2>/dev/null` in #(
2494  *posix*) :
2495    set -o posix ;; #(
2496  *) :
2497     ;;
2498esac
2499fi
2500
2501
2502as_nl='
2503'
2504export as_nl
2505# Printing a long string crashes Solaris 7 /usr/bin/printf.
2506as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
2507as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
2508as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
2509# Prefer a ksh shell builtin over an external printf program on Solaris,
2510# but without wasting forks for bash or zsh.
2511if test -z "$BASH_VERSION$ZSH_VERSION" \
2512    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
2513  as_echo='print -r --'
2514  as_echo_n='print -rn --'
2515elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
2516  as_echo='printf %s\n'
2517  as_echo_n='printf %s'
2518else
2519  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
2520    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
2521    as_echo_n='/usr/ucb/echo -n'
2522  else
2523    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
2524    as_echo_n_body='eval
2525      arg=$1;
2526      case $arg in #(
2527      *"$as_nl"*)
2528	expr "X$arg" : "X\\(.*\\)$as_nl";
2529	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
2530      esac;
2531      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
2532    '
2533    export as_echo_n_body
2534    as_echo_n='sh -c $as_echo_n_body as_echo'
2535  fi
2536  export as_echo_body
2537  as_echo='sh -c $as_echo_body as_echo'
2538fi
2539
2540# The user is always right.
2541if test "${PATH_SEPARATOR+set}" != set; then
2542  PATH_SEPARATOR=:
2543  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
2544    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
2545      PATH_SEPARATOR=';'
2546  }
2547fi
2548
2549
2550# IFS
2551# We need space, tab and new line, in precisely that order.  Quoting is
2552# there to prevent editors from complaining about space-tab.
2553# (If _AS_PATH_WALK were called with IFS unset, it would disable word
2554# splitting by setting IFS to empty value.)
2555IFS=" ""	$as_nl"
2556
2557# Find who we are.  Look in the path if we contain no directory separator.
2558as_myself=
2559case $0 in #((
2560  *[\\/]* ) as_myself=$0 ;;
2561  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2562for as_dir in $PATH
2563do
2564  IFS=$as_save_IFS
2565  test -z "$as_dir" && as_dir=.
2566    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
2567  done
2568IFS=$as_save_IFS
2569
2570     ;;
2571esac
2572# We did not find ourselves, most probably we were run as `sh COMMAND'
2573# in which case we are not to be found in the path.
2574if test "x$as_myself" = x; then
2575  as_myself=$0
2576fi
2577if test ! -f "$as_myself"; then
2578  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
2579  exit 1
2580fi
2581
2582# Unset variables that we do not need and which cause bugs (e.g. in
2583# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
2584# suppresses any "Segmentation fault" message there.  '((' could
2585# trigger a bug in pdksh 5.2.14.
2586for as_var in BASH_ENV ENV MAIL MAILPATH
2587do eval test x\${$as_var+set} = xset \
2588  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
2589done
2590PS1='$ '
2591PS2='> '
2592PS4='+ '
2593
2594# NLS nuisances.
2595LC_ALL=C
2596export LC_ALL
2597LANGUAGE=C
2598export LANGUAGE
2599
2600# CDPATH.
2601(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2602
2603
2604# as_fn_error STATUS ERROR [LINENO LOG_FD]
2605# ----------------------------------------
2606# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
2607# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
2608# script with STATUS, using 1 if that was 0.
2609as_fn_error ()
2610{
2611  as_status=$1; test $as_status -eq 0 && as_status=1
2612  if test "$4"; then
2613    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2614    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
2615  fi
2616  $as_echo "$as_me: error: $2" >&2
2617  as_fn_exit $as_status
2618} # as_fn_error
2619
2620
2621# as_fn_set_status STATUS
2622# -----------------------
2623# Set $? to STATUS, without forking.
2624as_fn_set_status ()
2625{
2626  return $1
2627} # as_fn_set_status
2628
2629# as_fn_exit STATUS
2630# -----------------
2631# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
2632as_fn_exit ()
2633{
2634  set +e
2635  as_fn_set_status $1
2636  exit $1
2637} # as_fn_exit
2638
2639# as_fn_unset VAR
2640# ---------------
2641# Portably unset VAR.
2642as_fn_unset ()
2643{
2644  { eval $1=; unset $1;}
2645}
2646as_unset=as_fn_unset
2647# as_fn_append VAR VALUE
2648# ----------------------
2649# Append the text in VALUE to the end of the definition contained in VAR. Take
2650# advantage of any shell optimizations that allow amortized linear growth over
2651# repeated appends, instead of the typical quadratic growth present in naive
2652# implementations.
2653if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
2654  eval 'as_fn_append ()
2655  {
2656    eval $1+=\$2
2657  }'
2658else
2659  as_fn_append ()
2660  {
2661    eval $1=\$$1\$2
2662  }
2663fi # as_fn_append
2664
2665# as_fn_arith ARG...
2666# ------------------
2667# Perform arithmetic evaluation on the ARGs, and store the result in the
2668# global $as_val. Take advantage of shells that can avoid forks. The arguments
2669# must be portable across $(()) and expr.
2670if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
2671  eval 'as_fn_arith ()
2672  {
2673    as_val=$(( $* ))
2674  }'
2675else
2676  as_fn_arith ()
2677  {
2678    as_val=`expr "$@" || test $? -eq 1`
2679  }
2680fi # as_fn_arith
2681
2682
2683if expr a : '\(a\)' >/dev/null 2>&1 &&
2684   test "X`expr 00001 : '.*\(...\)'`" = X001; then
2685  as_expr=expr
2686else
2687  as_expr=false
2688fi
2689
2690if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
2691  as_basename=basename
2692else
2693  as_basename=false
2694fi
2695
2696if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
2697  as_dirname=dirname
2698else
2699  as_dirname=false
2700fi
2701
2702as_me=`$as_basename -- "$0" ||
2703$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
2704	 X"$0" : 'X\(//\)$' \| \
2705	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
2706$as_echo X/"$0" |
2707    sed '/^.*\/\([^/][^/]*\)\/*$/{
2708	    s//\1/
2709	    q
2710	  }
2711	  /^X\/\(\/\/\)$/{
2712	    s//\1/
2713	    q
2714	  }
2715	  /^X\/\(\/\).*/{
2716	    s//\1/
2717	    q
2718	  }
2719	  s/.*/./; q'`
2720
2721# Avoid depending upon Character Ranges.
2722as_cr_letters='abcdefghijklmnopqrstuvwxyz'
2723as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
2724as_cr_Letters=$as_cr_letters$as_cr_LETTERS
2725as_cr_digits='0123456789'
2726as_cr_alnum=$as_cr_Letters$as_cr_digits
2727
2728ECHO_C= ECHO_N= ECHO_T=
2729case `echo -n x` in #(((((
2730-n*)
2731  case `echo 'xy\c'` in
2732  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
2733  xy)  ECHO_C='\c';;
2734  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
2735       ECHO_T='	';;
2736  esac;;
2737*)
2738  ECHO_N='-n';;
2739esac
2740
2741rm -f conf$$ conf$$.exe conf$$.file
2742if test -d conf$$.dir; then
2743  rm -f conf$$.dir/conf$$.file
2744else
2745  rm -f conf$$.dir
2746  mkdir conf$$.dir 2>/dev/null
2747fi
2748if (echo >conf$$.file) 2>/dev/null; then
2749  if ln -s conf$$.file conf$$ 2>/dev/null; then
2750    as_ln_s='ln -s'
2751    # ... but there are two gotchas:
2752    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
2753    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
2754    # In both cases, we have to default to `cp -pR'.
2755    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
2756      as_ln_s='cp -pR'
2757  elif ln conf$$.file conf$$ 2>/dev/null; then
2758    as_ln_s=ln
2759  else
2760    as_ln_s='cp -pR'
2761  fi
2762else
2763  as_ln_s='cp -pR'
2764fi
2765rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
2766rmdir conf$$.dir 2>/dev/null
2767
2768
2769# as_fn_mkdir_p
2770# -------------
2771# Create "$as_dir" as a directory, including parents if necessary.
2772as_fn_mkdir_p ()
2773{
2774
2775  case $as_dir in #(
2776  -*) as_dir=./$as_dir;;
2777  esac
2778  test -d "$as_dir" || eval $as_mkdir_p || {
2779    as_dirs=
2780    while :; do
2781      case $as_dir in #(
2782      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
2783      *) as_qdir=$as_dir;;
2784      esac
2785      as_dirs="'$as_qdir' $as_dirs"
2786      as_dir=`$as_dirname -- "$as_dir" ||
2787$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
2788	 X"$as_dir" : 'X\(//\)[^/]' \| \
2789	 X"$as_dir" : 'X\(//\)$' \| \
2790	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
2791$as_echo X"$as_dir" |
2792    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
2793	    s//\1/
2794	    q
2795	  }
2796	  /^X\(\/\/\)[^/].*/{
2797	    s//\1/
2798	    q
2799	  }
2800	  /^X\(\/\/\)$/{
2801	    s//\1/
2802	    q
2803	  }
2804	  /^X\(\/\).*/{
2805	    s//\1/
2806	    q
2807	  }
2808	  s/.*/./; q'`
2809      test -d "$as_dir" && break
2810    done
2811    test -z "$as_dirs" || eval "mkdir $as_dirs"
2812  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
2813
2814
2815} # as_fn_mkdir_p
2816if mkdir -p . 2>/dev/null; then
2817  as_mkdir_p='mkdir -p "$as_dir"'
2818else
2819  test -d ./-p && rmdir ./-p
2820  as_mkdir_p=false
2821fi
2822
2823
2824# as_fn_executable_p FILE
2825# -----------------------
2826# Test if FILE is an executable regular file.
2827as_fn_executable_p ()
2828{
2829  test -f "$1" && test -x "$1"
2830} # as_fn_executable_p
2831as_test_x='test -x'
2832as_executable_p=as_fn_executable_p
2833
2834# Sed expression to map a string onto a valid CPP name.
2835as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
2836
2837# Sed expression to map a string onto a valid variable name.
2838as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
2839
2840
2841exec 6>&1
2842## ----------------------------------- ##
2843## Main body of $CONFIG_STATUS script. ##
2844## ----------------------------------- ##
2845_ASEOF
2846test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
2847
2848cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2849# Save the log message, to keep $0 and so on meaningful, and to
2850# report actual input values of CONFIG_FILES etc. instead of their
2851# values after options handling.
2852ac_log="
2853This file was extended by Xen Hypervisor Documentation $as_me 4.10, which was
2854generated by GNU Autoconf 2.69.  Invocation command line was
2855
2856  CONFIG_FILES    = $CONFIG_FILES
2857  CONFIG_HEADERS  = $CONFIG_HEADERS
2858  CONFIG_LINKS    = $CONFIG_LINKS
2859  CONFIG_COMMANDS = $CONFIG_COMMANDS
2860  $ $0 $@
2861
2862on `(hostname || uname -n) 2>/dev/null | sed 1q`
2863"
2864
2865_ACEOF
2866
2867case $ac_config_files in *"
2868"*) set x $ac_config_files; shift; ac_config_files=$*;;
2869esac
2870
2871
2872
2873cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2874# Files that config.status was made for.
2875config_files="$ac_config_files"
2876
2877_ACEOF
2878
2879cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2880ac_cs_usage="\
2881\`$as_me' instantiates files and other configuration actions
2882from templates according to the current configuration.  Unless the files
2883and actions are specified as TAGs, all are instantiated by default.
2884
2885Usage: $0 [OPTION]... [TAG]...
2886
2887  -h, --help       print this help, then exit
2888  -V, --version    print version number and configuration settings, then exit
2889      --config     print configuration, then exit
2890  -q, --quiet, --silent
2891                   do not print progress messages
2892  -d, --debug      don't remove temporary files
2893      --recheck    update $as_me by reconfiguring in the same conditions
2894      --file=FILE[:TEMPLATE]
2895                   instantiate the configuration file FILE
2896
2897Configuration files:
2898$config_files
2899
2900Report bugs to <xen-devel@lists.xen.org>.
2901Xen Hypervisor Documentation home page: <http://www.xen.org/>."
2902
2903_ACEOF
2904cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2905ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2906ac_cs_version="\\
2907Xen Hypervisor Documentation config.status 4.10
2908configured by $0, generated by GNU Autoconf 2.69,
2909  with options \\"\$ac_cs_config\\"
2910
2911Copyright (C) 2012 Free Software Foundation, Inc.
2912This config.status script is free software; the Free Software Foundation
2913gives unlimited permission to copy, distribute and modify it."
2914
2915ac_pwd='$ac_pwd'
2916srcdir='$srcdir'
2917test -n "\$AWK" || AWK=awk
2918_ACEOF
2919
2920cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2921# The default lists apply if the user does not specify any file.
2922ac_need_defaults=:
2923while test $# != 0
2924do
2925  case $1 in
2926  --*=?*)
2927    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2928    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
2929    ac_shift=:
2930    ;;
2931  --*=)
2932    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2933    ac_optarg=
2934    ac_shift=:
2935    ;;
2936  *)
2937    ac_option=$1
2938    ac_optarg=$2
2939    ac_shift=shift
2940    ;;
2941  esac
2942
2943  case $ac_option in
2944  # Handling of the options.
2945  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
2946    ac_cs_recheck=: ;;
2947  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
2948    $as_echo "$ac_cs_version"; exit ;;
2949  --config | --confi | --conf | --con | --co | --c )
2950    $as_echo "$ac_cs_config"; exit ;;
2951  --debug | --debu | --deb | --de | --d | -d )
2952    debug=: ;;
2953  --file | --fil | --fi | --f )
2954    $ac_shift
2955    case $ac_optarg in
2956    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
2957    '') as_fn_error $? "missing file argument" ;;
2958    esac
2959    as_fn_append CONFIG_FILES " '$ac_optarg'"
2960    ac_need_defaults=false;;
2961  --he | --h |  --help | --hel | -h )
2962    $as_echo "$ac_cs_usage"; exit ;;
2963  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
2964  | -silent | --silent | --silen | --sile | --sil | --si | --s)
2965    ac_cs_silent=: ;;
2966
2967  # This is an error.
2968  -*) as_fn_error $? "unrecognized option: \`$1'
2969Try \`$0 --help' for more information." ;;
2970
2971  *) as_fn_append ac_config_targets " $1"
2972     ac_need_defaults=false ;;
2973
2974  esac
2975  shift
2976done
2977
2978ac_configure_extra_args=
2979
2980if $ac_cs_silent; then
2981  exec 6>/dev/null
2982  ac_configure_extra_args="$ac_configure_extra_args --silent"
2983fi
2984
2985_ACEOF
2986cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2987if \$ac_cs_recheck; then
2988  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
2989  shift
2990  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
2991  CONFIG_SHELL='$SHELL'
2992  export CONFIG_SHELL
2993  exec "\$@"
2994fi
2995
2996_ACEOF
2997cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2998exec 5>>config.log
2999{
3000  echo
3001  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
3002## Running $as_me. ##
3003_ASBOX
3004  $as_echo "$ac_log"
3005} >&5
3006
3007_ACEOF
3008cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3009_ACEOF
3010
3011cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3012
3013# Handling of arguments.
3014for ac_config_target in $ac_config_targets
3015do
3016  case $ac_config_target in
3017    "../config/Docs.mk") CONFIG_FILES="$CONFIG_FILES ../config/Docs.mk" ;;
3018    "man/xl.cfg.pod.5") CONFIG_FILES="$CONFIG_FILES man/xl.cfg.pod.5" ;;
3019    "man/xl.pod.1") CONFIG_FILES="$CONFIG_FILES man/xl.pod.1" ;;
3020
3021  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
3022  esac
3023done
3024
3025
3026# If the user did not use the arguments to specify the items to instantiate,
3027# then the envvar interface is used.  Set only those that are not.
3028# We use the long form for the default assignment because of an extremely
3029# bizarre bug on SunOS 4.1.3.
3030if $ac_need_defaults; then
3031  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
3032fi
3033
3034# Have a temporary directory for convenience.  Make it in the build tree
3035# simply because there is no reason against having it here, and in addition,
3036# creating and moving files from /tmp can sometimes cause problems.
3037# Hook for its removal unless debugging.
3038# Note that there is a small window in which the directory will not be cleaned:
3039# after its creation but before its name has been assigned to `$tmp'.
3040$debug ||
3041{
3042  tmp= ac_tmp=
3043  trap 'exit_status=$?
3044  : "${ac_tmp:=$tmp}"
3045  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
3046' 0
3047  trap 'as_fn_exit 1' 1 2 13 15
3048}
3049# Create a (secure) tmp directory for tmp files.
3050
3051{
3052  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
3053  test -d "$tmp"
3054}  ||
3055{
3056  tmp=./conf$$-$RANDOM
3057  (umask 077 && mkdir "$tmp")
3058} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
3059ac_tmp=$tmp
3060
3061# Set up the scripts for CONFIG_FILES section.
3062# No need to generate them if there are no CONFIG_FILES.
3063# This happens for instance with `./config.status config.h'.
3064if test -n "$CONFIG_FILES"; then
3065
3066
3067ac_cr=`echo X | tr X '\015'`
3068# On cygwin, bash can eat \r inside `` if the user requested igncr.
3069# But we know of no other shell where ac_cr would be empty at this
3070# point, so we can use a bashism as a fallback.
3071if test "x$ac_cr" = x; then
3072  eval ac_cr=\$\'\\r\'
3073fi
3074ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
3075if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
3076  ac_cs_awk_cr='\\r'
3077else
3078  ac_cs_awk_cr=$ac_cr
3079fi
3080
3081echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
3082_ACEOF
3083
3084
3085{
3086  echo "cat >conf$$subs.awk <<_ACEOF" &&
3087  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
3088  echo "_ACEOF"
3089} >conf$$subs.sh ||
3090  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3091ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
3092ac_delim='%!_!# '
3093for ac_last_try in false false false false false :; do
3094  . ./conf$$subs.sh ||
3095    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3096
3097  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
3098  if test $ac_delim_n = $ac_delim_num; then
3099    break
3100  elif $ac_last_try; then
3101    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3102  else
3103    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
3104  fi
3105done
3106rm -f conf$$subs.sh
3107
3108cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3109cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
3110_ACEOF
3111sed -n '
3112h
3113s/^/S["/; s/!.*/"]=/
3114p
3115g
3116s/^[^!]*!//
3117:repl
3118t repl
3119s/'"$ac_delim"'$//
3120t delim
3121:nl
3122h
3123s/\(.\{148\}\)..*/\1/
3124t more1
3125s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
3126p
3127n
3128b repl
3129:more1
3130s/["\\]/\\&/g; s/^/"/; s/$/"\\/
3131p
3132g
3133s/.\{148\}//
3134t nl
3135:delim
3136h
3137s/\(.\{148\}\)..*/\1/
3138t more2
3139s/["\\]/\\&/g; s/^/"/; s/$/"/
3140p
3141b
3142:more2
3143s/["\\]/\\&/g; s/^/"/; s/$/"\\/
3144p
3145g
3146s/.\{148\}//
3147t delim
3148' <conf$$subs.awk | sed '
3149/^[^""]/{
3150  N
3151  s/\n//
3152}
3153' >>$CONFIG_STATUS || ac_write_fail=1
3154rm -f conf$$subs.awk
3155cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3156_ACAWK
3157cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
3158  for (key in S) S_is_set[key] = 1
3159  FS = ""
3160
3161}
3162{
3163  line = $ 0
3164  nfields = split(line, field, "@")
3165  substed = 0
3166  len = length(field[1])
3167  for (i = 2; i < nfields; i++) {
3168    key = field[i]
3169    keylen = length(key)
3170    if (S_is_set[key]) {
3171      value = S[key]
3172      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
3173      len += length(value) + length(field[++i])
3174      substed = 1
3175    } else
3176      len += 1 + keylen
3177  }
3178
3179  print line
3180}
3181
3182_ACAWK
3183_ACEOF
3184cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3185if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
3186  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
3187else
3188  cat
3189fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
3190  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
3191_ACEOF
3192
3193# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
3194# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
3195# trailing colons and then remove the whole line if VPATH becomes empty
3196# (actually we leave an empty line to preserve line numbers).
3197if test "x$srcdir" = x.; then
3198  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
3199h
3200s///
3201s/^/:/
3202s/[	 ]*$/:/
3203s/:\$(srcdir):/:/g
3204s/:\${srcdir}:/:/g
3205s/:@srcdir@:/:/g
3206s/^:*//
3207s/:*$//
3208x
3209s/\(=[	 ]*\).*/\1/
3210G
3211s/\n//
3212s/^[^=]*=[	 ]*$//
3213}'
3214fi
3215
3216cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3217fi # test -n "$CONFIG_FILES"
3218
3219
3220eval set X "  :F $CONFIG_FILES      "
3221shift
3222for ac_tag
3223do
3224  case $ac_tag in
3225  :[FHLC]) ac_mode=$ac_tag; continue;;
3226  esac
3227  case $ac_mode$ac_tag in
3228  :[FHL]*:*);;
3229  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
3230  :[FH]-) ac_tag=-:-;;
3231  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
3232  esac
3233  ac_save_IFS=$IFS
3234  IFS=:
3235  set x $ac_tag
3236  IFS=$ac_save_IFS
3237  shift
3238  ac_file=$1
3239  shift
3240
3241  case $ac_mode in
3242  :L) ac_source=$1;;
3243  :[FH])
3244    ac_file_inputs=
3245    for ac_f
3246    do
3247      case $ac_f in
3248      -) ac_f="$ac_tmp/stdin";;
3249      *) # Look for the file first in the build tree, then in the source tree
3250	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
3251	 # because $ac_f cannot contain `:'.
3252	 test -f "$ac_f" ||
3253	   case $ac_f in
3254	   [\\/$]*) false;;
3255	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
3256	   esac ||
3257	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
3258      esac
3259      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
3260      as_fn_append ac_file_inputs " '$ac_f'"
3261    done
3262
3263    # Let's still pretend it is `configure' which instantiates (i.e., don't
3264    # use $as_me), people would be surprised to read:
3265    #    /* config.h.  Generated by config.status.  */
3266    configure_input='Generated from '`
3267	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
3268	`' by configure.'
3269    if test x"$ac_file" != x-; then
3270      configure_input="$ac_file.  $configure_input"
3271      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
3272$as_echo "$as_me: creating $ac_file" >&6;}
3273    fi
3274    # Neutralize special characters interpreted by sed in replacement strings.
3275    case $configure_input in #(
3276    *\&* | *\|* | *\\* )
3277       ac_sed_conf_input=`$as_echo "$configure_input" |
3278       sed 's/[\\\\&|]/\\\\&/g'`;; #(
3279    *) ac_sed_conf_input=$configure_input;;
3280    esac
3281
3282    case $ac_tag in
3283    *:-:* | *:-) cat >"$ac_tmp/stdin" \
3284      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
3285    esac
3286    ;;
3287  esac
3288
3289  ac_dir=`$as_dirname -- "$ac_file" ||
3290$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3291	 X"$ac_file" : 'X\(//\)[^/]' \| \
3292	 X"$ac_file" : 'X\(//\)$' \| \
3293	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
3294$as_echo X"$ac_file" |
3295    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
3296	    s//\1/
3297	    q
3298	  }
3299	  /^X\(\/\/\)[^/].*/{
3300	    s//\1/
3301	    q
3302	  }
3303	  /^X\(\/\/\)$/{
3304	    s//\1/
3305	    q
3306	  }
3307	  /^X\(\/\).*/{
3308	    s//\1/
3309	    q
3310	  }
3311	  s/.*/./; q'`
3312  as_dir="$ac_dir"; as_fn_mkdir_p
3313  ac_builddir=.
3314
3315case "$ac_dir" in
3316.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
3317*)
3318  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
3319  # A ".." for each directory in $ac_dir_suffix.
3320  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
3321  case $ac_top_builddir_sub in
3322  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
3323  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
3324  esac ;;
3325esac
3326ac_abs_top_builddir=$ac_pwd
3327ac_abs_builddir=$ac_pwd$ac_dir_suffix
3328# for backward compatibility:
3329ac_top_builddir=$ac_top_build_prefix
3330
3331case $srcdir in
3332  .)  # We are building in place.
3333    ac_srcdir=.
3334    ac_top_srcdir=$ac_top_builddir_sub
3335    ac_abs_top_srcdir=$ac_pwd ;;
3336  [\\/]* | ?:[\\/]* )  # Absolute name.
3337    ac_srcdir=$srcdir$ac_dir_suffix;
3338    ac_top_srcdir=$srcdir
3339    ac_abs_top_srcdir=$srcdir ;;
3340  *) # Relative name.
3341    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
3342    ac_top_srcdir=$ac_top_build_prefix$srcdir
3343    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
3344esac
3345ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
3346
3347
3348  case $ac_mode in
3349  :F)
3350  #
3351  # CONFIG_FILE
3352  #
3353
3354_ACEOF
3355
3356cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3357# If the template does not know about datarootdir, expand it.
3358# FIXME: This hack should be removed a few years after 2.60.
3359ac_datarootdir_hack=; ac_datarootdir_seen=
3360ac_sed_dataroot='
3361/datarootdir/ {
3362  p
3363  q
3364}
3365/@datadir@/p
3366/@docdir@/p
3367/@infodir@/p
3368/@localedir@/p
3369/@mandir@/p'
3370case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
3371*datarootdir*) ac_datarootdir_seen=yes;;
3372*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
3373  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
3374$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
3375_ACEOF
3376cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3377  ac_datarootdir_hack='
3378  s&@datadir@&$datadir&g
3379  s&@docdir@&$docdir&g
3380  s&@infodir@&$infodir&g
3381  s&@localedir@&$localedir&g
3382  s&@mandir@&$mandir&g
3383  s&\\\${datarootdir}&$datarootdir&g' ;;
3384esac
3385_ACEOF
3386
3387# Neutralize VPATH when `$srcdir' = `.'.
3388# Shell code in configure.ac might set extrasub.
3389# FIXME: do we really want to maintain this feature?
3390cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3391ac_sed_extra="$ac_vpsub
3392$extrasub
3393_ACEOF
3394cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3395:t
3396/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
3397s|@configure_input@|$ac_sed_conf_input|;t t
3398s&@top_builddir@&$ac_top_builddir_sub&;t t
3399s&@top_build_prefix@&$ac_top_build_prefix&;t t
3400s&@srcdir@&$ac_srcdir&;t t
3401s&@abs_srcdir@&$ac_abs_srcdir&;t t
3402s&@top_srcdir@&$ac_top_srcdir&;t t
3403s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
3404s&@builddir@&$ac_builddir&;t t
3405s&@abs_builddir@&$ac_abs_builddir&;t t
3406s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
3407$ac_datarootdir_hack
3408"
3409eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
3410  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3411
3412test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
3413  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
3414  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
3415      "$ac_tmp/out"`; test -z "$ac_out"; } &&
3416  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3417which seems to be undefined.  Please make sure it is defined" >&5
3418$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3419which seems to be undefined.  Please make sure it is defined" >&2;}
3420
3421  rm -f "$ac_tmp/stdin"
3422  case $ac_file in
3423  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
3424  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
3425  esac \
3426  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3427 ;;
3428
3429
3430
3431  esac
3432
3433done # for ac_tag
3434
3435
3436as_fn_exit 0
3437_ACEOF
3438ac_clean_files=$ac_clean_files_save
3439
3440test $ac_write_fail = 0 ||
3441  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
3442
3443
3444# configure is writing to config.log, and then calls config.status.
3445# config.status does its own redirection, appending to config.log.
3446# Unfortunately, on DOS this fails, as config.log is still kept open
3447# by configure, so config.status won't be able to write to it; its
3448# output is simply discarded.  So we exec the FD to /dev/null,
3449# effectively closing config.log, so it can be properly (re)opened and
3450# appended to by config.status.  When coming back to configure, we
3451# need to make the FD available again.
3452if test "$no_create" != yes; then
3453  ac_cs_success=:
3454  ac_config_status_args=
3455  test "$silent" = yes &&
3456    ac_config_status_args="$ac_config_status_args --quiet"
3457  exec 5>/dev/null
3458  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
3459  exec 5>>config.log
3460  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
3461  # would make configure fail if this is the last instruction.
3462  $ac_cs_success || as_fn_exit 1
3463fi
3464if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
3465  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
3466$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
3467fi
3468
3469