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