source: projects/vine-developers-guide/tags/R_5_9_0/configure @ 3041

Revision 3041, 103.6 KB checked in by yasumichi, 13 years ago (diff)

新しいマニュアルビルド方式に対応

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