1#! /bin/sh
2# Generated by configure.
3# Run this file to recreate the current configuration.
4# Compiler output produced by configure, useful for debugging
5# configure, is in config.log if it exists.
6
7debug=false
8ac_cs_recheck=false
9ac_cs_silent=false
10
11SHELL=${CONFIG_SHELL-/bin/sh}
12export SHELL
13## -------------------- ##
14## M4sh Initialization. ##
15## -------------------- ##
16
17# Be more Bourne compatible
18DUALCASE=1; export DUALCASE # for MKS sh
19if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20  emulate sh
21  NULLCMD=:
22  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23  # is contrary to our usage.  Disable this feature.
24  alias -g '${1+"$@"}'='"$@"'
25  setopt NO_GLOB_SUBST
26else
27  case `(set -o) 2>/dev/null` in #(
28  *posix*) :
29    set -o posix ;; #(
30  *) :
31     ;;
32esac
33fi
34
35
36as_nl='
37'
38export as_nl
39# Printing a long string crashes Solaris 7 /usr/bin/printf.
40as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43# Prefer a ksh shell builtin over an external printf program on Solaris,
44# but without wasting forks for bash or zsh.
45if test -z "$BASH_VERSION$ZSH_VERSION" \
46    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47  as_echo='print -r --'
48  as_echo_n='print -rn --'
49elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50  as_echo='printf %s\n'
51  as_echo_n='printf %s'
52else
53  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55    as_echo_n='/usr/ucb/echo -n'
56  else
57    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58    as_echo_n_body='eval
59      arg=$1;
60      case $arg in #(
61      *"$as_nl"*)
62	expr "X$arg" : "X\\(.*\\)$as_nl";
63	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64      esac;
65      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66    '
67    export as_echo_n_body
68    as_echo_n='sh -c $as_echo_n_body as_echo'
69  fi
70  export as_echo_body
71  as_echo='sh -c $as_echo_body as_echo'
72fi
73
74# The user is always right.
75if test "${PATH_SEPARATOR+set}" != set; then
76  PATH_SEPARATOR=:
77  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79      PATH_SEPARATOR=';'
80  }
81fi
82
83
84# IFS
85# We need space, tab and new line, in precisely that order.  Quoting is
86# there to prevent editors from complaining about space-tab.
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.)
89IFS=" ""	$as_nl"
90
91# Find who we are.  Look in the path if we contain no directory separator.
92case $0 in #((
93  *[\\/]* ) as_myself=$0 ;;
94  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
95for as_dir in $PATH
96do
97  IFS=$as_save_IFS
98  test -z "$as_dir" && as_dir=.
99    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
100  done
101IFS=$as_save_IFS
102
103     ;;
104esac
105# We did not find ourselves, most probably we were run as `sh COMMAND'
106# in which case we are not to be found in the path.
107if test "x$as_myself" = x; then
108  as_myself=$0
109fi
110if test ! -f "$as_myself"; then
111  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112  exit 1
113fi
114
115# Unset variables that we do not need and which cause bugs (e.g. in
116# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
117# suppresses any "Segmentation fault" message there.  '((' could
118# trigger a bug in pdksh 5.2.14.
119for as_var in BASH_ENV ENV MAIL MAILPATH
120do eval test x\${$as_var+set} = xset \
121  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
122done
123PS1='$ '
124PS2='> '
125PS4='+ '
126
127# NLS nuisances.
128LC_ALL=C
129export LC_ALL
130LANGUAGE=C
131export LANGUAGE
132
133# CDPATH.
134(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
135
136
137# as_fn_error ERROR [LINENO LOG_FD]
138# ---------------------------------
139# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
140# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
141# script with status $?, using 1 if that was 0.
142as_fn_error ()
143{
144  as_status=$?; test $as_status -eq 0 && as_status=1
145  if test "$3"; then
146    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
147    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
148  fi
149  $as_echo "$as_me: error: $1" >&2
150  as_fn_exit $as_status
151} # as_fn_error
152
153
154# as_fn_set_status STATUS
155# -----------------------
156# Set $? to STATUS, without forking.
157as_fn_set_status ()
158{
159  return $1
160} # as_fn_set_status
161
162# as_fn_exit STATUS
163# -----------------
164# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
165as_fn_exit ()
166{
167  set +e
168  as_fn_set_status $1
169  exit $1
170} # as_fn_exit
171
172# as_fn_unset VAR
173# ---------------
174# Portably unset VAR.
175as_fn_unset ()
176{
177  { eval $1=; unset $1;}
178}
179as_unset=as_fn_unset
180# as_fn_append VAR VALUE
181# ----------------------
182# Append the text in VALUE to the end of the definition contained in VAR. Take
183# advantage of any shell optimizations that allow amortized linear growth over
184# repeated appends, instead of the typical quadratic growth present in naive
185# implementations.
186if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
187  eval 'as_fn_append ()
188  {
189    eval $1+=\$2
190  }'
191else
192  as_fn_append ()
193  {
194    eval $1=\$$1\$2
195  }
196fi # as_fn_append
197
198# as_fn_arith ARG...
199# ------------------
200# Perform arithmetic evaluation on the ARGs, and store the result in the
201# global $as_val. Take advantage of shells that can avoid forks. The arguments
202# must be portable across $(()) and expr.
203if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
204  eval 'as_fn_arith ()
205  {
206    as_val=$(( $* ))
207  }'
208else
209  as_fn_arith ()
210  {
211    as_val=`expr "$@" || test $? -eq 1`
212  }
213fi # as_fn_arith
214
215
216if expr a : '\(a\)' >/dev/null 2>&1 &&
217   test "X`expr 00001 : '.*\(...\)'`" = X001; then
218  as_expr=expr
219else
220  as_expr=false
221fi
222
223if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
224  as_basename=basename
225else
226  as_basename=false
227fi
228
229if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
230  as_dirname=dirname
231else
232  as_dirname=false
233fi
234
235as_me=`$as_basename -- "$0" ||
236$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
237	 X"$0" : 'X\(//\)$' \| \
238	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
239$as_echo X/"$0" |
240    sed '/^.*\/\([^/][^/]*\)\/*$/{
241	    s//\1/
242	    q
243	  }
244	  /^X\/\(\/\/\)$/{
245	    s//\1/
246	    q
247	  }
248	  /^X\/\(\/\).*/{
249	    s//\1/
250	    q
251	  }
252	  s/.*/./; q'`
253
254# Avoid depending upon Character Ranges.
255as_cr_letters='abcdefghijklmnopqrstuvwxyz'
256as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
257as_cr_Letters=$as_cr_letters$as_cr_LETTERS
258as_cr_digits='0123456789'
259as_cr_alnum=$as_cr_Letters$as_cr_digits
260
261ECHO_C= ECHO_N= ECHO_T=
262case `echo -n x` in #(((((
263-n*)
264  case `echo 'xy\c'` in
265  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
266  xy)  ECHO_C='\c';;
267  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
268       ECHO_T='	';;
269  esac;;
270*)
271  ECHO_N='-n';;
272esac
273
274rm -f conf$$ conf$$.exe conf$$.file
275if test -d conf$$.dir; then
276  rm -f conf$$.dir/conf$$.file
277else
278  rm -f conf$$.dir
279  mkdir conf$$.dir 2>/dev/null
280fi
281if (echo >conf$$.file) 2>/dev/null; then
282  if ln -s conf$$.file conf$$ 2>/dev/null; then
283    as_ln_s='ln -s'
284    # ... but there are two gotchas:
285    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
286    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
287    # In both cases, we have to default to `cp -p'.
288    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
289      as_ln_s='cp -p'
290  elif ln conf$$.file conf$$ 2>/dev/null; then
291    as_ln_s=ln
292  else
293    as_ln_s='cp -p'
294  fi
295else
296  as_ln_s='cp -p'
297fi
298rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
299rmdir conf$$.dir 2>/dev/null
300
301
302# as_fn_mkdir_p
303# -------------
304# Create "$as_dir" as a directory, including parents if necessary.
305as_fn_mkdir_p ()
306{
307
308  case $as_dir in #(
309  -*) as_dir=./$as_dir;;
310  esac
311  test -d "$as_dir" || eval $as_mkdir_p || {
312    as_dirs=
313    while :; do
314      case $as_dir in #(
315      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
316      *) as_qdir=$as_dir;;
317      esac
318      as_dirs="'$as_qdir' $as_dirs"
319      as_dir=`$as_dirname -- "$as_dir" ||
320$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
321	 X"$as_dir" : 'X\(//\)[^/]' \| \
322	 X"$as_dir" : 'X\(//\)$' \| \
323	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
324$as_echo X"$as_dir" |
325    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
326	    s//\1/
327	    q
328	  }
329	  /^X\(\/\/\)[^/].*/{
330	    s//\1/
331	    q
332	  }
333	  /^X\(\/\/\)$/{
334	    s//\1/
335	    q
336	  }
337	  /^X\(\/\).*/{
338	    s//\1/
339	    q
340	  }
341	  s/.*/./; q'`
342      test -d "$as_dir" && break
343    done
344    test -z "$as_dirs" || eval "mkdir $as_dirs"
345  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
346
347
348} # as_fn_mkdir_p
349if mkdir -p . 2>/dev/null; then
350  as_mkdir_p='mkdir -p "$as_dir"'
351else
352  test -d ./-p && rmdir ./-p
353  as_mkdir_p=false
354fi
355
356if test -x / >/dev/null 2>&1; then
357  as_test_x='test -x'
358else
359  if ls -dL / >/dev/null 2>&1; then
360    as_ls_L_option=L
361  else
362    as_ls_L_option=
363  fi
364  as_test_x='
365    eval sh -c '\''
366      if test -d "$1"; then
367	test -d "$1/.";
368      else
369	case $1 in #(
370	-*)set "./$1";;
371	esac;
372	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
373	???[sx]*):;;*)false;;esac;fi
374    '\'' sh
375  '
376fi
377as_executable_p=$as_test_x
378
379# Sed expression to map a string onto a valid CPP name.
380as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
381
382# Sed expression to map a string onto a valid variable name.
383as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
384
385
386exec 6>&1
387## ----------------------------------- ##
388## Main body of $CONFIG_STATUS script. ##
389## ----------------------------------- ##
390# Save the log message, to keep $0 and so on meaningful, and to
391# report actual input values of CONFIG_FILES etc. instead of their
392# values after options handling.
393ac_log="
394This file was extended by $as_me, which was
395generated by GNU Autoconf 2.65.  Invocation command line was
396
397  CONFIG_FILES    = $CONFIG_FILES
398  CONFIG_HEADERS  = $CONFIG_HEADERS
399  CONFIG_LINKS    = $CONFIG_LINKS
400  CONFIG_COMMANDS = $CONFIG_COMMANDS
401  $ $0 $@
402
403on `(hostname || uname -n) 2>/dev/null | sed 1q`
404"
405
406# Files that config.status was made for.
407config_files=" auto/config.mk:config.mk.in"
408config_headers=" auto/config.h:config.h.in"
409
410ac_cs_usage="\
411\`$as_me' instantiates files and other configuration actions
412from templates according to the current configuration.  Unless the files
413and actions are specified as TAGs, all are instantiated by default.
414
415Usage: $0 [OPTION]... [TAG]...
416
417  -h, --help       print this help, then exit
418  -V, --version    print version number and configuration settings, then exit
419      --config     print configuration, then exit
420  -q, --quiet, --silent
421                   do not print progress messages
422  -d, --debug      don't remove temporary files
423      --recheck    update $as_me by reconfiguring in the same conditions
424      --file=FILE[:TEMPLATE]
425                   instantiate the configuration file FILE
426      --header=FILE[:TEMPLATE]
427                   instantiate the configuration header FILE
428
429Configuration files:
430$config_files
431
432Configuration headers:
433$config_headers
434
435Report bugs to the package provider."
436
437ac_cs_config="'--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--enable-cscope' '--enable-gui=no' '--without-x' '--enable-multibyte' '--disable-darwin' '--srcdir=.' '--cache-file=auto/config.cache'"
438ac_cs_version="\
439config.status
440configured by auto/configure, generated by GNU Autoconf 2.65,
441  with options \"$ac_cs_config\"
442
443Copyright (C) 2009 Free Software Foundation, Inc.
444This config.status script is free software; the Free Software Foundation
445gives unlimited permission to copy, distribute and modify it."
446
447ac_pwd='/Volumes/local/src/vim73/src'
448srcdir='.'
449AWK='awk'
450test -n "$AWK" || AWK=awk
451# The default lists apply if the user does not specify any file.
452ac_need_defaults=:
453while test $# != 0
454do
455  case $1 in
456  --*=*)
457    ac_option=`expr "X$1" : 'X\([^=]*\)='`
458    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
459    ac_shift=:
460    ;;
461  *)
462    ac_option=$1
463    ac_optarg=$2
464    ac_shift=shift
465    ;;
466  esac
467
468  case $ac_option in
469  # Handling of the options.
470  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
471    ac_cs_recheck=: ;;
472  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
473    $as_echo "$ac_cs_version"; exit ;;
474  --config | --confi | --conf | --con | --co | --c )
475    $as_echo "$ac_cs_config"; exit ;;
476  --debug | --debu | --deb | --de | --d | -d )
477    debug=: ;;
478  --file | --fil | --fi | --f )
479    $ac_shift
480    case $ac_optarg in
481    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
482    esac
483    as_fn_append CONFIG_FILES " '$ac_optarg'"
484    ac_need_defaults=false;;
485  --header | --heade | --head | --hea )
486    $ac_shift
487    case $ac_optarg in
488    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
489    esac
490    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
491    ac_need_defaults=false;;
492  --he | --h)
493    # Conflict between --help and --header
494    as_fn_error "ambiguous option: \`$1'
495Try \`$0 --help' for more information.";;
496  --help | --hel | -h )
497    $as_echo "$ac_cs_usage"; exit ;;
498  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
499  | -silent | --silent | --silen | --sile | --sil | --si | --s)
500    ac_cs_silent=: ;;
501
502  # This is an error.
503  -*) as_fn_error "unrecognized option: \`$1'
504Try \`$0 --help' for more information." ;;
505
506  *) as_fn_append ac_config_targets " $1"
507     ac_need_defaults=false ;;
508
509  esac
510  shift
511done
512
513ac_configure_extra_args=
514
515if $ac_cs_silent; then
516  exec 6>/dev/null
517  ac_configure_extra_args="$ac_configure_extra_args --silent"
518fi
519
520if $ac_cs_recheck; then
521  set X '/bin/sh' 'auto/configure'  '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--enable-cscope' '--enable-gui=no' '--without-x' '--enable-multibyte' '--disable-darwin' '--srcdir=.' '--cache-file=auto/config.cache' $ac_configure_extra_args --no-create --no-recursion
522  shift
523  $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
524  CONFIG_SHELL='/bin/sh'
525  export CONFIG_SHELL
526  exec "$@"
527fi
528
529exec 5>>auto/config.log
530{
531  echo
532  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
533## Running $as_me. ##
534_ASBOX
535  $as_echo "$ac_log"
536} >&5
537
538
539# Handling of arguments.
540for ac_config_target in $ac_config_targets
541do
542  case $ac_config_target in
543    "auto/config.h") CONFIG_HEADERS="$CONFIG_HEADERS auto/config.h:config.h.in" ;;
544    "auto/config.mk") CONFIG_FILES="$CONFIG_FILES auto/config.mk:config.mk.in" ;;
545
546  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
547  esac
548done
549
550
551# If the user did not use the arguments to specify the items to instantiate,
552# then the envvar interface is used.  Set only those that are not.
553# We use the long form for the default assignment because of an extremely
554# bizarre bug on SunOS 4.1.3.
555if $ac_need_defaults; then
556  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
557  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
558fi
559
560# Have a temporary directory for convenience.  Make it in the build tree
561# simply because there is no reason against having it here, and in addition,
562# creating and moving files from /tmp can sometimes cause problems.
563# Hook for its removal unless debugging.
564# Note that there is a small window in which the directory will not be cleaned:
565# after its creation but before its name has been assigned to `$tmp'.
566$debug ||
567{
568  tmp=
569  trap 'exit_status=$?
570  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
571' 0
572  trap 'as_fn_exit 1' 1 2 13 15
573}
574# Create a (secure) tmp directory for tmp files.
575
576{
577  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
578  test -n "$tmp" && test -d "$tmp"
579}  ||
580{
581  tmp=./conf$$-$RANDOM
582  (umask 077 && mkdir "$tmp")
583} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
584
585# Set up the scripts for CONFIG_FILES section.
586# No need to generate them if there are no CONFIG_FILES.
587# This happens for instance with `./config.status config.h'.
588if test -n "$CONFIG_FILES"; then
589
590
591ac_cr=`echo X | tr X '\015'`
592# On cygwin, bash can eat \r inside `` if the user requested igncr.
593# But we know of no other shell where ac_cr would be empty at this
594# point, so we can use a bashism as a fallback.
595if test "x$ac_cr" = x; then
596  eval ac_cr=\$\'\\r\'
597fi
598ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
599if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
600  ac_cs_awk_cr='\r'
601else
602  ac_cs_awk_cr=$ac_cr
603fi
604
605echo 'BEGIN {' >"$tmp/subs1.awk" &&
606cat >>"$tmp/subs1.awk" <<\_ACAWK &&
607S["LTLIBOBJS"]=""
608S["LIBOBJS"]=""
609S["DEPEND_CFLAGS_FILTER"]="| sed 's+-I */+-isystem /+g'"
610S["MAKEMO"]=""
611S["MSGFMT"]=""
612S["INSTALL_TOOL_LANGS"]="install-tool-languages"
613S["INSTALL_LANGS"]="install-languages"
614S["TAGPRG"]="ctags -t"
615S["HANGULIN_OBJ"]=""
616S["HANGULIN_SRC"]=""
617S["GUI_X_LIBS"]=""
618S["GUITYPE"]="NONE"
619S["GUI_LIB_LOC"]=""
620S["GUI_INC_LOC"]=""
621S["NARROW_PROTO"]=""
622S["MOTIF_LIBNAME"]=""
623S["GNOME_INCLUDEDIR"]=""
624S["GNOME_LIBDIR"]=""
625S["GNOME_LIBS"]=""
626S["GTK_LIBNAME"]=""
627S["GTK_LIBS"]=""
628S["GTK_CFLAGS"]=""
629S["PKG_CONFIG"]=""
630S["X_LIB"]=""
631S["X_EXTRA_LIBS"]=""
632S["X_LIBS"]=""
633S["X_PRE_LIBS"]=""
634S["X_CFLAGS"]=""
635S["XMKMF"]=""
636S["xmkmfpath"]=""
637S["SNIFF_OBJ"]=""
638S["SNIFF_SRC"]=""
639S["NETBEANS_OBJ"]="objects/netbeans.o"
640S["NETBEANS_SRC"]="netbeans.c"
641S["WORKSHOP_OBJ"]=""
642S["WORKSHOP_SRC"]=""
643S["RUBY_LIBS"]=""
644S["RUBY_CFLAGS"]=""
645S["RUBY_PRO"]=""
646S["RUBY_OBJ"]=""
647S["RUBY_SRC"]=""
648S["vi_cv_path_ruby"]=""
649S["TCL_LIBS"]=""
650S["TCL_CFLAGS"]=""
651S["TCL_PRO"]=""
652S["TCL_OBJ"]=""
653S["TCL_SRC"]=""
654S["vi_cv_path_tcl"]=""
655S["PYTHON3_OBJ"]=""
656S["PYTHON3_SRC"]=""
657S["PYTHON3_CFLAGS"]=""
658S["PYTHON3_LIBS"]=""
659S["PYTHON3_CONFDIR"]=""
660S["vi_cv_path_python3"]=""
661S["PYTHON_OBJ"]=""
662S["PYTHON_SRC"]=""
663S["PYTHON_CFLAGS"]=""
664S["PYTHON_GETPATH_CFLAGS"]=""
665S["PYTHON_LIBS"]=""
666S["PYTHON_CONFDIR"]=""
667S["vi_cv_path_python"]=""
668S["PERL_LIBS"]=""
669S["PERL_CFLAGS"]=""
670S["PERL_PRO"]=""
671S["PERL_OBJ"]=""
672S["PERL_SRC"]=""
673S["shrpenv"]=""
674S["vi_cv_perllib"]=""
675S["vi_cv_path_perl"]=""
676S["MZSCHEME_MZC"]=""
677S["MZSCHEME_EXTRA"]=""
678S["MZSCHEME_CFLAGS"]=""
679S["MZSCHEME_LIBS"]=""
680S["MZSCHEME_PRO"]=""
681S["MZSCHEME_OBJ"]=""
682S["MZSCHEME_SRC"]=""
683S["vi_cv_path_mzscheme"]=""
684S["LUA_CFLAGS"]=""
685S["LUA_LIBS"]=""
686S["LUA_PRO"]=""
687S["LUA_OBJ"]=""
688S["LUA_SRC"]=""
689S["vi_cv_path_lua"]=""
690S["compiledby"]=""
691S["dogvimdiff"]="installgvimdiff"
692S["dovimdiff"]="installvimdiff"
693S["QUOTESED"]="sed -e 's/[\\\\\"]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";$$/\";/'"
694S["line_break"]="\"\\\\012\""
695S["VIEWNAME"]="view"
696S["EXNAME"]="ex"
697S["VIMNAME"]="vim"
698S["OS_EXTRA_OBJ"]=""
699S["OS_EXTRA_SRC"]=""
700S["XCODE_SELECT"]="/usr/bin/xcode-select"
701S["CPP_MM"]="M"
702S["STRIP"]="strip"
703S["AWK"]="awk"
704S["EGREP"]="/usr/bin/grep -E"
705S["GREP"]="/usr/bin/grep"
706S["CPP"]="gcc -E"
707S["OBJEXT"]="o"
708S["EXEEXT"]=""
709S["ac_ct_CC"]="gcc"
710S["CPPFLAGS"]=""
711S["LDFLAGS"]=" -L/usr/local/lib"
712S["CFLAGS"]="-g -O2 -D_FORTIFY_SOURCE=1"
713S["CC"]="gcc"
714S["SET_MAKE"]=""
715S["target_alias"]=""
716S["host_alias"]=""
717S["build_alias"]=""
718S["LIBS"]="-lm -lncurses  -liconv"
719S["ECHO_T"]=""
720S["ECHO_N"]=""
721S["ECHO_C"]="\\c"
722S["DEFS"]="-DHAVE_CONFIG_H"
723S["mandir"]="/usr/share/man"
724S["localedir"]="${datarootdir}/locale"
725S["libdir"]="${exec_prefix}/lib"
726S["psdir"]="${docdir}"
727S["pdfdir"]="${docdir}"
728S["dvidir"]="${docdir}"
729S["htmldir"]="${docdir}"
730S["infodir"]="/usr/share/info"
731S["docdir"]="${datarootdir}/doc/${PACKAGE}"
732S["oldincludedir"]="/usr/include"
733S["includedir"]="${prefix}/include"
734S["localstatedir"]="${prefix}/var"
735S["sharedstatedir"]="${prefix}/com"
736S["sysconfdir"]="${prefix}/etc"
737S["datadir"]="${datarootdir}"
738S["datarootdir"]="${prefix}/share"
739S["libexecdir"]="${exec_prefix}/libexec"
740S["sbindir"]="${exec_prefix}/sbin"
741S["bindir"]="${exec_prefix}/bin"
742S["program_transform_name"]="s,x,x,"
743S["prefix"]="/usr"
744S["exec_prefix"]="${prefix}"
745S["PACKAGE_URL"]=""
746S["PACKAGE_BUGREPORT"]=""
747S["PACKAGE_STRING"]=""
748S["PACKAGE_VERSION"]=""
749S["PACKAGE_TARNAME"]=""
750S["PACKAGE_NAME"]=""
751S["PATH_SEPARATOR"]=":"
752S["SHELL"]="/bin/sh"
753_ACAWK
754cat >>"$tmp/subs1.awk" <<_ACAWK &&
755  for (key in S) S_is_set[key] = 1
756  FS = ""
757
758}
759{
760  line = $ 0
761  nfields = split(line, field, "@")
762  substed = 0
763  len = length(field[1])
764  for (i = 2; i < nfields; i++) {
765    key = field[i]
766    keylen = length(key)
767    if (S_is_set[key]) {
768      value = S[key]
769      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
770      len += length(value) + length(field[++i])
771      substed = 1
772    } else
773      len += 1 + keylen
774  }
775
776  print line
777}
778
779_ACAWK
780if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
781  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
782else
783  cat
784fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
785  || as_fn_error "could not setup config files machinery" "$LINENO" 5
786fi # test -n "$CONFIG_FILES"
787
788# Set up the scripts for CONFIG_HEADERS section.
789# No need to generate them if there are no CONFIG_HEADERS.
790# This happens for instance with `./config.status Makefile'.
791if test -n "$CONFIG_HEADERS"; then
792cat >"$tmp/defines.awk" <<\_ACAWK ||
793BEGIN {
794D["PACKAGE_NAME"]=" \"\""
795D["PACKAGE_TARNAME"]=" \"\""
796D["PACKAGE_VERSION"]=" \"\""
797D["PACKAGE_STRING"]=" \"\""
798D["PACKAGE_BUGREPORT"]=" \"\""
799D["PACKAGE_URL"]=" \"\""
800D["UNIX"]=" 1"
801D["STDC_HEADERS"]=" 1"
802D["HAVE_SYS_WAIT_H"]=" 1"
803D["FEAT_NORMAL"]=" 1"
804D["USE_XSMP_INTERACT"]=" 1"
805D["FEAT_CSCOPE"]=" 1"
806D["FEAT_NETBEANS_INTG"]=" 1"
807D["FEAT_MBYTE"]=" 1"
808D["HAVE_X11_SM_SMLIB_H"]=" 1"
809D["HAVE_DATE_TIME"]=" 1"
810D["HAVE_ATTRIBUTE_UNUSED"]=" 1"
811D["HAVE_DIRENT_H"]=" 1"
812D["HAVE_STDARG_H"]=" 1"
813D["HAVE_STDINT_H"]=" 1"
814D["HAVE_STDLIB_H"]=" 1"
815D["HAVE_STRING_H"]=" 1"
816D["HAVE_SYS_SELECT_H"]=" 1"
817D["HAVE_SYS_UTSNAME_H"]=" 1"
818D["HAVE_TERMCAP_H"]=" 1"
819D["HAVE_FCNTL_H"]=" 1"
820D["HAVE_SGTTY_H"]=" 1"
821D["HAVE_SYS_IOCTL_H"]=" 1"
822D["HAVE_SYS_TIME_H"]=" 1"
823D["HAVE_SYS_TYPES_H"]=" 1"
824D["HAVE_ICONV_H"]=" 1"
825D["HAVE_INTTYPES_H"]=" 1"
826D["HAVE_LANGINFO_H"]=" 1"
827D["HAVE_MATH_H"]=" 1"
828D["HAVE_UNISTD_H"]=" 1"
829D["HAVE_ERRNO_H"]=" 1"
830D["HAVE_SYS_RESOURCE_H"]=" 1"
831D["HAVE_LOCALE_H"]=" 1"
832D["HAVE_TERMIOS_H"]=" 1"
833D["HAVE_LIBC_H"]=" 1"
834D["HAVE_POLL_H"]=" 1"
835D["HAVE_SYS_POLL_H"]=" 1"
836D["HAVE_PWD_H"]=" 1"
837D["HAVE_UTIME_H"]=" 1"
838D["HAVE_SYS_PARAM_H"]=" 1"
839D["HAVE_LIBGEN_H"]=" 1"
840D["HAVE_SYS_ACL_H"]=" 1"
841D["HAVE_WCHAR_H"]=" 1"
842D["HAVE_WCTYPE_H"]=" 1"
843D["HAVE_SYS_SYSCTL_H"]=" 1"
844D["HAVE_STRINGS_H"]=" 1"
845D["TIME_WITH_SYS_TIME"]=" 1"
846D["HAVE_LIBNCURSES"]=" 1"
847D["TERMINFO"]=" 1"
848D["HAVE_OSPEED"]=" 1"
849D["HAVE_UP_BC_PC"]=" 1"
850D["SYS_SELECT_WITH_SYS_TIME"]=" 1"
851D["HAVE_SVR4_PTYS"]=" 1"
852D["PTYRANGE0"]=" \"pqrstuvw\""
853D["PTYRANGE1"]=" \"0123456789abcdef\""
854D["RETSIGTYPE"]=" void"
855D["SIGRETURN"]=" return"
856D["HAVE_SIGCONTEXT"]=" 1"
857D["HAVE_BCMP"]=" 1"
858D["HAVE_FCHDIR"]=" 1"
859D["HAVE_FCHOWN"]=" 1"
860D["HAVE_FSYNC"]=" 1"
861D["HAVE_GETCWD"]=" 1"
862D["HAVE_GETPWNAM"]=" 1"
863D["HAVE_GETPWUID"]=" 1"
864D["HAVE_GETRLIMIT"]=" 1"
865D["HAVE_GETTIMEOFDAY"]=" 1"
866D["HAVE_GETWD"]=" 1"
867D["HAVE_LSTAT"]=" 1"
868D["HAVE_MEMCMP"]=" 1"
869D["HAVE_MEMSET"]=" 1"
870D["HAVE_MKDTEMP"]=" 1"
871D["HAVE_NANOSLEEP"]=" 1"
872D["HAVE_OPENDIR"]=" 1"
873D["HAVE_PUTENV"]=" 1"
874D["HAVE_QSORT"]=" 1"
875D["HAVE_READLINK"]=" 1"
876D["HAVE_SELECT"]=" 1"
877D["HAVE_SETENV"]=" 1"
878D["HAVE_SETPGID"]=" 1"
879D["HAVE_SETSID"]=" 1"
880D["HAVE_SIGALTSTACK"]=" 1"
881D["HAVE_SIGSET"]=" 1"
882D["HAVE_SIGSETJMP"]=" 1"
883D["HAVE_SIGACTION"]=" 1"
884D["HAVE_SIGVEC"]=" 1"
885D["HAVE_STRCASECMP"]=" 1"
886D["HAVE_STRERROR"]=" 1"
887D["HAVE_STRFTIME"]=" 1"
888D["HAVE_STRNCASECMP"]=" 1"
889D["HAVE_STRPBRK"]=" 1"
890D["HAVE_STRTOL"]=" 1"
891D["HAVE_TGETENT"]=" 1"
892D["HAVE_TOWLOWER"]=" 1"
893D["HAVE_TOWUPPER"]=" 1"
894D["HAVE_ISWUPPER"]=" 1"
895D["HAVE_USLEEP"]=" 1"
896D["HAVE_UTIME"]=" 1"
897D["HAVE_UTIMES"]=" 1"
898D["HAVE_FSEEKO"]=" 1"
899D["HAVE_ST_BLKSIZE"]=" 1"
900D["HAVE_ICONV"]=" 1"
901D["HAVE_NL_LANGINFO_CODESET"]=" 1"
902D["HAVE_LIBM"]=" 1"
903D["HAVE_FLOAT_FUNCS"]=" 1"
904D["HAVE_POSIX_ACL"]=" 1"
905D["HAVE_FD_CLOEXEC"]=" 1"
906D["HAVE_RENAME"]=" 1"
907D["HAVE_SYSCTL"]=" 1"
908D["SIZEOF_INT"]=" 4"
909D["SIZEOF_LONG"]=" 8"
910D["SIZEOF_TIME_T"]=" 8"
911D["SIZEOF_OFF_T"]=" 8"
912D["USEMEMMOVE"]=" 1"
913D["USEMAN_S"]=" 1"
914D["HAVE_DLFCN_H"]=" 1"
915D["HAVE_DLOPEN"]=" 1"
916D["HAVE_DLSYM"]=" 1"
917D["HAVE_SETJMP_H"]=" 1"
918  for (key in D) D_is_set[key] = 1
919  FS = ""
920}
921/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
922  line = $ 0
923  split(line, arg, " ")
924  if (arg[1] == "#") {
925    defundef = arg[2]
926    mac1 = arg[3]
927  } else {
928    defundef = substr(arg[1], 2)
929    mac1 = arg[2]
930  }
931  split(mac1, mac2, "(") #)
932  macro = mac2[1]
933  prefix = substr(line, 1, index(line, defundef) - 1)
934  if (D_is_set[macro]) {
935    # Preserve the white space surrounding the "#".
936    print prefix "define", macro P[macro] D[macro]
937    next
938  } else {
939    # Replace #undef with comments.  This is necessary, for example,
940    # in the case of _POSIX_SOURCE, which is predefined and required
941    # on some systems where configure will not decide to define it.
942    if (defundef == "undef") {
943      print "/*", prefix defundef, macro, "*/"
944      next
945    }
946  }
947}
948{ print }
949_ACAWK
950  as_fn_error "could not setup config headers machinery" "$LINENO" 5
951fi # test -n "$CONFIG_HEADERS"
952
953
954eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    "
955shift
956for ac_tag
957do
958  case $ac_tag in
959  :[FHLC]) ac_mode=$ac_tag; continue;;
960  esac
961  case $ac_mode$ac_tag in
962  :[FHL]*:*);;
963  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
964  :[FH]-) ac_tag=-:-;;
965  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
966  esac
967  ac_save_IFS=$IFS
968  IFS=:
969  set x $ac_tag
970  IFS=$ac_save_IFS
971  shift
972  ac_file=$1
973  shift
974
975  case $ac_mode in
976  :L) ac_source=$1;;
977  :[FH])
978    ac_file_inputs=
979    for ac_f
980    do
981      case $ac_f in
982      -) ac_f="$tmp/stdin";;
983      *) # Look for the file first in the build tree, then in the source tree
984	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
985	 # because $ac_f cannot contain `:'.
986	 test -f "$ac_f" ||
987	   case $ac_f in
988	   [\\/$]*) false;;
989	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
990	   esac ||
991	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
992      esac
993      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
994      as_fn_append ac_file_inputs " '$ac_f'"
995    done
996
997    # Let's still pretend it is `configure' which instantiates (i.e., don't
998    # use $as_me), people would be surprised to read:
999    #    /* config.h.  Generated by config.status.  */
1000    configure_input='Generated from '`
1001	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1002	`' by configure.'
1003    if test x"$ac_file" != x-; then
1004      configure_input="$ac_file.  $configure_input"
1005      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1006$as_echo "$as_me: creating $ac_file" >&6;}
1007    fi
1008    # Neutralize special characters interpreted by sed in replacement strings.
1009    case $configure_input in #(
1010    *\&* | *\|* | *\\* )
1011       ac_sed_conf_input=`$as_echo "$configure_input" |
1012       sed 's/[\\\\&|]/\\\\&/g'`;; #(
1013    *) ac_sed_conf_input=$configure_input;;
1014    esac
1015
1016    case $ac_tag in
1017    *:-:* | *:-) cat >"$tmp/stdin" \
1018      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
1019    esac
1020    ;;
1021  esac
1022
1023  ac_dir=`$as_dirname -- "$ac_file" ||
1024$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1025	 X"$ac_file" : 'X\(//\)[^/]' \| \
1026	 X"$ac_file" : 'X\(//\)$' \| \
1027	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1028$as_echo X"$ac_file" |
1029    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1030	    s//\1/
1031	    q
1032	  }
1033	  /^X\(\/\/\)[^/].*/{
1034	    s//\1/
1035	    q
1036	  }
1037	  /^X\(\/\/\)$/{
1038	    s//\1/
1039	    q
1040	  }
1041	  /^X\(\/\).*/{
1042	    s//\1/
1043	    q
1044	  }
1045	  s/.*/./; q'`
1046  as_dir="$ac_dir"; as_fn_mkdir_p
1047  ac_builddir=.
1048
1049case "$ac_dir" in
1050.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1051*)
1052  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1053  # A ".." for each directory in $ac_dir_suffix.
1054  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1055  case $ac_top_builddir_sub in
1056  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1057  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1058  esac ;;
1059esac
1060ac_abs_top_builddir=$ac_pwd
1061ac_abs_builddir=$ac_pwd$ac_dir_suffix
1062# for backward compatibility:
1063ac_top_builddir=$ac_top_build_prefix
1064
1065case $srcdir in
1066  .)  # We are building in place.
1067    ac_srcdir=.
1068    ac_top_srcdir=$ac_top_builddir_sub
1069    ac_abs_top_srcdir=$ac_pwd ;;
1070  [\\/]* | ?:[\\/]* )  # Absolute name.
1071    ac_srcdir=$srcdir$ac_dir_suffix;
1072    ac_top_srcdir=$srcdir
1073    ac_abs_top_srcdir=$srcdir ;;
1074  *) # Relative name.
1075    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1076    ac_top_srcdir=$ac_top_build_prefix$srcdir
1077    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1078esac
1079ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1080
1081
1082  case $ac_mode in
1083  :F)
1084  #
1085  # CONFIG_FILE
1086  #
1087
1088# If the template does not know about datarootdir, expand it.
1089# FIXME: This hack should be removed a few years after 2.60.
1090ac_datarootdir_hack=; ac_datarootdir_seen=
1091ac_sed_dataroot='
1092/datarootdir/ {
1093  p
1094  q
1095}
1096/@datadir@/p
1097/@docdir@/p
1098/@infodir@/p
1099/@localedir@/p
1100/@mandir@/p'
1101case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1102*datarootdir*) ac_datarootdir_seen=yes;;
1103*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1104  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1105$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1106  ac_datarootdir_hack='
1107  s&@datadir@&${datarootdir}&g
1108  s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
1109  s&@infodir@&/usr/share/info&g
1110  s&@localedir@&${datarootdir}/locale&g
1111  s&@mandir@&/usr/share/man&g
1112  s&\${datarootdir}&${prefix}/share&g' ;;
1113esac
1114ac_sed_extra="/^[	 ]*VPATH[	 ]*=/{
1115s/:*\$(srcdir):*/:/
1116s/:*\${srcdir}:*/:/
1117s/:*@srcdir@:*/:/
1118s/^\([^=]*=[	 ]*\):*/\1/
1119s/:*$//
1120s/^[^=]*=[	 ]*$//
1121}
1122
1123:t
1124/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1125s|@configure_input@|$ac_sed_conf_input|;t t
1126s&@top_builddir@&$ac_top_builddir_sub&;t t
1127s&@top_build_prefix@&$ac_top_build_prefix&;t t
1128s&@srcdir@&$ac_srcdir&;t t
1129s&@abs_srcdir@&$ac_abs_srcdir&;t t
1130s&@top_srcdir@&$ac_top_srcdir&;t t
1131s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1132s&@builddir@&$ac_builddir&;t t
1133s&@abs_builddir@&$ac_abs_builddir&;t t
1134s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1135$ac_datarootdir_hack
1136"
1137eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1138  || as_fn_error "could not create $ac_file" "$LINENO" 5
1139
1140test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1141  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1142  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1143  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1144which seems to be undefined.  Please make sure it is defined." >&5
1145$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1146which seems to be undefined.  Please make sure it is defined." >&2;}
1147
1148  rm -f "$tmp/stdin"
1149  case $ac_file in
1150  -) cat "$tmp/out" && rm -f "$tmp/out";;
1151  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1152  esac \
1153  || as_fn_error "could not create $ac_file" "$LINENO" 5
1154 ;;
1155  :H)
1156  #
1157  # CONFIG_HEADER
1158  #
1159  if test x"$ac_file" != x-; then
1160    {
1161      $as_echo "/* $configure_input  */" \
1162      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1163    } >"$tmp/config.h" \
1164      || as_fn_error "could not create $ac_file" "$LINENO" 5
1165    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1166      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1167$as_echo "$as_me: $ac_file is unchanged" >&6;}
1168    else
1169      rm -f "$ac_file"
1170      mv "$tmp/config.h" "$ac_file" \
1171	|| as_fn_error "could not create $ac_file" "$LINENO" 5
1172    fi
1173  else
1174    $as_echo "/* $configure_input  */" \
1175      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1176      || as_fn_error "could not create -" "$LINENO" 5
1177  fi
1178 ;;
1179
1180
1181  esac
1182
1183done # for ac_tag
1184
1185
1186as_fn_exit 0
1187