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
75
76# IFS
77# We need space, tab and new line, in precisely that order.  Quoting is
78# there to prevent editors from complaining about space-tab.
79# (If _AS_PATH_WALK were called with IFS unset, it would disable word
80# splitting by setting IFS to empty value.)
81IFS=" ""	$as_nl"
82
83# Find who we are.  Look in the path if we contain no directory separator.
84case $0 in #((
85  *[\\/]* ) as_myself=$0 ;;
86  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
87for as_dir in $PATH
88do
89  IFS=$as_save_IFS
90  test -z "$as_dir" && as_dir=.
91    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
92  done
93IFS=$as_save_IFS
94
95     ;;
96esac
97# We did not find ourselves, most probably we were run as `sh COMMAND'
98# in which case we are not to be found in the path.
99if test "x$as_myself" = x; then
100  as_myself=$0
101fi
102if test ! -f "$as_myself"; then
103  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
104  exit 1
105fi
106
107# Unset variables that we do not need and which cause bugs (e.g. in
108# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
109# suppresses any "Segmentation fault" message there.  '((' could
110# trigger a bug in pdksh 5.2.14.
111for as_var in BASH_ENV ENV MAIL MAILPATH
112do eval test x\${$as_var+set} = xset \
113  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
114done
115PS1='$ '
116PS2='> '
117PS4='+ '
118
119# NLS nuisances.
120LC_ALL=C
121export LC_ALL
122LANGUAGE=C
123export LANGUAGE
124
125# CDPATH.
126(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
127
128
129# as_fn_error ERROR [LINENO LOG_FD]
130# ---------------------------------
131# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
132# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
133# script with status $?, using 1 if that was 0.
134as_fn_error ()
135{
136  as_status=$?; test $as_status -eq 0 && as_status=1
137  if test "$3"; then
138    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
139    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
140  fi
141  $as_echo "$as_me: error: $1" >&2
142  as_fn_exit $as_status
143} # as_fn_error
144
145
146# as_fn_set_status STATUS
147# -----------------------
148# Set $? to STATUS, without forking.
149as_fn_set_status ()
150{
151  return $1
152} # as_fn_set_status
153
154# as_fn_exit STATUS
155# -----------------
156# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
157as_fn_exit ()
158{
159  set +e
160  as_fn_set_status $1
161  exit $1
162} # as_fn_exit
163
164# as_fn_unset VAR
165# ---------------
166# Portably unset VAR.
167as_fn_unset ()
168{
169  { eval $1=; unset $1;}
170}
171as_unset=as_fn_unset
172# as_fn_append VAR VALUE
173# ----------------------
174# Append the text in VALUE to the end of the definition contained in VAR. Take
175# advantage of any shell optimizations that allow amortized linear growth over
176# repeated appends, instead of the typical quadratic growth present in naive
177# implementations.
178if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
179  eval 'as_fn_append ()
180  {
181    eval $1+=\$2
182  }'
183else
184  as_fn_append ()
185  {
186    eval $1=\$$1\$2
187  }
188fi # as_fn_append
189
190# as_fn_arith ARG...
191# ------------------
192# Perform arithmetic evaluation on the ARGs, and store the result in the
193# global $as_val. Take advantage of shells that can avoid forks. The arguments
194# must be portable across $(()) and expr.
195if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
196  eval 'as_fn_arith ()
197  {
198    as_val=$(( $* ))
199  }'
200else
201  as_fn_arith ()
202  {
203    as_val=`expr "$@" || test $? -eq 1`
204  }
205fi # as_fn_arith
206
207
208if expr a : '\(a\)' >/dev/null 2>&1 &&
209   test "X`expr 00001 : '.*\(...\)'`" = X001; then
210  as_expr=expr
211else
212  as_expr=false
213fi
214
215if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
216  as_basename=basename
217else
218  as_basename=false
219fi
220
221if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
222  as_dirname=dirname
223else
224  as_dirname=false
225fi
226
227as_me=`$as_basename -- "$0" ||
228$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
229	 X"$0" : 'X\(//\)$' \| \
230	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
231$as_echo X/"$0" |
232    sed '/^.*\/\([^/][^/]*\)\/*$/{
233	    s//\1/
234	    q
235	  }
236	  /^X\/\(\/\/\)$/{
237	    s//\1/
238	    q
239	  }
240	  /^X\/\(\/\).*/{
241	    s//\1/
242	    q
243	  }
244	  s/.*/./; q'`
245
246# Avoid depending upon Character Ranges.
247as_cr_letters='abcdefghijklmnopqrstuvwxyz'
248as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
249as_cr_Letters=$as_cr_letters$as_cr_LETTERS
250as_cr_digits='0123456789'
251as_cr_alnum=$as_cr_Letters$as_cr_digits
252
253ECHO_C= ECHO_N= ECHO_T=
254case `echo -n x` in #(((((
255-n*)
256  case `echo 'xy\c'` in
257  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
258  xy)  ECHO_C='\c';;
259  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
260       ECHO_T='	';;
261  esac;;
262*)
263  ECHO_N='-n';;
264esac
265
266rm -f conf$$ conf$$.exe conf$$.file
267if test -d conf$$.dir; then
268  rm -f conf$$.dir/conf$$.file
269else
270  rm -f conf$$.dir
271  mkdir conf$$.dir 2>/dev/null
272fi
273if (echo >conf$$.file) 2>/dev/null; then
274  if ln -s conf$$.file conf$$ 2>/dev/null; then
275    as_ln_s='ln -s'
276    # ... but there are two gotchas:
277    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
278    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
279    # In both cases, we have to default to `cp -p'.
280    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
281      as_ln_s='cp -p'
282  elif ln conf$$.file conf$$ 2>/dev/null; then
283    as_ln_s=ln
284  else
285    as_ln_s='cp -p'
286  fi
287else
288  as_ln_s='cp -p'
289fi
290rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
291rmdir conf$$.dir 2>/dev/null
292
293
294# as_fn_mkdir_p
295# -------------
296# Create "$as_dir" as a directory, including parents if necessary.
297as_fn_mkdir_p ()
298{
299
300  case $as_dir in #(
301  -*) as_dir=./$as_dir;;
302  esac
303  test -d "$as_dir" || eval $as_mkdir_p || {
304    as_dirs=
305    while :; do
306      case $as_dir in #(
307      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
308      *) as_qdir=$as_dir;;
309      esac
310      as_dirs="'$as_qdir' $as_dirs"
311      as_dir=`$as_dirname -- "$as_dir" ||
312$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
313	 X"$as_dir" : 'X\(//\)[^/]' \| \
314	 X"$as_dir" : 'X\(//\)$' \| \
315	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
316$as_echo X"$as_dir" |
317    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
318	    s//\1/
319	    q
320	  }
321	  /^X\(\/\/\)[^/].*/{
322	    s//\1/
323	    q
324	  }
325	  /^X\(\/\/\)$/{
326	    s//\1/
327	    q
328	  }
329	  /^X\(\/\).*/{
330	    s//\1/
331	    q
332	  }
333	  s/.*/./; q'`
334      test -d "$as_dir" && break
335    done
336    test -z "$as_dirs" || eval "mkdir $as_dirs"
337  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
338
339
340} # as_fn_mkdir_p
341if mkdir -p . 2>/dev/null; then
342  as_mkdir_p='mkdir -p "$as_dir"'
343else
344  test -d ./-p && rmdir ./-p
345  as_mkdir_p=false
346fi
347
348if test -x / >/dev/null 2>&1; then
349  as_test_x='test -x'
350else
351  if ls -dL / >/dev/null 2>&1; then
352    as_ls_L_option=L
353  else
354    as_ls_L_option=
355  fi
356  as_test_x='
357    eval sh -c '\''
358      if test -d "$1"; then
359	test -d "$1/.";
360      else
361	case $1 in #(
362	-*)set "./$1";;
363	esac;
364	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
365	???[sx]*):;;*)false;;esac;fi
366    '\'' sh
367  '
368fi
369as_executable_p=$as_test_x
370
371# Sed expression to map a string onto a valid CPP name.
372as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
373
374# Sed expression to map a string onto a valid variable name.
375as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
376
377
378exec 6>&1
379## ----------------------------------- ##
380## Main body of $CONFIG_STATUS script. ##
381## ----------------------------------- ##
382# Save the log message, to keep $0 and so on meaningful, and to
383# report actual input values of CONFIG_FILES etc. instead of their
384# values after options handling.
385ac_log="
386This file was extended by curl $as_me -, which was
387generated by GNU Autoconf 2.64.  Invocation command line was
388
389  CONFIG_FILES    = $CONFIG_FILES
390  CONFIG_HEADERS  = $CONFIG_HEADERS
391  CONFIG_LINKS    = $CONFIG_LINKS
392  CONFIG_COMMANDS = $CONFIG_COMMANDS
393  $ $0 $@
394
395on `(hostname || uname -n) 2>/dev/null | sed 1q`
396"
397
398# Files that config.status was made for.
399config_files=" Makefile docs/Makefile docs/examples/Makefile docs/libcurl/Makefile include/Makefile include/curl/Makefile src/Makefile lib/Makefile tests/Makefile tests/data/Makefile tests/server/Makefile tests/libtest/Makefile tests/unit/Makefile packages/Makefile packages/Win32/Makefile packages/Win32/cygwin/Makefile packages/Linux/Makefile packages/Linux/RPM/Makefile packages/Linux/RPM/curl.spec packages/Linux/RPM/curl-ssl.spec packages/Solaris/Makefile packages/EPM/curl.list packages/EPM/Makefile packages/vms/Makefile packages/AIX/Makefile packages/AIX/RPM/Makefile packages/AIX/RPM/curl.spec curl-config libcurl.pc"
400config_headers=" lib/curl_config.h src/curl_config.h include/curl/curlbuild.h"
401config_commands=" depfiles libtool"
402
403ac_cs_usage="\
404\`$as_me' instantiates files and other configuration actions
405from templates according to the current configuration.  Unless the files
406and actions are specified as TAGs, all are instantiated by default.
407
408Usage: $0 [OPTION]... [TAG]...
409
410  -h, --help       print this help, then exit
411  -V, --version    print version number and configuration settings, then exit
412  -q, --quiet, --silent
413                   do not print progress messages
414  -d, --debug      don't remove temporary files
415      --recheck    update $as_me by reconfiguring in the same conditions
416      --file=FILE[:TEMPLATE]
417                   instantiate the configuration file FILE
418      --header=FILE[:TEMPLATE]
419                   instantiate the configuration header FILE
420
421Configuration files:
422$config_files
423
424Configuration headers:
425$config_headers
426
427Configuration commands:
428$config_commands
429
430Report bugs to <a suitable curl mailing list: http://curl.haxx.se/mail/>."
431
432ac_cs_version="\
433curl config.status -
434configured by ./configure, generated by GNU Autoconf 2.64,
435  with options \"'--target=mipsel-linux' '--host=mipsel-linux' '--build=' '--prefix=/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/tmp' '--with-ssl' '--exec-prefix=' '--disable-manual' '--disable-proxy' '--without-zlib' '--disable-cookies' '--disable-ipv6' '--disable-shared' '--disable-dict' '--disable-file' '--disable-ftp' '--disable-gopher' '--disable-imap' '--disable-pop3' '--disable-smtp' '--disable-telnet' '--disable-tftp' '--disable-rtsp' 'build_alias=' 'host_alias=mipsel-linux' 'target_alias=mipsel-linux' 'LDFLAGS=-L/../../ap/gpl/openssl/tmp/usr/local/ssl/lib' 'CPPFLAGS=-I/../../ap/gpl/openssl/tmp/usr/local/ssl/include -I/../../ap/gpl/openssl/tmp/usr/local/ssl/include/openssl'\"
436
437Copyright (C) 2009 Free Software Foundation, Inc.
438This config.status script is free software; the Free Software Foundation
439gives unlimited permission to copy, distribute and modify it."
440
441ac_pwd='/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source'
442srcdir='.'
443INSTALL='/usr/bin/install -c'
444AWK='gawk'
445test -n "$AWK" || AWK=awk
446# The default lists apply if the user does not specify any file.
447ac_need_defaults=:
448while test $# != 0
449do
450  case $1 in
451  --*=*)
452    ac_option=`expr "X$1" : 'X\([^=]*\)='`
453    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
454    ac_shift=:
455    ;;
456  *)
457    ac_option=$1
458    ac_optarg=$2
459    ac_shift=shift
460    ;;
461  esac
462
463  case $ac_option in
464  # Handling of the options.
465  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
466    ac_cs_recheck=: ;;
467  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
468    $as_echo "$ac_cs_version"; exit ;;
469  --debug | --debu | --deb | --de | --d | -d )
470    debug=: ;;
471  --file | --fil | --fi | --f )
472    $ac_shift
473    case $ac_optarg in
474    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
475    esac
476    as_fn_append CONFIG_FILES " '$ac_optarg'"
477    ac_need_defaults=false;;
478  --header | --heade | --head | --hea )
479    $ac_shift
480    case $ac_optarg in
481    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
482    esac
483    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
484    ac_need_defaults=false;;
485  --he | --h)
486    # Conflict between --help and --header
487    as_fn_error "ambiguous option: \`$1'
488Try \`$0 --help' for more information.";;
489  --help | --hel | -h )
490    $as_echo "$ac_cs_usage"; exit ;;
491  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
492  | -silent | --silent | --silen | --sile | --sil | --si | --s)
493    ac_cs_silent=: ;;
494
495  # This is an error.
496  -*) as_fn_error "unrecognized option: \`$1'
497Try \`$0 --help' for more information." ;;
498
499  *) as_fn_append ac_config_targets " $1"
500     ac_need_defaults=false ;;
501
502  esac
503  shift
504done
505
506ac_configure_extra_args=
507
508if $ac_cs_silent; then
509  exec 6>/dev/null
510  ac_configure_extra_args="$ac_configure_extra_args --silent"
511fi
512
513if $ac_cs_recheck; then
514  set X '/bin/sh' './configure'  '--target=mipsel-linux' '--host=mipsel-linux' '--build=' '--prefix=/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/tmp' '--with-ssl' '--exec-prefix=' '--disable-manual' '--disable-proxy' '--without-zlib' '--disable-cookies' '--disable-ipv6' '--disable-shared' '--disable-dict' '--disable-file' '--disable-ftp' '--disable-gopher' '--disable-imap' '--disable-pop3' '--disable-smtp' '--disable-telnet' '--disable-tftp' '--disable-rtsp' 'build_alias=' 'host_alias=mipsel-linux' 'target_alias=mipsel-linux' 'LDFLAGS=-L/../../ap/gpl/openssl/tmp/usr/local/ssl/lib' 'CPPFLAGS=-I/../../ap/gpl/openssl/tmp/usr/local/ssl/include -I/../../ap/gpl/openssl/tmp/usr/local/ssl/include/openssl' $ac_configure_extra_args --no-create --no-recursion
515  shift
516  $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
517  CONFIG_SHELL='/bin/sh'
518  export CONFIG_SHELL
519  exec "$@"
520fi
521
522exec 5>>config.log
523{
524  echo
525  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
526## Running $as_me. ##
527_ASBOX
528  $as_echo "$ac_log"
529} >&5
530
531#
532# INIT-COMMANDS
533#
534AMDEP_TRUE="" ac_aux_dir="."
535
536
537# The HP-UX ksh and POSIX shell print the target directory to stdout
538# if CDPATH is set.
539(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
540
541sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
542double_quote_subst='s/\(["`\\]\)/\\\1/g'
543delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
544AS='as'
545DLLTOOL='dlltool'
546OBJDUMP='objdump'
547macro_version='2.4.2'
548macro_revision='1.3337'
549enable_shared='no'
550enable_static='yes'
551pic_mode='default'
552enable_fast_install='needless'
553SHELL='/bin/sh'
554ECHO='printf %s\n'
555PATH_SEPARATOR=':'
556host_alias='mipsel-linux'
557host='mipsel-unknown-linux-gnu'
558host_os='linux-gnu'
559build_alias=''
560build='i686-pc-linux-gnu'
561build_os='linux-gnu'
562SED='/bin/sed'
563Xsed='/bin/sed -e 1s/^X//'
564GREP='/bin/grep'
565EGREP='/bin/grep -E'
566FGREP='/bin/grep -F'
567LD='/usr/bin/ld'
568NM='nm'
569LN_S='ln -s'
570max_cmd_len='805306365'
571ac_objext='o'
572exeext=''
573lt_unset='unset'
574lt_SP2NL='tr \040 \012'
575lt_NL2SP='tr \015\012 \040\040'
576lt_cv_to_host_file_cmd='func_convert_file_noop'
577lt_cv_to_tool_file_cmd='func_convert_file_noop'
578reload_flag=' -r'
579reload_cmds='$LD$reload_flag -o $output$reload_objs'
580deplibs_check_method='pass_all'
581file_magic_cmd='$MAGIC_CMD'
582file_magic_glob=''
583want_nocaseglob='no'
584sharedlib_from_linklib_cmd='printf %s\n'
585AR='/usr/bin/ar'
586AR_FLAGS='cru'
587archiver_list_spec='@'
588STRIP='strip'
589RANLIB='ranlib'
590old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
591old_postuninstall_cmds=''
592old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
593lock_old_archive_extraction='no'
594CC='gcc'
595CFLAGS='-g0 -O2 -Wno-system-headers'
596compiler='gcc'
597GCC='yes'
598lt_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'\'''
599lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
600lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
601lt_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'\'''
602nm_file_list_spec='@'
603lt_sysroot=''
604objdir='.libs'
605MAGIC_CMD='file'
606lt_prog_compiler_no_builtin_flag=' -fno-builtin'
607lt_prog_compiler_pic=' -fPIC -DPIC'
608lt_prog_compiler_wl='-Wl,'
609lt_prog_compiler_static='-static'
610lt_cv_prog_compiler_c_o='yes'
611need_locks='no'
612MANIFEST_TOOL=':'
613DSYMUTIL=''
614NMEDIT=''
615LIPO=''
616OTOOL=''
617OTOOL64=''
618libext='a'
619shrext_cmds='.so'
620extract_expsyms_cmds=''
621archive_cmds_need_lc='yes'
622enable_shared_with_static_runtimes='no'
623export_dynamic_flag_spec='${wl}--export-dynamic'
624whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
625compiler_needs_object='no'
626old_archive_from_new_cmds=''
627old_archive_from_expsyms_cmds=''
628archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
629archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
630	    cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
631	    echo "local: *; };" >> $output_objdir/$libname.ver~
632	    $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
633module_cmds=''
634module_expsym_cmds=''
635with_gnu_ld='yes'
636allow_undefined_flag=''
637no_undefined_flag=''
638hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
639hardcode_libdir_separator=''
640hardcode_direct='no'
641hardcode_direct_absolute='no'
642hardcode_minus_L='no'
643hardcode_shlibpath_var='unsupported'
644hardcode_automatic='no'
645inherit_rpath='no'
646link_all_deplibs='no'
647always_export_symbols='no'
648export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
649exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
650include_expsyms=''
651prelink_cmds=''
652postlink_cmds=''
653file_list_spec=''
654variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
655need_lib_prefix='no'
656need_version='no'
657version_type='linux'
658runpath_var='LD_RUN_PATH'
659shlibpath_var='LD_LIBRARY_PATH'
660shlibpath_overrides_runpath='no'
661libname_spec='lib$name'
662library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
663soname_spec='${libname}${release}${shared_ext}$major'
664install_override_mode=''
665postinstall_cmds=''
666postuninstall_cmds=''
667finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
668finish_eval=''
669hardcode_into_libs='yes'
670sys_lib_search_path_spec='/usr/lib/gcc/i486-linux-gnu/4.3.4 /usr/lib /lib /usr/lib/i486-linux-gnu '
671sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/fglrx /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/lib/alsa-lib /usr/local/lib '
672hardcode_action='immediate'
673enable_dlopen='unknown'
674enable_dlopen_self='unknown'
675enable_dlopen_self_static='unknown'
676old_striplib='strip --strip-debug'
677striplib='strip --strip-unneeded'
678
679LTCC='gcc'
680LTCFLAGS=''
681compiler='gcc'
682
683# A function that is used when there is no print builtin or printf.
684func_fallback_echo ()
685{
686  eval 'cat <<_LTECHO_EOF
687$1
688_LTECHO_EOF'
689}
690
691# Quote evaled strings.
692for var in AS DLLTOOL OBJDUMP SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob 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
693    case `eval \\$ECHO \\""\\$$var"\\"` in
694    *[\\\`\"\$]*)
695      eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
696      ;;
697    *)
698      eval "lt_$var=\\\"\$$var\\\""
699      ;;
700    esac
701done
702
703# Double-quote double-evaled strings.
704for 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
705    case `eval \\$ECHO \\""\\$$var"\\"` in
706    *[\\\`\"\$]*)
707      eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
708      ;;
709    *)
710      eval "lt_$var=\\\"\$$var\\\""
711      ;;
712    esac
713done
714
715ac_aux_dir='.'
716xsi_shell='yes'
717lt_shell_append='yes'
718
719# See if we are running on zsh, and set the options which allow our
720# commands through without removal of \ escapes INIT.
721if test -n "${ZSH_VERSION+set}" ; then
722   setopt NO_GLOB_SUBST
723fi
724
725
726    PACKAGE='curl'
727    VERSION='-'
728    TIMESTAMP=''
729    RM='rm -f'
730    ofile='libtool'
731
732
733
734
735
736# Handling of arguments.
737for ac_config_target in $ac_config_targets
738do
739  case $ac_config_target in
740    "lib/curl_config.h") CONFIG_HEADERS="$CONFIG_HEADERS lib/curl_config.h" ;;
741    "src/curl_config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/curl_config.h" ;;
742    "include/curl/curlbuild.h") CONFIG_HEADERS="$CONFIG_HEADERS include/curl/curlbuild.h" ;;
743    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
744    "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
745    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
746    "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
747    "docs/examples/Makefile") CONFIG_FILES="$CONFIG_FILES docs/examples/Makefile" ;;
748    "docs/libcurl/Makefile") CONFIG_FILES="$CONFIG_FILES docs/libcurl/Makefile" ;;
749    "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
750    "include/curl/Makefile") CONFIG_FILES="$CONFIG_FILES include/curl/Makefile" ;;
751    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
752    "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
753    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
754    "tests/data/Makefile") CONFIG_FILES="$CONFIG_FILES tests/data/Makefile" ;;
755    "tests/server/Makefile") CONFIG_FILES="$CONFIG_FILES tests/server/Makefile" ;;
756    "tests/libtest/Makefile") CONFIG_FILES="$CONFIG_FILES tests/libtest/Makefile" ;;
757    "tests/unit/Makefile") CONFIG_FILES="$CONFIG_FILES tests/unit/Makefile" ;;
758    "packages/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Makefile" ;;
759    "packages/Win32/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Win32/Makefile" ;;
760    "packages/Win32/cygwin/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Win32/cygwin/Makefile" ;;
761    "packages/Linux/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Linux/Makefile" ;;
762    "packages/Linux/RPM/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Linux/RPM/Makefile" ;;
763    "packages/Linux/RPM/curl.spec") CONFIG_FILES="$CONFIG_FILES packages/Linux/RPM/curl.spec" ;;
764    "packages/Linux/RPM/curl-ssl.spec") CONFIG_FILES="$CONFIG_FILES packages/Linux/RPM/curl-ssl.spec" ;;
765    "packages/Solaris/Makefile") CONFIG_FILES="$CONFIG_FILES packages/Solaris/Makefile" ;;
766    "packages/EPM/curl.list") CONFIG_FILES="$CONFIG_FILES packages/EPM/curl.list" ;;
767    "packages/EPM/Makefile") CONFIG_FILES="$CONFIG_FILES packages/EPM/Makefile" ;;
768    "packages/vms/Makefile") CONFIG_FILES="$CONFIG_FILES packages/vms/Makefile" ;;
769    "packages/AIX/Makefile") CONFIG_FILES="$CONFIG_FILES packages/AIX/Makefile" ;;
770    "packages/AIX/RPM/Makefile") CONFIG_FILES="$CONFIG_FILES packages/AIX/RPM/Makefile" ;;
771    "packages/AIX/RPM/curl.spec") CONFIG_FILES="$CONFIG_FILES packages/AIX/RPM/curl.spec" ;;
772    "curl-config") CONFIG_FILES="$CONFIG_FILES curl-config" ;;
773    "libcurl.pc") CONFIG_FILES="$CONFIG_FILES libcurl.pc" ;;
774
775  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
776  esac
777done
778
779
780# If the user did not use the arguments to specify the items to instantiate,
781# then the envvar interface is used.  Set only those that are not.
782# We use the long form for the default assignment because of an extremely
783# bizarre bug on SunOS 4.1.3.
784if $ac_need_defaults; then
785  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
786  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
787  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
788fi
789
790# Have a temporary directory for convenience.  Make it in the build tree
791# simply because there is no reason against having it here, and in addition,
792# creating and moving files from /tmp can sometimes cause problems.
793# Hook for its removal unless debugging.
794# Note that there is a small window in which the directory will not be cleaned:
795# after its creation but before its name has been assigned to `$tmp'.
796$debug ||
797{
798  tmp=
799  trap 'exit_status=$?
800  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
801' 0
802  trap 'as_fn_exit 1' 1 2 13 15
803}
804# Create a (secure) tmp directory for tmp files.
805
806{
807  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
808  test -n "$tmp" && test -d "$tmp"
809}  ||
810{
811  tmp=./conf$$-$RANDOM
812  (umask 077 && mkdir "$tmp")
813} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
814
815# Set up the scripts for CONFIG_FILES section.
816# No need to generate them if there are no CONFIG_FILES.
817# This happens for instance with `./config.status config.h'.
818if test -n "$CONFIG_FILES"; then
819
820
821ac_cr=`echo X | tr X '\015'`
822# On cygwin, bash can eat \r inside `` if the user requested igncr.
823# But we know of no other shell where ac_cr would be empty at this
824# point, so we can use a bashism as a fallback.
825if test "x$ac_cr" = x; then
826  eval ac_cr=\$\'\\r\'
827fi
828ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
829if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
830  ac_cs_awk_cr='\r'
831else
832  ac_cs_awk_cr=$ac_cr
833fi
834
835echo 'BEGIN {' >"$tmp/subs1.awk" &&
836cat >>"$tmp/subs1.awk" <<\_ACAWK &&
837S["LTLIBOBJS"]=""
838S["LIBOBJS"]=""
839S["SUPPORT_PROTOCOLS"]="HTTP HTTPS"
840S["SUPPORT_FEATURES"]="SSL NTLM NTLM_WB"
841S["ENABLE_SHARED"]="no"
842S["CROSSCOMPILING_FALSE"]=""
843S["CROSSCOMPILING_TRUE"]="#"
844S["CURL_NETWORK_LIBS"]=""
845S["TEST_SERVER_LIBS"]="-lrt"
846S["CURL_LIBS"]="-lrt"
847S["LIBCURL_LIBS"]="-lssl -lcrypto -lrt -lssl -lcrypto"
848S["SONAME_BUMP_FALSE"]=""
849S["SONAME_BUMP_TRUE"]="#"
850S["USE_WINDOWS_SSPI"]=""
851S["BUILD_LIBHOSTNAME_FALSE"]=""
852S["BUILD_LIBHOSTNAME_TRUE"]="#"
853S["USE_EMBEDDED_ARES_FALSE"]=""
854S["USE_EMBEDDED_ARES_TRUE"]="#"
855S["USE_ARES"]=""
856S["subdirs"]=""
857S["USE_MANUAL_FALSE"]=""
858S["USE_MANUAL_TRUE"]="#"
859S["MANOPT"]=""
860S["NROFF"]="/usr/bin/nroff"
861S["PERL"]="/usr/bin/perl"
862S["IPV6_ENABLED"]=""
863S["IDN_ENABLED"]=""
864S["USE_LIBRTMP"]=""
865S["USE_LIBSSH2"]=""
866S["CURL_CA_BUNDLE"]="\"/etc/ssl/certs/ca-certificates.crt\""
867S["SSL_ENABLED"]="1"
868S["USE_AXTLS"]=""
869S["USE_NSS"]=""
870S["HAVE_PK11_CREATEGENERICOBJECT"]=""
871S["USE_CYASSL"]=""
872S["USE_POLARSSL"]=""
873S["HAVE_GNUTLS_SRP"]=""
874S["USE_GNUTLS"]=""
875S["HAVE_SSLEAY_SRP"]=""
876S["RANDOM_FILE"]="/dev/urandom"
877S["HAVE_LIBZ_FALSE"]=""
878S["HAVE_LIBZ_TRUE"]="#"
879S["HAVE_LIBZ"]=""
880S["USE_SSLEAY"]="1"
881S["PKGCONFIG"]="/usr/bin/pkg-config"
882S["KRB4_ENABLED"]=""
883S["USE_OPENLDAP"]=""
884S["CURL_DISABLE_GOPHER"]="1"
885S["CURL_DISABLE_SMTP"]="1"
886S["CURL_DISABLE_IMAP"]="1"
887S["CURL_DISABLE_POP3"]="1"
888S["CURL_DISABLE_TFTP"]="1"
889S["CURL_DISABLE_TELNET"]="1"
890S["CURL_DISABLE_DICT"]="1"
891S["CURL_DISABLE_PROXY"]="1"
892S["HAVE_LDAP_SSL"]="1"
893S["CURL_DISABLE_LDAPS"]="1"
894S["CURL_DISABLE_LDAP"]="1"
895S["CURL_DISABLE_FILE"]="1"
896S["CURL_DISABLE_FTP"]="1"
897S["CURL_DISABLE_RTSP"]="1"
898S["CURL_DISABLE_HTTP"]=""
899S["BUILD_UNITTESTS_FALSE"]=""
900S["BUILD_UNITTESTS_TRUE"]="#"
901S["CURLDEBUG_FALSE"]=""
902S["CURLDEBUG_TRUE"]="#"
903S["NO_UNDEFINED_FALSE"]=""
904S["NO_UNDEFINED_TRUE"]="#"
905S["REQUIRE_LIB_DEPS"]="yes"
906S["STATICLIB_FALSE"]=""
907S["STATICLIB_TRUE"]="#"
908S["MIMPURE_FALSE"]=""
909S["MIMPURE_TRUE"]="#"
910S["OTOOL64"]=""
911S["OTOOL"]=""
912S["LIPO"]=""
913S["NMEDIT"]=""
914S["DSYMUTIL"]=""
915S["MANIFEST_TOOL"]=":"
916S["RANLIB"]="ranlib"
917S["ac_ct_AR"]=""
918S["LN_S"]="ln -s"
919S["NM"]="nm"
920S["ac_ct_DUMPBIN"]="link -dump"
921S["DUMPBIN"]=":"
922S["LD"]="/usr/bin/ld"
923S["FGREP"]="/bin/grep -F"
924S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
925S["OBJDUMP"]="objdump"
926S["DLLTOOL"]="dlltool"
927S["AS"]="as"
928S["CPP"]="gcc -E"
929S["am__fastdepCC_FALSE"]="#"
930S["am__fastdepCC_TRUE"]=""
931S["CCDEPMODE"]="depmode=gcc3"
932S["AMDEPBACKSLASH"]="\\"
933S["AMDEP_FALSE"]="#"
934S["AMDEP_TRUE"]=""
935S["am__quote"]=""
936S["am__include"]="include"
937S["DEPDIR"]=".deps"
938S["OBJEXT"]="o"
939S["EXEEXT"]=""
940S["ac_ct_CC"]="gcc"
941S["CPPFLAGS"]="-isystem /../../ap/gpl/openssl/tmp/usr/local/ssl/include -isystem /../../ap/gpl/openssl/tmp/usr/local/ssl/include/openssl"
942S["LDFLAGS"]="-L/../../ap/gpl/openssl/tmp/usr/local/ssl/lib"
943S["CFLAGS"]="-g0 -O2 -Wno-system-headers"
944S["CC"]="gcc"
945S["host_os"]="linux-gnu"
946S["host_vendor"]="unknown"
947S["host_cpu"]="mipsel"
948S["host"]="mipsel-unknown-linux-gnu"
949S["build_os"]="linux-gnu"
950S["build_vendor"]="pc"
951S["build_cpu"]="i686"
952S["build"]="i686-pc-linux-gnu"
953S["PKGADD_VENDOR"]="curl.haxx.se"
954S["PKGADD_NAME"]="cURL - a client that groks URLs"
955S["PKGADD_PKG"]="HAXXcurl"
956S["VERSIONNUM"]="071701"
957S["CURLVERSION"]="7.23.1"
958S["am__untar"]="${AMTAR} xf -"
959S["am__tar"]="${AMTAR} chof - \"$$tardir\""
960S["AMTAR"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run tar"
961S["am__leading_dot"]="."
962S["SET_MAKE"]=""
963S["AWK"]="gawk"
964S["mkdir_p"]="mkdir -p --"
965S["INSTALL_STRIP_PROGRAM"]="${SHELL} $(install_sh) -c -s"
966S["STRIP"]="strip"
967S["install_sh"]="/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/install-sh"
968S["MAKEINFO"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run makeinfo"
969S["AUTOHEADER"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run autoheader"
970S["AUTOMAKE"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run automake-1.9"
971S["AUTOCONF"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run autoconf"
972S["ACLOCAL"]="${SHELL} \"/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/source/missing\" --run aclocal-1.9"
973S["VERSION"]="-"
974S["PACKAGE"]="curl"
975S["CYGPATH_W"]="echo"
976S["INSTALL_DATA"]="${INSTALL} -m 644"
977S["INSTALL_SCRIPT"]="${INSTALL}"
978S["INSTALL_PROGRAM"]="${INSTALL}"
979S["libext"]="a"
980S["AR"]="/usr/bin/ar"
981S["EGREP"]="/bin/grep -E"
982S["GREP"]="/bin/grep"
983S["SED"]="/bin/sed"
984S["CURL_CFLAG_EXTRAS"]=""
985S["CONFIGURE_OPTIONS"]="\" '--target=mipsel-linux' '--host=mipsel-linux' '--build=' '--prefix=/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/tmp' "\
986"'--with-ssl' '--exec-prefix=' '--disable-manual' '--disable-proxy' '--without-zlib' '--disable-cookies' '--disable-ipv6' '--disable-shared' '--disab"\
987"le-dict' '--disable-file' '--disable-ftp' '--disable-gopher' '--disable-imap' '--disable-pop3' '--disable-smtp' '--disable-telnet' '--disable-tftp' "\
988"'--disable-rtsp' 'build_alias=' 'host_alias=mipsel-linux' 'target_alias=mipsel-linux' 'LDFLAGS=-L/../../ap/gpl/openssl/tmp/usr/local/ssl/lib' 'CPPFL"\
989"AGS=-I/../../ap/gpl/openssl/tmp/usr/local/ssl/include -I/../../ap/gpl/openssl/tmp/usr/local/ssl/include/openssl'\""
990S["MAINT"]="#"
991S["MAINTAINER_MODE_FALSE"]=""
992S["MAINTAINER_MODE_TRUE"]="#"
993S["target_alias"]="mipsel-linux"
994S["host_alias"]="mipsel-linux"
995S["build_alias"]=""
996S["LIBS"]=""
997S["ECHO_T"]=""
998S["ECHO_N"]="-n"
999S["ECHO_C"]=""
1000S["DEFS"]="-DHAVE_CONFIG_H"
1001S["mandir"]="${datarootdir}/man"
1002S["localedir"]="${datarootdir}/locale"
1003S["libdir"]="${exec_prefix}/lib"
1004S["psdir"]="${docdir}"
1005S["pdfdir"]="${docdir}"
1006S["dvidir"]="${docdir}"
1007S["htmldir"]="${docdir}"
1008S["infodir"]="${datarootdir}/info"
1009S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
1010S["oldincludedir"]="/usr/include"
1011S["includedir"]="${prefix}/include"
1012S["localstatedir"]="${prefix}/var"
1013S["sharedstatedir"]="${prefix}/com"
1014S["sysconfdir"]="${prefix}/etc"
1015S["datadir"]="${datarootdir}"
1016S["datarootdir"]="${prefix}/share"
1017S["libexecdir"]="${exec_prefix}/libexec"
1018S["sbindir"]="${exec_prefix}/sbin"
1019S["bindir"]="${exec_prefix}/bin"
1020S["program_transform_name"]="s,x,x,"
1021S["prefix"]="/home/perry/project/WNDR4500/2011_04_14_WNDR4500_Alpha/ap/gpl/curl-7.23.1/tmp"
1022S["exec_prefix"]=""
1023S["PACKAGE_URL"]=""
1024S["PACKAGE_BUGREPORT"]="a suitable curl mailing list: http://curl.haxx.se/mail/"
1025S["PACKAGE_STRING"]="curl -"
1026S["PACKAGE_VERSION"]="-"
1027S["PACKAGE_TARNAME"]="curl"
1028S["PACKAGE_NAME"]="curl"
1029S["SHELL"]="/bin/sh"
1030S["PATH"]="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin"
1031S["PATH_SEPARATOR"]=":"
1032_ACAWK
1033cat >>"$tmp/subs1.awk" <<_ACAWK &&
1034  for (key in S) S_is_set[key] = 1
1035  FS = ""
1036
1037}
1038{
1039  line = $ 0
1040  nfields = split(line, field, "@")
1041  substed = 0
1042  len = length(field[1])
1043  for (i = 2; i < nfields; i++) {
1044    key = field[i]
1045    keylen = length(key)
1046    if (S_is_set[key]) {
1047      value = S[key]
1048      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1049      len += length(value) + length(field[++i])
1050      substed = 1
1051    } else
1052      len += 1 + keylen
1053  }
1054
1055  print line
1056}
1057
1058_ACAWK
1059if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1060  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1061else
1062  cat
1063fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
1064  || as_fn_error "could not setup config files machinery" "$LINENO" 5
1065fi # test -n "$CONFIG_FILES"
1066
1067# Set up the scripts for CONFIG_HEADERS section.
1068# No need to generate them if there are no CONFIG_HEADERS.
1069# This happens for instance with `./config.status Makefile'.
1070if test -n "$CONFIG_HEADERS"; then
1071cat >"$tmp/defines.awk" <<\_ACAWK ||
1072BEGIN {
1073D["PACKAGE_NAME"]=" \"curl\""
1074D["PACKAGE_TARNAME"]=" \"curl\""
1075D["PACKAGE_VERSION"]=" \"-\""
1076D["PACKAGE_STRING"]=" \"curl -\""
1077D["PACKAGE_BUGREPORT"]=" \"a suitable curl mailing list: http://curl.haxx.se/mail/\""
1078D["PACKAGE_URL"]=" \"\""
1079D["PACKAGE"]=" \"curl\""
1080D["VERSION"]=" \"-\""
1081D["OS"]=" \"mipsel-unknown-linux-gnu\""
1082D["HAVE_SYS_TYPES_H"]=" 1"
1083D["HAVE_STDINT_H"]=" 1"
1084D["HAVE_INTTYPES_H"]=" 1"
1085D["STDC_HEADERS"]=" 1"
1086D["HAVE_SYS_TYPES_H"]=" 1"
1087D["HAVE_SYS_STAT_H"]=" 1"
1088D["HAVE_STDLIB_H"]=" 1"
1089D["HAVE_STRING_H"]=" 1"
1090D["HAVE_MEMORY_H"]=" 1"
1091D["HAVE_STRINGS_H"]=" 1"
1092D["HAVE_INTTYPES_H"]=" 1"
1093D["HAVE_STDINT_H"]=" 1"
1094D["HAVE_UNISTD_H"]=" 1"
1095D["SIZEOF_LONG"]=" 4"
1096D["SIZEOF_VOIDP"]=" 4"
1097D["CURL_PULL_SYS_TYPES_H"]=" 1"
1098D["CURL_PULL_STDINT_H"]=" 1"
1099D["CURL_PULL_INTTYPES_H"]=" 1"
1100D["CURL_TYPEOF_CURL_OFF_T"]=" int64_t"
1101D["CURL_FORMAT_CURL_OFF_T"]=" \"lld\""
1102D["CURL_FORMAT_CURL_OFF_TU"]=" \"llu\""
1103D["CURL_FORMAT_OFF_T"]=" \"%lld\""
1104D["CURL_SIZEOF_CURL_OFF_T"]=" 8"
1105D["CURL_SUFFIX_CURL_OFF_T"]=" LL"
1106D["CURL_SUFFIX_CURL_OFF_TU"]=" ULL"
1107D["_FILE_OFFSET_BITS"]=" 64"
1108D["HAVE_DLFCN_H"]=" 1"
1109D["LT_OBJDIR"]=" \".libs/\""
1110D["CURL_DISABLE_FTP"]=" 1"
1111D["CURL_DISABLE_FILE"]=" 1"
1112D["HAVE_LDAP_SSL"]=" 1"
1113D["CURL_DISABLE_RTSP"]=" 1"
1114D["CURL_DISABLE_PROXY"]=" 1"
1115D["CURL_DISABLE_DICT"]=" 1"
1116D["CURL_DISABLE_TELNET"]=" 1"
1117D["CURL_DISABLE_TFTP"]=" 1"
1118D["CURL_DISABLE_POP3"]=" 1"
1119D["CURL_DISABLE_IMAP"]=" 1"
1120D["CURL_DISABLE_SMTP"]=" 1"
1121D["CURL_DISABLE_GOPHER"]=" 1"
1122D["TIME_WITH_SYS_TIME"]=" 1"
1123D["HAVE_SYS_TYPES_H"]=" 1"
1124D["HAVE_SYS_TIME_H"]=" 1"
1125D["HAVE_TIME_H"]=" 1"
1126D["HAVE_CLOCK_GETTIME_MONOTONIC"]=" 1"
1127D["CURL_DISABLE_LDAP"]=" 1"
1128D["CURL_DISABLE_LDAPS"]=" 1"
1129D["HAVE_WRITABLE_ARGV"]=" 1"
1130D["HAVE_LIBSSL"]=" 1"
1131D["HAVE_OPENSSL_X509_H"]=" 1"
1132D["USE_OPENSSL"]=" 1"
1133D["HAVE_OPENSSL_RSA_H"]=" 1"
1134D["USE_OPENSSL"]=" 1"
1135D["HAVE_OPENSSL_CRYPTO_H"]=" 1"
1136D["USE_OPENSSL"]=" 1"
1137D["HAVE_OPENSSL_PEM_H"]=" 1"
1138D["USE_OPENSSL"]=" 1"
1139D["HAVE_OPENSSL_SSL_H"]=" 1"
1140D["USE_OPENSSL"]=" 1"
1141D["HAVE_OPENSSL_ERR_H"]=" 1"
1142D["USE_OPENSSL"]=" 1"
1143D["USE_SSLEAY"]=" 1"
1144D["HAVE_OPENSSL_PKCS12_H"]=" 1"
1145D["HAVE_OPENSSL_ENGINE_H"]=" 1"
1146D["HAVE_ENGINE_LOAD_BUILTIN_ENGINES"]=" 1"
1147D["HAVE_RAND_STATUS"]=" 1"
1148D["HAVE_RAND_EGD"]=" 1"
1149D["HAVE_ENGINE_CLEANUP"]=" 1"
1150D["HAVE_CRYPTO_CLEANUP_ALL_EX_DATA"]=" 1"
1151D["HAVE_SSL_GET_SHUTDOWN"]=" 1"
1152D["RANDOM_FILE"]=" \"/dev/urandom\""
1153D["CURL_CA_BUNDLE"]=" \"/etc/ssl/certs/ca-certificates.crt\""
1154D["STDC_HEADERS"]=" 1"
1155D["HAVE_MALLOC_H"]=" 1"
1156D["HAVE_MEMORY_H"]=" 1"
1157D["HAVE_SYS_TYPES_H"]=" 1"
1158D["HAVE_SYS_TIME_H"]=" 1"
1159D["HAVE_SYS_SELECT_H"]=" 1"
1160D["HAVE_SYS_SOCKET_H"]=" 1"
1161D["HAVE_SYS_IOCTL_H"]=" 1"
1162D["HAVE_SYS_UIO_H"]=" 1"
1163D["HAVE_ASSERT_H"]=" 1"
1164D["HAVE_UNISTD_H"]=" 1"
1165D["HAVE_STDLIB_H"]=" 1"
1166D["HAVE_LIMITS_H"]=" 1"
1167D["HAVE_ARPA_INET_H"]=" 1"
1168D["HAVE_NET_IF_H"]=" 1"
1169D["HAVE_NETINET_IN_H"]=" 1"
1170D["HAVE_SYS_UN_H"]=" 1"
1171D["HAVE_NETINET_TCP_H"]=" 1"
1172D["HAVE_NETDB_H"]=" 1"
1173D["HAVE_SYS_STAT_H"]=" 1"
1174D["HAVE_SYS_PARAM_H"]=" 1"
1175D["HAVE_TERMIOS_H"]=" 1"
1176D["HAVE_TERMIO_H"]=" 1"
1177D["HAVE_SGTTY_H"]=" 1"
1178D["HAVE_FCNTL_H"]=" 1"
1179D["HAVE_ALLOCA_H"]=" 1"
1180D["HAVE_TIME_H"]=" 1"
1181D["HAVE_PWD_H"]=" 1"
1182D["HAVE_UTIME_H"]=" 1"
1183D["HAVE_SYS_POLL_H"]=" 1"
1184D["HAVE_POLL_H"]=" 1"
1185D["HAVE_SYS_RESOURCE_H"]=" 1"
1186D["HAVE_LIBGEN_H"]=" 1"
1187D["HAVE_LOCALE_H"]=" 1"
1188D["HAVE_ERRNO_H"]=" 1"
1189D["HAVE_STDBOOL_H"]=" 1"
1190D["HAVE_ARPA_TFTP_H"]=" 1"
1191D["HAVE_SYS_WAIT_H"]=" 1"
1192D["HAVE_SETJMP_H"]=" 1"
1193D["HAVE_VARIADIC_MACROS_C99"]=" 1"
1194D["HAVE_VARIADIC_MACROS_GCC"]=" 1"
1195D["TIME_WITH_SYS_TIME"]=" 1"
1196D["HAVE_SYS_TYPES_H"]=" 1"
1197D["HAVE_SYS_TIME_H"]=" 1"
1198D["HAVE_TIME_H"]=" 1"
1199D["HAVE_SYS_SOCKET_H"]=" 1"
1200D["HAVE_STRUCT_TIMEVAL"]=" 1"
1201D["SIZEOF_SIZE_T"]=" 4"
1202D["SIZEOF_LONG"]=" 4"
1203D["SIZEOF_INT"]=" 4"
1204D["SIZEOF_SHORT"]=" 2"
1205D["CURL_SIZEOF_LONG"]=" 4"
1206D["SIZEOF_TIME_T"]=" 4"
1207D["SIZEOF_OFF_T"]=" 8"
1208D["HAVE_LONGLONG"]=" 1"
1209D["HAVE_LL"]=" 1"
1210D["HAVE_BOOL_T"]=" 1"
1211D["HAVE_SYS_TYPES_H"]=" 1"
1212D["HAVE_SYS_SOCKET_H"]=" 1"
1213D["CURL_PULL_SYS_TYPES_H"]=" 1"
1214D["CURL_PULL_SYS_SOCKET_H"]=" 1"
1215D["CURL_TYPEOF_CURL_SOCKLEN_T"]=" socklen_t"
1216D["CURL_SIZEOF_CURL_SOCKLEN_T"]=" 4"
1217D["HAVE_STRUCT_SOCKADDR_STORAGE"]=" 1"
1218D["HAVE_SIGNAL_H"]=" 1"
1219D["HAVE_SIG_ATOMIC_T"]=" 1"
1220D["RETSIGTYPE"]=" void"
1221D["HAVE_SYS_SELECT_H"]=" 1"
1222D["HAVE_SYS_SOCKET_H"]=" 1"
1223D["SELECT_TYPE_ARG1"]=" int"
1224D["SELECT_TYPE_ARG234"]=" fd_set *"
1225D["SELECT_TYPE_RETV"]=" int"
1226D["SELECT_QUAL_ARG5"]=" "
1227D["SELECT_TYPE_ARG5"]=" struct timeval *"
1228D["HAVE_SELECT"]=" 1"
1229D["HAVE_SYS_TYPES_H"]=" 1"
1230D["HAVE_SYS_SOCKET_H"]=" 1"
1231D["RECV_TYPE_ARG1"]=" int"
1232D["RECV_TYPE_ARG2"]=" void *"
1233D["RECV_TYPE_ARG3"]=" size_t"
1234D["RECV_TYPE_ARG4"]=" int"
1235D["RECV_TYPE_RETV"]=" int"
1236D["HAVE_RECV"]=" 1"
1237D["HAVE_SYS_TYPES_H"]=" 1"
1238D["HAVE_SYS_SOCKET_H"]=" 1"
1239D["HAVE_RECVFROM"]=" 1"
1240D["RECVFROM_TYPE_ARG1"]=" int"
1241D["RECVFROM_TYPE_ARG3"]=" size_t"
1242D["RECVFROM_TYPE_ARG4"]=" int"
1243D["RECVFROM_TYPE_RETV"]=" int"
1244D["RECVFROM_TYPE_ARG2"]=" void"
1245D["RECVFROM_QUAL_ARG5"]=" "
1246D["RECVFROM_TYPE_ARG5"]=" struct sockaddr"
1247D["RECVFROM_TYPE_ARG6"]=" socklen_t"
1248D["RECVFROM_TYPE_ARG2_IS_VOID"]=" 1"
1249D["HAVE_RECVFROM"]=" 1"
1250D["HAVE_SYS_TYPES_H"]=" 1"
1251D["HAVE_SYS_SOCKET_H"]=" 1"
1252D["SEND_TYPE_ARG1"]=" int"
1253D["SEND_TYPE_ARG3"]=" size_t"
1254D["SEND_TYPE_ARG4"]=" int"
1255D["SEND_TYPE_RETV"]=" int"
1256D["SEND_QUAL_ARG2"]=" const"
1257D["SEND_TYPE_ARG2"]=" void *"
1258D["HAVE_SEND"]=" 1"
1259D["HAVE_SYS_TYPES_H"]=" 1"
1260D["HAVE_SYS_SOCKET_H"]=" 1"
1261D["HAVE_MSG_NOSIGNAL"]=" 1"
1262D["HAVE_SYS_TYPES_H"]=" 1"
1263D["HAVE_UNISTD_H"]=" 1"
1264D["HAVE_ALARM"]=" 1"
1265D["HAVE_SYS_TYPES_H"]=" 1"
1266D["HAVE_STRING_H"]=" 1"
1267D["HAVE_STRINGS_H"]=" 1"
1268D["HAVE_SYS_TYPES_H"]=" 1"
1269D["HAVE_LIBGEN_H"]=" 1"
1270D["HAVE_BASENAME"]=" 1"
1271D["HAVE_SYS_TYPES_H"]=" 1"
1272D["HAVE_CONNECT"]=" 1"
1273D["HAVE_SYS_TYPES_H"]=" 1"
1274D["HAVE_UNISTD_H"]=" 1"
1275D["HAVE_FCNTL_H"]=" 1"
1276D["HAVE_FCNTL"]=" 1"
1277D["HAVE_FCNTL_O_NONBLOCK"]=" 1"
1278D["HAVE_SYS_TYPES_H"]=" 1"
1279D["HAVE_STDIO_H"]=" 1"
1280D["HAVE_FDOPEN"]=" 1"
1281D["HAVE_SYS_TYPES_H"]=" 1"
1282D["HAVE_NETDB_H"]=" 1"
1283D["HAVE_FREEADDRINFO"]=" 1"
1284D["HAVE_SYS_TYPES_H"]=" 1"
1285D["HAVE_SYS_SOCKET_H"]=" 1"
1286D["HAVE_NETINET_IN_H"]=" 1"
1287D["HAVE_IFADDRS_H"]=" 1"
1288D["HAVE_FREEIFADDRS"]=" 1"
1289D["HAVE_SYS_TYPES_H"]=" 1"
1290D["HAVE_SYS_XATTR_H"]=" 1"
1291D["HAVE_FSETXATTR"]=" 1"
1292D["HAVE_FSETXATTR_5"]=" 1"
1293D["HAVE_FTRUNCATE"]=" 1"
1294D["HAVE_SYS_TYPES_H"]=" 1"
1295D["HAVE_STDLIB_H"]=" 1"
1296D["HAVE_GETADDRINFO"]=" 1"
1297D["HAVE_GETADDRINFO_THREADSAFE"]=" 1"
1298D["HAVE_GAI_STRERROR"]=" 1"
1299D["HAVE_GETHOSTBYADDR"]=" 1"
1300D["HAVE_GETHOSTBYADDR_R"]=" 1"
1301D["HAVE_GETHOSTBYADDR_R_8"]=" 1"
1302D["HAVE_GETHOSTBYNAME"]=" 1"
1303D["HAVE_GETHOSTBYNAME_R"]=" 1"
1304D["HAVE_GETHOSTBYNAME_R_6"]=" 1"
1305D["HAVE_GETHOSTNAME"]=" 1"
1306D["HAVE_GETIFADDRS"]=" 1"
1307D["HAVE_GETSERVBYPORT_R"]=" 1"
1308D["GETSERVBYPORT_R_ARGS"]=" 6"
1309D["GETSERVBYPORT_R_BUFSIZE"]=" 4096"
1310D["HAVE_SYS_TYPES_H"]=" 1"
1311D["HAVE_SYS_TIME_H"]=" 1"
1312D["HAVE_TIME_H"]=" 1"
1313D["HAVE_GMTIME_R"]=" 1"
1314D["HAVE_SYS_TYPES_H"]=" 1"
1315D["HAVE_SYS_SOCKET_H"]=" 1"
1316D["HAVE_NETINET_IN_H"]=" 1"
1317D["HAVE_ARPA_INET_H"]=" 1"
1318D["HAVE_INET_NTOP"]=" 1"
1319D["HAVE_INET_PTON"]=" 1"
1320D["HAVE_SYS_TYPES_H"]=" 1"
1321D["HAVE_UNISTD_H"]=" 1"
1322D["HAVE_SYS_SOCKET_H"]=" 1"
1323D["HAVE_SYS_IOCTL_H"]=" 1"
1324D["HAVE_STROPTS_H"]=" 1"
1325D["HAVE_IOCTL"]=" 1"
1326D["HAVE_IOCTL_FIONBIO"]=" 1"
1327D["HAVE_IOCTL_SIOCGIFADDR"]=" 1"
1328D["HAVE_LOCALTIME_R"]=" 1"
1329D["HAVE_SYS_TYPES_H"]=" 1"
1330D["HAVE_POLL_H"]=" 1"
1331D["HAVE_SYS_POLL_H"]=" 1"
1332D["HAVE_POLL"]=" 1"
1333D["HAVE_POLL_FINE"]=" 1"
1334D["HAVE_SETSOCKOPT"]=" 1"
1335D["HAVE_SYS_TYPES_H"]=" 1"
1336D["HAVE_SIGNAL_H"]=" 1"
1337D["HAVE_SIGACTION"]=" 1"
1338D["HAVE_SIGINTERRUPT"]=" 1"
1339D["HAVE_SIGNAL"]=" 1"
1340D["HAVE_SYS_TYPES_H"]=" 1"
1341D["HAVE_SETJMP_H"]=" 1"
1342D["HAVE_SIGSETJMP"]=" 1"
1343D["HAVE_SOCKET"]=" 1"
1344D["HAVE_SOCKETPAIR"]=" 1"
1345D["HAVE_STRCASECMP"]=" 1"
1346D["HAVE_STRDUP"]=" 1"
1347D["HAVE_STRERROR_R"]=" 1"
1348D["HAVE_POSIX_STRERROR_R"]=" 1"
1349D["STRERROR_R_TYPE_ARG3"]=" size_t"
1350D["HAVE_STRNCASECMP"]=" 1"
1351D["HAVE_STRSTR"]=" 1"
1352D["HAVE_STRTOK_R"]=" 1"
1353D["HAVE_STRTOLL"]=" 1"
1354D["HAVE_SYS_TYPES_H"]=" 1"
1355D["HAVE_SYS_UIO_H"]=" 1"
1356D["HAVE_WRITEV"]=" 1"
1357D["HAVE_FORK"]=" 1"
1358D["HAVE_GETEUID"]=" 1"
1359D["HAVE_GETPPID"]=" 1"
1360D["HAVE_GETPROTOBYNAME"]=" 1"
1361D["HAVE_GETPWUID"]=" 1"
1362D["HAVE_GETRLIMIT"]=" 1"
1363D["HAVE_GETTIMEOFDAY"]=" 1"
1364D["HAVE_INET_ADDR"]=" 1"
1365D["HAVE_PERROR"]=" 1"
1366D["HAVE_PIPE"]=" 1"
1367D["HAVE_SETLOCALE"]=" 1"
1368D["HAVE_SETRLIMIT"]=" 1"
1369D["HAVE_UNAME"]=" 1"
1370D["HAVE_UTIME"]=" 1"
1371D["HAVE_SYS_TYPES_H"]=" 1"
1372D["HAVE_SYS_SOCKET_H"]=" 1"
1373D["HAVE_NETDB_H"]=" 1"
1374D["GETNAMEINFO_TYPE_ARG2"]=" socklen_t"
1375D["GETNAMEINFO_TYPE_ARG46"]=" size_t"
1376D["GETNAMEINFO_TYPE_ARG7"]=" unsigned int"
1377D["GETNAMEINFO_QUAL_ARG1"]=" const"
1378D["GETNAMEINFO_TYPE_ARG1"]=" struct sockaddr *"
1379D["HAVE_GETNAMEINFO"]=" 1"
1380D["NTLM_WB_ENABLED"]=" 1"
1381D["NTLM_WB_FILE"]=" \"/usr/bin/ntlm_auth\""
1382D["CURL_DISABLE_COOKIES"]=" 1"
1383  for (key in D) D_is_set[key] = 1
1384  FS = ""
1385}
1386/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1387  line = $ 0
1388  split(line, arg, " ")
1389  if (arg[1] == "#") {
1390    defundef = arg[2]
1391    mac1 = arg[3]
1392  } else {
1393    defundef = substr(arg[1], 2)
1394    mac1 = arg[2]
1395  }
1396  split(mac1, mac2, "(") #)
1397  macro = mac2[1]
1398  prefix = substr(line, 1, index(line, defundef) - 1)
1399  if (D_is_set[macro]) {
1400    # Preserve the white space surrounding the "#".
1401    print prefix "define", macro P[macro] D[macro]
1402    next
1403  } else {
1404    # Replace #undef with comments.  This is necessary, for example,
1405    # in the case of _POSIX_SOURCE, which is predefined and required
1406    # on some systems where configure will not decide to define it.
1407    if (defundef == "undef") {
1408      print "/*", prefix defundef, macro, "*/"
1409      next
1410    }
1411  }
1412}
1413{ print }
1414_ACAWK
1415  as_fn_error "could not setup config headers machinery" "$LINENO" 5
1416fi # test -n "$CONFIG_HEADERS"
1417
1418
1419eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
1420shift
1421for ac_tag
1422do
1423  case $ac_tag in
1424  :[FHLC]) ac_mode=$ac_tag; continue;;
1425  esac
1426  case $ac_mode$ac_tag in
1427  :[FHL]*:*);;
1428  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
1429  :[FH]-) ac_tag=-:-;;
1430  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1431  esac
1432  ac_save_IFS=$IFS
1433  IFS=:
1434  set x $ac_tag
1435  IFS=$ac_save_IFS
1436  shift
1437  ac_file=$1
1438  shift
1439
1440  case $ac_mode in
1441  :L) ac_source=$1;;
1442  :[FH])
1443    ac_file_inputs=
1444    for ac_f
1445    do
1446      case $ac_f in
1447      -) ac_f="$tmp/stdin";;
1448      *) # Look for the file first in the build tree, then in the source tree
1449	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
1450	 # because $ac_f cannot contain `:'.
1451	 test -f "$ac_f" ||
1452	   case $ac_f in
1453	   [\\/$]*) false;;
1454	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1455	   esac ||
1456	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1457      esac
1458      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1459      as_fn_append ac_file_inputs " '$ac_f'"
1460    done
1461
1462    # Let's still pretend it is `configure' which instantiates (i.e., don't
1463    # use $as_me), people would be surprised to read:
1464    #    /* config.h.  Generated by config.status.  */
1465    configure_input='Generated from '`
1466	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1467	`' by configure.'
1468    if test x"$ac_file" != x-; then
1469      configure_input="$ac_file.  $configure_input"
1470      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1471$as_echo "$as_me: creating $ac_file" >&6;}
1472    fi
1473    # Neutralize special characters interpreted by sed in replacement strings.
1474    case $configure_input in #(
1475    *\&* | *\|* | *\\* )
1476       ac_sed_conf_input=`$as_echo "$configure_input" |
1477       sed 's/[\\\\&|]/\\\\&/g'`;; #(
1478    *) ac_sed_conf_input=$configure_input;;
1479    esac
1480
1481    case $ac_tag in
1482    *:-:* | *:-) cat >"$tmp/stdin" \
1483      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
1484    esac
1485    ;;
1486  esac
1487
1488  ac_dir=`$as_dirname -- "$ac_file" ||
1489$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1490	 X"$ac_file" : 'X\(//\)[^/]' \| \
1491	 X"$ac_file" : 'X\(//\)$' \| \
1492	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1493$as_echo X"$ac_file" |
1494    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1495	    s//\1/
1496	    q
1497	  }
1498	  /^X\(\/\/\)[^/].*/{
1499	    s//\1/
1500	    q
1501	  }
1502	  /^X\(\/\/\)$/{
1503	    s//\1/
1504	    q
1505	  }
1506	  /^X\(\/\).*/{
1507	    s//\1/
1508	    q
1509	  }
1510	  s/.*/./; q'`
1511  as_dir="$ac_dir"; as_fn_mkdir_p
1512  ac_builddir=.
1513
1514case "$ac_dir" in
1515.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1516*)
1517  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1518  # A ".." for each directory in $ac_dir_suffix.
1519  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1520  case $ac_top_builddir_sub in
1521  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1522  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1523  esac ;;
1524esac
1525ac_abs_top_builddir=$ac_pwd
1526ac_abs_builddir=$ac_pwd$ac_dir_suffix
1527# for backward compatibility:
1528ac_top_builddir=$ac_top_build_prefix
1529
1530case $srcdir in
1531  .)  # We are building in place.
1532    ac_srcdir=.
1533    ac_top_srcdir=$ac_top_builddir_sub
1534    ac_abs_top_srcdir=$ac_pwd ;;
1535  [\\/]* | ?:[\\/]* )  # Absolute name.
1536    ac_srcdir=$srcdir$ac_dir_suffix;
1537    ac_top_srcdir=$srcdir
1538    ac_abs_top_srcdir=$srcdir ;;
1539  *) # Relative name.
1540    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1541    ac_top_srcdir=$ac_top_build_prefix$srcdir
1542    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1543esac
1544ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1545
1546
1547  case $ac_mode in
1548  :F)
1549  #
1550  # CONFIG_FILE
1551  #
1552
1553  case $INSTALL in
1554  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1555  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1556  esac
1557# If the template does not know about datarootdir, expand it.
1558# FIXME: This hack should be removed a few years after 2.60.
1559ac_datarootdir_hack=; ac_datarootdir_seen=
1560ac_sed_dataroot='
1561/datarootdir/ {
1562  p
1563  q
1564}
1565/@datadir@/p
1566/@docdir@/p
1567/@infodir@/p
1568/@localedir@/p
1569/@mandir@/p'
1570case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1571*datarootdir*) ac_datarootdir_seen=yes;;
1572*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1573  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1574$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1575  ac_datarootdir_hack='
1576  s&@datadir@&${datarootdir}&g
1577  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1578  s&@infodir@&${datarootdir}/info&g
1579  s&@localedir@&${datarootdir}/locale&g
1580  s&@mandir@&${datarootdir}/man&g
1581  s&\${datarootdir}&${prefix}/share&g' ;;
1582esac
1583ac_sed_extra="/^[	 ]*VPATH[	 ]*=/{
1584s/:*\$(srcdir):*/:/
1585s/:*\${srcdir}:*/:/
1586s/:*@srcdir@:*/:/
1587s/^\([^=]*=[	 ]*\):*/\1/
1588s/:*$//
1589s/^[^=]*=[	 ]*$//
1590}
1591
1592:t
1593/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1594s|@configure_input@|$ac_sed_conf_input|;t t
1595s&@top_builddir@&$ac_top_builddir_sub&;t t
1596s&@top_build_prefix@&$ac_top_build_prefix&;t t
1597s&@srcdir@&$ac_srcdir&;t t
1598s&@abs_srcdir@&$ac_abs_srcdir&;t t
1599s&@top_srcdir@&$ac_top_srcdir&;t t
1600s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1601s&@builddir@&$ac_builddir&;t t
1602s&@abs_builddir@&$ac_abs_builddir&;t t
1603s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1604s&@INSTALL@&$ac_INSTALL&;t t
1605$ac_datarootdir_hack
1606"
1607eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1608  || as_fn_error "could not create $ac_file" "$LINENO" 5
1609
1610test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1611  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1612  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1613  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1614which seems to be undefined.  Please make sure it is defined." >&5
1615$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1616which seems to be undefined.  Please make sure it is defined." >&2;}
1617
1618  rm -f "$tmp/stdin"
1619  case $ac_file in
1620  -) cat "$tmp/out" && rm -f "$tmp/out";;
1621  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1622  esac \
1623  || as_fn_error "could not create $ac_file" "$LINENO" 5
1624 ;;
1625  :H)
1626  #
1627  # CONFIG_HEADER
1628  #
1629  if test x"$ac_file" != x-; then
1630    {
1631      $as_echo "/* $configure_input  */" \
1632      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1633    } >"$tmp/config.h" \
1634      || as_fn_error "could not create $ac_file" "$LINENO" 5
1635    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1636      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1637$as_echo "$as_me: $ac_file is unchanged" >&6;}
1638    else
1639      rm -f "$ac_file"
1640      mv "$tmp/config.h" "$ac_file" \
1641	|| as_fn_error "could not create $ac_file" "$LINENO" 5
1642    fi
1643  else
1644    $as_echo "/* $configure_input  */" \
1645      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1646      || as_fn_error "could not create -" "$LINENO" 5
1647  fi
1648# Compute "$ac_file"'s index in $config_headers.
1649_am_stamp_count=1
1650for _am_header in $config_headers :; do
1651  case $_am_header in
1652    "$ac_file" | "$ac_file":* )
1653      break ;;
1654    * )
1655      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1656  esac
1657done
1658echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" ||
1659$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1660	 X"$ac_file" : 'X\(//\)[^/]' \| \
1661	 X"$ac_file" : 'X\(//\)$' \| \
1662	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1663$as_echo X"$ac_file" |
1664    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1665	    s//\1/
1666	    q
1667	  }
1668	  /^X\(\/\/\)[^/].*/{
1669	    s//\1/
1670	    q
1671	  }
1672	  /^X\(\/\/\)$/{
1673	    s//\1/
1674	    q
1675	  }
1676	  /^X\(\/\).*/{
1677	    s//\1/
1678	    q
1679	  }
1680	  s/.*/./; q'`/stamp-h$_am_stamp_count
1681 ;;
1682
1683  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1684$as_echo "$as_me: executing $ac_file commands" >&6;}
1685 ;;
1686  esac
1687
1688
1689  case $ac_file$ac_mode in
1690    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
1691  # Strip MF so we end up with the name of the file.
1692  mf=`echo "$mf" | sed -e 's/:.*$//'`
1693  # Check whether this is an Automake generated Makefile or not.
1694  # We used to match only the files named `Makefile.in', but
1695  # some people rename them; so instead we look at the file content.
1696  # Grep'ing the first line is not enough: some people post-process
1697  # each Makefile.in and add a new line on top of each file to say so.
1698  # So let's grep whole file.
1699  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
1700    dirpart=`$as_dirname -- "$mf" ||
1701$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1702	 X"$mf" : 'X\(//\)[^/]' \| \
1703	 X"$mf" : 'X\(//\)$' \| \
1704	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1705$as_echo X"$mf" |
1706    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1707	    s//\1/
1708	    q
1709	  }
1710	  /^X\(\/\/\)[^/].*/{
1711	    s//\1/
1712	    q
1713	  }
1714	  /^X\(\/\/\)$/{
1715	    s//\1/
1716	    q
1717	  }
1718	  /^X\(\/\).*/{
1719	    s//\1/
1720	    q
1721	  }
1722	  s/.*/./; q'`
1723  else
1724    continue
1725  fi
1726  # Extract the definition of DEPDIR, am__include, and am__quote
1727  # from the Makefile without running `make'.
1728  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1729  test -z "$DEPDIR" && continue
1730  am__include=`sed -n 's/^am__include = //p' < "$mf"`
1731  test -z "am__include" && continue
1732  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1733  # When using ansi2knr, U may be empty or an underscore; expand it
1734  U=`sed -n 's/^U = //p' < "$mf"`
1735  # Find all dependency output files, they are included files with
1736  # $(DEPDIR) in their names.  We invoke sed twice because it is the
1737  # simplest approach to changing $(DEPDIR) to its actual value in the
1738  # expansion.
1739  for file in `sed -n "
1740    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1741       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1742    # Make sure the directory exists.
1743    test -f "$dirpart/$file" && continue
1744    fdir=`$as_dirname -- "$file" ||
1745$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1746	 X"$file" : 'X\(//\)[^/]' \| \
1747	 X"$file" : 'X\(//\)$' \| \
1748	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1749$as_echo X"$file" |
1750    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1751	    s//\1/
1752	    q
1753	  }
1754	  /^X\(\/\/\)[^/].*/{
1755	    s//\1/
1756	    q
1757	  }
1758	  /^X\(\/\/\)$/{
1759	    s//\1/
1760	    q
1761	  }
1762	  /^X\(\/\).*/{
1763	    s//\1/
1764	    q
1765	  }
1766	  s/.*/./; q'`
1767    as_dir=$dirpart/$fdir; as_fn_mkdir_p
1768    # echo "creating $dirpart/$file"
1769    echo '# dummy' > "$dirpart/$file"
1770  done
1771done
1772 ;;
1773    "libtool":C)
1774
1775    # See if we are running on zsh, and set the options which allow our
1776    # commands through without removal of \ escapes.
1777    if test -n "${ZSH_VERSION+set}" ; then
1778      setopt NO_GLOB_SUBST
1779    fi
1780
1781    cfgfile="${ofile}T"
1782    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1783    $RM "$cfgfile"
1784
1785    cat <<_LT_EOF >> "$cfgfile"
1786#! $SHELL
1787
1788# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1789# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1790# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1791# NOTE: Changes made to this file will be lost: look at ltmain.sh.
1792#
1793#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
1794#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1795#                 Foundation, Inc.
1796#   Written by Gordon Matzigkeit, 1996
1797#
1798#   This file is part of GNU Libtool.
1799#
1800# GNU Libtool is free software; you can redistribute it and/or
1801# modify it under the terms of the GNU General Public License as
1802# published by the Free Software Foundation; either version 2 of
1803# the License, or (at your option) any later version.
1804#
1805# As a special exception to the GNU General Public License,
1806# if you distribute this file as part of a program or library that
1807# is built using GNU Libtool, you may include this file under the
1808# same distribution terms that you use for the rest of that program.
1809#
1810# GNU Libtool is distributed in the hope that it will be useful,
1811# but WITHOUT ANY WARRANTY; without even the implied warranty of
1812# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1813# GNU General Public License for more details.
1814#
1815# You should have received a copy of the GNU General Public License
1816# along with GNU Libtool; see the file COPYING.  If not, a copy
1817# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
1818# obtained by writing to the Free Software Foundation, Inc.,
1819# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1820
1821
1822# The names of the tagged configurations supported by this script.
1823available_tags=""
1824
1825# ### BEGIN LIBTOOL CONFIG
1826
1827# Assembler program.
1828AS=$lt_AS
1829
1830# DLL creation program.
1831DLLTOOL=$lt_DLLTOOL
1832
1833# Object dumper program.
1834OBJDUMP=$lt_OBJDUMP
1835
1836# Which release of libtool.m4 was used?
1837macro_version=$macro_version
1838macro_revision=$macro_revision
1839
1840# Whether or not to build shared libraries.
1841build_libtool_libs=$enable_shared
1842
1843# Whether or not to build static libraries.
1844build_old_libs=$enable_static
1845
1846# What type of objects to build.
1847pic_mode=$pic_mode
1848
1849# Whether or not to optimize for fast installation.
1850fast_install=$enable_fast_install
1851
1852# Shell to use when invoking shell scripts.
1853SHELL=$lt_SHELL
1854
1855# An echo program that protects backslashes.
1856ECHO=$lt_ECHO
1857
1858# The PATH separator for the build system.
1859PATH_SEPARATOR=$lt_PATH_SEPARATOR
1860
1861# The host system.
1862host_alias=$host_alias
1863host=$host
1864host_os=$host_os
1865
1866# The build system.
1867build_alias=$build_alias
1868build=$build
1869build_os=$build_os
1870
1871# A sed program that does not truncate output.
1872SED=$lt_SED
1873
1874# Sed that helps us avoid accidentally triggering echo(1) options like -n.
1875Xsed="\$SED -e 1s/^X//"
1876
1877# A grep program that handles long lines.
1878GREP=$lt_GREP
1879
1880# An ERE matcher.
1881EGREP=$lt_EGREP
1882
1883# A literal string matcher.
1884FGREP=$lt_FGREP
1885
1886# A BSD- or MS-compatible name lister.
1887NM=$lt_NM
1888
1889# Whether we need soft or hard links.
1890LN_S=$lt_LN_S
1891
1892# What is the maximum length of a command?
1893max_cmd_len=$max_cmd_len
1894
1895# Object file suffix (normally "o").
1896objext=$ac_objext
1897
1898# Executable file suffix (normally "").
1899exeext=$exeext
1900
1901# whether the shell understands "unset".
1902lt_unset=$lt_unset
1903
1904# turn spaces into newlines.
1905SP2NL=$lt_lt_SP2NL
1906
1907# turn newlines into spaces.
1908NL2SP=$lt_lt_NL2SP
1909
1910# convert \$build file names to \$host format.
1911to_host_file_cmd=$lt_cv_to_host_file_cmd
1912
1913# convert \$build files to toolchain format.
1914to_tool_file_cmd=$lt_cv_to_tool_file_cmd
1915
1916# Method to check whether dependent libraries are shared objects.
1917deplibs_check_method=$lt_deplibs_check_method
1918
1919# Command to use when deplibs_check_method = "file_magic".
1920file_magic_cmd=$lt_file_magic_cmd
1921
1922# How to find potential files when deplibs_check_method = "file_magic".
1923file_magic_glob=$lt_file_magic_glob
1924
1925# Find potential files using nocaseglob when deplibs_check_method = "file_magic".
1926want_nocaseglob=$lt_want_nocaseglob
1927
1928# Command to associate shared and link libraries.
1929sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
1930
1931# The archiver.
1932AR=$lt_AR
1933
1934# Flags to create an archive.
1935AR_FLAGS=$lt_AR_FLAGS
1936
1937# How to feed a file listing to the archiver.
1938archiver_list_spec=$lt_archiver_list_spec
1939
1940# A symbol stripping program.
1941STRIP=$lt_STRIP
1942
1943# Commands used to install an old-style archive.
1944RANLIB=$lt_RANLIB
1945old_postinstall_cmds=$lt_old_postinstall_cmds
1946old_postuninstall_cmds=$lt_old_postuninstall_cmds
1947
1948# Whether to use a lock for old archive extraction.
1949lock_old_archive_extraction=$lock_old_archive_extraction
1950
1951# A C compiler.
1952LTCC=$lt_CC
1953
1954# LTCC compiler flags.
1955LTCFLAGS=$lt_CFLAGS
1956
1957# Take the output of nm and produce a listing of raw symbols and C names.
1958global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
1959
1960# Transform the output of nm in a proper C declaration.
1961global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
1962
1963# Transform the output of nm in a C name address pair.
1964global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
1965
1966# Transform the output of nm in a C name address pair when lib prefix is needed.
1967global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
1968
1969# Specify filename containing input files for \$NM.
1970nm_file_list_spec=$lt_nm_file_list_spec
1971
1972# The root where to search for dependent libraries,and in which our libraries should be installed.
1973lt_sysroot=$lt_sysroot
1974
1975# The name of the directory that contains temporary libtool files.
1976objdir=$objdir
1977
1978# Used to examine libraries when file_magic_cmd begins with "file".
1979MAGIC_CMD=$MAGIC_CMD
1980
1981# Must we lock files when doing compilation?
1982need_locks=$lt_need_locks
1983
1984# Manifest tool.
1985MANIFEST_TOOL=$lt_MANIFEST_TOOL
1986
1987# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
1988DSYMUTIL=$lt_DSYMUTIL
1989
1990# Tool to change global to local symbols on Mac OS X.
1991NMEDIT=$lt_NMEDIT
1992
1993# Tool to manipulate fat objects and archives on Mac OS X.
1994LIPO=$lt_LIPO
1995
1996# ldd/readelf like tool for Mach-O binaries on Mac OS X.
1997OTOOL=$lt_OTOOL
1998
1999# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
2000OTOOL64=$lt_OTOOL64
2001
2002# Old archive suffix (normally "a").
2003libext=$libext
2004
2005# Shared library suffix (normally ".so").
2006shrext_cmds=$lt_shrext_cmds
2007
2008# The commands to extract the exported symbol list from a shared archive.
2009extract_expsyms_cmds=$lt_extract_expsyms_cmds
2010
2011# Variables whose values should be saved in libtool wrapper scripts and
2012# restored at link time.
2013variables_saved_for_relink=$lt_variables_saved_for_relink
2014
2015# Do we need the "lib" prefix for modules?
2016need_lib_prefix=$need_lib_prefix
2017
2018# Do we need a version for libraries?
2019need_version=$need_version
2020
2021# Library versioning type.
2022version_type=$version_type
2023
2024# Shared library runtime path variable.
2025runpath_var=$runpath_var
2026
2027# Shared library path variable.
2028shlibpath_var=$shlibpath_var
2029
2030# Is shlibpath searched before the hard-coded library search path?
2031shlibpath_overrides_runpath=$shlibpath_overrides_runpath
2032
2033# Format of library name prefix.
2034libname_spec=$lt_libname_spec
2035
2036# List of archive names.  First name is the real one, the rest are links.
2037# The last name is the one that the linker finds with -lNAME
2038library_names_spec=$lt_library_names_spec
2039
2040# The coded name of the library, if different from the real name.
2041soname_spec=$lt_soname_spec
2042
2043# Permission mode override for installation of shared libraries.
2044install_override_mode=$lt_install_override_mode
2045
2046# Command to use after installation of a shared archive.
2047postinstall_cmds=$lt_postinstall_cmds
2048
2049# Command to use after uninstallation of a shared archive.
2050postuninstall_cmds=$lt_postuninstall_cmds
2051
2052# Commands used to finish a libtool library installation in a directory.
2053finish_cmds=$lt_finish_cmds
2054
2055# As "finish_cmds", except a single script fragment to be evaled but
2056# not shown.
2057finish_eval=$lt_finish_eval
2058
2059# Whether we should hardcode library paths into libraries.
2060hardcode_into_libs=$hardcode_into_libs
2061
2062# Compile-time system search path for libraries.
2063sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
2064
2065# Run-time system search path for libraries.
2066sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
2067
2068# Whether dlopen is supported.
2069dlopen_support=$enable_dlopen
2070
2071# Whether dlopen of programs is supported.
2072dlopen_self=$enable_dlopen_self
2073
2074# Whether dlopen of statically linked programs is supported.
2075dlopen_self_static=$enable_dlopen_self_static
2076
2077# Commands to strip libraries.
2078old_striplib=$lt_old_striplib
2079striplib=$lt_striplib
2080
2081
2082# The linker used to build libraries.
2083LD=$lt_LD
2084
2085# How to create reloadable object files.
2086reload_flag=$lt_reload_flag
2087reload_cmds=$lt_reload_cmds
2088
2089# Commands used to build an old-style archive.
2090old_archive_cmds=$lt_old_archive_cmds
2091
2092# A language specific compiler.
2093CC=$lt_compiler
2094
2095# Is the compiler the GNU compiler?
2096with_gcc=$GCC
2097
2098# Compiler flag to turn off builtin functions.
2099no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
2100
2101# Additional compiler flags for building library objects.
2102pic_flag=$lt_lt_prog_compiler_pic
2103
2104# How to pass a linker flag through the compiler.
2105wl=$lt_lt_prog_compiler_wl
2106
2107# Compiler flag to prevent dynamic linking.
2108link_static_flag=$lt_lt_prog_compiler_static
2109
2110# Does compiler simultaneously support -c and -o options?
2111compiler_c_o=$lt_lt_cv_prog_compiler_c_o
2112
2113# Whether or not to add -lc for building shared libraries.
2114build_libtool_need_lc=$archive_cmds_need_lc
2115
2116# Whether or not to disallow shared libs when runtime libs are static.
2117allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
2118
2119# Compiler flag to allow reflexive dlopens.
2120export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
2121
2122# Compiler flag to generate shared objects directly from archives.
2123whole_archive_flag_spec=$lt_whole_archive_flag_spec
2124
2125# Whether the compiler copes with passing no objects directly.
2126compiler_needs_object=$lt_compiler_needs_object
2127
2128# Create an old-style archive from a shared archive.
2129old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
2130
2131# Create a temporary old-style archive to link instead of a shared archive.
2132old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
2133
2134# Commands used to build a shared archive.
2135archive_cmds=$lt_archive_cmds
2136archive_expsym_cmds=$lt_archive_expsym_cmds
2137
2138# Commands used to build a loadable module if different from building
2139# a shared archive.
2140module_cmds=$lt_module_cmds
2141module_expsym_cmds=$lt_module_expsym_cmds
2142
2143# Whether we are building with GNU ld or not.
2144with_gnu_ld=$lt_with_gnu_ld
2145
2146# Flag that allows shared libraries with undefined symbols to be built.
2147allow_undefined_flag=$lt_allow_undefined_flag
2148
2149# Flag that enforces no undefined symbols.
2150no_undefined_flag=$lt_no_undefined_flag
2151
2152# Flag to hardcode \$libdir into a binary during linking.
2153# This must work even if \$libdir does not exist
2154hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
2155
2156# Whether we need a single "-rpath" flag with a separated argument.
2157hardcode_libdir_separator=$lt_hardcode_libdir_separator
2158
2159# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2160# DIR into the resulting binary.
2161hardcode_direct=$hardcode_direct
2162
2163# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2164# DIR into the resulting binary and the resulting library dependency is
2165# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
2166# library is relocated.
2167hardcode_direct_absolute=$hardcode_direct_absolute
2168
2169# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
2170# into the resulting binary.
2171hardcode_minus_L=$hardcode_minus_L
2172
2173# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
2174# into the resulting binary.
2175hardcode_shlibpath_var=$hardcode_shlibpath_var
2176
2177# Set to "yes" if building a shared library automatically hardcodes DIR
2178# into the library and all subsequent libraries and executables linked
2179# against it.
2180hardcode_automatic=$hardcode_automatic
2181
2182# Set to yes if linker adds runtime paths of dependent libraries
2183# to runtime path list.
2184inherit_rpath=$inherit_rpath
2185
2186# Whether libtool must link a program against all its dependency libraries.
2187link_all_deplibs=$link_all_deplibs
2188
2189# Set to "yes" if exported symbols are required.
2190always_export_symbols=$always_export_symbols
2191
2192# The commands to list exported symbols.
2193export_symbols_cmds=$lt_export_symbols_cmds
2194
2195# Symbols that should not be listed in the preloaded symbols.
2196exclude_expsyms=$lt_exclude_expsyms
2197
2198# Symbols that must always be exported.
2199include_expsyms=$lt_include_expsyms
2200
2201# Commands necessary for linking programs (against libraries) with templates.
2202prelink_cmds=$lt_prelink_cmds
2203
2204# Commands necessary for finishing linking programs.
2205postlink_cmds=$lt_postlink_cmds
2206
2207# Specify filename containing input files.
2208file_list_spec=$lt_file_list_spec
2209
2210# How to hardcode a shared library path into an executable.
2211hardcode_action=$hardcode_action
2212
2213# ### END LIBTOOL CONFIG
2214
2215_LT_EOF
2216
2217  case $host_os in
2218  aix3*)
2219    cat <<\_LT_EOF >> "$cfgfile"
2220# AIX sometimes has problems with the GCC collect2 program.  For some
2221# reason, if we set the COLLECT_NAMES environment variable, the problems
2222# vanish in a puff of smoke.
2223if test "X${COLLECT_NAMES+set}" != Xset; then
2224  COLLECT_NAMES=
2225  export COLLECT_NAMES
2226fi
2227_LT_EOF
2228    ;;
2229  esac
2230
2231
2232ltmain="$ac_aux_dir/ltmain.sh"
2233
2234
2235  # We use sed instead of cat because bash on DJGPP gets confused if
2236  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
2237  # text mode, it properly converts lines to CR/LF.  This bash problem
2238  # is reportedly fixed, but why not run on old versions too?
2239  sed '$q' "$ltmain" >> "$cfgfile" \
2240     || (rm -f "$cfgfile"; exit 1)
2241
2242  if test x"$xsi_shell" = xyes; then
2243  sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
2244func_dirname ()\
2245{\
2246\    case ${1} in\
2247\      */*) func_dirname_result="${1%/*}${2}" ;;\
2248\      *  ) func_dirname_result="${3}" ;;\
2249\    esac\
2250} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
2251  && mv -f "$cfgfile.tmp" "$cfgfile" \
2252    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2253test 0 -eq $? || _lt_function_replace_fail=:
2254
2255
2256  sed -e '/^func_basename ()$/,/^} # func_basename /c\
2257func_basename ()\
2258{\
2259\    func_basename_result="${1##*/}"\
2260} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
2261  && mv -f "$cfgfile.tmp" "$cfgfile" \
2262    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2263test 0 -eq $? || _lt_function_replace_fail=:
2264
2265
2266  sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
2267func_dirname_and_basename ()\
2268{\
2269\    case ${1} in\
2270\      */*) func_dirname_result="${1%/*}${2}" ;;\
2271\      *  ) func_dirname_result="${3}" ;;\
2272\    esac\
2273\    func_basename_result="${1##*/}"\
2274} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
2275  && mv -f "$cfgfile.tmp" "$cfgfile" \
2276    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2277test 0 -eq $? || _lt_function_replace_fail=:
2278
2279
2280  sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
2281func_stripname ()\
2282{\
2283\    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
2284\    # positional parameters, so assign one to ordinary parameter first.\
2285\    func_stripname_result=${3}\
2286\    func_stripname_result=${func_stripname_result#"${1}"}\
2287\    func_stripname_result=${func_stripname_result%"${2}"}\
2288} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
2289  && mv -f "$cfgfile.tmp" "$cfgfile" \
2290    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2291test 0 -eq $? || _lt_function_replace_fail=:
2292
2293
2294  sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
2295func_split_long_opt ()\
2296{\
2297\    func_split_long_opt_name=${1%%=*}\
2298\    func_split_long_opt_arg=${1#*=}\
2299} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
2300  && mv -f "$cfgfile.tmp" "$cfgfile" \
2301    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2302test 0 -eq $? || _lt_function_replace_fail=:
2303
2304
2305  sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
2306func_split_short_opt ()\
2307{\
2308\    func_split_short_opt_arg=${1#??}\
2309\    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
2310} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
2311  && mv -f "$cfgfile.tmp" "$cfgfile" \
2312    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2313test 0 -eq $? || _lt_function_replace_fail=:
2314
2315
2316  sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
2317func_lo2o ()\
2318{\
2319\    case ${1} in\
2320\      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
2321\      *)    func_lo2o_result=${1} ;;\
2322\    esac\
2323} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
2324  && mv -f "$cfgfile.tmp" "$cfgfile" \
2325    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2326test 0 -eq $? || _lt_function_replace_fail=:
2327
2328
2329  sed -e '/^func_xform ()$/,/^} # func_xform /c\
2330func_xform ()\
2331{\
2332    func_xform_result=${1%.*}.lo\
2333} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
2334  && mv -f "$cfgfile.tmp" "$cfgfile" \
2335    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2336test 0 -eq $? || _lt_function_replace_fail=:
2337
2338
2339  sed -e '/^func_arith ()$/,/^} # func_arith /c\
2340func_arith ()\
2341{\
2342    func_arith_result=$(( $* ))\
2343} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
2344  && mv -f "$cfgfile.tmp" "$cfgfile" \
2345    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2346test 0 -eq $? || _lt_function_replace_fail=:
2347
2348
2349  sed -e '/^func_len ()$/,/^} # func_len /c\
2350func_len ()\
2351{\
2352    func_len_result=${#1}\
2353} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
2354  && mv -f "$cfgfile.tmp" "$cfgfile" \
2355    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2356test 0 -eq $? || _lt_function_replace_fail=:
2357
2358fi
2359
2360if test x"$lt_shell_append" = xyes; then
2361  sed -e '/^func_append ()$/,/^} # func_append /c\
2362func_append ()\
2363{\
2364    eval "${1}+=\\${2}"\
2365} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
2366  && mv -f "$cfgfile.tmp" "$cfgfile" \
2367    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2368test 0 -eq $? || _lt_function_replace_fail=:
2369
2370
2371  sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
2372func_append_quoted ()\
2373{\
2374\    func_quote_for_eval "${2}"\
2375\    eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
2376} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
2377  && mv -f "$cfgfile.tmp" "$cfgfile" \
2378    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2379test 0 -eq $? || _lt_function_replace_fail=:
2380
2381
2382  # Save a `func_append' function call where possible by direct use of '+='
2383  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
2384    && mv -f "$cfgfile.tmp" "$cfgfile" \
2385      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2386  test 0 -eq $? || _lt_function_replace_fail=:
2387else
2388  # Save a `func_append' function call even when '+=' is not available
2389  sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
2390    && mv -f "$cfgfile.tmp" "$cfgfile" \
2391      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2392  test 0 -eq $? || _lt_function_replace_fail=:
2393fi
2394
2395if test x"$_lt_function_replace_fail" = x":"; then
2396  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
2397$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
2398fi
2399
2400
2401   mv -f "$cfgfile" "$ofile" ||
2402    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
2403  chmod +x "$ofile"
2404
2405 ;;
2406
2407  esac
2408done # for ac_tag
2409
2410
2411as_fn_exit 0
2412