1#! /bin/sh
2# Generated by configure.
3# Run this file to recreate the current configuration.
4# Compiler output produced by configure, useful for debugging
5# configure, is in config.log if it exists.
6
7debug=false
8ac_cs_recheck=false
9ac_cs_silent=false
10
11SHELL=${CONFIG_SHELL-/bin/sh}
12export SHELL
13## -------------------- ##
14## M4sh Initialization. ##
15## -------------------- ##
16
17# Be more Bourne compatible
18DUALCASE=1; export DUALCASE # for MKS sh
19if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20  emulate sh
21  NULLCMD=:
22  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23  # is contrary to our usage.  Disable this feature.
24  alias -g '${1+"$@"}'='"$@"'
25  setopt NO_GLOB_SUBST
26else
27  case `(set -o) 2>/dev/null` in #(
28  *posix*) :
29    set -o posix ;; #(
30  *) :
31     ;;
32esac
33fi
34
35
36as_nl='
37'
38export as_nl
39# Printing a long string crashes Solaris 7 /usr/bin/printf.
40as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43# Prefer a ksh shell builtin over an external printf program on Solaris,
44# but without wasting forks for bash or zsh.
45if test -z "$BASH_VERSION$ZSH_VERSION" \
46    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47  as_echo='print -r --'
48  as_echo_n='print -rn --'
49elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50  as_echo='printf %s\n'
51  as_echo_n='printf %s'
52else
53  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55    as_echo_n='/usr/ucb/echo -n'
56  else
57    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58    as_echo_n_body='eval
59      arg=$1;
60      case $arg in #(
61      *"$as_nl"*)
62	expr "X$arg" : "X\\(.*\\)$as_nl";
63	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64      esac;
65      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66    '
67    export as_echo_n_body
68    as_echo_n='sh -c $as_echo_n_body as_echo'
69  fi
70  export as_echo_body
71  as_echo='sh -c $as_echo_body as_echo'
72fi
73
74# The user is always right.
75if test "${PATH_SEPARATOR+set}" != set; then
76  PATH_SEPARATOR=:
77  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79      PATH_SEPARATOR=';'
80  }
81fi
82
83
84# IFS
85# We need space, tab and new line, in precisely that order.  Quoting is
86# there to prevent editors from complaining about space-tab.
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.)
89IFS=" ""	$as_nl"
90
91# Find who we are.  Look in the path if we contain no directory separator.
92case $0 in #((
93  *[\\/]* ) as_myself=$0 ;;
94  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
95for as_dir in $PATH
96do
97  IFS=$as_save_IFS
98  test -z "$as_dir" && as_dir=.
99    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
100  done
101IFS=$as_save_IFS
102
103     ;;
104esac
105# We did not find ourselves, most probably we were run as `sh COMMAND'
106# in which case we are not to be found in the path.
107if test "x$as_myself" = x; then
108  as_myself=$0
109fi
110if test ! -f "$as_myself"; then
111  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112  exit 1
113fi
114
115# Unset variables that we do not need and which cause bugs (e.g. in
116# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
117# suppresses any "Segmentation fault" message there.  '((' could
118# trigger a bug in pdksh 5.2.14.
119for as_var in BASH_ENV ENV MAIL MAILPATH
120do eval test x\${$as_var+set} = xset \
121  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
122done
123PS1='$ '
124PS2='> '
125PS4='+ '
126
127# NLS nuisances.
128LC_ALL=C
129export LC_ALL
130LANGUAGE=C
131export LANGUAGE
132
133# CDPATH.
134(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
135
136
137# as_fn_error ERROR [LINENO LOG_FD]
138# ---------------------------------
139# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
140# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
141# script with status $?, using 1 if that was 0.
142as_fn_error ()
143{
144  as_status=$?; test $as_status -eq 0 && as_status=1
145  if test "$3"; then
146    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
147    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
148  fi
149  $as_echo "$as_me: error: $1" >&2
150  as_fn_exit $as_status
151} # as_fn_error
152
153
154# as_fn_set_status STATUS
155# -----------------------
156# Set $? to STATUS, without forking.
157as_fn_set_status ()
158{
159  return $1
160} # as_fn_set_status
161
162# as_fn_exit STATUS
163# -----------------
164# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
165as_fn_exit ()
166{
167  set +e
168  as_fn_set_status $1
169  exit $1
170} # as_fn_exit
171
172# as_fn_unset VAR
173# ---------------
174# Portably unset VAR.
175as_fn_unset ()
176{
177  { eval $1=; unset $1;}
178}
179as_unset=as_fn_unset
180# as_fn_append VAR VALUE
181# ----------------------
182# Append the text in VALUE to the end of the definition contained in VAR. Take
183# advantage of any shell optimizations that allow amortized linear growth over
184# repeated appends, instead of the typical quadratic growth present in naive
185# implementations.
186if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
187  eval 'as_fn_append ()
188  {
189    eval $1+=\$2
190  }'
191else
192  as_fn_append ()
193  {
194    eval $1=\$$1\$2
195  }
196fi # as_fn_append
197
198# as_fn_arith ARG...
199# ------------------
200# Perform arithmetic evaluation on the ARGs, and store the result in the
201# global $as_val. Take advantage of shells that can avoid forks. The arguments
202# must be portable across $(()) and expr.
203if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
204  eval 'as_fn_arith ()
205  {
206    as_val=$(( $* ))
207  }'
208else
209  as_fn_arith ()
210  {
211    as_val=`expr "$@" || test $? -eq 1`
212  }
213fi # as_fn_arith
214
215
216if expr a : '\(a\)' >/dev/null 2>&1 &&
217   test "X`expr 00001 : '.*\(...\)'`" = X001; then
218  as_expr=expr
219else
220  as_expr=false
221fi
222
223if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
224  as_basename=basename
225else
226  as_basename=false
227fi
228
229if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
230  as_dirname=dirname
231else
232  as_dirname=false
233fi
234
235as_me=`$as_basename -- "$0" ||
236$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
237	 X"$0" : 'X\(//\)$' \| \
238	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
239$as_echo X/"$0" |
240    sed '/^.*\/\([^/][^/]*\)\/*$/{
241	    s//\1/
242	    q
243	  }
244	  /^X\/\(\/\/\)$/{
245	    s//\1/
246	    q
247	  }
248	  /^X\/\(\/\).*/{
249	    s//\1/
250	    q
251	  }
252	  s/.*/./; q'`
253
254# Avoid depending upon Character Ranges.
255as_cr_letters='abcdefghijklmnopqrstuvwxyz'
256as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
257as_cr_Letters=$as_cr_letters$as_cr_LETTERS
258as_cr_digits='0123456789'
259as_cr_alnum=$as_cr_Letters$as_cr_digits
260
261ECHO_C= ECHO_N= ECHO_T=
262case `echo -n x` in #(((((
263-n*)
264  case `echo 'xy\c'` in
265  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
266  xy)  ECHO_C='\c';;
267  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
268       ECHO_T='	';;
269  esac;;
270*)
271  ECHO_N='-n';;
272esac
273
274rm -f conf$$ conf$$.exe conf$$.file
275if test -d conf$$.dir; then
276  rm -f conf$$.dir/conf$$.file
277else
278  rm -f conf$$.dir
279  mkdir conf$$.dir 2>/dev/null
280fi
281if (echo >conf$$.file) 2>/dev/null; then
282  if ln -s conf$$.file conf$$ 2>/dev/null; then
283    as_ln_s='ln -s'
284    # ... but there are two gotchas:
285    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
286    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
287    # In both cases, we have to default to `cp -p'.
288    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
289      as_ln_s='cp -p'
290  elif ln conf$$.file conf$$ 2>/dev/null; then
291    as_ln_s=ln
292  else
293    as_ln_s='cp -p'
294  fi
295else
296  as_ln_s='cp -p'
297fi
298rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
299rmdir conf$$.dir 2>/dev/null
300
301
302# as_fn_mkdir_p
303# -------------
304# Create "$as_dir" as a directory, including parents if necessary.
305as_fn_mkdir_p ()
306{
307
308  case $as_dir in #(
309  -*) as_dir=./$as_dir;;
310  esac
311  test -d "$as_dir" || eval $as_mkdir_p || {
312    as_dirs=
313    while :; do
314      case $as_dir in #(
315      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
316      *) as_qdir=$as_dir;;
317      esac
318      as_dirs="'$as_qdir' $as_dirs"
319      as_dir=`$as_dirname -- "$as_dir" ||
320$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
321	 X"$as_dir" : 'X\(//\)[^/]' \| \
322	 X"$as_dir" : 'X\(//\)$' \| \
323	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
324$as_echo X"$as_dir" |
325    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
326	    s//\1/
327	    q
328	  }
329	  /^X\(\/\/\)[^/].*/{
330	    s//\1/
331	    q
332	  }
333	  /^X\(\/\/\)$/{
334	    s//\1/
335	    q
336	  }
337	  /^X\(\/\).*/{
338	    s//\1/
339	    q
340	  }
341	  s/.*/./; q'`
342      test -d "$as_dir" && break
343    done
344    test -z "$as_dirs" || eval "mkdir $as_dirs"
345  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
346
347
348} # as_fn_mkdir_p
349if mkdir -p . 2>/dev/null; then
350  as_mkdir_p='mkdir -p "$as_dir"'
351else
352  test -d ./-p && rmdir ./-p
353  as_mkdir_p=false
354fi
355
356if test -x / >/dev/null 2>&1; then
357  as_test_x='test -x'
358else
359  if ls -dL / >/dev/null 2>&1; then
360    as_ls_L_option=L
361  else
362    as_ls_L_option=
363  fi
364  as_test_x='
365    eval sh -c '\''
366      if test -d "$1"; then
367	test -d "$1/.";
368      else
369	case $1 in #(
370	-*)set "./$1";;
371	esac;
372	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
373	???[sx]*):;;*)false;;esac;fi
374    '\'' sh
375  '
376fi
377as_executable_p=$as_test_x
378
379# Sed expression to map a string onto a valid CPP name.
380as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
381
382# Sed expression to map a string onto a valid variable name.
383as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
384
385
386exec 6>&1
387## ----------------------------------- ##
388## Main body of $CONFIG_STATUS script. ##
389## ----------------------------------- ##
390# Save the log message, to keep $0 and so on meaningful, and to
391# report actual input values of CONFIG_FILES etc. instead of their
392# values after options handling.
393ac_log="
394This file was extended by gsoap $as_me 2.7, which was
395generated by GNU Autoconf 2.65.  Invocation command line was
396
397  CONFIG_FILES    = $CONFIG_FILES
398  CONFIG_HEADERS  = $CONFIG_HEADERS
399  CONFIG_LINKS    = $CONFIG_LINKS
400  CONFIG_COMMANDS = $CONFIG_COMMANDS
401  $ $0 $@
402
403on `(hostname || uname -n) 2>/dev/null | sed 1q`
404"
405
406# Files that config.status was made for.
407config_files=" Makefile gsoap.pc gsoap++.pc gsoapck.pc gsoapck++.pc gsoapssl.pc gsoapssl++.pc gsoap/Makefile gsoap/src/Makefile gsoap/wsdl/Makefile gsoap/samples/Makefile gsoap/samples/calc/Makefile gsoap/samples/calc++/Makefile gsoap/samples/dime/Makefile gsoap/samples/dom/Makefile gsoap/samples/events/Makefile gsoap/samples/events++/Makefile gsoap/samples/factory/Makefile gsoap/samples/factorytest/Makefile gsoap/samples/gmt/Makefile gsoap/samples/googleapi/Makefile gsoap/samples/hello/Makefile gsoap/samples/httpcookies/Makefile gsoap/samples/lu/Makefile gsoap/samples/magic/Makefile gsoap/samples/mashup/Makefile gsoap/samples/mashup++/Makefile gsoap/samples/mtom/Makefile gsoap/samples/mtom-stream/Makefile gsoap/samples/polytest/Makefile gsoap/samples/roll/Makefile gsoap/samples/router/Makefile gsoap/samples/rss/Makefile gsoap/samples/ssl/Makefile gsoap/samples/udp/Makefile gsoap/samples/varparam/Makefile gsoap/samples/wsa/Makefile gsoap/samples/wsse/Makefile gsoap/samples/xml-rpc/Makefile"
408config_headers=" config.h"
409config_commands=" depfiles"
410
411ac_cs_usage="\
412\`$as_me' instantiates files and other configuration actions
413from templates according to the current configuration.  Unless the files
414and actions are specified as TAGs, all are instantiated by default.
415
416Usage: $0 [OPTION]... [TAG]...
417
418  -h, --help       print this help, then exit
419  -V, --version    print version number and configuration settings, then exit
420      --config     print configuration, then exit
421  -q, --quiet, --silent
422                   do not print progress messages
423  -d, --debug      don't remove temporary files
424      --recheck    update $as_me by reconfiguring in the same conditions
425      --file=FILE[:TEMPLATE]
426                   instantiate the configuration file FILE
427      --header=FILE[:TEMPLATE]
428                   instantiate the configuration header FILE
429
430Configuration files:
431$config_files
432
433Configuration headers:
434$config_headers
435
436Configuration commands:
437$config_commands
438
439Report bugs to the package provider."
440
441ac_cs_config="'CXX=g++' 'CC=gcc'"
442ac_cs_version="\
443gsoap config.status 2.7
444configured by ./configure, generated by GNU Autoconf 2.65,
445  with options \"$ac_cs_config\"
446
447Copyright (C) 2009 Free Software Foundation, Inc.
448This config.status script is free software; the Free Software Foundation
449gives unlimited permission to copy, distribute and modify it."
450
451ac_pwd='/Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform'
452srcdir='.'
453INSTALL='/usr/bin/install -c'
454MKDIR_P='./install-sh -c -d'
455AWK='awk'
456test -n "$AWK" || AWK=awk
457# The default lists apply if the user does not specify any file.
458ac_need_defaults=:
459while test $# != 0
460do
461  case $1 in
462  --*=*)
463    ac_option=`expr "X$1" : 'X\([^=]*\)='`
464    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
465    ac_shift=:
466    ;;
467  *)
468    ac_option=$1
469    ac_optarg=$2
470    ac_shift=shift
471    ;;
472  esac
473
474  case $ac_option in
475  # Handling of the options.
476  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
477    ac_cs_recheck=: ;;
478  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
479    $as_echo "$ac_cs_version"; exit ;;
480  --config | --confi | --conf | --con | --co | --c )
481    $as_echo "$ac_cs_config"; exit ;;
482  --debug | --debu | --deb | --de | --d | -d )
483    debug=: ;;
484  --file | --fil | --fi | --f )
485    $ac_shift
486    case $ac_optarg in
487    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
488    esac
489    as_fn_append CONFIG_FILES " '$ac_optarg'"
490    ac_need_defaults=false;;
491  --header | --heade | --head | --hea )
492    $ac_shift
493    case $ac_optarg in
494    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
495    esac
496    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
497    ac_need_defaults=false;;
498  --he | --h)
499    # Conflict between --help and --header
500    as_fn_error "ambiguous option: \`$1'
501Try \`$0 --help' for more information.";;
502  --help | --hel | -h )
503    $as_echo "$ac_cs_usage"; exit ;;
504  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
505  | -silent | --silent | --silen | --sile | --sil | --si | --s)
506    ac_cs_silent=: ;;
507
508  # This is an error.
509  -*) as_fn_error "unrecognized option: \`$1'
510Try \`$0 --help' for more information." ;;
511
512  *) as_fn_append ac_config_targets " $1"
513     ac_need_defaults=false ;;
514
515  esac
516  shift
517done
518
519ac_configure_extra_args=
520
521if $ac_cs_silent; then
522  exec 6>/dev/null
523  ac_configure_extra_args="$ac_configure_extra_args --silent"
524fi
525
526if $ac_cs_recheck; then
527  set X '/bin/sh' './configure'  'CXX=g++' 'CC=gcc' $ac_configure_extra_args --no-create --no-recursion
528  shift
529  $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
530  CONFIG_SHELL='/bin/sh'
531  export CONFIG_SHELL
532  exec "$@"
533fi
534
535exec 5>>config.log
536{
537  echo
538  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
539## Running $as_me. ##
540_ASBOX
541  $as_echo "$ac_log"
542} >&5
543
544#
545# INIT-COMMANDS
546#
547AMDEP_TRUE="" ac_aux_dir="."
548
549
550# Handling of arguments.
551for ac_config_target in $ac_config_targets
552do
553  case $ac_config_target in
554    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
555    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
556    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
557    "gsoap.pc") CONFIG_FILES="$CONFIG_FILES gsoap.pc" ;;
558    "gsoap++.pc") CONFIG_FILES="$CONFIG_FILES gsoap++.pc" ;;
559    "gsoapck.pc") CONFIG_FILES="$CONFIG_FILES gsoapck.pc" ;;
560    "gsoapck++.pc") CONFIG_FILES="$CONFIG_FILES gsoapck++.pc" ;;
561    "gsoapssl.pc") CONFIG_FILES="$CONFIG_FILES gsoapssl.pc" ;;
562    "gsoapssl++.pc") CONFIG_FILES="$CONFIG_FILES gsoapssl++.pc" ;;
563    "gsoap/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/Makefile" ;;
564    "gsoap/src/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/src/Makefile" ;;
565    "gsoap/wsdl/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/wsdl/Makefile" ;;
566    "gsoap/samples/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/Makefile" ;;
567    "gsoap/samples/calc/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/calc/Makefile" ;;
568    "gsoap/samples/calc++/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/calc++/Makefile" ;;
569    "gsoap/samples/dime/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/dime/Makefile" ;;
570    "gsoap/samples/dom/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/dom/Makefile" ;;
571    "gsoap/samples/events/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/events/Makefile" ;;
572    "gsoap/samples/events++/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/events++/Makefile" ;;
573    "gsoap/samples/factory/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/factory/Makefile" ;;
574    "gsoap/samples/factorytest/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/factorytest/Makefile" ;;
575    "gsoap/samples/gmt/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/gmt/Makefile" ;;
576    "gsoap/samples/googleapi/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/googleapi/Makefile" ;;
577    "gsoap/samples/hello/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/hello/Makefile" ;;
578    "gsoap/samples/httpcookies/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/httpcookies/Makefile" ;;
579    "gsoap/samples/lu/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/lu/Makefile" ;;
580    "gsoap/samples/magic/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/magic/Makefile" ;;
581    "gsoap/samples/mashup/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/mashup/Makefile" ;;
582    "gsoap/samples/mashup++/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/mashup++/Makefile" ;;
583    "gsoap/samples/mtom/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/mtom/Makefile" ;;
584    "gsoap/samples/mtom-stream/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/mtom-stream/Makefile" ;;
585    "gsoap/samples/polytest/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/polytest/Makefile" ;;
586    "gsoap/samples/roll/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/roll/Makefile" ;;
587    "gsoap/samples/router/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/router/Makefile" ;;
588    "gsoap/samples/rss/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/rss/Makefile" ;;
589    "gsoap/samples/ssl/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/ssl/Makefile" ;;
590    "gsoap/samples/udp/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/udp/Makefile" ;;
591    "gsoap/samples/varparam/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/varparam/Makefile" ;;
592    "gsoap/samples/wsa/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/wsa/Makefile" ;;
593    "gsoap/samples/wsse/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/wsse/Makefile" ;;
594    "gsoap/samples/xml-rpc/Makefile") CONFIG_FILES="$CONFIG_FILES gsoap/samples/xml-rpc/Makefile" ;;
595
596  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
597  esac
598done
599
600
601# If the user did not use the arguments to specify the items to instantiate,
602# then the envvar interface is used.  Set only those that are not.
603# We use the long form for the default assignment because of an extremely
604# bizarre bug on SunOS 4.1.3.
605if $ac_need_defaults; then
606  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
607  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
608  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
609fi
610
611# Have a temporary directory for convenience.  Make it in the build tree
612# simply because there is no reason against having it here, and in addition,
613# creating and moving files from /tmp can sometimes cause problems.
614# Hook for its removal unless debugging.
615# Note that there is a small window in which the directory will not be cleaned:
616# after its creation but before its name has been assigned to `$tmp'.
617$debug ||
618{
619  tmp=
620  trap 'exit_status=$?
621  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
622' 0
623  trap 'as_fn_exit 1' 1 2 13 15
624}
625# Create a (secure) tmp directory for tmp files.
626
627{
628  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
629  test -n "$tmp" && test -d "$tmp"
630}  ||
631{
632  tmp=./conf$$-$RANDOM
633  (umask 077 && mkdir "$tmp")
634} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
635
636# Set up the scripts for CONFIG_FILES section.
637# No need to generate them if there are no CONFIG_FILES.
638# This happens for instance with `./config.status config.h'.
639if test -n "$CONFIG_FILES"; then
640
641
642ac_cr=`echo X | tr X '\015'`
643# On cygwin, bash can eat \r inside `` if the user requested igncr.
644# But we know of no other shell where ac_cr would be empty at this
645# point, so we can use a bashism as a fallback.
646if test "x$ac_cr" = x; then
647  eval ac_cr=\$\'\\r\'
648fi
649ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
650if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
651  ac_cs_awk_cr='\r'
652else
653  ac_cs_awk_cr=$ac_cr
654fi
655
656echo 'BEGIN {' >"$tmp/subs1.awk" &&
657cat >>"$tmp/subs1.awk" <<\_ACAWK &&
658S["am__EXEEXT_FALSE"]=""
659S["am__EXEEXT_TRUE"]="#"
660S["LTLIBOBJS"]=" ${LIBOBJDIR}mktime$U.lo"
661S["YACC_LIB"]=""
662S["BISON_DEFINE"]="-DWITH_BISON"
663S["LEX_FLAGS"]="-l"
664S["LEX_DEFINE"]="-DWITH_FLEX"
665S["SAMPLE_DIRS"]=""
666S["ENABLE_SAMPLES"]=""
667S["ENABLE_SAMPLES_FALSE"]=""
668S["ENABLE_SAMPLES_TRUE"]="#"
669S["WSDL2H_EXTRA_LIBS"]="-lssl -lcrypto -lz"
670S["WSDL2H_EXTRA_FLAGS"]="-DWITH_OPENSSL -DWITH_GZIP"
671S["SOAPCPP2_NONAMESPACES"]=""
672S["WSDL2H_IMPORTPATH"]="-DWSDL_IMPORT_PATH=\"\\\"${datarootdir}/gsoap/WS\\\"\""
673S["SOAPCPP2_IMPORTPATH"]="-DSOAPCPP_IMPORT_PATH=\"\\\"${datarootdir}/gsoap/import\\\"\""
674S["SOAPCPP2_DEBUG"]=""
675S["DEBUG_COMPILE_FALSE"]=""
676S["DEBUG_COMPILE_TRUE"]="#"
677S["POW_LIB"]=""
678S["LIBOBJS"]=" ${LIBOBJDIR}mktime$U.o"
679S["EGREP"]="/usr/bin/grep -E"
680S["GREP"]="/usr/bin/grep"
681S["platform"]="MACOSX"
682S["SAMPLE_EXTRA_LIBS"]=""
683S["LN_S"]="ln -s"
684S["RANLIB"]="ranlib"
685S["CPP"]="gcc -E"
686S["YFLAGS"]=""
687S["YACC"]="bison -y"
688S["LEXLIB"]="-ll"
689S["LEX_OUTPUT_ROOT"]="lex.yy"
690S["LEX"]="flex"
691S["am__fastdepCC_FALSE"]="#"
692S["am__fastdepCC_TRUE"]=""
693S["CCDEPMODE"]="depmode=gcc3"
694S["ac_ct_CC"]="gcc"
695S["CFLAGS"]="-g -O2"
696S["CC"]="gcc"
697S["am__fastdepCXX_FALSE"]="#"
698S["am__fastdepCXX_TRUE"]=""
699S["CXXDEPMODE"]="depmode=gcc3"
700S["AMDEPBACKSLASH"]="\\"
701S["AMDEP_FALSE"]="#"
702S["AMDEP_TRUE"]=""
703S["am__quote"]=""
704S["am__include"]="include"
705S["DEPDIR"]=".deps"
706S["OBJEXT"]="o"
707S["EXEEXT"]=""
708S["ac_ct_CXX"]=""
709S["CPPFLAGS"]=""
710S["LDFLAGS"]=""
711S["CXXFLAGS"]="-g -O2"
712S["CXX"]="g++"
713S["host_os"]="darwin13.0.0"
714S["host_vendor"]="apple"
715S["host_cpu"]="i386"
716S["host"]="i386-apple-darwin13.0.0"
717S["build_os"]="darwin13.0.0"
718S["build_vendor"]="apple"
719S["build_cpu"]="i386"
720S["build"]="i386-apple-darwin13.0.0"
721S["am__untar"]="${AMTAR} xf -"
722S["am__tar"]="${AMTAR} chof - \"$$tardir\""
723S["AMTAR"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run tar"
724S["am__leading_dot"]="."
725S["SET_MAKE"]=""
726S["AWK"]="awk"
727S["mkdir_p"]="$(top_builddir)/./install-sh -c -d"
728S["MKDIR_P"]="./install-sh -c -d"
729S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
730S["STRIP"]=""
731S["install_sh"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/install-sh"
732S["MAKEINFO"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run makeinfo"
733S["AUTOHEADER"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run autoheader"
734S["AUTOMAKE"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run automake-1.11"
735S["AUTOCONF"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run autoconf"
736S["ACLOCAL"]="${SHELL} /Volumes/Dev/platforms/R7000-V1.0.2.125_1.0.18_src/ap/gpl/gsoap/source_build_platform/missing --run aclocal-1.11"
737S["VERSION"]="2.7"
738S["PACKAGE"]="gsoap"
739S["CYGPATH_W"]="echo"
740S["am__isrc"]=""
741S["INSTALL_DATA"]="${INSTALL} -m 644"
742S["INSTALL_SCRIPT"]="${INSTALL}"
743S["INSTALL_PROGRAM"]="${INSTALL}"
744S["target_alias"]=""
745S["host_alias"]=""
746S["build_alias"]=""
747S["LIBS"]=""
748S["ECHO_T"]=""
749S["ECHO_N"]=""
750S["ECHO_C"]="\\c"
751S["DEFS"]="-DHAVE_CONFIG_H"
752S["mandir"]="${datarootdir}/man"
753S["localedir"]="${datarootdir}/locale"
754S["libdir"]="${exec_prefix}/lib"
755S["psdir"]="${docdir}"
756S["pdfdir"]="${docdir}"
757S["dvidir"]="${docdir}"
758S["htmldir"]="${docdir}"
759S["infodir"]="${datarootdir}/info"
760S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
761S["oldincludedir"]="/usr/include"
762S["includedir"]="${prefix}/include"
763S["localstatedir"]="${prefix}/var"
764S["sharedstatedir"]="${prefix}/com"
765S["sysconfdir"]="${prefix}/etc"
766S["datadir"]="${datarootdir}"
767S["datarootdir"]="${prefix}/share"
768S["libexecdir"]="${exec_prefix}/libexec"
769S["sbindir"]="${exec_prefix}/sbin"
770S["bindir"]="${exec_prefix}/bin"
771S["program_transform_name"]="s,x,x,"
772S["prefix"]="/usr/local"
773S["exec_prefix"]="${prefix}"
774S["PACKAGE_URL"]=""
775S["PACKAGE_BUGREPORT"]=""
776S["PACKAGE_STRING"]="gsoap 2.7"
777S["PACKAGE_VERSION"]="2.7"
778S["PACKAGE_TARNAME"]="gsoap"
779S["PACKAGE_NAME"]="gsoap"
780S["PATH_SEPARATOR"]=":"
781S["SHELL"]="/bin/sh"
782_ACAWK
783cat >>"$tmp/subs1.awk" <<_ACAWK &&
784  for (key in S) S_is_set[key] = 1
785  FS = ""
786
787}
788{
789  line = $ 0
790  nfields = split(line, field, "@")
791  substed = 0
792  len = length(field[1])
793  for (i = 2; i < nfields; i++) {
794    key = field[i]
795    keylen = length(key)
796    if (S_is_set[key]) {
797      value = S[key]
798      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
799      len += length(value) + length(field[++i])
800      substed = 1
801    } else
802      len += 1 + keylen
803  }
804
805  print line
806}
807
808_ACAWK
809if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
810  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
811else
812  cat
813fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
814  || as_fn_error "could not setup config files machinery" "$LINENO" 5
815fi # test -n "$CONFIG_FILES"
816
817# Set up the scripts for CONFIG_HEADERS section.
818# No need to generate them if there are no CONFIG_HEADERS.
819# This happens for instance with `./config.status Makefile'.
820if test -n "$CONFIG_HEADERS"; then
821cat >"$tmp/defines.awk" <<\_ACAWK ||
822BEGIN {
823D["PACKAGE_NAME"]=" \"gsoap\""
824D["PACKAGE_TARNAME"]=" \"gsoap\""
825D["PACKAGE_VERSION"]=" \"2.7\""
826D["PACKAGE_STRING"]=" \"gsoap 2.7\""
827D["PACKAGE_BUGREPORT"]=" \"\""
828D["PACKAGE_URL"]=" \"\""
829D["PACKAGE"]=" \"gsoap\""
830D["VERSION"]=" \"2.7\""
831D["YYTEXT_POINTER"]=" 1"
832D["STDC_HEADERS"]=" 1"
833D["HAVE_SYS_TYPES_H"]=" 1"
834D["HAVE_SYS_STAT_H"]=" 1"
835D["HAVE_STDLIB_H"]=" 1"
836D["HAVE_STRING_H"]=" 1"
837D["HAVE_MEMORY_H"]=" 1"
838D["HAVE_STRINGS_H"]=" 1"
839D["HAVE_INTTYPES_H"]=" 1"
840D["HAVE_STDINT_H"]=" 1"
841D["HAVE_UNISTD_H"]=" 1"
842D["HAVE_ARPA_INET_H"]=" 1"
843D["HAVE_XLOCALE_H"]=" 1"
844D["HAVE_ERRNO_H"]=" 1"
845D["HAVE_FCNTL_H"]=" 1"
846D["HAVE_LIMITS_H"]=" 1"
847D["HAVE_NETDB_H"]=" 1"
848D["HAVE_NETINET_IN_H"]=" 1"
849D["HAVE_STDLIB_H"]=" 1"
850D["HAVE_STRING_H"]=" 1"
851D["HAVE_STRINGS_H"]=" 1"
852D["HAVE_STDINT_H"]=" 1"
853D["HAVE_SYS_SOCKET_H"]=" 1"
854D["HAVE_SYS_TYPES_H"]=" 1"
855D["HAVE_SYS_TIME_H"]=" 1"
856D["HAVE_SYS_TIMEB_H"]=" 1"
857D["HAVE_UNISTD_H"]=" 1"
858D["HAVE_OPENSSL_SSL_H"]=" 1"
859D["HAVE_ZLIB_H"]=" 1"
860D["TIME_WITH_SYS_TIME"]=" 1"
861D["HAVE_SYS_TIME_H"]=" 1"
862D["HAVE_UNISTD_H"]=" 1"
863D["HAVE_ALARM"]=" 1"
864D["RETSIGTYPE"]=" void"
865D["HAVE_STRFTIME"]=" 1"
866D["HAVE_RANDOM"]=" 1"
867D["HAVE_GETTIMEOFDAY"]=" 1"
868D["HAVE_FTIME"]=" 1"
869D["HAVE_LOCALTIME_R"]=" 1"
870D["HAVE_TIMEGM"]=" 1"
871D["HAVE_GMTIME"]=" 1"
872D["HAVE_GMTIME_R"]=" 1"
873D["HAVE_MEMSET"]=" 1"
874D["HAVE_SELECT"]=" 1"
875D["HAVE_SOCKET"]=" 1"
876D["HAVE_STRCHR"]=" 1"
877D["HAVE_STRERROR"]=" 1"
878D["HAVE_STRRCHR"]=" 1"
879D["HAVE_STRSTR"]=" 1"
880D["HAVE_STRTOL"]=" 1"
881D["HAVE_STRTOUL"]=" 1"
882D["HAVE_STRTOLL"]=" 1"
883D["HAVE_STRTOULL"]=" 1"
884D["HAVE_STRTOLD"]=" 1"
885D["HAVE_STRTOD"]=" 1"
886D["HAVE_STRTOF"]=" 1"
887D["HAVE_STRTOLD_L"]=" 1"
888D["HAVE_STRTOD_L"]=" 1"
889D["HAVE_STRTOF_L"]=" 1"
890D["HAVE_SSCANF"]=" 1"
891D["HAVE_SSCANF_L"]=" 1"
892D["HAVE_SPRINTF_L"]=" 1"
893D["HAVE_WCTOMB"]=" 1"
894D["HAVE_MBTOWC"]=" 1"
895  for (key in D) D_is_set[key] = 1
896  FS = ""
897}
898/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
899  line = $ 0
900  split(line, arg, " ")
901  if (arg[1] == "#") {
902    defundef = arg[2]
903    mac1 = arg[3]
904  } else {
905    defundef = substr(arg[1], 2)
906    mac1 = arg[2]
907  }
908  split(mac1, mac2, "(") #)
909  macro = mac2[1]
910  prefix = substr(line, 1, index(line, defundef) - 1)
911  if (D_is_set[macro]) {
912    # Preserve the white space surrounding the "#".
913    print prefix "define", macro P[macro] D[macro]
914    next
915  } else {
916    # Replace #undef with comments.  This is necessary, for example,
917    # in the case of _POSIX_SOURCE, which is predefined and required
918    # on some systems where configure will not decide to define it.
919    if (defundef == "undef") {
920      print "/*", prefix defundef, macro, "*/"
921      next
922    }
923  }
924}
925{ print }
926_ACAWK
927  as_fn_error "could not setup config headers machinery" "$LINENO" 5
928fi # test -n "$CONFIG_HEADERS"
929
930
931eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
932shift
933for ac_tag
934do
935  case $ac_tag in
936  :[FHLC]) ac_mode=$ac_tag; continue;;
937  esac
938  case $ac_mode$ac_tag in
939  :[FHL]*:*);;
940  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
941  :[FH]-) ac_tag=-:-;;
942  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
943  esac
944  ac_save_IFS=$IFS
945  IFS=:
946  set x $ac_tag
947  IFS=$ac_save_IFS
948  shift
949  ac_file=$1
950  shift
951
952  case $ac_mode in
953  :L) ac_source=$1;;
954  :[FH])
955    ac_file_inputs=
956    for ac_f
957    do
958      case $ac_f in
959      -) ac_f="$tmp/stdin";;
960      *) # Look for the file first in the build tree, then in the source tree
961	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
962	 # because $ac_f cannot contain `:'.
963	 test -f "$ac_f" ||
964	   case $ac_f in
965	   [\\/$]*) false;;
966	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
967	   esac ||
968	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
969      esac
970      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
971      as_fn_append ac_file_inputs " '$ac_f'"
972    done
973
974    # Let's still pretend it is `configure' which instantiates (i.e., don't
975    # use $as_me), people would be surprised to read:
976    #    /* config.h.  Generated by config.status.  */
977    configure_input='Generated from '`
978	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
979	`' by configure.'
980    if test x"$ac_file" != x-; then
981      configure_input="$ac_file.  $configure_input"
982      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
983$as_echo "$as_me: creating $ac_file" >&6;}
984    fi
985    # Neutralize special characters interpreted by sed in replacement strings.
986    case $configure_input in #(
987    *\&* | *\|* | *\\* )
988       ac_sed_conf_input=`$as_echo "$configure_input" |
989       sed 's/[\\\\&|]/\\\\&/g'`;; #(
990    *) ac_sed_conf_input=$configure_input;;
991    esac
992
993    case $ac_tag in
994    *:-:* | *:-) cat >"$tmp/stdin" \
995      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
996    esac
997    ;;
998  esac
999
1000  ac_dir=`$as_dirname -- "$ac_file" ||
1001$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1002	 X"$ac_file" : 'X\(//\)[^/]' \| \
1003	 X"$ac_file" : 'X\(//\)$' \| \
1004	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1005$as_echo X"$ac_file" |
1006    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1007	    s//\1/
1008	    q
1009	  }
1010	  /^X\(\/\/\)[^/].*/{
1011	    s//\1/
1012	    q
1013	  }
1014	  /^X\(\/\/\)$/{
1015	    s//\1/
1016	    q
1017	  }
1018	  /^X\(\/\).*/{
1019	    s//\1/
1020	    q
1021	  }
1022	  s/.*/./; q'`
1023  as_dir="$ac_dir"; as_fn_mkdir_p
1024  ac_builddir=.
1025
1026case "$ac_dir" in
1027.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1028*)
1029  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1030  # A ".." for each directory in $ac_dir_suffix.
1031  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1032  case $ac_top_builddir_sub in
1033  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1034  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1035  esac ;;
1036esac
1037ac_abs_top_builddir=$ac_pwd
1038ac_abs_builddir=$ac_pwd$ac_dir_suffix
1039# for backward compatibility:
1040ac_top_builddir=$ac_top_build_prefix
1041
1042case $srcdir in
1043  .)  # We are building in place.
1044    ac_srcdir=.
1045    ac_top_srcdir=$ac_top_builddir_sub
1046    ac_abs_top_srcdir=$ac_pwd ;;
1047  [\\/]* | ?:[\\/]* )  # Absolute name.
1048    ac_srcdir=$srcdir$ac_dir_suffix;
1049    ac_top_srcdir=$srcdir
1050    ac_abs_top_srcdir=$srcdir ;;
1051  *) # Relative name.
1052    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1053    ac_top_srcdir=$ac_top_build_prefix$srcdir
1054    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1055esac
1056ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1057
1058
1059  case $ac_mode in
1060  :F)
1061  #
1062  # CONFIG_FILE
1063  #
1064
1065  case $INSTALL in
1066  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1067  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1068  esac
1069  ac_MKDIR_P=$MKDIR_P
1070  case $MKDIR_P in
1071  [\\/$]* | ?:[\\/]* ) ;;
1072  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1073  esac
1074# If the template does not know about datarootdir, expand it.
1075# FIXME: This hack should be removed a few years after 2.60.
1076ac_datarootdir_hack=; ac_datarootdir_seen=
1077ac_sed_dataroot='
1078/datarootdir/ {
1079  p
1080  q
1081}
1082/@datadir@/p
1083/@docdir@/p
1084/@infodir@/p
1085/@localedir@/p
1086/@mandir@/p'
1087case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1088*datarootdir*) ac_datarootdir_seen=yes;;
1089*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1090  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1091$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1092  ac_datarootdir_hack='
1093  s&@datadir@&${datarootdir}&g
1094  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1095  s&@infodir@&${datarootdir}/info&g
1096  s&@localedir@&${datarootdir}/locale&g
1097  s&@mandir@&${datarootdir}/man&g
1098  s&\${datarootdir}&${prefix}/share&g' ;;
1099esac
1100ac_sed_extra="/^[	 ]*VPATH[	 ]*=/{
1101s/:*\$(srcdir):*/:/
1102s/:*\${srcdir}:*/:/
1103s/:*@srcdir@:*/:/
1104s/^\([^=]*=[	 ]*\):*/\1/
1105s/:*$//
1106s/^[^=]*=[	 ]*$//
1107}
1108
1109:t
1110/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1111s|@configure_input@|$ac_sed_conf_input|;t t
1112s&@top_builddir@&$ac_top_builddir_sub&;t t
1113s&@top_build_prefix@&$ac_top_build_prefix&;t t
1114s&@srcdir@&$ac_srcdir&;t t
1115s&@abs_srcdir@&$ac_abs_srcdir&;t t
1116s&@top_srcdir@&$ac_top_srcdir&;t t
1117s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1118s&@builddir@&$ac_builddir&;t t
1119s&@abs_builddir@&$ac_abs_builddir&;t t
1120s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1121s&@INSTALL@&$ac_INSTALL&;t t
1122s&@MKDIR_P@&$ac_MKDIR_P&;t t
1123$ac_datarootdir_hack
1124"
1125eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1126  || as_fn_error "could not create $ac_file" "$LINENO" 5
1127
1128test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1129  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1130  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1131  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1132which seems to be undefined.  Please make sure it is defined." >&5
1133$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1134which seems to be undefined.  Please make sure it is defined." >&2;}
1135
1136  rm -f "$tmp/stdin"
1137  case $ac_file in
1138  -) cat "$tmp/out" && rm -f "$tmp/out";;
1139  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1140  esac \
1141  || as_fn_error "could not create $ac_file" "$LINENO" 5
1142 ;;
1143  :H)
1144  #
1145  # CONFIG_HEADER
1146  #
1147  if test x"$ac_file" != x-; then
1148    {
1149      $as_echo "/* $configure_input  */" \
1150      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1151    } >"$tmp/config.h" \
1152      || as_fn_error "could not create $ac_file" "$LINENO" 5
1153    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1154      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1155$as_echo "$as_me: $ac_file is unchanged" >&6;}
1156    else
1157      rm -f "$ac_file"
1158      mv "$tmp/config.h" "$ac_file" \
1159	|| as_fn_error "could not create $ac_file" "$LINENO" 5
1160    fi
1161  else
1162    $as_echo "/* $configure_input  */" \
1163      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1164      || as_fn_error "could not create -" "$LINENO" 5
1165  fi
1166# Compute "$ac_file"'s index in $config_headers.
1167_am_arg="$ac_file"
1168_am_stamp_count=1
1169for _am_header in $config_headers :; do
1170  case $_am_header in
1171    $_am_arg | $_am_arg:* )
1172      break ;;
1173    * )
1174      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1175  esac
1176done
1177echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1178$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1179	 X"$_am_arg" : 'X\(//\)[^/]' \| \
1180	 X"$_am_arg" : 'X\(//\)$' \| \
1181	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1182$as_echo X"$_am_arg" |
1183    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1184	    s//\1/
1185	    q
1186	  }
1187	  /^X\(\/\/\)[^/].*/{
1188	    s//\1/
1189	    q
1190	  }
1191	  /^X\(\/\/\)$/{
1192	    s//\1/
1193	    q
1194	  }
1195	  /^X\(\/\).*/{
1196	    s//\1/
1197	    q
1198	  }
1199	  s/.*/./; q'`/stamp-h$_am_stamp_count
1200 ;;
1201
1202  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1203$as_echo "$as_me: executing $ac_file commands" >&6;}
1204 ;;
1205  esac
1206
1207
1208  case $ac_file$ac_mode in
1209    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1210  # Autoconf 2.62 quotes --file arguments for eval, but not when files
1211  # are listed without --file.  Let's play safe and only enable the eval
1212  # if we detect the quoting.
1213  case $CONFIG_FILES in
1214  *\'*) eval set x "$CONFIG_FILES" ;;
1215  *)   set x $CONFIG_FILES ;;
1216  esac
1217  shift
1218  for mf
1219  do
1220    # Strip MF so we end up with the name of the file.
1221    mf=`echo "$mf" | sed -e 's/:.*$//'`
1222    # Check whether this is an Automake generated Makefile or not.
1223    # We used to match only the files named `Makefile.in', but
1224    # some people rename them; so instead we look at the file content.
1225    # Grep'ing the first line is not enough: some people post-process
1226    # each Makefile.in and add a new line on top of each file to say so.
1227    # Grep'ing the whole file is not good either: AIX grep has a line
1228    # limit of 2048, but all sed's we know have understand at least 4000.
1229    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1230      dirpart=`$as_dirname -- "$mf" ||
1231$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1232	 X"$mf" : 'X\(//\)[^/]' \| \
1233	 X"$mf" : 'X\(//\)$' \| \
1234	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1235$as_echo X"$mf" |
1236    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1237	    s//\1/
1238	    q
1239	  }
1240	  /^X\(\/\/\)[^/].*/{
1241	    s//\1/
1242	    q
1243	  }
1244	  /^X\(\/\/\)$/{
1245	    s//\1/
1246	    q
1247	  }
1248	  /^X\(\/\).*/{
1249	    s//\1/
1250	    q
1251	  }
1252	  s/.*/./; q'`
1253    else
1254      continue
1255    fi
1256    # Extract the definition of DEPDIR, am__include, and am__quote
1257    # from the Makefile without running `make'.
1258    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1259    test -z "$DEPDIR" && continue
1260    am__include=`sed -n 's/^am__include = //p' < "$mf"`
1261    test -z "am__include" && continue
1262    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1263    # When using ansi2knr, U may be empty or an underscore; expand it
1264    U=`sed -n 's/^U = //p' < "$mf"`
1265    # Find all dependency output files, they are included files with
1266    # $(DEPDIR) in their names.  We invoke sed twice because it is the
1267    # simplest approach to changing $(DEPDIR) to its actual value in the
1268    # expansion.
1269    for file in `sed -n "
1270      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1271	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1272      # Make sure the directory exists.
1273      test -f "$dirpart/$file" && continue
1274      fdir=`$as_dirname -- "$file" ||
1275$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1276	 X"$file" : 'X\(//\)[^/]' \| \
1277	 X"$file" : 'X\(//\)$' \| \
1278	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1279$as_echo X"$file" |
1280    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1281	    s//\1/
1282	    q
1283	  }
1284	  /^X\(\/\/\)[^/].*/{
1285	    s//\1/
1286	    q
1287	  }
1288	  /^X\(\/\/\)$/{
1289	    s//\1/
1290	    q
1291	  }
1292	  /^X\(\/\).*/{
1293	    s//\1/
1294	    q
1295	  }
1296	  s/.*/./; q'`
1297      as_dir=$dirpart/$fdir; as_fn_mkdir_p
1298      # echo "creating $dirpart/$file"
1299      echo '# dummy' > "$dirpart/$file"
1300    done
1301  done
1302}
1303 ;;
1304
1305  esac
1306done # for ac_tag
1307
1308
1309as_fn_exit 0
1310