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.14.
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.14'
583PACKAGE_STRING='Xen Hypervisor Documentation 4.14'
584PACKAGE_BUGREPORT='xen-devel@lists.xen.org'
585PACKAGE_URL='https://www.xen.org/'
586
587ac_unique_file="misc/xen-command-line.pandoc"
588ac_subst_vars='LTLIBOBJS
589LIBOBJS
590PERL
591PANDOC
592POD2TEXT
593POD2HTML
594POD2MAN
595FIG2DEV
596DEBUG_DIR
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
665with_debugdir
666'
667      ac_precious_vars='build_alias
668host_alias
669target_alias
670FIG2DEV
671POD2MAN
672POD2HTML
673POD2TEXT
674PANDOC
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.14 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.14:";;
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  --with-debugdir=DIR     Path to directory for debug symbols.
1309                          [PREFIX/lib/debug]
1310
1311Some influential environment variables:
1312  FIG2DEV     Path to fig2dev tool
1313  POD2MAN     Path to pod2man tool
1314  POD2HTML    Path to pod2html tool
1315  POD2TEXT    Path to pod2text tool
1316  PANDOC      Path to pandoc tool
1317  PERL        Path to Perl parser
1318
1319Use these variables to override the choices made by `configure' or to help
1320it to find libraries and programs with nonstandard names/locations.
1321
1322Report bugs to <xen-devel@lists.xen.org>.
1323Xen Hypervisor Documentation home page: <https://www.xen.org/>.
1324_ACEOF
1325ac_status=$?
1326fi
1327
1328if test "$ac_init_help" = "recursive"; then
1329  # If there are subdirs, report their specific --help.
1330  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1331    test -d "$ac_dir" ||
1332      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1333      continue
1334    ac_builddir=.
1335
1336case "$ac_dir" in
1337.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1338*)
1339  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1340  # A ".." for each directory in $ac_dir_suffix.
1341  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1342  case $ac_top_builddir_sub in
1343  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1344  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1345  esac ;;
1346esac
1347ac_abs_top_builddir=$ac_pwd
1348ac_abs_builddir=$ac_pwd$ac_dir_suffix
1349# for backward compatibility:
1350ac_top_builddir=$ac_top_build_prefix
1351
1352case $srcdir in
1353  .)  # We are building in place.
1354    ac_srcdir=.
1355    ac_top_srcdir=$ac_top_builddir_sub
1356    ac_abs_top_srcdir=$ac_pwd ;;
1357  [\\/]* | ?:[\\/]* )  # Absolute name.
1358    ac_srcdir=$srcdir$ac_dir_suffix;
1359    ac_top_srcdir=$srcdir
1360    ac_abs_top_srcdir=$srcdir ;;
1361  *) # Relative name.
1362    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1363    ac_top_srcdir=$ac_top_build_prefix$srcdir
1364    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1365esac
1366ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1367
1368    cd "$ac_dir" || { ac_status=$?; continue; }
1369    # Check for guested configure.
1370    if test -f "$ac_srcdir/configure.gnu"; then
1371      echo &&
1372      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1373    elif test -f "$ac_srcdir/configure"; then
1374      echo &&
1375      $SHELL "$ac_srcdir/configure" --help=recursive
1376    else
1377      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1378    fi || ac_status=$?
1379    cd "$ac_pwd" || { ac_status=$?; break; }
1380  done
1381fi
1382
1383test -n "$ac_init_help" && exit $ac_status
1384if $ac_init_version; then
1385  cat <<\_ACEOF
1386Xen Hypervisor Documentation configure 4.14
1387generated by GNU Autoconf 2.69
1388
1389Copyright (C) 2012 Free Software Foundation, Inc.
1390This configure script is free software; the Free Software Foundation
1391gives unlimited permission to copy, distribute and modify it.
1392_ACEOF
1393  exit
1394fi
1395
1396## ------------------------ ##
1397## Autoconf initialization. ##
1398## ------------------------ ##
1399cat >config.log <<_ACEOF
1400This file contains any messages produced by compilers while
1401running configure, to aid debugging if configure makes a mistake.
1402
1403It was created by Xen Hypervisor Documentation $as_me 4.14, which was
1404generated by GNU Autoconf 2.69.  Invocation command line was
1405
1406  $ $0 $@
1407
1408_ACEOF
1409exec 5>>config.log
1410{
1411cat <<_ASUNAME
1412## --------- ##
1413## Platform. ##
1414## --------- ##
1415
1416hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1417uname -m = `(uname -m) 2>/dev/null || echo unknown`
1418uname -r = `(uname -r) 2>/dev/null || echo unknown`
1419uname -s = `(uname -s) 2>/dev/null || echo unknown`
1420uname -v = `(uname -v) 2>/dev/null || echo unknown`
1421
1422/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1423/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1424
1425/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1426/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1427/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1428/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1429/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1430/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1431/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1432
1433_ASUNAME
1434
1435as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1436for as_dir in $PATH
1437do
1438  IFS=$as_save_IFS
1439  test -z "$as_dir" && as_dir=.
1440    $as_echo "PATH: $as_dir"
1441  done
1442IFS=$as_save_IFS
1443
1444} >&5
1445
1446cat >&5 <<_ACEOF
1447
1448
1449## ----------- ##
1450## Core tests. ##
1451## ----------- ##
1452
1453_ACEOF
1454
1455
1456# Keep a trace of the command line.
1457# Strip out --no-create and --no-recursion so they do not pile up.
1458# Strip out --silent because we don't want to record it for future runs.
1459# Also quote any args containing shell meta-characters.
1460# Make two passes to allow for proper duplicate-argument suppression.
1461ac_configure_args=
1462ac_configure_args0=
1463ac_configure_args1=
1464ac_must_keep_next=false
1465for ac_pass in 1 2
1466do
1467  for ac_arg
1468  do
1469    case $ac_arg in
1470    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1471    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1472    | -silent | --silent | --silen | --sile | --sil)
1473      continue ;;
1474    *\'*)
1475      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1476    esac
1477    case $ac_pass in
1478    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1479    2)
1480      as_fn_append ac_configure_args1 " '$ac_arg'"
1481      if test $ac_must_keep_next = true; then
1482	ac_must_keep_next=false # Got value, back to normal.
1483      else
1484	case $ac_arg in
1485	  *=* | --config-cache | -C | -disable-* | --disable-* \
1486	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1487	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1488	  | -with-* | --with-* | -without-* | --without-* | --x)
1489	    case "$ac_configure_args0 " in
1490	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1491	    esac
1492	    ;;
1493	  -* ) ac_must_keep_next=true ;;
1494	esac
1495      fi
1496      as_fn_append ac_configure_args " '$ac_arg'"
1497      ;;
1498    esac
1499  done
1500done
1501{ ac_configure_args0=; unset ac_configure_args0;}
1502{ ac_configure_args1=; unset ac_configure_args1;}
1503
1504# When interrupted or exit'd, cleanup temporary files, and complete
1505# config.log.  We remove comments because anyway the quotes in there
1506# would cause problems or look ugly.
1507# WARNING: Use '\'' to represent an apostrophe within the trap.
1508# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1509trap 'exit_status=$?
1510  # Save into config.log some information that might help in debugging.
1511  {
1512    echo
1513
1514    $as_echo "## ---------------- ##
1515## Cache variables. ##
1516## ---------------- ##"
1517    echo
1518    # The following way of writing the cache mishandles newlines in values,
1519(
1520  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1521    eval ac_val=\$$ac_var
1522    case $ac_val in #(
1523    *${as_nl}*)
1524      case $ac_var in #(
1525      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1526$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1527      esac
1528      case $ac_var in #(
1529      _ | IFS | as_nl) ;; #(
1530      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1531      *) { eval $ac_var=; unset $ac_var;} ;;
1532      esac ;;
1533    esac
1534  done
1535  (set) 2>&1 |
1536    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1537    *${as_nl}ac_space=\ *)
1538      sed -n \
1539	"s/'\''/'\''\\\\'\'''\''/g;
1540	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1541      ;; #(
1542    *)
1543      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1544      ;;
1545    esac |
1546    sort
1547)
1548    echo
1549
1550    $as_echo "## ----------------- ##
1551## Output variables. ##
1552## ----------------- ##"
1553    echo
1554    for ac_var in $ac_subst_vars
1555    do
1556      eval ac_val=\$$ac_var
1557      case $ac_val in
1558      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1559      esac
1560      $as_echo "$ac_var='\''$ac_val'\''"
1561    done | sort
1562    echo
1563
1564    if test -n "$ac_subst_files"; then
1565      $as_echo "## ------------------- ##
1566## File substitutions. ##
1567## ------------------- ##"
1568      echo
1569      for ac_var in $ac_subst_files
1570      do
1571	eval ac_val=\$$ac_var
1572	case $ac_val in
1573	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1574	esac
1575	$as_echo "$ac_var='\''$ac_val'\''"
1576      done | sort
1577      echo
1578    fi
1579
1580    if test -s confdefs.h; then
1581      $as_echo "## ----------- ##
1582## confdefs.h. ##
1583## ----------- ##"
1584      echo
1585      cat confdefs.h
1586      echo
1587    fi
1588    test "$ac_signal" != 0 &&
1589      $as_echo "$as_me: caught signal $ac_signal"
1590    $as_echo "$as_me: exit $exit_status"
1591  } >&5
1592  rm -f core *.core core.conftest.* &&
1593    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1594    exit $exit_status
1595' 0
1596for ac_signal in 1 2 13 15; do
1597  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1598done
1599ac_signal=0
1600
1601# confdefs.h avoids OS command line length limits that DEFS can exceed.
1602rm -f -r conftest* confdefs.h
1603
1604$as_echo "/* confdefs.h */" > confdefs.h
1605
1606# Predefined preprocessor variables.
1607
1608cat >>confdefs.h <<_ACEOF
1609#define PACKAGE_NAME "$PACKAGE_NAME"
1610_ACEOF
1611
1612cat >>confdefs.h <<_ACEOF
1613#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1614_ACEOF
1615
1616cat >>confdefs.h <<_ACEOF
1617#define PACKAGE_VERSION "$PACKAGE_VERSION"
1618_ACEOF
1619
1620cat >>confdefs.h <<_ACEOF
1621#define PACKAGE_STRING "$PACKAGE_STRING"
1622_ACEOF
1623
1624cat >>confdefs.h <<_ACEOF
1625#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1626_ACEOF
1627
1628cat >>confdefs.h <<_ACEOF
1629#define PACKAGE_URL "$PACKAGE_URL"
1630_ACEOF
1631
1632
1633# Let the site file select an alternate cache file if it wants to.
1634# Prefer an explicitly selected file to automatically selected ones.
1635ac_site_file1=NONE
1636ac_site_file2=NONE
1637if test -n "$CONFIG_SITE"; then
1638  # We do not want a PATH search for config.site.
1639  case $CONFIG_SITE in #((
1640    -*)  ac_site_file1=./$CONFIG_SITE;;
1641    */*) ac_site_file1=$CONFIG_SITE;;
1642    *)   ac_site_file1=./$CONFIG_SITE;;
1643  esac
1644elif test "x$prefix" != xNONE; then
1645  ac_site_file1=$prefix/share/config.site
1646  ac_site_file2=$prefix/etc/config.site
1647else
1648  ac_site_file1=$ac_default_prefix/share/config.site
1649  ac_site_file2=$ac_default_prefix/etc/config.site
1650fi
1651for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1652do
1653  test "x$ac_site_file" = xNONE && continue
1654  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1655    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1656$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1657    sed 's/^/| /' "$ac_site_file" >&5
1658    . "$ac_site_file" \
1659      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1660$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1661as_fn_error $? "failed to load site script $ac_site_file
1662See \`config.log' for more details" "$LINENO" 5; }
1663  fi
1664done
1665
1666if test -r "$cache_file"; then
1667  # Some versions of bash will fail to source /dev/null (special files
1668  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1669  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1670    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1671$as_echo "$as_me: loading cache $cache_file" >&6;}
1672    case $cache_file in
1673      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1674      *)                      . "./$cache_file";;
1675    esac
1676  fi
1677else
1678  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1679$as_echo "$as_me: creating cache $cache_file" >&6;}
1680  >$cache_file
1681fi
1682
1683# Check that the precious variables saved in the cache have kept the same
1684# value.
1685ac_cache_corrupted=false
1686for ac_var in $ac_precious_vars; do
1687  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1688  eval ac_new_set=\$ac_env_${ac_var}_set
1689  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1690  eval ac_new_val=\$ac_env_${ac_var}_value
1691  case $ac_old_set,$ac_new_set in
1692    set,)
1693      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1694$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1695      ac_cache_corrupted=: ;;
1696    ,set)
1697      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1698$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1699      ac_cache_corrupted=: ;;
1700    ,);;
1701    *)
1702      if test "x$ac_old_val" != "x$ac_new_val"; then
1703	# differences in whitespace do not lead to failure.
1704	ac_old_val_w=`echo x $ac_old_val`
1705	ac_new_val_w=`echo x $ac_new_val`
1706	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1707	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1708$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1709	  ac_cache_corrupted=:
1710	else
1711	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1712$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1713	  eval $ac_var=\$ac_old_val
1714	fi
1715	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1716$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1717	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1718$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1719      fi;;
1720  esac
1721  # Pass precious variables to config.status.
1722  if test "$ac_new_set" = set; then
1723    case $ac_new_val in
1724    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1725    *) ac_arg=$ac_var=$ac_new_val ;;
1726    esac
1727    case " $ac_configure_args " in
1728      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1729      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1730    esac
1731  fi
1732done
1733if $ac_cache_corrupted; then
1734  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1735$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1736  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1737$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1738  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1739fi
1740## -------------------- ##
1741## Main body of script. ##
1742## -------------------- ##
1743
1744ac_ext=c
1745ac_cpp='$CPP $CPPFLAGS'
1746ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1747ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1748ac_compiler_gnu=$ac_cv_c_compiler_gnu
1749
1750
1751
1752ac_config_files="$ac_config_files ../config/Docs.mk man/xl.cfg.5.pod man/xl.1.pod"
1753
1754ac_aux_dir=
1755for ac_dir in ../ "$srcdir"/../; do
1756  if test -f "$ac_dir/install-sh"; then
1757    ac_aux_dir=$ac_dir
1758    ac_install_sh="$ac_aux_dir/install-sh -c"
1759    break
1760  elif test -f "$ac_dir/install.sh"; then
1761    ac_aux_dir=$ac_dir
1762    ac_install_sh="$ac_aux_dir/install.sh -c"
1763    break
1764  elif test -f "$ac_dir/shtool"; then
1765    ac_aux_dir=$ac_dir
1766    ac_install_sh="$ac_aux_dir/shtool install -c"
1767    break
1768  fi
1769done
1770if test -z "$ac_aux_dir"; then
1771  as_fn_error $? "cannot find install-sh, install.sh, or shtool in ../ \"$srcdir\"/../" "$LINENO" 5
1772fi
1773
1774# These three variables are undocumented and unsupported,
1775# and are intended to be withdrawn in a future Autoconf release.
1776# They can cause serious problems if a builder's source tree is in a directory
1777# whose full name contains unusual characters.
1778ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1779ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1780ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1781
1782
1783
1784# M4 Macro includes
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799case "$host_os" in
1800*freebsd*) XENSTORED_KVA=/dev/xen/xenstored ;;
1801*) XENSTORED_KVA=/proc/xen/xsd_kva ;;
1802esac
1803
1804
1805case "$host_os" in
1806*freebsd*) XENSTORED_PORT=/dev/xen/xenstored ;;
1807*) XENSTORED_PORT=/proc/xen/xsd_port ;;
1808esac
1809
1810
1811
1812
1813test "x$prefix" = "xNONE" && prefix=$ac_default_prefix
1814test "x$exec_prefix" = "xNONE" && exec_prefix=${prefix}
1815
1816if test "$localstatedir" = '${prefix}/var' ; then
1817    localstatedir=/var
1818fi
1819
1820bindir=`eval echo $bindir`
1821sbindir=`eval echo $sbindir`
1822libdir=`eval echo $libdir`
1823
1824if test "x$sysconfdir" = 'x${prefix}/etc' ; then
1825    case "$host_os" in
1826         *freebsd*)
1827         sysconfdir=$prefix/etc
1828         ;;
1829         *solaris*)
1830         if test "$prefix" = "/usr" ; then
1831             sysconfdir=/etc
1832         else
1833             sysconfdir=$prefix/etc
1834         fi
1835         ;;
1836         *)
1837         sysconfdir=/etc
1838         ;;
1839    esac
1840fi
1841
1842
1843# Check whether --with-initddir was given.
1844if test "${with_initddir+set}" = set; then :
1845  withval=$with_initddir; initddir_path=$withval
1846else
1847  case "$host_os" in
1848         *linux*)
1849         if test -d $sysconfdir/rc.d/init.d ; then
1850             initddir_path=$sysconfdir/rc.d/init.d
1851         else
1852             initddir_path=$sysconfdir/init.d
1853         fi
1854         ;;
1855         *)
1856         initddir_path=$sysconfdir/rc.d
1857         ;;
1858     esac
1859fi
1860
1861
1862
1863# Check whether --with-sysconfig-leaf-dir was given.
1864if test "${with_sysconfig_leaf_dir+set}" = set; then :
1865  withval=$with_sysconfig_leaf_dir; config_leaf_dir=$withval
1866else
1867  config_leaf_dir=sysconfig
1868    if test ! -d /etc/sysconfig ; then config_leaf_dir=default ; fi
1869fi
1870
1871CONFIG_LEAF_DIR=$config_leaf_dir
1872
1873
1874
1875# Check whether --with-libexec-leaf-dir was given.
1876if test "${with_libexec_leaf_dir+set}" = set; then :
1877  withval=$with_libexec_leaf_dir; libexec_subdir=$withval
1878else
1879  libexec_subdir=$PACKAGE_TARNAME
1880fi
1881
1882
1883
1884# Check whether --with-xen-dumpdir was given.
1885if test "${with_xen_dumpdir+set}" = set; then :
1886  withval=$with_xen_dumpdir; xen_dumpdir_path=$withval
1887else
1888  xen_dumpdir_path=$localstatedir/lib/xen/dump
1889fi
1890
1891
1892
1893# Check whether --with-rundir was given.
1894if test "${with_rundir+set}" = set; then :
1895  withval=$with_rundir; rundir_path=$withval
1896else
1897  rundir_path=$localstatedir/run
1898fi
1899
1900
1901
1902# Check whether --with-debugdir was given.
1903if test "${with_debugdir+set}" = set; then :
1904  withval=$with_debugdir; debugdir_path=$withval
1905else
1906  debugdir_path=$prefix/lib/debug
1907fi
1908
1909
1910if test "$libexecdir" = '${exec_prefix}/libexec' ; then
1911    case "$host_os" in
1912         *netbsd*) ;;
1913         *)
1914         libexecdir='${exec_prefix}/lib'
1915         ;;
1916    esac
1917fi
1918LIBEXEC=`eval echo $libexecdir/$libexec_subdir`
1919
1920
1921LIBEXEC_BIN=${LIBEXEC}/bin
1922
1923LIBEXEC_LIB=${LIBEXEC}/lib
1924
1925LIBEXEC_INC=${LIBEXEC}/include
1926
1927XENFIRMWAREDIR=${LIBEXEC}/boot
1928
1929
1930XEN_RUN_DIR=$rundir_path/xen
1931
1932
1933XEN_LOG_DIR=$localstatedir/log/xen
1934
1935
1936XEN_LIB_STORED=$localstatedir/lib/xenstored
1937
1938
1939XEN_RUN_STORED=$rundir_path/xenstored
1940
1941
1942XEN_LIB_DIR=$localstatedir/lib/xen
1943
1944
1945SHAREDIR=$prefix/share
1946
1947
1948CONFIG_DIR=$sysconfdir
1949
1950
1951INITD_DIR=$initddir_path
1952
1953
1954XEN_CONFIG_DIR=$CONFIG_DIR/xen
1955
1956
1957XEN_SCRIPT_DIR=$XEN_CONFIG_DIR/scripts
1958
1959
1960case "$host_os" in
1961*freebsd*) XEN_LOCK_DIR=$localstatedir/lib ;;
1962*netbsd*) XEN_LOCK_DIR=$localstatedir/lib ;;
1963*) XEN_LOCK_DIR=$localstatedir/lock ;;
1964esac
1965
1966
1967XEN_PAGING_DIR=$localstatedir/lib/xen/xenpaging
1968
1969
1970XEN_DUMP_DIR=$xen_dumpdir_path
1971
1972
1973DEBUG_DIR=$debugdir_path
1974
1975
1976
1977
1978
1979    # Extract the first word of "fig2dev", so it can be a program name with args.
1980set dummy fig2dev; ac_word=$2
1981{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1982$as_echo_n "checking for $ac_word... " >&6; }
1983if ${ac_cv_path_FIG2DEV+:} false; then :
1984  $as_echo_n "(cached) " >&6
1985else
1986  case $FIG2DEV in
1987  [\\/]* | ?:[\\/]*)
1988  ac_cv_path_FIG2DEV="$FIG2DEV" # Let the user override the test with a path.
1989  ;;
1990  *)
1991  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1992for as_dir in $PATH
1993do
1994  IFS=$as_save_IFS
1995  test -z "$as_dir" && as_dir=.
1996    for ac_exec_ext in '' $ac_executable_extensions; do
1997  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1998    ac_cv_path_FIG2DEV="$as_dir/$ac_word$ac_exec_ext"
1999    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2000    break 2
2001  fi
2002done
2003  done
2004IFS=$as_save_IFS
2005
2006  ;;
2007esac
2008fi
2009FIG2DEV=$ac_cv_path_FIG2DEV
2010if test -n "$FIG2DEV"; then
2011  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FIG2DEV" >&5
2012$as_echo "$FIG2DEV" >&6; }
2013else
2014  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2015$as_echo "no" >&6; }
2016fi
2017
2018
2019    if ! test -x "$ac_cv_path_FIG2DEV"; then :
2020
2021        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fig2dev is not available so some documentation won't be built" >&5
2022$as_echo "$as_me: WARNING: fig2dev is not available so some documentation won't be built" >&2;}
2023
2024fi
2025
2026
2027
2028    # Extract the first word of "pod2man", so it can be a program name with args.
2029set dummy pod2man; ac_word=$2
2030{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2031$as_echo_n "checking for $ac_word... " >&6; }
2032if ${ac_cv_path_POD2MAN+:} false; then :
2033  $as_echo_n "(cached) " >&6
2034else
2035  case $POD2MAN in
2036  [\\/]* | ?:[\\/]*)
2037  ac_cv_path_POD2MAN="$POD2MAN" # Let the user override the test with a path.
2038  ;;
2039  *)
2040  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2041for as_dir in $PATH
2042do
2043  IFS=$as_save_IFS
2044  test -z "$as_dir" && as_dir=.
2045    for ac_exec_ext in '' $ac_executable_extensions; do
2046  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2047    ac_cv_path_POD2MAN="$as_dir/$ac_word$ac_exec_ext"
2048    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2049    break 2
2050  fi
2051done
2052  done
2053IFS=$as_save_IFS
2054
2055  ;;
2056esac
2057fi
2058POD2MAN=$ac_cv_path_POD2MAN
2059if test -n "$POD2MAN"; then
2060  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2MAN" >&5
2061$as_echo "$POD2MAN" >&6; }
2062else
2063  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2064$as_echo "no" >&6; }
2065fi
2066
2067
2068    if ! test -x "$ac_cv_path_POD2MAN"; then :
2069
2070        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2man is not available so some documentation won't be built" >&5
2071$as_echo "$as_me: WARNING: pod2man is not available so some documentation won't be built" >&2;}
2072
2073fi
2074
2075
2076
2077    # Extract the first word of "pod2html", so it can be a program name with args.
2078set dummy pod2html; ac_word=$2
2079{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2080$as_echo_n "checking for $ac_word... " >&6; }
2081if ${ac_cv_path_POD2HTML+:} false; then :
2082  $as_echo_n "(cached) " >&6
2083else
2084  case $POD2HTML in
2085  [\\/]* | ?:[\\/]*)
2086  ac_cv_path_POD2HTML="$POD2HTML" # Let the user override the test with a path.
2087  ;;
2088  *)
2089  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2090for as_dir in $PATH
2091do
2092  IFS=$as_save_IFS
2093  test -z "$as_dir" && as_dir=.
2094    for ac_exec_ext in '' $ac_executable_extensions; do
2095  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2096    ac_cv_path_POD2HTML="$as_dir/$ac_word$ac_exec_ext"
2097    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2098    break 2
2099  fi
2100done
2101  done
2102IFS=$as_save_IFS
2103
2104  ;;
2105esac
2106fi
2107POD2HTML=$ac_cv_path_POD2HTML
2108if test -n "$POD2HTML"; then
2109  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2HTML" >&5
2110$as_echo "$POD2HTML" >&6; }
2111else
2112  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2113$as_echo "no" >&6; }
2114fi
2115
2116
2117    if ! test -x "$ac_cv_path_POD2HTML"; then :
2118
2119        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2html is not available so some documentation won't be built" >&5
2120$as_echo "$as_me: WARNING: pod2html is not available so some documentation won't be built" >&2;}
2121
2122fi
2123
2124
2125
2126    # Extract the first word of "pod2text", so it can be a program name with args.
2127set dummy pod2text; ac_word=$2
2128{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2129$as_echo_n "checking for $ac_word... " >&6; }
2130if ${ac_cv_path_POD2TEXT+:} false; then :
2131  $as_echo_n "(cached) " >&6
2132else
2133  case $POD2TEXT in
2134  [\\/]* | ?:[\\/]*)
2135  ac_cv_path_POD2TEXT="$POD2TEXT" # Let the user override the test with a path.
2136  ;;
2137  *)
2138  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2139for as_dir in $PATH
2140do
2141  IFS=$as_save_IFS
2142  test -z "$as_dir" && as_dir=.
2143    for ac_exec_ext in '' $ac_executable_extensions; do
2144  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2145    ac_cv_path_POD2TEXT="$as_dir/$ac_word$ac_exec_ext"
2146    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2147    break 2
2148  fi
2149done
2150  done
2151IFS=$as_save_IFS
2152
2153  ;;
2154esac
2155fi
2156POD2TEXT=$ac_cv_path_POD2TEXT
2157if test -n "$POD2TEXT"; then
2158  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2TEXT" >&5
2159$as_echo "$POD2TEXT" >&6; }
2160else
2161  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2162$as_echo "no" >&6; }
2163fi
2164
2165
2166    if ! test -x "$ac_cv_path_POD2TEXT"; then :
2167
2168        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pod2text is not available so some documentation won't be built" >&5
2169$as_echo "$as_me: WARNING: pod2text is not available so some documentation won't be built" >&2;}
2170
2171fi
2172
2173
2174
2175    # Extract the first word of "pandoc", so it can be a program name with args.
2176set dummy pandoc; ac_word=$2
2177{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2178$as_echo_n "checking for $ac_word... " >&6; }
2179if ${ac_cv_path_PANDOC+:} false; then :
2180  $as_echo_n "(cached) " >&6
2181else
2182  case $PANDOC in
2183  [\\/]* | ?:[\\/]*)
2184  ac_cv_path_PANDOC="$PANDOC" # Let the user override the test with a path.
2185  ;;
2186  *)
2187  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2188for as_dir in $PATH
2189do
2190  IFS=$as_save_IFS
2191  test -z "$as_dir" && as_dir=.
2192    for ac_exec_ext in '' $ac_executable_extensions; do
2193  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2194    ac_cv_path_PANDOC="$as_dir/$ac_word$ac_exec_ext"
2195    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2196    break 2
2197  fi
2198done
2199  done
2200IFS=$as_save_IFS
2201
2202  ;;
2203esac
2204fi
2205PANDOC=$ac_cv_path_PANDOC
2206if test -n "$PANDOC"; then
2207  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PANDOC" >&5
2208$as_echo "$PANDOC" >&6; }
2209else
2210  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2211$as_echo "no" >&6; }
2212fi
2213
2214
2215    if ! test -x "$ac_cv_path_PANDOC"; then :
2216
2217        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pandoc is not available so some documentation won't be built" >&5
2218$as_echo "$as_me: WARNING: pandoc is not available so some documentation won't be built" >&2;}
2219
2220fi
2221
2222
2223
2224# Extract the first word of "perl", so it can be a program name with args.
2225set dummy perl; ac_word=$2
2226{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2227$as_echo_n "checking for $ac_word... " >&6; }
2228if ${ac_cv_path_PERL+:} false; then :
2229  $as_echo_n "(cached) " >&6
2230else
2231  case $PERL in
2232  [\\/]* | ?:[\\/]*)
2233  ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
2234  ;;
2235  *)
2236  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2237for as_dir in $PATH
2238do
2239  IFS=$as_save_IFS
2240  test -z "$as_dir" && as_dir=.
2241    for ac_exec_ext in '' $ac_executable_extensions; do
2242  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2243    ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
2244    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2245    break 2
2246  fi
2247done
2248  done
2249IFS=$as_save_IFS
2250
2251  test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="no"
2252  ;;
2253esac
2254fi
2255PERL=$ac_cv_path_PERL
2256if test -n "$PERL"; then
2257  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5
2258$as_echo "$PERL" >&6; }
2259else
2260  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2261$as_echo "no" >&6; }
2262fi
2263
2264
2265if test x"${PERL}" = x"no"
2266then
2267    as_fn_error $? "Unable to find perl, please install perl" "$LINENO" 5
2268fi
2269
2270cat >confcache <<\_ACEOF
2271# This file is a shell script that caches the results of configure
2272# tests run on this system so they can be shared between configure
2273# scripts and configure runs, see configure's option --config-cache.
2274# It is not useful on other systems.  If it contains results you don't
2275# want to keep, you may remove or edit it.
2276#
2277# config.status only pays attention to the cache file if you give it
2278# the --recheck option to rerun configure.
2279#
2280# `ac_cv_env_foo' variables (set or unset) will be overridden when
2281# loading this file, other *unset* `ac_cv_foo' will be assigned the
2282# following values.
2283
2284_ACEOF
2285
2286# The following way of writing the cache mishandles newlines in values,
2287# but we know of no workaround that is simple, portable, and efficient.
2288# So, we kill variables containing newlines.
2289# Ultrix sh set writes to stderr and can't be redirected directly,
2290# and sets the high bit in the cache file unless we assign to the vars.
2291(
2292  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
2293    eval ac_val=\$$ac_var
2294    case $ac_val in #(
2295    *${as_nl}*)
2296      case $ac_var in #(
2297      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2298$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2299      esac
2300      case $ac_var in #(
2301      _ | IFS | as_nl) ;; #(
2302      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
2303      *) { eval $ac_var=; unset $ac_var;} ;;
2304      esac ;;
2305    esac
2306  done
2307
2308  (set) 2>&1 |
2309    case $as_nl`(ac_space=' '; set) 2>&1` in #(
2310    *${as_nl}ac_space=\ *)
2311      # `set' does not quote correctly, so add quotes: double-quote
2312      # substitution turns \\\\ into \\, and sed turns \\ into \.
2313      sed -n \
2314	"s/'/'\\\\''/g;
2315	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
2316      ;; #(
2317    *)
2318      # `set' quotes correctly as required by POSIX, so do not add quotes.
2319      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2320      ;;
2321    esac |
2322    sort
2323) |
2324  sed '
2325     /^ac_cv_env_/b end
2326     t clear
2327     :clear
2328     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
2329     t end
2330     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
2331     :end' >>confcache
2332if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
2333  if test -w "$cache_file"; then
2334    if test "x$cache_file" != "x/dev/null"; then
2335      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
2336$as_echo "$as_me: updating cache $cache_file" >&6;}
2337      if test ! -f "$cache_file" || test -h "$cache_file"; then
2338	cat confcache >"$cache_file"
2339      else
2340        case $cache_file in #(
2341        */* | ?:*)
2342	  mv -f confcache "$cache_file"$$ &&
2343	  mv -f "$cache_file"$$ "$cache_file" ;; #(
2344        *)
2345	  mv -f confcache "$cache_file" ;;
2346	esac
2347      fi
2348    fi
2349  else
2350    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
2351$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
2352  fi
2353fi
2354rm -f confcache
2355
2356test "x$prefix" = xNONE && prefix=$ac_default_prefix
2357# Let make expand exec_prefix.
2358test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
2359
2360# Transform confdefs.h into DEFS.
2361# Protect against shell expansion while executing Makefile rules.
2362# Protect against Makefile macro expansion.
2363#
2364# If the first sed substitution is executed (which looks for macros that
2365# take arguments), then branch to the quote section.  Otherwise,
2366# look for a macro that doesn't take arguments.
2367ac_script='
2368:mline
2369/\\$/{
2370 N
2371 s,\\\n,,
2372 b mline
2373}
2374t clear
2375:clear
2376s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
2377t quote
2378s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
2379t quote
2380b any
2381:quote
2382s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
2383s/\[/\\&/g
2384s/\]/\\&/g
2385s/\$/$$/g
2386H
2387:any
2388${
2389	g
2390	s/^\n//
2391	s/\n/ /g
2392	p
2393}
2394'
2395DEFS=`sed -n "$ac_script" confdefs.h`
2396
2397
2398ac_libobjs=
2399ac_ltlibobjs=
2400U=
2401for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
2402  # 1. Remove the extension, and $U if already installed.
2403  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
2404  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
2405  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
2406  #    will be set to the directory where LIBOBJS objects are built.
2407  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
2408  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
2409done
2410LIBOBJS=$ac_libobjs
2411
2412LTLIBOBJS=$ac_ltlibobjs
2413
2414
2415
2416: "${CONFIG_STATUS=./config.status}"
2417ac_write_fail=0
2418ac_clean_files_save=$ac_clean_files
2419ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2420{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
2421$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
2422as_write_fail=0
2423cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
2424#! $SHELL
2425# Generated by $as_me.
2426# Run this file to recreate the current configuration.
2427# Compiler output produced by configure, useful for debugging
2428# configure, is in config.log if it exists.
2429
2430debug=false
2431ac_cs_recheck=false
2432ac_cs_silent=false
2433
2434SHELL=\${CONFIG_SHELL-$SHELL}
2435export SHELL
2436_ASEOF
2437cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
2438## -------------------- ##
2439## M4sh Initialization. ##
2440## -------------------- ##
2441
2442# Be more Bourne compatible
2443DUALCASE=1; export DUALCASE # for MKS sh
2444if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
2445  emulate sh
2446  NULLCMD=:
2447  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
2448  # is contrary to our usage.  Disable this feature.
2449  alias -g '${1+"$@"}'='"$@"'
2450  setopt NO_GLOB_SUBST
2451else
2452  case `(set -o) 2>/dev/null` in #(
2453  *posix*) :
2454    set -o posix ;; #(
2455  *) :
2456     ;;
2457esac
2458fi
2459
2460
2461as_nl='
2462'
2463export as_nl
2464# Printing a long string crashes Solaris 7 /usr/bin/printf.
2465as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
2466as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
2467as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
2468# Prefer a ksh shell builtin over an external printf program on Solaris,
2469# but without wasting forks for bash or zsh.
2470if test -z "$BASH_VERSION$ZSH_VERSION" \
2471    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
2472  as_echo='print -r --'
2473  as_echo_n='print -rn --'
2474elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
2475  as_echo='printf %s\n'
2476  as_echo_n='printf %s'
2477else
2478  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
2479    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
2480    as_echo_n='/usr/ucb/echo -n'
2481  else
2482    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
2483    as_echo_n_body='eval
2484      arg=$1;
2485      case $arg in #(
2486      *"$as_nl"*)
2487	expr "X$arg" : "X\\(.*\\)$as_nl";
2488	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
2489      esac;
2490      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
2491    '
2492    export as_echo_n_body
2493    as_echo_n='sh -c $as_echo_n_body as_echo'
2494  fi
2495  export as_echo_body
2496  as_echo='sh -c $as_echo_body as_echo'
2497fi
2498
2499# The user is always right.
2500if test "${PATH_SEPARATOR+set}" != set; then
2501  PATH_SEPARATOR=:
2502  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
2503    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
2504      PATH_SEPARATOR=';'
2505  }
2506fi
2507
2508
2509# IFS
2510# We need space, tab and new line, in precisely that order.  Quoting is
2511# there to prevent editors from complaining about space-tab.
2512# (If _AS_PATH_WALK were called with IFS unset, it would disable word
2513# splitting by setting IFS to empty value.)
2514IFS=" ""	$as_nl"
2515
2516# Find who we are.  Look in the path if we contain no directory separator.
2517as_myself=
2518case $0 in #((
2519  *[\\/]* ) as_myself=$0 ;;
2520  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2521for as_dir in $PATH
2522do
2523  IFS=$as_save_IFS
2524  test -z "$as_dir" && as_dir=.
2525    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
2526  done
2527IFS=$as_save_IFS
2528
2529     ;;
2530esac
2531# We did not find ourselves, most probably we were run as `sh COMMAND'
2532# in which case we are not to be found in the path.
2533if test "x$as_myself" = x; then
2534  as_myself=$0
2535fi
2536if test ! -f "$as_myself"; then
2537  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
2538  exit 1
2539fi
2540
2541# Unset variables that we do not need and which cause bugs (e.g. in
2542# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
2543# suppresses any "Segmentation fault" message there.  '((' could
2544# trigger a bug in pdksh 5.2.14.
2545for as_var in BASH_ENV ENV MAIL MAILPATH
2546do eval test x\${$as_var+set} = xset \
2547  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
2548done
2549PS1='$ '
2550PS2='> '
2551PS4='+ '
2552
2553# NLS nuisances.
2554LC_ALL=C
2555export LC_ALL
2556LANGUAGE=C
2557export LANGUAGE
2558
2559# CDPATH.
2560(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2561
2562
2563# as_fn_error STATUS ERROR [LINENO LOG_FD]
2564# ----------------------------------------
2565# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
2566# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
2567# script with STATUS, using 1 if that was 0.
2568as_fn_error ()
2569{
2570  as_status=$1; test $as_status -eq 0 && as_status=1
2571  if test "$4"; then
2572    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2573    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
2574  fi
2575  $as_echo "$as_me: error: $2" >&2
2576  as_fn_exit $as_status
2577} # as_fn_error
2578
2579
2580# as_fn_set_status STATUS
2581# -----------------------
2582# Set $? to STATUS, without forking.
2583as_fn_set_status ()
2584{
2585  return $1
2586} # as_fn_set_status
2587
2588# as_fn_exit STATUS
2589# -----------------
2590# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
2591as_fn_exit ()
2592{
2593  set +e
2594  as_fn_set_status $1
2595  exit $1
2596} # as_fn_exit
2597
2598# as_fn_unset VAR
2599# ---------------
2600# Portably unset VAR.
2601as_fn_unset ()
2602{
2603  { eval $1=; unset $1;}
2604}
2605as_unset=as_fn_unset
2606# as_fn_append VAR VALUE
2607# ----------------------
2608# Append the text in VALUE to the end of the definition contained in VAR. Take
2609# advantage of any shell optimizations that allow amortized linear growth over
2610# repeated appends, instead of the typical quadratic growth present in naive
2611# implementations.
2612if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
2613  eval 'as_fn_append ()
2614  {
2615    eval $1+=\$2
2616  }'
2617else
2618  as_fn_append ()
2619  {
2620    eval $1=\$$1\$2
2621  }
2622fi # as_fn_append
2623
2624# as_fn_arith ARG...
2625# ------------------
2626# Perform arithmetic evaluation on the ARGs, and store the result in the
2627# global $as_val. Take advantage of shells that can avoid forks. The arguments
2628# must be portable across $(()) and expr.
2629if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
2630  eval 'as_fn_arith ()
2631  {
2632    as_val=$(( $* ))
2633  }'
2634else
2635  as_fn_arith ()
2636  {
2637    as_val=`expr "$@" || test $? -eq 1`
2638  }
2639fi # as_fn_arith
2640
2641
2642if expr a : '\(a\)' >/dev/null 2>&1 &&
2643   test "X`expr 00001 : '.*\(...\)'`" = X001; then
2644  as_expr=expr
2645else
2646  as_expr=false
2647fi
2648
2649if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
2650  as_basename=basename
2651else
2652  as_basename=false
2653fi
2654
2655if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
2656  as_dirname=dirname
2657else
2658  as_dirname=false
2659fi
2660
2661as_me=`$as_basename -- "$0" ||
2662$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
2663	 X"$0" : 'X\(//\)$' \| \
2664	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
2665$as_echo X/"$0" |
2666    sed '/^.*\/\([^/][^/]*\)\/*$/{
2667	    s//\1/
2668	    q
2669	  }
2670	  /^X\/\(\/\/\)$/{
2671	    s//\1/
2672	    q
2673	  }
2674	  /^X\/\(\/\).*/{
2675	    s//\1/
2676	    q
2677	  }
2678	  s/.*/./; q'`
2679
2680# Avoid depending upon Character Ranges.
2681as_cr_letters='abcdefghijklmnopqrstuvwxyz'
2682as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
2683as_cr_Letters=$as_cr_letters$as_cr_LETTERS
2684as_cr_digits='0123456789'
2685as_cr_alnum=$as_cr_Letters$as_cr_digits
2686
2687ECHO_C= ECHO_N= ECHO_T=
2688case `echo -n x` in #(((((
2689-n*)
2690  case `echo 'xy\c'` in
2691  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
2692  xy)  ECHO_C='\c';;
2693  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
2694       ECHO_T='	';;
2695  esac;;
2696*)
2697  ECHO_N='-n';;
2698esac
2699
2700rm -f conf$$ conf$$.exe conf$$.file
2701if test -d conf$$.dir; then
2702  rm -f conf$$.dir/conf$$.file
2703else
2704  rm -f conf$$.dir
2705  mkdir conf$$.dir 2>/dev/null
2706fi
2707if (echo >conf$$.file) 2>/dev/null; then
2708  if ln -s conf$$.file conf$$ 2>/dev/null; then
2709    as_ln_s='ln -s'
2710    # ... but there are two gotchas:
2711    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
2712    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
2713    # In both cases, we have to default to `cp -pR'.
2714    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
2715      as_ln_s='cp -pR'
2716  elif ln conf$$.file conf$$ 2>/dev/null; then
2717    as_ln_s=ln
2718  else
2719    as_ln_s='cp -pR'
2720  fi
2721else
2722  as_ln_s='cp -pR'
2723fi
2724rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
2725rmdir conf$$.dir 2>/dev/null
2726
2727
2728# as_fn_mkdir_p
2729# -------------
2730# Create "$as_dir" as a directory, including parents if necessary.
2731as_fn_mkdir_p ()
2732{
2733
2734  case $as_dir in #(
2735  -*) as_dir=./$as_dir;;
2736  esac
2737  test -d "$as_dir" || eval $as_mkdir_p || {
2738    as_dirs=
2739    while :; do
2740      case $as_dir in #(
2741      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
2742      *) as_qdir=$as_dir;;
2743      esac
2744      as_dirs="'$as_qdir' $as_dirs"
2745      as_dir=`$as_dirname -- "$as_dir" ||
2746$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
2747	 X"$as_dir" : 'X\(//\)[^/]' \| \
2748	 X"$as_dir" : 'X\(//\)$' \| \
2749	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
2750$as_echo X"$as_dir" |
2751    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
2752	    s//\1/
2753	    q
2754	  }
2755	  /^X\(\/\/\)[^/].*/{
2756	    s//\1/
2757	    q
2758	  }
2759	  /^X\(\/\/\)$/{
2760	    s//\1/
2761	    q
2762	  }
2763	  /^X\(\/\).*/{
2764	    s//\1/
2765	    q
2766	  }
2767	  s/.*/./; q'`
2768      test -d "$as_dir" && break
2769    done
2770    test -z "$as_dirs" || eval "mkdir $as_dirs"
2771  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
2772
2773
2774} # as_fn_mkdir_p
2775if mkdir -p . 2>/dev/null; then
2776  as_mkdir_p='mkdir -p "$as_dir"'
2777else
2778  test -d ./-p && rmdir ./-p
2779  as_mkdir_p=false
2780fi
2781
2782
2783# as_fn_executable_p FILE
2784# -----------------------
2785# Test if FILE is an executable regular file.
2786as_fn_executable_p ()
2787{
2788  test -f "$1" && test -x "$1"
2789} # as_fn_executable_p
2790as_test_x='test -x'
2791as_executable_p=as_fn_executable_p
2792
2793# Sed expression to map a string onto a valid CPP name.
2794as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
2795
2796# Sed expression to map a string onto a valid variable name.
2797as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
2798
2799
2800exec 6>&1
2801## ----------------------------------- ##
2802## Main body of $CONFIG_STATUS script. ##
2803## ----------------------------------- ##
2804_ASEOF
2805test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
2806
2807cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2808# Save the log message, to keep $0 and so on meaningful, and to
2809# report actual input values of CONFIG_FILES etc. instead of their
2810# values after options handling.
2811ac_log="
2812This file was extended by Xen Hypervisor Documentation $as_me 4.14, which was
2813generated by GNU Autoconf 2.69.  Invocation command line was
2814
2815  CONFIG_FILES    = $CONFIG_FILES
2816  CONFIG_HEADERS  = $CONFIG_HEADERS
2817  CONFIG_LINKS    = $CONFIG_LINKS
2818  CONFIG_COMMANDS = $CONFIG_COMMANDS
2819  $ $0 $@
2820
2821on `(hostname || uname -n) 2>/dev/null | sed 1q`
2822"
2823
2824_ACEOF
2825
2826case $ac_config_files in *"
2827"*) set x $ac_config_files; shift; ac_config_files=$*;;
2828esac
2829
2830
2831
2832cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2833# Files that config.status was made for.
2834config_files="$ac_config_files"
2835
2836_ACEOF
2837
2838cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2839ac_cs_usage="\
2840\`$as_me' instantiates files and other configuration actions
2841from templates according to the current configuration.  Unless the files
2842and actions are specified as TAGs, all are instantiated by default.
2843
2844Usage: $0 [OPTION]... [TAG]...
2845
2846  -h, --help       print this help, then exit
2847  -V, --version    print version number and configuration settings, then exit
2848      --config     print configuration, then exit
2849  -q, --quiet, --silent
2850                   do not print progress messages
2851  -d, --debug      don't remove temporary files
2852      --recheck    update $as_me by reconfiguring in the same conditions
2853      --file=FILE[:TEMPLATE]
2854                   instantiate the configuration file FILE
2855
2856Configuration files:
2857$config_files
2858
2859Report bugs to <xen-devel@lists.xen.org>.
2860Xen Hypervisor Documentation home page: <https://www.xen.org/>."
2861
2862_ACEOF
2863cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2864ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2865ac_cs_version="\\
2866Xen Hypervisor Documentation config.status 4.14
2867configured by $0, generated by GNU Autoconf 2.69,
2868  with options \\"\$ac_cs_config\\"
2869
2870Copyright (C) 2012 Free Software Foundation, Inc.
2871This config.status script is free software; the Free Software Foundation
2872gives unlimited permission to copy, distribute and modify it."
2873
2874ac_pwd='$ac_pwd'
2875srcdir='$srcdir'
2876test -n "\$AWK" || AWK=awk
2877_ACEOF
2878
2879cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2880# The default lists apply if the user does not specify any file.
2881ac_need_defaults=:
2882while test $# != 0
2883do
2884  case $1 in
2885  --*=?*)
2886    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2887    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
2888    ac_shift=:
2889    ;;
2890  --*=)
2891    ac_option=`expr "X$1" : 'X\([^=]*\)='`
2892    ac_optarg=
2893    ac_shift=:
2894    ;;
2895  *)
2896    ac_option=$1
2897    ac_optarg=$2
2898    ac_shift=shift
2899    ;;
2900  esac
2901
2902  case $ac_option in
2903  # Handling of the options.
2904  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
2905    ac_cs_recheck=: ;;
2906  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
2907    $as_echo "$ac_cs_version"; exit ;;
2908  --config | --confi | --conf | --con | --co | --c )
2909    $as_echo "$ac_cs_config"; exit ;;
2910  --debug | --debu | --deb | --de | --d | -d )
2911    debug=: ;;
2912  --file | --fil | --fi | --f )
2913    $ac_shift
2914    case $ac_optarg in
2915    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
2916    '') as_fn_error $? "missing file argument" ;;
2917    esac
2918    as_fn_append CONFIG_FILES " '$ac_optarg'"
2919    ac_need_defaults=false;;
2920  --he | --h |  --help | --hel | -h )
2921    $as_echo "$ac_cs_usage"; exit ;;
2922  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
2923  | -silent | --silent | --silen | --sile | --sil | --si | --s)
2924    ac_cs_silent=: ;;
2925
2926  # This is an error.
2927  -*) as_fn_error $? "unrecognized option: \`$1'
2928Try \`$0 --help' for more information." ;;
2929
2930  *) as_fn_append ac_config_targets " $1"
2931     ac_need_defaults=false ;;
2932
2933  esac
2934  shift
2935done
2936
2937ac_configure_extra_args=
2938
2939if $ac_cs_silent; then
2940  exec 6>/dev/null
2941  ac_configure_extra_args="$ac_configure_extra_args --silent"
2942fi
2943
2944_ACEOF
2945cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2946if \$ac_cs_recheck; then
2947  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
2948  shift
2949  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
2950  CONFIG_SHELL='$SHELL'
2951  export CONFIG_SHELL
2952  exec "\$@"
2953fi
2954
2955_ACEOF
2956cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2957exec 5>>config.log
2958{
2959  echo
2960  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
2961## Running $as_me. ##
2962_ASBOX
2963  $as_echo "$ac_log"
2964} >&5
2965
2966_ACEOF
2967cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2968_ACEOF
2969
2970cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2971
2972# Handling of arguments.
2973for ac_config_target in $ac_config_targets
2974do
2975  case $ac_config_target in
2976    "../config/Docs.mk") CONFIG_FILES="$CONFIG_FILES ../config/Docs.mk" ;;
2977    "man/xl.cfg.5.pod") CONFIG_FILES="$CONFIG_FILES man/xl.cfg.5.pod" ;;
2978    "man/xl.1.pod") CONFIG_FILES="$CONFIG_FILES man/xl.1.pod" ;;
2979
2980  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
2981  esac
2982done
2983
2984
2985# If the user did not use the arguments to specify the items to instantiate,
2986# then the envvar interface is used.  Set only those that are not.
2987# We use the long form for the default assignment because of an extremely
2988# bizarre bug on SunOS 4.1.3.
2989if $ac_need_defaults; then
2990  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
2991fi
2992
2993# Have a temporary directory for convenience.  Make it in the build tree
2994# simply because there is no reason against having it here, and in addition,
2995# creating and moving files from /tmp can sometimes cause problems.
2996# Hook for its removal unless debugging.
2997# Note that there is a small window in which the directory will not be cleaned:
2998# after its creation but before its name has been assigned to `$tmp'.
2999$debug ||
3000{
3001  tmp= ac_tmp=
3002  trap 'exit_status=$?
3003  : "${ac_tmp:=$tmp}"
3004  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
3005' 0
3006  trap 'as_fn_exit 1' 1 2 13 15
3007}
3008# Create a (secure) tmp directory for tmp files.
3009
3010{
3011  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
3012  test -d "$tmp"
3013}  ||
3014{
3015  tmp=./conf$$-$RANDOM
3016  (umask 077 && mkdir "$tmp")
3017} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
3018ac_tmp=$tmp
3019
3020# Set up the scripts for CONFIG_FILES section.
3021# No need to generate them if there are no CONFIG_FILES.
3022# This happens for instance with `./config.status config.h'.
3023if test -n "$CONFIG_FILES"; then
3024
3025
3026ac_cr=`echo X | tr X '\015'`
3027# On cygwin, bash can eat \r inside `` if the user requested igncr.
3028# But we know of no other shell where ac_cr would be empty at this
3029# point, so we can use a bashism as a fallback.
3030if test "x$ac_cr" = x; then
3031  eval ac_cr=\$\'\\r\'
3032fi
3033ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
3034if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
3035  ac_cs_awk_cr='\\r'
3036else
3037  ac_cs_awk_cr=$ac_cr
3038fi
3039
3040echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
3041_ACEOF
3042
3043
3044{
3045  echo "cat >conf$$subs.awk <<_ACEOF" &&
3046  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
3047  echo "_ACEOF"
3048} >conf$$subs.sh ||
3049  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3050ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
3051ac_delim='%!_!# '
3052for ac_last_try in false false false false false :; do
3053  . ./conf$$subs.sh ||
3054    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3055
3056  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
3057  if test $ac_delim_n = $ac_delim_num; then
3058    break
3059  elif $ac_last_try; then
3060    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3061  else
3062    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
3063  fi
3064done
3065rm -f conf$$subs.sh
3066
3067cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3068cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
3069_ACEOF
3070sed -n '
3071h
3072s/^/S["/; s/!.*/"]=/
3073p
3074g
3075s/^[^!]*!//
3076:repl
3077t repl
3078s/'"$ac_delim"'$//
3079t delim
3080:nl
3081h
3082s/\(.\{148\}\)..*/\1/
3083t more1
3084s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
3085p
3086n
3087b repl
3088:more1
3089s/["\\]/\\&/g; s/^/"/; s/$/"\\/
3090p
3091g
3092s/.\{148\}//
3093t nl
3094:delim
3095h
3096s/\(.\{148\}\)..*/\1/
3097t more2
3098s/["\\]/\\&/g; s/^/"/; s/$/"/
3099p
3100b
3101:more2
3102s/["\\]/\\&/g; s/^/"/; s/$/"\\/
3103p
3104g
3105s/.\{148\}//
3106t delim
3107' <conf$$subs.awk | sed '
3108/^[^""]/{
3109  N
3110  s/\n//
3111}
3112' >>$CONFIG_STATUS || ac_write_fail=1
3113rm -f conf$$subs.awk
3114cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3115_ACAWK
3116cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
3117  for (key in S) S_is_set[key] = 1
3118  FS = ""
3119
3120}
3121{
3122  line = $ 0
3123  nfields = split(line, field, "@")
3124  substed = 0
3125  len = length(field[1])
3126  for (i = 2; i < nfields; i++) {
3127    key = field[i]
3128    keylen = length(key)
3129    if (S_is_set[key]) {
3130      value = S[key]
3131      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
3132      len += length(value) + length(field[++i])
3133      substed = 1
3134    } else
3135      len += 1 + keylen
3136  }
3137
3138  print line
3139}
3140
3141_ACAWK
3142_ACEOF
3143cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3144if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
3145  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
3146else
3147  cat
3148fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
3149  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
3150_ACEOF
3151
3152# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
3153# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
3154# trailing colons and then remove the whole line if VPATH becomes empty
3155# (actually we leave an empty line to preserve line numbers).
3156if test "x$srcdir" = x.; then
3157  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
3158h
3159s///
3160s/^/:/
3161s/[	 ]*$/:/
3162s/:\$(srcdir):/:/g
3163s/:\${srcdir}:/:/g
3164s/:@srcdir@:/:/g
3165s/^:*//
3166s/:*$//
3167x
3168s/\(=[	 ]*\).*/\1/
3169G
3170s/\n//
3171s/^[^=]*=[	 ]*$//
3172}'
3173fi
3174
3175cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3176fi # test -n "$CONFIG_FILES"
3177
3178
3179eval set X "  :F $CONFIG_FILES      "
3180shift
3181for ac_tag
3182do
3183  case $ac_tag in
3184  :[FHLC]) ac_mode=$ac_tag; continue;;
3185  esac
3186  case $ac_mode$ac_tag in
3187  :[FHL]*:*);;
3188  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
3189  :[FH]-) ac_tag=-:-;;
3190  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
3191  esac
3192  ac_save_IFS=$IFS
3193  IFS=:
3194  set x $ac_tag
3195  IFS=$ac_save_IFS
3196  shift
3197  ac_file=$1
3198  shift
3199
3200  case $ac_mode in
3201  :L) ac_source=$1;;
3202  :[FH])
3203    ac_file_inputs=
3204    for ac_f
3205    do
3206      case $ac_f in
3207      -) ac_f="$ac_tmp/stdin";;
3208      *) # Look for the file first in the build tree, then in the source tree
3209	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
3210	 # because $ac_f cannot contain `:'.
3211	 test -f "$ac_f" ||
3212	   case $ac_f in
3213	   [\\/$]*) false;;
3214	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
3215	   esac ||
3216	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
3217      esac
3218      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
3219      as_fn_append ac_file_inputs " '$ac_f'"
3220    done
3221
3222    # Let's still pretend it is `configure' which instantiates (i.e., don't
3223    # use $as_me), people would be surprised to read:
3224    #    /* config.h.  Generated by config.status.  */
3225    configure_input='Generated from '`
3226	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
3227	`' by configure.'
3228    if test x"$ac_file" != x-; then
3229      configure_input="$ac_file.  $configure_input"
3230      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
3231$as_echo "$as_me: creating $ac_file" >&6;}
3232    fi
3233    # Neutralize special characters interpreted by sed in replacement strings.
3234    case $configure_input in #(
3235    *\&* | *\|* | *\\* )
3236       ac_sed_conf_input=`$as_echo "$configure_input" |
3237       sed 's/[\\\\&|]/\\\\&/g'`;; #(
3238    *) ac_sed_conf_input=$configure_input;;
3239    esac
3240
3241    case $ac_tag in
3242    *:-:* | *:-) cat >"$ac_tmp/stdin" \
3243      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
3244    esac
3245    ;;
3246  esac
3247
3248  ac_dir=`$as_dirname -- "$ac_file" ||
3249$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3250	 X"$ac_file" : 'X\(//\)[^/]' \| \
3251	 X"$ac_file" : 'X\(//\)$' \| \
3252	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
3253$as_echo X"$ac_file" |
3254    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
3255	    s//\1/
3256	    q
3257	  }
3258	  /^X\(\/\/\)[^/].*/{
3259	    s//\1/
3260	    q
3261	  }
3262	  /^X\(\/\/\)$/{
3263	    s//\1/
3264	    q
3265	  }
3266	  /^X\(\/\).*/{
3267	    s//\1/
3268	    q
3269	  }
3270	  s/.*/./; q'`
3271  as_dir="$ac_dir"; as_fn_mkdir_p
3272  ac_builddir=.
3273
3274case "$ac_dir" in
3275.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
3276*)
3277  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
3278  # A ".." for each directory in $ac_dir_suffix.
3279  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
3280  case $ac_top_builddir_sub in
3281  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
3282  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
3283  esac ;;
3284esac
3285ac_abs_top_builddir=$ac_pwd
3286ac_abs_builddir=$ac_pwd$ac_dir_suffix
3287# for backward compatibility:
3288ac_top_builddir=$ac_top_build_prefix
3289
3290case $srcdir in
3291  .)  # We are building in place.
3292    ac_srcdir=.
3293    ac_top_srcdir=$ac_top_builddir_sub
3294    ac_abs_top_srcdir=$ac_pwd ;;
3295  [\\/]* | ?:[\\/]* )  # Absolute name.
3296    ac_srcdir=$srcdir$ac_dir_suffix;
3297    ac_top_srcdir=$srcdir
3298    ac_abs_top_srcdir=$srcdir ;;
3299  *) # Relative name.
3300    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
3301    ac_top_srcdir=$ac_top_build_prefix$srcdir
3302    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
3303esac
3304ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
3305
3306
3307  case $ac_mode in
3308  :F)
3309  #
3310  # CONFIG_FILE
3311  #
3312
3313_ACEOF
3314
3315cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3316# If the template does not know about datarootdir, expand it.
3317# FIXME: This hack should be removed a few years after 2.60.
3318ac_datarootdir_hack=; ac_datarootdir_seen=
3319ac_sed_dataroot='
3320/datarootdir/ {
3321  p
3322  q
3323}
3324/@datadir@/p
3325/@docdir@/p
3326/@infodir@/p
3327/@localedir@/p
3328/@mandir@/p'
3329case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
3330*datarootdir*) ac_datarootdir_seen=yes;;
3331*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
3332  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
3333$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
3334_ACEOF
3335cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3336  ac_datarootdir_hack='
3337  s&@datadir@&$datadir&g
3338  s&@docdir@&$docdir&g
3339  s&@infodir@&$infodir&g
3340  s&@localedir@&$localedir&g
3341  s&@mandir@&$mandir&g
3342  s&\\\${datarootdir}&$datarootdir&g' ;;
3343esac
3344_ACEOF
3345
3346# Neutralize VPATH when `$srcdir' = `.'.
3347# Shell code in configure.ac might set extrasub.
3348# FIXME: do we really want to maintain this feature?
3349cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3350ac_sed_extra="$ac_vpsub
3351$extrasub
3352_ACEOF
3353cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3354:t
3355/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
3356s|@configure_input@|$ac_sed_conf_input|;t t
3357s&@top_builddir@&$ac_top_builddir_sub&;t t
3358s&@top_build_prefix@&$ac_top_build_prefix&;t t
3359s&@srcdir@&$ac_srcdir&;t t
3360s&@abs_srcdir@&$ac_abs_srcdir&;t t
3361s&@top_srcdir@&$ac_top_srcdir&;t t
3362s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
3363s&@builddir@&$ac_builddir&;t t
3364s&@abs_builddir@&$ac_abs_builddir&;t t
3365s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
3366$ac_datarootdir_hack
3367"
3368eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
3369  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3370
3371test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
3372  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
3373  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
3374      "$ac_tmp/out"`; test -z "$ac_out"; } &&
3375  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3376which seems to be undefined.  Please make sure it is defined" >&5
3377$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
3378which seems to be undefined.  Please make sure it is defined" >&2;}
3379
3380  rm -f "$ac_tmp/stdin"
3381  case $ac_file in
3382  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
3383  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
3384  esac \
3385  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
3386 ;;
3387
3388
3389
3390  esac
3391
3392done # for ac_tag
3393
3394
3395as_fn_exit 0
3396_ACEOF
3397ac_clean_files=$ac_clean_files_save
3398
3399test $ac_write_fail = 0 ||
3400  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
3401
3402
3403# configure is writing to config.log, and then calls config.status.
3404# config.status does its own redirection, appending to config.log.
3405# Unfortunately, on DOS this fails, as config.log is still kept open
3406# by configure, so config.status won't be able to write to it; its
3407# output is simply discarded.  So we exec the FD to /dev/null,
3408# effectively closing config.log, so it can be properly (re)opened and
3409# appended to by config.status.  When coming back to configure, we
3410# need to make the FD available again.
3411if test "$no_create" != yes; then
3412  ac_cs_success=:
3413  ac_config_status_args=
3414  test "$silent" = yes &&
3415    ac_config_status_args="$ac_config_status_args --quiet"
3416  exec 5>/dev/null
3417  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
3418  exec 5>>config.log
3419  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
3420  # would make configure fail if this is the last instruction.
3421  $ac_cs_success || as_fn_exit 1
3422fi
3423if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
3424  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
3425$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
3426fi
3427
3428