~ubuntu-branches/ubuntu/saucy/ricochet/saucy-proposed

« back to all changes in this revision

Viewing changes to ricochet-0.2/configure

  • Committer: Package Import Robot
  • Author(s): Keith Packard
  • Date: 2012-06-11 13:37:57 UTC
  • Revision ID: package-import@ubuntu.com-20120611133757-zn0ukd22vz56ymto
Tags: 0.3
* Improve appearance of board
* Fix user list when removing/adding same user

Show diffs side-by-side

added added

removed removed

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