1#! /bin/bash
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/bash}
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 STATUS 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=$1; test $as_status -eq 0 && as_status=1
145  if test "$4"; then
146    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
147    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
148  fi
149  $as_echo "$as_me: error: $2" >&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 lighttpd $as_me 1.4.39, which was
395generated by GNU Autoconf 2.67.  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 src/Makefile distribute.sh"
408config_headers=" config.h"
409config_commands=" depfiles libtool"
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 <contact@lighttpd.net>."
440
441ac_cs_config="'--host=arm-linux' '--build=' '--prefix=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/_inst' '--with-pcre' 'PCRECONFIG=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31/pcre-config' '--with-smbdav-props' '--with-openssl=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl' '--with-openssl-includes=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/include/openssl' '--with-openssl-libs=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/' '--with-smbdav-locks=yes' '--with-libsmbclient=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../samba-3.5.8/source3' '--without-zlib' '--without-bzip2' '--enable-shared' '--disable-static' 'build_alias=' 'host_alias=arm-linux' 'CC=arm-brcm-linux-uclibcgnueabi-gcc' 'CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31 -I/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../../include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -DHAVE_OPENSSL_SSL_H=1 -DHAVE_LIBSSL=1 -DEMBEDDED_EANBLE=1' 'LDFLAGS=-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -ldl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31/.libs -lpcre -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/lib/.libs' 'LIBS=-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -lshared -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -lnvram -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -ldisk -lpthread  -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -lcrypto -lssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/lib/.libs -lcurl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lpthread -dl' 'PKG_CONFIG_PATH=/home/charles0000/asuswrt/release/src-rt-7.14.114.x/src/router/arm-uclibc/stage/usr/lib/pkgconfig:/home/charles0000/asuswrt/release/src-rt-7.14.114.x/src/router/arm-uclibc/stage/etc/lib/pkgconfig' 'XML_CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/include' 'XML_LIBS=-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm' 'SQLITE_CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite' 'SQLITE_LIBS=-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite/.libs -lsqlite3'"
442ac_cs_version="\
443lighttpd config.status 1.4.39
444configured by ./configure, generated by GNU Autoconf 2.67,
445  with options \"$ac_cs_config\"
446
447Copyright (C) 2010 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='/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39'
452srcdir='.'
453INSTALL='/usr/bin/install -c'
454MKDIR_P='/bin/mkdir -p'
455AWK='gawk'
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=`expr "X$1" : 'X\([^=]*\)='`
469    ac_optarg=
470    ac_shift=:
471    ;;
472  *)
473    ac_option=$1
474    ac_optarg=$2
475    ac_shift=shift
476    ;;
477  esac
478
479  case $ac_option in
480  # Handling of the options.
481  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
482    ac_cs_recheck=: ;;
483  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
484    $as_echo "$ac_cs_version"; exit ;;
485  --config | --confi | --conf | --con | --co | --c )
486    $as_echo "$ac_cs_config"; exit ;;
487  --debug | --debu | --deb | --de | --d | -d )
488    debug=: ;;
489  --file | --fil | --fi | --f )
490    $ac_shift
491    case $ac_optarg in
492    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
493    '') as_fn_error $? "missing file argument" ;;
494    esac
495    as_fn_append CONFIG_FILES " '$ac_optarg'"
496    ac_need_defaults=false;;
497  --header | --heade | --head | --hea )
498    $ac_shift
499    case $ac_optarg in
500    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
501    esac
502    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
503    ac_need_defaults=false;;
504  --he | --h)
505    # Conflict between --help and --header
506    as_fn_error $? "ambiguous option: \`$1'
507Try \`$0 --help' for more information.";;
508  --help | --hel | -h )
509    $as_echo "$ac_cs_usage"; exit ;;
510  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
511  | -silent | --silent | --silen | --sile | --sil | --si | --s)
512    ac_cs_silent=: ;;
513
514  # This is an error.
515  -*) as_fn_error $? "unrecognized option: \`$1'
516Try \`$0 --help' for more information." ;;
517
518  *) as_fn_append ac_config_targets " $1"
519     ac_need_defaults=false ;;
520
521  esac
522  shift
523done
524
525ac_configure_extra_args=
526
527if $ac_cs_silent; then
528  exec 6>/dev/null
529  ac_configure_extra_args="$ac_configure_extra_args --silent"
530fi
531
532if $ac_cs_recheck; then
533  set X '/bin/bash' './configure'  '--host=arm-linux' '--build=' '--prefix=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/_inst' '--with-pcre' 'PCRECONFIG=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31/pcre-config' '--with-smbdav-props' '--with-openssl=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl' '--with-openssl-includes=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/include/openssl' '--with-openssl-libs=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/' '--with-smbdav-locks=yes' '--with-libsmbclient=/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../samba-3.5.8/source3' '--without-zlib' '--without-bzip2' '--enable-shared' '--disable-static' 'build_alias=' 'host_alias=arm-linux' 'CC=arm-brcm-linux-uclibcgnueabi-gcc' 'CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31 -I/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../../include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -DHAVE_OPENSSL_SSL_H=1 -DHAVE_LIBSSL=1 -DEMBEDDED_EANBLE=1' 'LDFLAGS=-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -ldl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31/.libs -lpcre -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/lib/.libs' 'LIBS=-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -lshared -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -lnvram -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -ldisk -lpthread  -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -lcrypto -lssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/lib/.libs -lcurl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lpthread -dl' 'PKG_CONFIG_PATH=/home/charles0000/asuswrt/release/src-rt-7.14.114.x/src/router/arm-uclibc/stage/usr/lib/pkgconfig:/home/charles0000/asuswrt/release/src-rt-7.14.114.x/src/router/arm-uclibc/stage/etc/lib/pkgconfig' 'XML_CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/include' 'XML_LIBS=-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm' 'SQLITE_CFLAGS=-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite' 'SQLITE_LIBS=-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite/.libs -lsqlite3' $ac_configure_extra_args --no-create --no-recursion
534  shift
535  $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
536  CONFIG_SHELL='/bin/bash'
537  export CONFIG_SHELL
538  exec "$@"
539fi
540
541exec 5>>config.log
542{
543  echo
544  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
545## Running $as_me. ##
546_ASBOX
547  $as_echo "$ac_log"
548} >&5
549
550#
551# INIT-COMMANDS
552#
553AMDEP_TRUE="" ac_aux_dir="."
554
555
556# The HP-UX ksh and POSIX shell print the target directory to stdout
557# if CDPATH is set.
558(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
559
560sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
561double_quote_subst='s/\(["`\\]\)/\\\1/g'
562delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
563SED='/bin/sed'
564Xsed='/bin/sed -e 1s/^X//'
565GREP='/bin/grep'
566EGREP='/bin/grep -E'
567FGREP='/bin/grep -F'
568SHELL='/bin/bash'
569ECHO='printf %s\n'
570LD='arm-brcm-linux-uclibcgnueabi-ld'
571enable_static='no'
572enable_shared='yes'
573macro_version='2.4.2'
574macro_revision='1.3337'
575pic_mode='default'
576enable_fast_install='yes'
577PATH_SEPARATOR=':'
578host_alias='arm-linux'
579host='arm-unknown-linux-gnu'
580host_os='linux-gnu'
581build_alias=''
582build='i686-pc-linux-uclibc'
583build_os='linux-uclibc'
584NM='arm-brcm-linux-uclibcgnueabi-nm'
585LN_S='ln -s'
586max_cmd_len='805306365'
587ac_objext='o'
588exeext=''
589lt_unset='unset'
590lt_SP2NL='tr \040 \012'
591lt_NL2SP='tr \015\012 \040\040'
592lt_cv_to_host_file_cmd='func_convert_file_noop'
593lt_cv_to_tool_file_cmd='func_convert_file_noop'
594reload_flag=' -r'
595reload_cmds='$LD$reload_flag -o $output$reload_objs'
596OBJDUMP='arm-brcm-linux-uclibcgnueabi-objdump'
597deplibs_check_method='pass_all'
598file_magic_cmd='$MAGIC_CMD'
599file_magic_glob=''
600want_nocaseglob='no'
601DLLTOOL='false'
602sharedlib_from_linklib_cmd='printf %s\n'
603AR='arm-brcm-linux-uclibcgnueabi-ar'
604AR_FLAGS='cru'
605archiver_list_spec='@'
606STRIP='arm-brcm-linux-uclibcgnueabi-strip'
607RANLIB='arm-brcm-linux-uclibcgnueabi-ranlib'
608old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
609old_postuninstall_cmds=''
610old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
611lock_old_archive_extraction='no'
612CC='arm-brcm-linux-uclibcgnueabi-gcc'
613CFLAGS='-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31 -I/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../../include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -DHAVE_OPENSSL_SSL_H=1 -DHAVE_LIBSSL=1 -DEMBEDDED_EANBLE=1 -Wall -W -Wshadow -pedantic -std=gnu99'
614compiler='arm-brcm-linux-uclibcgnueabi-gcc'
615GCC='yes'
616lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
617lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
618lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
619lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
620nm_file_list_spec='@'
621lt_sysroot=''
622objdir='.libs'
623MAGIC_CMD='file'
624lt_prog_compiler_no_builtin_flag=' -fno-builtin'
625lt_prog_compiler_pic=' -fPIC -DPIC'
626lt_prog_compiler_wl='-Wl,'
627lt_prog_compiler_static=''
628lt_cv_prog_compiler_c_o='yes'
629need_locks='no'
630MANIFEST_TOOL=':'
631DSYMUTIL=''
632NMEDIT=''
633LIPO=''
634OTOOL=''
635OTOOL64=''
636libext='a'
637shrext_cmds='.so'
638extract_expsyms_cmds=''
639archive_cmds_need_lc='no'
640enable_shared_with_static_runtimes='no'
641export_dynamic_flag_spec='${wl}--export-dynamic'
642whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
643compiler_needs_object='no'
644old_archive_from_new_cmds=''
645old_archive_from_expsyms_cmds=''
646archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
647archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
648	    cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
649	    echo "local: *; };" >> $output_objdir/$libname.ver~
650	    $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
651module_cmds=''
652module_expsym_cmds=''
653with_gnu_ld='yes'
654allow_undefined_flag=''
655no_undefined_flag=''
656hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
657hardcode_libdir_separator=''
658hardcode_direct='no'
659hardcode_direct_absolute='no'
660hardcode_minus_L='no'
661hardcode_shlibpath_var='unsupported'
662hardcode_automatic='no'
663inherit_rpath='no'
664link_all_deplibs='no'
665always_export_symbols='no'
666export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
667exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
668include_expsyms=''
669prelink_cmds=''
670postlink_cmds=''
671file_list_spec=''
672variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
673need_lib_prefix='no'
674need_version='no'
675version_type='linux'
676runpath_var='LD_RUN_PATH'
677shlibpath_var='LD_LIBRARY_PATH'
678shlibpath_overrides_runpath='no'
679libname_spec='lib$name'
680library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
681soname_spec='${libname}${release}${shared_ext}$major'
682install_override_mode=''
683postinstall_cmds=''
684postuninstall_cmds=''
685finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
686finish_eval=''
687hardcode_into_libs='yes'
688sys_lib_search_path_spec='/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib/gcc/arm-brcm-linux-uclibcgnueabi/4.5.3 /home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib/gcc /home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/lib /home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/lib /home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/usr/lib '
689sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/mesa /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/lib/alsa-lib /usr/local/lib /usr/lib/vmware-tools/lib32/libvmGuestLib.so /usr/lib/vmware-tools/lib64/libvmGuestLib.so /usr/lib/vmware-tools/lib32/libvmGuestLibJava.so /usr/lib/vmware-tools/lib64/libvmGuestLibJava.so /usr/lib/vmware-tools/lib32/libDeployPkg.so /usr/lib/vmware-tools/lib64/libDeployPkg.so '
690hardcode_action='immediate'
691enable_dlopen='yes'
692enable_dlopen_self='unknown'
693enable_dlopen_self_static='unknown'
694old_striplib='arm-brcm-linux-uclibcgnueabi-strip --strip-debug'
695striplib='arm-brcm-linux-uclibcgnueabi-strip --strip-unneeded'
696
697LTCC='arm-brcm-linux-uclibcgnueabi-gcc'
698LTCFLAGS='-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31 -I/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../../include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libdisk -DHAVE_OPENSSL_SSL_H=1 -DHAVE_LIBSSL=1 -DEMBEDDED_EANBLE=1'
699compiler='arm-brcm-linux-uclibcgnueabi-gcc'
700
701# A function that is used when there is no print builtin or printf.
702func_fallback_echo ()
703{
704  eval 'cat <<_LTECHO_EOF
705$1
706_LTECHO_EOF'
707}
708
709# Quote evaled strings.
710for var in SED GREP EGREP FGREP SHELL ECHO LD PATH_SEPARATOR NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do
711    case `eval \\$ECHO \\""\\$$var"\\"` in
712    *[\\\`\"\$]*)
713      eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
714      ;;
715    *)
716      eval "lt_$var=\\\"\$$var\\\""
717      ;;
718    esac
719done
720
721# Double-quote double-evaled strings.
722for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
723    case `eval \\$ECHO \\""\\$$var"\\"` in
724    *[\\\`\"\$]*)
725      eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
726      ;;
727    *)
728      eval "lt_$var=\\\"\$$var\\\""
729      ;;
730    esac
731done
732
733ac_aux_dir='.'
734xsi_shell='yes'
735lt_shell_append='yes'
736
737# See if we are running on zsh, and set the options which allow our
738# commands through without removal of \ escapes INIT.
739if test -n "${ZSH_VERSION+set}" ; then
740   setopt NO_GLOB_SUBST
741fi
742
743
744    PACKAGE='lighttpd'
745    VERSION='1.4.39'
746    TIMESTAMP=''
747    RM='rm -f'
748    ofile='libtool'
749
750
751
752
753
754# Handling of arguments.
755for ac_config_target in $ac_config_targets
756do
757  case $ac_config_target in
758    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
759    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
760    "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
761    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
762    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
763    "distribute.sh") CONFIG_FILES="$CONFIG_FILES distribute.sh" ;;
764
765  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
766  esac
767done
768
769
770# If the user did not use the arguments to specify the items to instantiate,
771# then the envvar interface is used.  Set only those that are not.
772# We use the long form for the default assignment because of an extremely
773# bizarre bug on SunOS 4.1.3.
774if $ac_need_defaults; then
775  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
776  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
777  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
778fi
779
780# Have a temporary directory for convenience.  Make it in the build tree
781# simply because there is no reason against having it here, and in addition,
782# creating and moving files from /tmp can sometimes cause problems.
783# Hook for its removal unless debugging.
784# Note that there is a small window in which the directory will not be cleaned:
785# after its creation but before its name has been assigned to `$tmp'.
786$debug ||
787{
788  tmp=
789  trap 'exit_status=$?
790  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
791' 0
792  trap 'as_fn_exit 1' 1 2 13 15
793}
794# Create a (secure) tmp directory for tmp files.
795
796{
797  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
798  test -n "$tmp" && test -d "$tmp"
799}  ||
800{
801  tmp=./conf$$-$RANDOM
802  (umask 077 && mkdir "$tmp")
803} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
804
805# Set up the scripts for CONFIG_FILES section.
806# No need to generate them if there are no CONFIG_FILES.
807# This happens for instance with `./config.status config.h'.
808if test -n "$CONFIG_FILES"; then
809
810
811ac_cr=`echo X | tr X '\015'`
812# On cygwin, bash can eat \r inside `` if the user requested igncr.
813# But we know of no other shell where ac_cr would be empty at this
814# point, so we can use a bashism as a fallback.
815if test "x$ac_cr" = x; then
816  eval ac_cr=\$\'\\r\'
817fi
818ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
819if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
820  ac_cs_awk_cr='\\r'
821else
822  ac_cs_awk_cr=$ac_cr
823fi
824
825echo 'BEGIN {' >"$tmp/subs1.awk" &&
826cat >>"$tmp/subs1.awk" <<\_ACAWK &&
827S["am__EXEEXT_FALSE"]=""
828S["am__EXEEXT_TRUE"]="#"
829S["LTLIBOBJS"]=" ${LIBOBJDIR}lstat$U.lo ${LIBOBJDIR}stat$U.lo"
830S["CHECK_WITH_FASTCGI_FALSE"]=""
831S["CHECK_WITH_FASTCGI_TRUE"]="#"
832S["CROSS_COMPILING_FALSE"]="#"
833S["CROSS_COMPILING_TRUE"]=""
834S["SENDFILE_LIB"]=""
835S["CRYPT_LIB"]="-lcrypt"
836S["LUA_LIBS"]=""
837S["LUA_CFLAGS"]=""
838S["MEMCACHE_LIB"]=""
839S["GDBM_LIB"]=""
840S["UUID_LIBS"]=""
841S["SQLITE_LIBS"]="-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite/.libs -lsqlite3"
842S["SQLITE_CFLAGS"]="-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite"
843S["XML_LIBS"]="-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm"
844S["XML_CFLAGS"]="-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/include"
845S["FAM_LIBS"]=""
846S["FAM_CFLAGS"]=""
847S["BZ_LIB"]=""
848S["Z_LIB"]=""
849S["PCRE_LIB"]="-lpcre"
850S["PCRECONFIG"]="/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31/pcre-config"
851S["SSL_LIB"]="-lssl -lcrypto"
852S["DL_LIB"]=""
853S["ATTR_LIB"]=""
854S["LBER_LIB"]=""
855S["LDAP_LIB"]=""
856S["MYSQL_INCLUDE"]=""
857S["MYSQL_LIBS"]=""
858S["MYSQL_CONFIG"]=""
859S["LIBSMBCLIENT_LIBS"]="-L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../samba-3.5.8/source3/bin -lsmbclient"
860S["LIBSMBCLIENT_CFLAGS"]="-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../samba-3.5.8/source3/include"
861S["LIBEV_LIBS"]=""
862S["LIBEV_CFLAGS"]=""
863S["PKG_CONFIG_LIBDIR"]=""
864S["PKG_CONFIG_PATH"]="/home/charles0000/asuswrt/release/src-rt-7.14.114.x/src/router/arm-uclibc/stage/usr/lib/pkgconfig:/home/charles0000/asuswrt/release/src-rt-7.14.114."\
865"x/src/router/arm-uclibc/stage/etc/lib/pkgconfig"
866S["PKG_CONFIG"]="/usr/bin/pkg-config"
867S["LIBOBJS"]=" ${LIBOBJDIR}lstat$U.o ${LIBOBJDIR}stat$U.o"
868S["OTOOL64"]=""
869S["OTOOL"]=""
870S["LIPO"]=""
871S["NMEDIT"]=""
872S["DSYMUTIL"]=""
873S["MANIFEST_TOOL"]=":"
874S["RANLIB"]="arm-brcm-linux-uclibcgnueabi-ranlib"
875S["ac_ct_AR"]=""
876S["AR"]="arm-brcm-linux-uclibcgnueabi-ar"
877S["DLLTOOL"]="false"
878S["OBJDUMP"]="arm-brcm-linux-uclibcgnueabi-objdump"
879S["NM"]="arm-brcm-linux-uclibcgnueabi-nm"
880S["ac_ct_DUMPBIN"]=""
881S["DUMPBIN"]=""
882S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
883S["ANSI2KNR"]=""
884S["U"]=""
885S["NO_RDYNAMIC_FALSE"]=""
886S["NO_RDYNAMIC_TRUE"]="#"
887S["LN_S"]="ln -s"
888S["CPP"]="arm-brcm-linux-uclibcgnueabi-gcc -E"
889S["LD"]="arm-brcm-linux-uclibcgnueabi-ld"
890S["FGREP"]="/bin/grep -F"
891S["EGREP"]="/bin/grep -E"
892S["GREP"]="/bin/grep"
893S["SED"]="/bin/sed"
894S["am__fastdepCC_FALSE"]="#"
895S["am__fastdepCC_TRUE"]=""
896S["CCDEPMODE"]="depmode=gcc3"
897S["AMDEPBACKSLASH"]="\\"
898S["AMDEP_FALSE"]="#"
899S["AMDEP_TRUE"]=""
900S["am__quote"]=""
901S["am__include"]="include"
902S["DEPDIR"]=".deps"
903S["OBJEXT"]="o"
904S["EXEEXT"]=""
905S["ac_ct_CC"]=""
906S["CPPFLAGS"]=" -D_REENTRANT -D__EXTENSIONS__ -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/include -I/home/charles0000/asuswrt/release"\
907"/src/router/lighttpd-1.4.39/../openssl/include/openssl -DOPENSSL_NO_KRB5  -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES"
908S["LDFLAGS"]="-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -ldl -L/home/charles0000/asuswrt/release/s"\
909"rc/router/lighttpd-1.4.39/../pcre-8.31/.libs -lpcre -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lm -L/ho"\
910"me/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/l"\
911"ib/.libs -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl/lib -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.3"\
912"9/../openssl/"
913S["CFLAGS"]="-I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../pcre-8.31 -I/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-"\
914"arm-linux-2.6.36-uclibc-4.5.3/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../sqlite -I/home/charles0000/asuswrt/release/s"\
915"rc/router/lighttpd-1.4.39/../curl-7.21.7/include -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../../include -I/home/charles0000/as"\
916"uswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -I/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../shared -I/home/charles0000/a"\
917"suswrt/release/src/router/lighttpd-1.4.39/../libdisk -DHAVE_OPENSSL_SSL_H=1 -DHAVE_LIBSSL=1 -DEMBEDDED_EANBLE=1 -Wall -W -Wshadow -pedantic -std=gnu"\
918"99"
919S["CC"]="arm-brcm-linux-uclibcgnueabi-gcc"
920S["AM_BACKSLASH"]="\\"
921S["AM_DEFAULT_VERBOSITY"]="1"
922S["am__untar"]="tar -xf -"
923S["am__tar"]="tar --format=ustar -chf - \"$$tardir\""
924S["AMTAR"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run tar"
925S["am__leading_dot"]="."
926S["SET_MAKE"]=""
927S["AWK"]="gawk"
928S["mkdir_p"]="/bin/mkdir -p"
929S["MKDIR_P"]="/bin/mkdir -p"
930S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
931S["STRIP"]="arm-brcm-linux-uclibcgnueabi-strip"
932S["install_sh"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/install-sh"
933S["MAKEINFO"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run makeinfo"
934S["AUTOHEADER"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run autoheader"
935S["AUTOMAKE"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run automake-1.11"
936S["AUTOCONF"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run autoconf"
937S["ACLOCAL"]="${SHELL} /home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/missing --run aclocal-1.11"
938S["VERSION"]="1.4.39"
939S["PACKAGE"]="lighttpd"
940S["CYGPATH_W"]="echo"
941S["am__isrc"]=""
942S["INSTALL_DATA"]="${INSTALL} -m 644"
943S["INSTALL_SCRIPT"]="${INSTALL}"
944S["INSTALL_PROGRAM"]="${INSTALL}"
945S["target_os"]="linux-gnu"
946S["target_vendor"]="unknown"
947S["target_cpu"]="arm"
948S["target"]="arm-unknown-linux-gnu"
949S["host_os"]="linux-gnu"
950S["host_vendor"]="unknown"
951S["host_cpu"]="arm"
952S["host"]="arm-unknown-linux-gnu"
953S["build_os"]="linux-uclibc"
954S["build_vendor"]="pc"
955S["build_cpu"]="i686"
956S["build"]="i686-pc-linux-uclibc"
957S["target_alias"]=""
958S["host_alias"]="arm-linux"
959S["build_alias"]=""
960S["LIBS"]="-L/home/charles0000/asuswrt/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib -L/home/charles0000/asuswrt/release/src/ro"\
961"uter/lighttpd-1.4.39/../shared -lshared -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../nvram_arm -lnvram -L/home/charles0000/asus"\
962"wrt/release/src/router/lighttpd-1.4.39/../libdisk -ldisk -lpthread  -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../openssl -lcryp"\
963"to -lssl -L/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/../curl-7.21.7/lib/.libs -lcurl -L/home/charles0000/asuswrt/release/src/rout"\
964"er/lighttpd-1.4.39/../libxml2/.libs -lxml2 -lpthread -dl"
965S["ECHO_T"]=""
966S["ECHO_N"]="-n"
967S["ECHO_C"]=""
968S["DEFS"]="-DHAVE_CONFIG_H"
969S["mandir"]="${datarootdir}/man"
970S["localedir"]="${datarootdir}/locale"
971S["libdir"]="${exec_prefix}/lib"
972S["psdir"]="${docdir}"
973S["pdfdir"]="${docdir}"
974S["dvidir"]="${docdir}"
975S["htmldir"]="${docdir}"
976S["infodir"]="${datarootdir}/info"
977S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
978S["oldincludedir"]="/usr/include"
979S["includedir"]="${prefix}/include"
980S["localstatedir"]="${prefix}/var"
981S["sharedstatedir"]="${prefix}/com"
982S["sysconfdir"]="${prefix}/etc"
983S["datadir"]="${datarootdir}"
984S["datarootdir"]="${prefix}/share"
985S["libexecdir"]="${exec_prefix}/libexec"
986S["sbindir"]="${exec_prefix}/sbin"
987S["bindir"]="${exec_prefix}/bin"
988S["program_transform_name"]="s,x,x,"
989S["prefix"]="/home/charles0000/asuswrt/release/src/router/lighttpd-1.4.39/_inst"
990S["exec_prefix"]="${prefix}"
991S["PACKAGE_URL"]=""
992S["PACKAGE_BUGREPORT"]="contact@lighttpd.net"
993S["PACKAGE_STRING"]="lighttpd 1.4.39"
994S["PACKAGE_VERSION"]="1.4.39"
995S["PACKAGE_TARNAME"]="lighttpd"
996S["PACKAGE_NAME"]="lighttpd"
997S["PATH_SEPARATOR"]=":"
998S["SHELL"]="/bin/bash"
999_ACAWK
1000cat >>"$tmp/subs1.awk" <<_ACAWK &&
1001  for (key in S) S_is_set[key] = 1
1002  FS = ""
1003
1004}
1005{
1006  line = $ 0
1007  nfields = split(line, field, "@")
1008  substed = 0
1009  len = length(field[1])
1010  for (i = 2; i < nfields; i++) {
1011    key = field[i]
1012    keylen = length(key)
1013    if (S_is_set[key]) {
1014      value = S[key]
1015      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1016      len += length(value) + length(field[++i])
1017      substed = 1
1018    } else
1019      len += 1 + keylen
1020  }
1021
1022  print line
1023}
1024
1025_ACAWK
1026if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1027  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1028else
1029  cat
1030fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
1031  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
1032fi # test -n "$CONFIG_FILES"
1033
1034# Set up the scripts for CONFIG_HEADERS section.
1035# No need to generate them if there are no CONFIG_HEADERS.
1036# This happens for instance with `./config.status Makefile'.
1037if test -n "$CONFIG_HEADERS"; then
1038cat >"$tmp/defines.awk" <<\_ACAWK ||
1039BEGIN {
1040D["PACKAGE_NAME"]=" \"lighttpd\""
1041D["PACKAGE_TARNAME"]=" \"lighttpd\""
1042D["PACKAGE_VERSION"]=" \"1.4.39\""
1043D["PACKAGE_STRING"]=" \"lighttpd 1.4.39\""
1044D["PACKAGE_BUGREPORT"]=" \"contact@lighttpd.net\""
1045D["PACKAGE_URL"]=" \"\""
1046D["PACKAGE"]=" \"lighttpd\""
1047D["VERSION"]=" \"1.4.39\""
1048D["STDC_HEADERS"]=" 1"
1049D["HAVE_SYS_TYPES_H"]=" 1"
1050D["HAVE_SYS_STAT_H"]=" 1"
1051D["HAVE_STDLIB_H"]=" 1"
1052D["HAVE_STRING_H"]=" 1"
1053D["HAVE_MEMORY_H"]=" 1"
1054D["HAVE_STRINGS_H"]=" 1"
1055D["HAVE_INTTYPES_H"]=" 1"
1056D["HAVE_STDINT_H"]=" 1"
1057D["HAVE_UNISTD_H"]=" 1"
1058D["__EXTENSIONS__"]=" 1"
1059D["_ALL_SOURCE"]=" 1"
1060D["_GNU_SOURCE"]=" 1"
1061D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
1062D["_TANDEM_SOURCE"]=" 1"
1063D["PROTOTYPES"]=" 1"
1064D["__PROTOTYPES"]=" 1"
1065D["HAVE_STRING_H"]=" 1"
1066D["HAVE_DLFCN_H"]=" 1"
1067D["LT_OBJDIR"]=" \".libs/\""
1068D["STDC_HEADERS"]=" 1"
1069D["HAVE_SYS_WAIT_H"]=" 1"
1070D["HAVE_ARPA_INET_H"]=" 1"
1071D["HAVE_FCNTL_H"]=" 1"
1072D["HAVE_NETINET_IN_H"]=" 1"
1073D["HAVE_STDLIB_H"]=" 1"
1074D["HAVE_STRING_H"]=" 1"
1075D["HAVE_SYS_SOCKET_H"]=" 1"
1076D["HAVE_SYS_TIME_H"]=" 1"
1077D["HAVE_UNISTD_H"]=" 1"
1078D["HAVE_SYS_SENDFILE_H"]=" 1"
1079D["HAVE_SYS_UIO_H"]=" 1"
1080D["HAVE_GETOPT_H"]=" 1"
1081D["HAVE_SYS_EPOLL_H"]=" 1"
1082D["HAVE_SYS_SELECT_H"]=" 1"
1083D["HAVE_POLL_H"]=" 1"
1084D["HAVE_SYS_POLL_H"]=" 1"
1085D["HAVE_SYS_MMAN_H"]=" 1"
1086D["HAVE_PWD_H"]=" 1"
1087D["HAVE_SYS_RESOURCE_H"]=" 1"
1088D["HAVE_SYS_UN_H"]=" 1"
1089D["HAVE_SYSLOG_H"]=" 1"
1090D["HAVE_SYS_PRCTL_H"]=" 1"
1091D["HAVE_STRUCT_TM_GMTOFF"]=" 1"
1092D["HAVE_STRUCT_SOCKADDR_STORAGE"]=" 1"
1093D["HAVE_SOCKLEN_T"]=" 1"
1094D["HAVE_FORK"]=" 1"
1095D["HAVE_VFORK"]=" 1"
1096D["HAVE_WORKING_VFORK"]=" 1"
1097D["HAVE_WORKING_FORK"]=" 1"
1098D["RETSIGTYPE"]=" void"
1099D["HAVE_STAT_EMPTY_STRING_BUG"]=" 1"
1100D["HAVE_STRFTIME"]=" 1"
1101D["HAVE_INET_PTON"]=" 1"
1102D["HAVE_LIBSMBCLIENT"]=" 1"
1103D["HAVE_LIBSMBCLIENT_H"]=" 1"
1104D["HAVE_DLFCN_H"]=" 1"
1105D["HAVE_LIBDL"]=" 1"
1106D["HAVE_DLFCN_H"]=" 1"
1107D["HAVE_OPENSSL_SSL_H"]=" 1"
1108D["HAVE_LIBSSL"]=" /**/"
1109D["HAVE_LIBPCRE"]=" 1"
1110D["HAVE_PCRE_H"]=" 1"
1111D["HAVE_LIBXML2"]=" 1"
1112D["HAVE_LIBXML_H"]=" 1"
1113D["HAVE_SQLITE3"]=" 1"
1114D["HAVE_SQLITE3_H"]=" 1"
1115D["HAVE_CRYPT_H"]=" 1"
1116D["HAVE_CRYPT_H"]=" 1"
1117D["HAVE_LIBCRYPT"]=" 1"
1118D["HAVE_DUP2"]=" 1"
1119D["HAVE_GETCWD"]=" 1"
1120D["HAVE_INET_NTOA"]=" 1"
1121D["HAVE_INET_NTOP"]=" 1"
1122D["HAVE_MEMSET"]=" 1"
1123D["HAVE_MMAP"]=" 1"
1124D["HAVE_MUNMAP"]=" 1"
1125D["HAVE_STRCHR"]=" 1"
1126D["HAVE_STRDUP"]=" 1"
1127D["HAVE_STRERROR"]=" 1"
1128D["HAVE_STRSTR"]=" 1"
1129D["HAVE_STRTOL"]=" 1"
1130D["HAVE_SENDFILE"]=" 1"
1131D["HAVE_GETOPT"]=" 1"
1132D["HAVE_SOCKET"]=" 1"
1133D["HAVE_LSTAT"]=" 1"
1134D["HAVE_GETHOSTBYNAME"]=" 1"
1135D["HAVE_POLL"]=" 1"
1136D["HAVE_EPOLL_CTL"]=" 1"
1137D["HAVE_GETRLIMIT"]=" 1"
1138D["HAVE_CHROOT"]=" 1"
1139D["HAVE_GETUID"]=" 1"
1140D["HAVE_SELECT"]=" 1"
1141D["HAVE_SIGNAL"]=" 1"
1142D["HAVE_PATHCONF"]=" 1"
1143D["HAVE_MADVISE"]=" 1"
1144D["HAVE_POSIX_FADVISE"]=" 1"
1145D["HAVE_WRITEV"]=" 1"
1146D["HAVE_SIGACTION"]=" 1"
1147D["HAVE_SENDFILE64"]=" 1"
1148D["HAVE_LOCALTIME_R"]=" 1"
1149D["HAVE_GMTIME_R"]=" 1"
1150D["SIZEOF_LONG"]=" 4"
1151D["SIZEOF_OFF_T"]=" 8"
1152D["HAVE_SENDFILE_BROKEN"]=" 1"
1153D["HAVE_IPV6"]=" 1"
1154D["LIGHTTPD_VERSION_ID"]=" (1 << 16 | 4 << 8 | 39)"
1155  for (key in D) D_is_set[key] = 1
1156  FS = ""
1157}
1158/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1159  line = $ 0
1160  split(line, arg, " ")
1161  if (arg[1] == "#") {
1162    defundef = arg[2]
1163    mac1 = arg[3]
1164  } else {
1165    defundef = substr(arg[1], 2)
1166    mac1 = arg[2]
1167  }
1168  split(mac1, mac2, "(") #)
1169  macro = mac2[1]
1170  prefix = substr(line, 1, index(line, defundef) - 1)
1171  if (D_is_set[macro]) {
1172    # Preserve the white space surrounding the "#".
1173    print prefix "define", macro P[macro] D[macro]
1174    next
1175  } else {
1176    # Replace #undef with comments.  This is necessary, for example,
1177    # in the case of _POSIX_SOURCE, which is predefined and required
1178    # on some systems where configure will not decide to define it.
1179    if (defundef == "undef") {
1180      print "/*", prefix defundef, macro, "*/"
1181      next
1182    }
1183  }
1184}
1185{ print }
1186_ACAWK
1187  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
1188fi # test -n "$CONFIG_HEADERS"
1189
1190
1191eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
1192shift
1193for ac_tag
1194do
1195  case $ac_tag in
1196  :[FHLC]) ac_mode=$ac_tag; continue;;
1197  esac
1198  case $ac_mode$ac_tag in
1199  :[FHL]*:*);;
1200  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
1201  :[FH]-) ac_tag=-:-;;
1202  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1203  esac
1204  ac_save_IFS=$IFS
1205  IFS=:
1206  set x $ac_tag
1207  IFS=$ac_save_IFS
1208  shift
1209  ac_file=$1
1210  shift
1211
1212  case $ac_mode in
1213  :L) ac_source=$1;;
1214  :[FH])
1215    ac_file_inputs=
1216    for ac_f
1217    do
1218      case $ac_f in
1219      -) ac_f="$tmp/stdin";;
1220      *) # Look for the file first in the build tree, then in the source tree
1221	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
1222	 # because $ac_f cannot contain `:'.
1223	 test -f "$ac_f" ||
1224	   case $ac_f in
1225	   [\\/$]*) false;;
1226	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1227	   esac ||
1228	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
1229      esac
1230      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1231      as_fn_append ac_file_inputs " '$ac_f'"
1232    done
1233
1234    # Let's still pretend it is `configure' which instantiates (i.e., don't
1235    # use $as_me), people would be surprised to read:
1236    #    /* config.h.  Generated by config.status.  */
1237    configure_input='Generated from '`
1238	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1239	`' by configure.'
1240    if test x"$ac_file" != x-; then
1241      configure_input="$ac_file.  $configure_input"
1242      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1243$as_echo "$as_me: creating $ac_file" >&6;}
1244    fi
1245    # Neutralize special characters interpreted by sed in replacement strings.
1246    case $configure_input in #(
1247    *\&* | *\|* | *\\* )
1248       ac_sed_conf_input=`$as_echo "$configure_input" |
1249       sed 's/[\\\\&|]/\\\\&/g'`;; #(
1250    *) ac_sed_conf_input=$configure_input;;
1251    esac
1252
1253    case $ac_tag in
1254    *:-:* | *:-) cat >"$tmp/stdin" \
1255      || as_fn_error $? "could not create $ac_file" "$LINENO" 5  ;;
1256    esac
1257    ;;
1258  esac
1259
1260  ac_dir=`$as_dirname -- "$ac_file" ||
1261$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1262	 X"$ac_file" : 'X\(//\)[^/]' \| \
1263	 X"$ac_file" : 'X\(//\)$' \| \
1264	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1265$as_echo X"$ac_file" |
1266    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1267	    s//\1/
1268	    q
1269	  }
1270	  /^X\(\/\/\)[^/].*/{
1271	    s//\1/
1272	    q
1273	  }
1274	  /^X\(\/\/\)$/{
1275	    s//\1/
1276	    q
1277	  }
1278	  /^X\(\/\).*/{
1279	    s//\1/
1280	    q
1281	  }
1282	  s/.*/./; q'`
1283  as_dir="$ac_dir"; as_fn_mkdir_p
1284  ac_builddir=.
1285
1286case "$ac_dir" in
1287.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1288*)
1289  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1290  # A ".." for each directory in $ac_dir_suffix.
1291  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1292  case $ac_top_builddir_sub in
1293  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1294  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1295  esac ;;
1296esac
1297ac_abs_top_builddir=$ac_pwd
1298ac_abs_builddir=$ac_pwd$ac_dir_suffix
1299# for backward compatibility:
1300ac_top_builddir=$ac_top_build_prefix
1301
1302case $srcdir in
1303  .)  # We are building in place.
1304    ac_srcdir=.
1305    ac_top_srcdir=$ac_top_builddir_sub
1306    ac_abs_top_srcdir=$ac_pwd ;;
1307  [\\/]* | ?:[\\/]* )  # Absolute name.
1308    ac_srcdir=$srcdir$ac_dir_suffix;
1309    ac_top_srcdir=$srcdir
1310    ac_abs_top_srcdir=$srcdir ;;
1311  *) # Relative name.
1312    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1313    ac_top_srcdir=$ac_top_build_prefix$srcdir
1314    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1315esac
1316ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1317
1318
1319  case $ac_mode in
1320  :F)
1321  #
1322  # CONFIG_FILE
1323  #
1324
1325  case $INSTALL in
1326  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1327  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1328  esac
1329  ac_MKDIR_P=$MKDIR_P
1330  case $MKDIR_P in
1331  [\\/$]* | ?:[\\/]* ) ;;
1332  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1333  esac
1334# If the template does not know about datarootdir, expand it.
1335# FIXME: This hack should be removed a few years after 2.60.
1336ac_datarootdir_hack=; ac_datarootdir_seen=
1337ac_sed_dataroot='
1338/datarootdir/ {
1339  p
1340  q
1341}
1342/@datadir@/p
1343/@docdir@/p
1344/@infodir@/p
1345/@localedir@/p
1346/@mandir@/p'
1347case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1348*datarootdir*) ac_datarootdir_seen=yes;;
1349*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1350  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1351$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1352  ac_datarootdir_hack='
1353  s&@datadir@&${datarootdir}&g
1354  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1355  s&@infodir@&${datarootdir}/info&g
1356  s&@localedir@&${datarootdir}/locale&g
1357  s&@mandir@&${datarootdir}/man&g
1358  s&\${datarootdir}&${prefix}/share&g' ;;
1359esac
1360ac_sed_extra="/^[	 ]*VPATH[	 ]*=[	 ]*/{
1361h
1362s///
1363s/^/:/
1364s/[	 ]*$/:/
1365s/:\$(srcdir):/:/g
1366s/:\${srcdir}:/:/g
1367s/:@srcdir@:/:/g
1368s/^:*//
1369s/:*$//
1370x
1371s/\(=[	 ]*\).*/\1/
1372G
1373s/\n//
1374s/^[^=]*=[	 ]*$//
1375}
1376
1377:t
1378/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1379s|@configure_input@|$ac_sed_conf_input|;t t
1380s&@top_builddir@&$ac_top_builddir_sub&;t t
1381s&@top_build_prefix@&$ac_top_build_prefix&;t t
1382s&@srcdir@&$ac_srcdir&;t t
1383s&@abs_srcdir@&$ac_abs_srcdir&;t t
1384s&@top_srcdir@&$ac_top_srcdir&;t t
1385s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1386s&@builddir@&$ac_builddir&;t t
1387s&@abs_builddir@&$ac_abs_builddir&;t t
1388s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1389s&@INSTALL@&$ac_INSTALL&;t t
1390s&@MKDIR_P@&$ac_MKDIR_P&;t t
1391$ac_datarootdir_hack
1392"
1393eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1394  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1395
1396test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1397  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1398  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1399  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1400which seems to be undefined.  Please make sure it is defined" >&5
1401$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1402which seems to be undefined.  Please make sure it is defined" >&2;}
1403
1404  rm -f "$tmp/stdin"
1405  case $ac_file in
1406  -) cat "$tmp/out" && rm -f "$tmp/out";;
1407  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1408  esac \
1409  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1410 ;;
1411  :H)
1412  #
1413  # CONFIG_HEADER
1414  #
1415  if test x"$ac_file" != x-; then
1416    {
1417      $as_echo "/* $configure_input  */" \
1418      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1419    } >"$tmp/config.h" \
1420      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1421    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1422      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1423$as_echo "$as_me: $ac_file is unchanged" >&6;}
1424    else
1425      rm -f "$ac_file"
1426      mv "$tmp/config.h" "$ac_file" \
1427	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
1428    fi
1429  else
1430    $as_echo "/* $configure_input  */" \
1431      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1432      || as_fn_error $? "could not create -" "$LINENO" 5
1433  fi
1434# Compute "$ac_file"'s index in $config_headers.
1435_am_arg="$ac_file"
1436_am_stamp_count=1
1437for _am_header in $config_headers :; do
1438  case $_am_header in
1439    $_am_arg | $_am_arg:* )
1440      break ;;
1441    * )
1442      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1443  esac
1444done
1445echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1446$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1447	 X"$_am_arg" : 'X\(//\)[^/]' \| \
1448	 X"$_am_arg" : 'X\(//\)$' \| \
1449	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1450$as_echo X"$_am_arg" |
1451    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1452	    s//\1/
1453	    q
1454	  }
1455	  /^X\(\/\/\)[^/].*/{
1456	    s//\1/
1457	    q
1458	  }
1459	  /^X\(\/\/\)$/{
1460	    s//\1/
1461	    q
1462	  }
1463	  /^X\(\/\).*/{
1464	    s//\1/
1465	    q
1466	  }
1467	  s/.*/./; q'`/stamp-h$_am_stamp_count
1468 ;;
1469
1470  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1471$as_echo "$as_me: executing $ac_file commands" >&6;}
1472 ;;
1473  esac
1474
1475
1476  case $ac_file$ac_mode in
1477    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1478  # Autoconf 2.62 quotes --file arguments for eval, but not when files
1479  # are listed without --file.  Let's play safe and only enable the eval
1480  # if we detect the quoting.
1481  case $CONFIG_FILES in
1482  *\'*) eval set x "$CONFIG_FILES" ;;
1483  *)   set x $CONFIG_FILES ;;
1484  esac
1485  shift
1486  for mf
1487  do
1488    # Strip MF so we end up with the name of the file.
1489    mf=`echo "$mf" | sed -e 's/:.*$//'`
1490    # Check whether this is an Automake generated Makefile or not.
1491    # We used to match only the files named `Makefile.in', but
1492    # some people rename them; so instead we look at the file content.
1493    # Grep'ing the first line is not enough: some people post-process
1494    # each Makefile.in and add a new line on top of each file to say so.
1495    # Grep'ing the whole file is not good either: AIX grep has a line
1496    # limit of 2048, but all sed's we know have understand at least 4000.
1497    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1498      dirpart=`$as_dirname -- "$mf" ||
1499$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1500	 X"$mf" : 'X\(//\)[^/]' \| \
1501	 X"$mf" : 'X\(//\)$' \| \
1502	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1503$as_echo X"$mf" |
1504    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1505	    s//\1/
1506	    q
1507	  }
1508	  /^X\(\/\/\)[^/].*/{
1509	    s//\1/
1510	    q
1511	  }
1512	  /^X\(\/\/\)$/{
1513	    s//\1/
1514	    q
1515	  }
1516	  /^X\(\/\).*/{
1517	    s//\1/
1518	    q
1519	  }
1520	  s/.*/./; q'`
1521    else
1522      continue
1523    fi
1524    # Extract the definition of DEPDIR, am__include, and am__quote
1525    # from the Makefile without running `make'.
1526    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1527    test -z "$DEPDIR" && continue
1528    am__include=`sed -n 's/^am__include = //p' < "$mf"`
1529    test -z "am__include" && continue
1530    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1531    # When using ansi2knr, U may be empty or an underscore; expand it
1532    U=`sed -n 's/^U = //p' < "$mf"`
1533    # Find all dependency output files, they are included files with
1534    # $(DEPDIR) in their names.  We invoke sed twice because it is the
1535    # simplest approach to changing $(DEPDIR) to its actual value in the
1536    # expansion.
1537    for file in `sed -n "
1538      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1539	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1540      # Make sure the directory exists.
1541      test -f "$dirpart/$file" && continue
1542      fdir=`$as_dirname -- "$file" ||
1543$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1544	 X"$file" : 'X\(//\)[^/]' \| \
1545	 X"$file" : 'X\(//\)$' \| \
1546	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1547$as_echo X"$file" |
1548    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1549	    s//\1/
1550	    q
1551	  }
1552	  /^X\(\/\/\)[^/].*/{
1553	    s//\1/
1554	    q
1555	  }
1556	  /^X\(\/\/\)$/{
1557	    s//\1/
1558	    q
1559	  }
1560	  /^X\(\/\).*/{
1561	    s//\1/
1562	    q
1563	  }
1564	  s/.*/./; q'`
1565      as_dir=$dirpart/$fdir; as_fn_mkdir_p
1566      # echo "creating $dirpart/$file"
1567      echo '# dummy' > "$dirpart/$file"
1568    done
1569  done
1570}
1571 ;;
1572    "libtool":C)
1573
1574    # See if we are running on zsh, and set the options which allow our
1575    # commands through without removal of \ escapes.
1576    if test -n "${ZSH_VERSION+set}" ; then
1577      setopt NO_GLOB_SUBST
1578    fi
1579
1580    cfgfile="${ofile}T"
1581    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1582    $RM "$cfgfile"
1583
1584    cat <<_LT_EOF >> "$cfgfile"
1585#! $SHELL
1586
1587# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1588# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1589# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1590# NOTE: Changes made to this file will be lost: look at ltmain.sh.
1591#
1592#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
1593#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1594#                 Foundation, Inc.
1595#   Written by Gordon Matzigkeit, 1996
1596#
1597#   This file is part of GNU Libtool.
1598#
1599# GNU Libtool is free software; you can redistribute it and/or
1600# modify it under the terms of the GNU General Public License as
1601# published by the Free Software Foundation; either version 2 of
1602# the License, or (at your option) any later version.
1603#
1604# As a special exception to the GNU General Public License,
1605# if you distribute this file as part of a program or library that
1606# is built using GNU Libtool, you may include this file under the
1607# same distribution terms that you use for the rest of that program.
1608#
1609# GNU Libtool is distributed in the hope that it will be useful,
1610# but WITHOUT ANY WARRANTY; without even the implied warranty of
1611# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1612# GNU General Public License for more details.
1613#
1614# You should have received a copy of the GNU General Public License
1615# along with GNU Libtool; see the file COPYING.  If not, a copy
1616# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
1617# obtained by writing to the Free Software Foundation, Inc.,
1618# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1619
1620
1621# The names of the tagged configurations supported by this script.
1622available_tags=""
1623
1624# ### BEGIN LIBTOOL CONFIG
1625
1626# A sed program that does not truncate output.
1627SED=$lt_SED
1628
1629# Sed that helps us avoid accidentally triggering echo(1) options like -n.
1630Xsed="\$SED -e 1s/^X//"
1631
1632# A grep program that handles long lines.
1633GREP=$lt_GREP
1634
1635# An ERE matcher.
1636EGREP=$lt_EGREP
1637
1638# A literal string matcher.
1639FGREP=$lt_FGREP
1640
1641# Shell to use when invoking shell scripts.
1642SHELL=$lt_SHELL
1643
1644# An echo program that protects backslashes.
1645ECHO=$lt_ECHO
1646
1647# Whether or not to build static libraries.
1648build_old_libs=$enable_static
1649
1650# Whether or not to build shared libraries.
1651build_libtool_libs=$enable_shared
1652
1653# Which release of libtool.m4 was used?
1654macro_version=$macro_version
1655macro_revision=$macro_revision
1656
1657# What type of objects to build.
1658pic_mode=$pic_mode
1659
1660# Whether or not to optimize for fast installation.
1661fast_install=$enable_fast_install
1662
1663# The PATH separator for the build system.
1664PATH_SEPARATOR=$lt_PATH_SEPARATOR
1665
1666# The host system.
1667host_alias=$host_alias
1668host=$host
1669host_os=$host_os
1670
1671# The build system.
1672build_alias=$build_alias
1673build=$build
1674build_os=$build_os
1675
1676# A BSD- or MS-compatible name lister.
1677NM=$lt_NM
1678
1679# Whether we need soft or hard links.
1680LN_S=$lt_LN_S
1681
1682# What is the maximum length of a command?
1683max_cmd_len=$max_cmd_len
1684
1685# Object file suffix (normally "o").
1686objext=$ac_objext
1687
1688# Executable file suffix (normally "").
1689exeext=$exeext
1690
1691# whether the shell understands "unset".
1692lt_unset=$lt_unset
1693
1694# turn spaces into newlines.
1695SP2NL=$lt_lt_SP2NL
1696
1697# turn newlines into spaces.
1698NL2SP=$lt_lt_NL2SP
1699
1700# convert \$build file names to \$host format.
1701to_host_file_cmd=$lt_cv_to_host_file_cmd
1702
1703# convert \$build files to toolchain format.
1704to_tool_file_cmd=$lt_cv_to_tool_file_cmd
1705
1706# An object symbol dumper.
1707OBJDUMP=$lt_OBJDUMP
1708
1709# Method to check whether dependent libraries are shared objects.
1710deplibs_check_method=$lt_deplibs_check_method
1711
1712# Command to use when deplibs_check_method = "file_magic".
1713file_magic_cmd=$lt_file_magic_cmd
1714
1715# How to find potential files when deplibs_check_method = "file_magic".
1716file_magic_glob=$lt_file_magic_glob
1717
1718# Find potential files using nocaseglob when deplibs_check_method = "file_magic".
1719want_nocaseglob=$lt_want_nocaseglob
1720
1721# DLL creation program.
1722DLLTOOL=$lt_DLLTOOL
1723
1724# Command to associate shared and link libraries.
1725sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
1726
1727# The archiver.
1728AR=$lt_AR
1729
1730# Flags to create an archive.
1731AR_FLAGS=$lt_AR_FLAGS
1732
1733# How to feed a file listing to the archiver.
1734archiver_list_spec=$lt_archiver_list_spec
1735
1736# A symbol stripping program.
1737STRIP=$lt_STRIP
1738
1739# Commands used to install an old-style archive.
1740RANLIB=$lt_RANLIB
1741old_postinstall_cmds=$lt_old_postinstall_cmds
1742old_postuninstall_cmds=$lt_old_postuninstall_cmds
1743
1744# Whether to use a lock for old archive extraction.
1745lock_old_archive_extraction=$lock_old_archive_extraction
1746
1747# A C compiler.
1748LTCC=$lt_CC
1749
1750# LTCC compiler flags.
1751LTCFLAGS=$lt_CFLAGS
1752
1753# Take the output of nm and produce a listing of raw symbols and C names.
1754global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
1755
1756# Transform the output of nm in a proper C declaration.
1757global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
1758
1759# Transform the output of nm in a C name address pair.
1760global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
1761
1762# Transform the output of nm in a C name address pair when lib prefix is needed.
1763global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
1764
1765# Specify filename containing input files for \$NM.
1766nm_file_list_spec=$lt_nm_file_list_spec
1767
1768# The root where to search for dependent libraries,and in which our libraries should be installed.
1769lt_sysroot=$lt_sysroot
1770
1771# The name of the directory that contains temporary libtool files.
1772objdir=$objdir
1773
1774# Used to examine libraries when file_magic_cmd begins with "file".
1775MAGIC_CMD=$MAGIC_CMD
1776
1777# Must we lock files when doing compilation?
1778need_locks=$lt_need_locks
1779
1780# Manifest tool.
1781MANIFEST_TOOL=$lt_MANIFEST_TOOL
1782
1783# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
1784DSYMUTIL=$lt_DSYMUTIL
1785
1786# Tool to change global to local symbols on Mac OS X.
1787NMEDIT=$lt_NMEDIT
1788
1789# Tool to manipulate fat objects and archives on Mac OS X.
1790LIPO=$lt_LIPO
1791
1792# ldd/readelf like tool for Mach-O binaries on Mac OS X.
1793OTOOL=$lt_OTOOL
1794
1795# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
1796OTOOL64=$lt_OTOOL64
1797
1798# Old archive suffix (normally "a").
1799libext=$libext
1800
1801# Shared library suffix (normally ".so").
1802shrext_cmds=$lt_shrext_cmds
1803
1804# The commands to extract the exported symbol list from a shared archive.
1805extract_expsyms_cmds=$lt_extract_expsyms_cmds
1806
1807# Variables whose values should be saved in libtool wrapper scripts and
1808# restored at link time.
1809variables_saved_for_relink=$lt_variables_saved_for_relink
1810
1811# Do we need the "lib" prefix for modules?
1812need_lib_prefix=$need_lib_prefix
1813
1814# Do we need a version for libraries?
1815need_version=$need_version
1816
1817# Library versioning type.
1818version_type=$version_type
1819
1820# Shared library runtime path variable.
1821runpath_var=$runpath_var
1822
1823# Shared library path variable.
1824shlibpath_var=$shlibpath_var
1825
1826# Is shlibpath searched before the hard-coded library search path?
1827shlibpath_overrides_runpath=$shlibpath_overrides_runpath
1828
1829# Format of library name prefix.
1830libname_spec=$lt_libname_spec
1831
1832# List of archive names.  First name is the real one, the rest are links.
1833# The last name is the one that the linker finds with -lNAME
1834library_names_spec=$lt_library_names_spec
1835
1836# The coded name of the library, if different from the real name.
1837soname_spec=$lt_soname_spec
1838
1839# Permission mode override for installation of shared libraries.
1840install_override_mode=$lt_install_override_mode
1841
1842# Command to use after installation of a shared archive.
1843postinstall_cmds=$lt_postinstall_cmds
1844
1845# Command to use after uninstallation of a shared archive.
1846postuninstall_cmds=$lt_postuninstall_cmds
1847
1848# Commands used to finish a libtool library installation in a directory.
1849finish_cmds=$lt_finish_cmds
1850
1851# As "finish_cmds", except a single script fragment to be evaled but
1852# not shown.
1853finish_eval=$lt_finish_eval
1854
1855# Whether we should hardcode library paths into libraries.
1856hardcode_into_libs=$hardcode_into_libs
1857
1858# Compile-time system search path for libraries.
1859sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
1860
1861# Run-time system search path for libraries.
1862sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
1863
1864# Whether dlopen is supported.
1865dlopen_support=$enable_dlopen
1866
1867# Whether dlopen of programs is supported.
1868dlopen_self=$enable_dlopen_self
1869
1870# Whether dlopen of statically linked programs is supported.
1871dlopen_self_static=$enable_dlopen_self_static
1872
1873# Commands to strip libraries.
1874old_striplib=$lt_old_striplib
1875striplib=$lt_striplib
1876
1877
1878# The linker used to build libraries.
1879LD=$lt_LD
1880
1881# How to create reloadable object files.
1882reload_flag=$lt_reload_flag
1883reload_cmds=$lt_reload_cmds
1884
1885# Commands used to build an old-style archive.
1886old_archive_cmds=$lt_old_archive_cmds
1887
1888# A language specific compiler.
1889CC=$lt_compiler
1890
1891# Is the compiler the GNU compiler?
1892with_gcc=$GCC
1893
1894# Compiler flag to turn off builtin functions.
1895no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
1896
1897# Additional compiler flags for building library objects.
1898pic_flag=$lt_lt_prog_compiler_pic
1899
1900# How to pass a linker flag through the compiler.
1901wl=$lt_lt_prog_compiler_wl
1902
1903# Compiler flag to prevent dynamic linking.
1904link_static_flag=$lt_lt_prog_compiler_static
1905
1906# Does compiler simultaneously support -c and -o options?
1907compiler_c_o=$lt_lt_cv_prog_compiler_c_o
1908
1909# Whether or not to add -lc for building shared libraries.
1910build_libtool_need_lc=$archive_cmds_need_lc
1911
1912# Whether or not to disallow shared libs when runtime libs are static.
1913allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
1914
1915# Compiler flag to allow reflexive dlopens.
1916export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
1917
1918# Compiler flag to generate shared objects directly from archives.
1919whole_archive_flag_spec=$lt_whole_archive_flag_spec
1920
1921# Whether the compiler copes with passing no objects directly.
1922compiler_needs_object=$lt_compiler_needs_object
1923
1924# Create an old-style archive from a shared archive.
1925old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
1926
1927# Create a temporary old-style archive to link instead of a shared archive.
1928old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
1929
1930# Commands used to build a shared archive.
1931archive_cmds=$lt_archive_cmds
1932archive_expsym_cmds=$lt_archive_expsym_cmds
1933
1934# Commands used to build a loadable module if different from building
1935# a shared archive.
1936module_cmds=$lt_module_cmds
1937module_expsym_cmds=$lt_module_expsym_cmds
1938
1939# Whether we are building with GNU ld or not.
1940with_gnu_ld=$lt_with_gnu_ld
1941
1942# Flag that allows shared libraries with undefined symbols to be built.
1943allow_undefined_flag=$lt_allow_undefined_flag
1944
1945# Flag that enforces no undefined symbols.
1946no_undefined_flag=$lt_no_undefined_flag
1947
1948# Flag to hardcode \$libdir into a binary during linking.
1949# This must work even if \$libdir does not exist
1950hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
1951
1952# Whether we need a single "-rpath" flag with a separated argument.
1953hardcode_libdir_separator=$lt_hardcode_libdir_separator
1954
1955# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1956# DIR into the resulting binary.
1957hardcode_direct=$hardcode_direct
1958
1959# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1960# DIR into the resulting binary and the resulting library dependency is
1961# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
1962# library is relocated.
1963hardcode_direct_absolute=$hardcode_direct_absolute
1964
1965# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
1966# into the resulting binary.
1967hardcode_minus_L=$hardcode_minus_L
1968
1969# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
1970# into the resulting binary.
1971hardcode_shlibpath_var=$hardcode_shlibpath_var
1972
1973# Set to "yes" if building a shared library automatically hardcodes DIR
1974# into the library and all subsequent libraries and executables linked
1975# against it.
1976hardcode_automatic=$hardcode_automatic
1977
1978# Set to yes if linker adds runtime paths of dependent libraries
1979# to runtime path list.
1980inherit_rpath=$inherit_rpath
1981
1982# Whether libtool must link a program against all its dependency libraries.
1983link_all_deplibs=$link_all_deplibs
1984
1985# Set to "yes" if exported symbols are required.
1986always_export_symbols=$always_export_symbols
1987
1988# The commands to list exported symbols.
1989export_symbols_cmds=$lt_export_symbols_cmds
1990
1991# Symbols that should not be listed in the preloaded symbols.
1992exclude_expsyms=$lt_exclude_expsyms
1993
1994# Symbols that must always be exported.
1995include_expsyms=$lt_include_expsyms
1996
1997# Commands necessary for linking programs (against libraries) with templates.
1998prelink_cmds=$lt_prelink_cmds
1999
2000# Commands necessary for finishing linking programs.
2001postlink_cmds=$lt_postlink_cmds
2002
2003# Specify filename containing input files.
2004file_list_spec=$lt_file_list_spec
2005
2006# How to hardcode a shared library path into an executable.
2007hardcode_action=$hardcode_action
2008
2009# ### END LIBTOOL CONFIG
2010
2011_LT_EOF
2012
2013  case $host_os in
2014  aix3*)
2015    cat <<\_LT_EOF >> "$cfgfile"
2016# AIX sometimes has problems with the GCC collect2 program.  For some
2017# reason, if we set the COLLECT_NAMES environment variable, the problems
2018# vanish in a puff of smoke.
2019if test "X${COLLECT_NAMES+set}" != Xset; then
2020  COLLECT_NAMES=
2021  export COLLECT_NAMES
2022fi
2023_LT_EOF
2024    ;;
2025  esac
2026
2027
2028ltmain="$ac_aux_dir/ltmain.sh"
2029
2030
2031  # We use sed instead of cat because bash on DJGPP gets confused if
2032  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
2033  # text mode, it properly converts lines to CR/LF.  This bash problem
2034  # is reportedly fixed, but why not run on old versions too?
2035  sed '$q' "$ltmain" >> "$cfgfile" \
2036     || (rm -f "$cfgfile"; exit 1)
2037
2038  if test x"$xsi_shell" = xyes; then
2039  sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
2040func_dirname ()\
2041{\
2042\    case ${1} in\
2043\      */*) func_dirname_result="${1%/*}${2}" ;;\
2044\      *  ) func_dirname_result="${3}" ;;\
2045\    esac\
2046} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
2047  && mv -f "$cfgfile.tmp" "$cfgfile" \
2048    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2049test 0 -eq $? || _lt_function_replace_fail=:
2050
2051
2052  sed -e '/^func_basename ()$/,/^} # func_basename /c\
2053func_basename ()\
2054{\
2055\    func_basename_result="${1##*/}"\
2056} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
2057  && mv -f "$cfgfile.tmp" "$cfgfile" \
2058    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2059test 0 -eq $? || _lt_function_replace_fail=:
2060
2061
2062  sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
2063func_dirname_and_basename ()\
2064{\
2065\    case ${1} in\
2066\      */*) func_dirname_result="${1%/*}${2}" ;;\
2067\      *  ) func_dirname_result="${3}" ;;\
2068\    esac\
2069\    func_basename_result="${1##*/}"\
2070} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
2071  && mv -f "$cfgfile.tmp" "$cfgfile" \
2072    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2073test 0 -eq $? || _lt_function_replace_fail=:
2074
2075
2076  sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
2077func_stripname ()\
2078{\
2079\    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
2080\    # positional parameters, so assign one to ordinary parameter first.\
2081\    func_stripname_result=${3}\
2082\    func_stripname_result=${func_stripname_result#"${1}"}\
2083\    func_stripname_result=${func_stripname_result%"${2}"}\
2084} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
2085  && mv -f "$cfgfile.tmp" "$cfgfile" \
2086    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2087test 0 -eq $? || _lt_function_replace_fail=:
2088
2089
2090  sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
2091func_split_long_opt ()\
2092{\
2093\    func_split_long_opt_name=${1%%=*}\
2094\    func_split_long_opt_arg=${1#*=}\
2095} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
2096  && mv -f "$cfgfile.tmp" "$cfgfile" \
2097    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2098test 0 -eq $? || _lt_function_replace_fail=:
2099
2100
2101  sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
2102func_split_short_opt ()\
2103{\
2104\    func_split_short_opt_arg=${1#??}\
2105\    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
2106} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
2107  && mv -f "$cfgfile.tmp" "$cfgfile" \
2108    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2109test 0 -eq $? || _lt_function_replace_fail=:
2110
2111
2112  sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
2113func_lo2o ()\
2114{\
2115\    case ${1} in\
2116\      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
2117\      *)    func_lo2o_result=${1} ;;\
2118\    esac\
2119} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
2120  && mv -f "$cfgfile.tmp" "$cfgfile" \
2121    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2122test 0 -eq $? || _lt_function_replace_fail=:
2123
2124
2125  sed -e '/^func_xform ()$/,/^} # func_xform /c\
2126func_xform ()\
2127{\
2128    func_xform_result=${1%.*}.lo\
2129} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
2130  && mv -f "$cfgfile.tmp" "$cfgfile" \
2131    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2132test 0 -eq $? || _lt_function_replace_fail=:
2133
2134
2135  sed -e '/^func_arith ()$/,/^} # func_arith /c\
2136func_arith ()\
2137{\
2138    func_arith_result=$(( $* ))\
2139} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
2140  && mv -f "$cfgfile.tmp" "$cfgfile" \
2141    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2142test 0 -eq $? || _lt_function_replace_fail=:
2143
2144
2145  sed -e '/^func_len ()$/,/^} # func_len /c\
2146func_len ()\
2147{\
2148    func_len_result=${#1}\
2149} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
2150  && mv -f "$cfgfile.tmp" "$cfgfile" \
2151    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2152test 0 -eq $? || _lt_function_replace_fail=:
2153
2154fi
2155
2156if test x"$lt_shell_append" = xyes; then
2157  sed -e '/^func_append ()$/,/^} # func_append /c\
2158func_append ()\
2159{\
2160    eval "${1}+=\\${2}"\
2161} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
2162  && mv -f "$cfgfile.tmp" "$cfgfile" \
2163    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2164test 0 -eq $? || _lt_function_replace_fail=:
2165
2166
2167  sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
2168func_append_quoted ()\
2169{\
2170\    func_quote_for_eval "${2}"\
2171\    eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
2172} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
2173  && mv -f "$cfgfile.tmp" "$cfgfile" \
2174    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2175test 0 -eq $? || _lt_function_replace_fail=:
2176
2177
2178  # Save a `func_append' function call where possible by direct use of '+='
2179  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
2180    && mv -f "$cfgfile.tmp" "$cfgfile" \
2181      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2182  test 0 -eq $? || _lt_function_replace_fail=:
2183else
2184  # Save a `func_append' function call even when '+=' is not available
2185  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
2186    && mv -f "$cfgfile.tmp" "$cfgfile" \
2187      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2188  test 0 -eq $? || _lt_function_replace_fail=:
2189fi
2190
2191if test x"$_lt_function_replace_fail" = x":"; then
2192  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
2193$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
2194fi
2195
2196
2197   mv -f "$cfgfile" "$ofile" ||
2198    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
2199  chmod +x "$ofile"
2200
2201 ;;
2202
2203  esac
2204done # for ac_tag
2205
2206
2207as_fn_exit 0
2208