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.  
  7. debug=false
  8. ac_cs_recheck=false
  9. ac_cs_silent=false
  10.  
  11. SHELL=${CONFIG_SHELL-/bin/bash}
  12. export SHELL
  13. ## -------------------- ##
  14. ## M4sh Initialization. ##
  15. ## -------------------- ##
  16.  
  17. # Be more Bourne compatible
  18. DUALCASE=1; export DUALCASE # for MKS sh
  19. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  20. emulate sh
  21. NULLCMD=:
  22. # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  23. # is contrary to our usage. Disable this feature.
  24. alias -g '${1+"$@"}'='"$@"'
  25. setopt NO_GLOB_SUBST
  26. else
  27. case `(set -o) 2>/dev/null` in #(
  28. *posix*) :
  29. set -o posix ;; #(
  30. *) :
  31. ;;
  32. esac
  33. fi
  34.  
  35.  
  36. as_nl='
  37. '
  38. export as_nl
  39. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  40. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  41. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  42. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  43. # Prefer a ksh shell builtin over an external printf program on Solaris,
  44. # but without wasting forks for bash or zsh.
  45. if test -z "$BASH_VERSION$ZSH_VERSION" \
  46. && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  47. as_echo='print -r --'
  48. as_echo_n='print -rn --'
  49. elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  50. as_echo='printf %s\n'
  51. as_echo_n='printf %s'
  52. else
  53. if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  54. as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  55. as_echo_n='/usr/ucb/echo -n'
  56. else
  57. as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  58. as_echo_n_body='eval
  59. arg=$1;
  60. case $arg in #(
  61. *"$as_nl"*)
  62. expr "X$arg" : "X\\(.*\\)$as_nl";
  63. arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  64. esac;
  65. expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  66. '
  67. export as_echo_n_body
  68. as_echo_n='sh -c $as_echo_n_body as_echo'
  69. fi
  70. export as_echo_body
  71. as_echo='sh -c $as_echo_body as_echo'
  72. fi
  73.  
  74. # The user is always right.
  75. if test "${PATH_SEPARATOR+set}" != set; then
  76. PATH_SEPARATOR=:
  77. (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  78. (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  79. PATH_SEPARATOR=';'
  80. }
  81. fi
  82.  
  83.  
  84. # IFS
  85. # We need space, tab and new line, in precisely that order. Quoting is
  86. # there to prevent editors from complaining about space-tab.
  87. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  88. # splitting by setting IFS to empty value.)
  89. IFS=" "" $as_nl"
  90.  
  91. # Find who we are. Look in the path if we contain no directory separator.
  92. case $0 in #((
  93. *[\\/]* ) as_myself=$0 ;;
  94. *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  95. for as_dir in $PATH
  96. do
  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
  101. IFS=$as_save_IFS
  102.  
  103. ;;
  104. esac
  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.
  107. if test "x$as_myself" = x; then
  108. as_myself=$0
  109. fi
  110. if test ! -f "$as_myself"; then
  111. $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  112. exit 1
  113. fi
  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.
  119. for as_var in BASH_ENV ENV MAIL MAILPATH
  120. do eval test x\${$as_var+set} = xset \
  121. && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  122. done
  123. PS1='$ '
  124. PS2='> '
  125. PS4='+ '
  126.  
  127. # NLS nuisances.
  128. LC_ALL=C
  129. export LC_ALL
  130. LANGUAGE=C
  131. export 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.
  142. as_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.
  157. as_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.
  165. as_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.
  175. as_fn_unset ()
  176. {
  177. { eval $1=; unset $1;}
  178. }
  179. as_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.
  186. if (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. }'
  191. else
  192. as_fn_append ()
  193. {
  194. eval $1=\$$1\$2
  195. }
  196. fi # 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.
  203. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  204. eval 'as_fn_arith ()
  205. {
  206. as_val=$(( $* ))
  207. }'
  208. else
  209. as_fn_arith ()
  210. {
  211. as_val=`expr "$@" || test $? -eq 1`
  212. }
  213. fi # as_fn_arith
  214.  
  215.  
  216. if expr a : '\(a\)' >/dev/null 2>&1 &&
  217. test "X`expr 00001 : '.*\(...\)'`" = X001; then
  218. as_expr=expr
  219. else
  220. as_expr=false
  221. fi
  222.  
  223. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  224. as_basename=basename
  225. else
  226. as_basename=false
  227. fi
  228.  
  229. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  230. as_dirname=dirname
  231. else
  232. as_dirname=false
  233. fi
  234.  
  235. as_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.
  255. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  256. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  257. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  258. as_cr_digits='0123456789'
  259. as_cr_alnum=$as_cr_Letters$as_cr_digits
  260.  
  261. ECHO_C= ECHO_N= ECHO_T=
  262. case `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';;
  272. esac
  273.  
  274. rm -f conf$$ conf$$.exe conf$$.file
  275. if test -d conf$$.dir; then
  276. rm -f conf$$.dir/conf$$.file
  277. else
  278. rm -f conf$$.dir
  279. mkdir conf$$.dir 2>/dev/null
  280. fi
  281. if (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
  295. else
  296. as_ln_s='cp -p'
  297. fi
  298. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  299. rmdir conf$$.dir 2>/dev/null
  300.  
  301.  
  302. # as_fn_mkdir_p
  303. # -------------
  304. # Create "$as_dir" as a directory, including parents if necessary.
  305. as_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
  349. if mkdir -p . 2>/dev/null; then
  350. as_mkdir_p='mkdir -p "$as_dir"'
  351. else
  352. test -d ./-p && rmdir ./-p
  353. as_mkdir_p=false
  354. fi
  355.  
  356. if test -x / >/dev/null 2>&1; then
  357. as_test_x='test -x'
  358. else
  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. '
  376. fi
  377. as_executable_p=$as_test_x
  378.  
  379. # Sed expression to map a string onto a valid CPP name.
  380. as_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.
  383. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  384.  
  385.  
  386. exec 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.
  393. ac_log="
  394. This file was extended by $as_me, which was
  395. generated 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.  
  403. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  404. "
  405.  
  406. # Files that config.status was made for.
  407. config_files=" GNUmakefile doc/source/ldp.dsl"
  408. config_headers=" config.h"
  409.  
  410. ac_cs_usage="\
  411. \`$as_me' instantiates files and other configuration actions
  412. from templates according to the current configuration. Unless the files
  413. and actions are specified as TAGs, all are instantiated by default.
  414.  
  415. Usage: $0 [OPTION]... [TAG]...
  416.  
  417. -h, --help print this help, then exit
  418. -V, --version print version number and configuration settings, then exit
  419. --config print configuration, then exit
  420. -q, --quiet, --silent
  421. do not print progress messages
  422. -d, --debug don't remove temporary files
  423. --recheck update $as_me by reconfiguring in the same conditions
  424. --file=FILE[:TEMPLATE]
  425. instantiate the configuration file FILE
  426. --header=FILE[:TEMPLATE]
  427. instantiate the configuration header FILE
  428.  
  429. Configuration files:
  430. $config_files
  431.  
  432. Configuration headers:
  433. $config_headers
  434.  
  435. Report bugs to the package provider."
  436.  
  437. ac_cs_config="'--host=arm-none-linux-gnueabli' 'host_alias=arm-none-linux-gnueabli' 'CC=droid-gcc' 'CPPFLAGS=-I/home/kurtl/orbit_build_external/zlib/'"
  438. ac_cs_version="\
  439. config.status
  440. configured by ./configure, generated by GNU Autoconf 2.67,
  441. with options \"$ac_cs_config\"
  442.  
  443. Copyright (C) 2010 Free Software Foundation, Inc.
  444. This config.status script is free software; the Free Software Foundation
  445. gives unlimited permission to copy, distribute and modify it."
  446.  
  447. ac_pwd='/home/kurtl/orbit_build/external/privoxy/privoxy-3.0.12-stable'
  448. srcdir='.'
  449. INSTALL='/usr/bin/install -c'
  450. AWK='gawk'
  451. test -n "$AWK" || AWK=awk
  452. # The default lists apply if the user does not specify any file.
  453. ac_need_defaults=:
  454. while test $# != 0
  455. do
  456. case $1 in
  457. --*=?*)
  458. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  459. ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  460. ac_shift=:
  461. ;;
  462. --*=)
  463. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  464. ac_optarg=
  465. ac_shift=:
  466. ;;
  467. *)
  468. ac_option=$1
  469. ac_optarg=$2
  470. ac_shift=shift
  471. ;;
  472. esac
  473.  
  474. case $ac_option in
  475. # Handling of the options.
  476. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  477. ac_cs_recheck=: ;;
  478. --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  479. $as_echo "$ac_cs_version"; exit ;;
  480. --config | --confi | --conf | --con | --co | --c )
  481. $as_echo "$ac_cs_config"; exit ;;
  482. --debug | --debu | --deb | --de | --d | -d )
  483. debug=: ;;
  484. --file | --fil | --fi | --f )
  485. $ac_shift
  486. case $ac_optarg in
  487. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  488. '') as_fn_error $? "missing file argument" ;;
  489. esac
  490. as_fn_append CONFIG_FILES " '$ac_optarg'"
  491. ac_need_defaults=false;;
  492. --header | --heade | --head | --hea )
  493. $ac_shift
  494. case $ac_optarg in
  495. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  496. esac
  497. as_fn_append CONFIG_HEADERS " '$ac_optarg'"
  498. ac_need_defaults=false;;
  499. --he | --h)
  500. # Conflict between --help and --header
  501. as_fn_error $? "ambiguous option: \`$1'
  502. Try \`$0 --help' for more information.";;
  503. --help | --hel | -h )
  504. $as_echo "$ac_cs_usage"; exit ;;
  505. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  506. | -silent | --silent | --silen | --sile | --sil | --si | --s)
  507. ac_cs_silent=: ;;
  508.  
  509. # This is an error.
  510. -*) as_fn_error $? "unrecognized option: \`$1'
  511. Try \`$0 --help' for more information." ;;
  512.  
  513. *) as_fn_append ac_config_targets " $1"
  514. ac_need_defaults=false ;;
  515.  
  516. esac
  517. shift
  518. done
  519.  
  520. ac_configure_extra_args=
  521.  
  522. if $ac_cs_silent; then
  523. exec 6>/dev/null
  524. ac_configure_extra_args="$ac_configure_extra_args --silent"
  525. fi
  526.  
  527. if $ac_cs_recheck; then
  528. set X '/bin/bash' './configure' '--host=arm-none-linux-gnueabli' 'host_alias=arm-none-linux-gnueabli' 'CC=droid-gcc' 'CPPFLAGS=-I/home/kurtl/orbit_build_external/zlib/' $ac_configure_extra_args --no-create --no-recursion
  529. shift
  530. $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
  531. CONFIG_SHELL='/bin/bash'
  532. export CONFIG_SHELL
  533. exec "$@"
  534. fi
  535.  
  536. exec 5>>config.log
  537. {
  538. echo
  539. sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  540. ## Running $as_me. ##
  541. _ASBOX
  542. $as_echo "$ac_log"
  543. } >&5
  544.  
  545.  
  546. # Handling of arguments.
  547. for ac_config_target in $ac_config_targets
  548. do
  549. case $ac_config_target in
  550. "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  551. "GNUmakefile") CONFIG_FILES="$CONFIG_FILES GNUmakefile" ;;
  552. "doc/source/ldp.dsl") CONFIG_FILES="$CONFIG_FILES doc/source/ldp.dsl" ;;
  553.  
  554. *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
  555. esac
  556. done
  557.  
  558.  
  559. # If the user did not use the arguments to specify the items to instantiate,
  560. # then the envvar interface is used. Set only those that are not.
  561. # We use the long form for the default assignment because of an extremely
  562. # bizarre bug on SunOS 4.1.3.
  563. if $ac_need_defaults; then
  564. test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  565. test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  566. fi
  567.  
  568. # Have a temporary directory for convenience. Make it in the build tree
  569. # simply because there is no reason against having it here, and in addition,
  570. # creating and moving files from /tmp can sometimes cause problems.
  571. # Hook for its removal unless debugging.
  572. # Note that there is a small window in which the directory will not be cleaned:
  573. # after its creation but before its name has been assigned to `$tmp'.
  574. $debug ||
  575. {
  576. tmp=
  577. trap 'exit_status=$?
  578. { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  579. ' 0
  580. trap 'as_fn_exit 1' 1 2 13 15
  581. }
  582. # Create a (secure) tmp directory for tmp files.
  583.  
  584. {
  585. tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  586. test -n "$tmp" && test -d "$tmp"
  587. } ||
  588. {
  589. tmp=./conf$$-$RANDOM
  590. (umask 077 && mkdir "$tmp")
  591. } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
  592.  
  593. # Set up the scripts for CONFIG_FILES section.
  594. # No need to generate them if there are no CONFIG_FILES.
  595. # This happens for instance with `./config.status config.h'.
  596. if test -n "$CONFIG_FILES"; then
  597.  
  598.  
  599. ac_cr=`echo X | tr X '\015'`
  600. # On cygwin, bash can eat \r inside `` if the user requested igncr.
  601. # But we know of no other shell where ac_cr would be empty at this
  602. # point, so we can use a bashism as a fallback.
  603. if test "x$ac_cr" = x; then
  604. eval ac_cr=\$\'\\r\'
  605. fi
  606. ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  607. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  608. ac_cs_awk_cr='\\r'
  609. else
  610. ac_cs_awk_cr=$ac_cr
  611. fi
  612.  
  613. echo 'BEGIN {' >"$tmp/subs1.awk" &&
  614. cat >>"$tmp/subs1.awk" <<\_ACAWK &&
  615. S["LTLIBOBJS"]=""
  616. S["LIBOBJS"]=""
  617. S["PTHREAD_LIB"]=""
  618. S["SPECIAL_CFLAGS"]="-pthread"
  619. S["STATIC_PCRS_ONLY"]=""
  620. S["STATIC_PCRE_ONLY"]=""
  621. S["AMIGAOS_ONLY"]="#"
  622. S["SOCKET_LIB"]=""
  623. S["PTHREAD_ONLY"]=""
  624. S["EGREP"]="/bin/grep -E"
  625. S["GREP"]="/bin/grep"
  626. S["DKPREFIX"]="none"
  627. S["JADECAT"]=""
  628. S["DOC_STATUS"]="p-stable"
  629. S["MAN2HTML"]="false"
  630. S["JADEBIN"]="false"
  631. S["RPM_BASE"]=""
  632. S["RPMBIN"]="false"
  633. S["DB2HTML"]="false"
  634. S["WDUMP"]="w3m"
  635. S["WIN_ONLY"]="#"
  636. S["GROUP"]=""
  637. S["USER"]=""
  638. S["ID"]="/usr/bin/id"
  639. S["BGROUPS"]="/usr/bin/groups"
  640. S["GDB"]="yes"
  641. S["AWK"]="gawk"
  642. S["SET_MAKE"]=""
  643. S["LN_S"]="ln -s"
  644. S["INSTALL_DATA"]="${INSTALL} -m 644"
  645. S["INSTALL_SCRIPT"]="${INSTALL}"
  646. S["INSTALL_PROGRAM"]="${INSTALL}"
  647. S["CPP"]="droid-gcc -E"
  648. S["OBJEXT"]="o"
  649. S["EXEEXT"]=""
  650. S["ac_ct_CC"]=""
  651. S["CPPFLAGS"]="-I/home/kurtl/orbit_build_external/zlib/"
  652. S["LDFLAGS"]=""
  653. S["CFLAGS"]="-pipe -O2"
  654. S["CC"]="droid-gcc"
  655. S["CODE_STATUS"]="stable"
  656. S["VERSION_POINT"]="12"
  657. S["VERSION_MINOR"]="0"
  658. S["VERSION_MAJOR"]="3"
  659. S["host_os"]="linux-gnueabli"
  660. S["host_vendor"]="none"
  661. S["host_cpu"]="arm"
  662. S["host"]="arm-none-linux-gnueabli"
  663. S["build_os"]="linux-gnu"
  664. S["build_vendor"]="unknown"
  665. S["build_cpu"]="x86_64"
  666. S["build"]="x86_64-unknown-linux-gnu"
  667. S["target_alias"]=""
  668. S["host_alias"]="arm-none-linux-gnueabli"
  669. S["build_alias"]=""
  670. S["LIBS"]=" -lz"
  671. S["ECHO_T"]=""
  672. S["ECHO_N"]="-n"
  673. S["ECHO_C"]=""
  674. S["DEFS"]="-DHAVE_CONFIG_H"
  675. S["mandir"]="${datarootdir}/man"
  676. S["localedir"]="${datarootdir}/locale"
  677. S["libdir"]="${exec_prefix}/lib"
  678. S["psdir"]="${docdir}"
  679. S["pdfdir"]="${docdir}"
  680. S["dvidir"]="${docdir}"
  681. S["htmldir"]="${docdir}"
  682. S["infodir"]="${datarootdir}/info"
  683. S["docdir"]="${datarootdir}/doc/${PACKAGE}"
  684. S["oldincludedir"]="/usr/include"
  685. S["includedir"]="${prefix}/include"
  686. S["localstatedir"]="${prefix}/var"
  687. S["sharedstatedir"]="${prefix}/com"
  688. S["sysconfdir"]="${prefix}/etc"
  689. S["datadir"]="${datarootdir}"
  690. S["datarootdir"]="${prefix}/share"
  691. S["libexecdir"]="${exec_prefix}/libexec"
  692. S["sbindir"]="${exec_prefix}/sbin"
  693. S["bindir"]="${exec_prefix}/bin"
  694. S["program_transform_name"]="s,x,x,"
  695. S["prefix"]="/usr/local"
  696. S["exec_prefix"]="${prefix}"
  697. S["PACKAGE_URL"]=""
  698. S["PACKAGE_BUGREPORT"]=""
  699. S["PACKAGE_STRING"]=""
  700. S["PACKAGE_VERSION"]=""
  701. S["PACKAGE_TARNAME"]=""
  702. S["PACKAGE_NAME"]=""
  703. S["PATH_SEPARATOR"]=":"
  704. S["SHELL"]="/bin/bash"
  705. _ACAWK
  706. cat >>"$tmp/subs1.awk" <<_ACAWK &&
  707. for (key in S) S_is_set[key] = 1
  708. FS = ""
  709.  
  710. }
  711. {
  712. line = $ 0
  713. nfields = split(line, field, "@")
  714. substed = 0
  715. len = length(field[1])
  716. for (i = 2; i < nfields; i++) {
  717. key = field[i]
  718. keylen = length(key)
  719. if (S_is_set[key]) {
  720. value = S[key]
  721. line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  722. len += length(value) + length(field[++i])
  723. substed = 1
  724. } else
  725. len += 1 + keylen
  726. }
  727.  
  728. print line
  729. }
  730.  
  731. _ACAWK
  732. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  733. sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  734. else
  735. cat
  736. fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
  737. || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
  738. fi # test -n "$CONFIG_FILES"
  739.  
  740. # Set up the scripts for CONFIG_HEADERS section.
  741. # No need to generate them if there are no CONFIG_HEADERS.
  742. # This happens for instance with `./config.status Makefile'.
  743. if test -n "$CONFIG_HEADERS"; then
  744. cat >"$tmp/defines.awk" <<\_ACAWK ||
  745. BEGIN {
  746. D["PACKAGE_NAME"]=" \"\""
  747. D["PACKAGE_TARNAME"]=" \"\""
  748. D["PACKAGE_VERSION"]=" \"\""
  749. D["PACKAGE_STRING"]=" \"\""
  750. D["PACKAGE_BUGREPORT"]=" \"\""
  751. D["PACKAGE_URL"]=" \"\""
  752. D["VERSION_MAJOR"]=" 3"
  753. D["VERSION_MINOR"]=" 0"
  754. D["VERSION_POINT"]=" 12"
  755. D["VERSION"]=" \"3.0.12\""
  756. D["CODE_STATUS"]=" \"stable\""
  757. D["STDC_HEADERS"]=" 1"
  758. D["HAVE_SYS_TYPES_H"]=" 1"
  759. D["HAVE_SYS_STAT_H"]=" 1"
  760. D["HAVE_STDLIB_H"]=" 1"
  761. D["HAVE_STRING_H"]=" 1"
  762. D["HAVE_MEMORY_H"]=" 1"
  763. D["HAVE_STRINGS_H"]=" 1"
  764. D["HAVE_INTTYPES_H"]=" 1"
  765. D["HAVE_STDINT_H"]=" 1"
  766. D["HAVE_UNISTD_H"]=" 1"
  767. D["FEATURE_PTHREAD"]=" 1"
  768. D["HAVE_GETHOSTBYNAME_R_6_ARGS"]=" 1"
  769. D["HAVE_GMTIME_R"]=" 1"
  770. D["HAVE_LOCALTIME_R"]=" 1"
  771. D["STDC_HEADERS"]=" 1"
  772. D["HAVE_DIRENT_H"]=" 1"
  773. D["TIME_WITH_SYS_TIME"]=" 1"
  774. D["SIZEOF_INT"]=" 4"
  775. D["SIZEOF_CHAR_P"]=" 4"
  776. D["SIZEOF_LONG"]=" 4"
  777. D["SIZEOF_LONG_LONG"]=" 8"
  778. D["SIZEOF_SIZE_T"]=" 4"
  779. D["HAVE_ARPA_INET_H"]=" 1"
  780. D["HAVE_ERRNO_H"]=" 1"
  781. D["HAVE_FCNTL_H"]=" 1"
  782. D["HAVE_LIMITS_H"]=" 1"
  783. D["HAVE_LOCALE_H"]=" 1"
  784. D["HAVE_NETDB_H"]=" 1"
  785. D["HAVE_NETINET_IN_H"]=" 1"
  786. D["HAVE_STDDEF_H"]=" 1"
  787. D["HAVE_STDLIB_H"]=" 1"
  788. D["HAVE_STRING_H"]=" 1"
  789. D["HAVE_SYS_IOCTL_H"]=" 1"
  790. D["HAVE_SYS_SOCKET_H"]=" 1"
  791. D["HAVE_SYS_TIME_H"]=" 1"
  792. D["HAVE_SYS_TIMEB_H"]=" 1"
  793. D["HAVE_SYS_WAIT_H"]=" 1"
  794. D["HAVE_UNISTD_H"]=" 1"
  795. D["HAVE_STRERROR"]=" 1"
  796. D["HAVE_BCOPY"]=" 1"
  797. D["HAVE_MEMMOVE"]=" 1"
  798. D["SETPGRP_VOID"]=" 1"
  799. D["RETSIGTYPE"]=" void"
  800. D["HAVE_ACCESS"]=" 1"
  801. D["HAVE_ATEXIT"]=" 1"
  802. D["HAVE_GETCWD"]=" 1"
  803. D["HAVE_GETHOSTBYADDR"]=" 1"
  804. D["HAVE_GETHOSTBYNAME"]=" 1"
  805. D["HAVE_GETHOSTBYNAME_R"]=" 1"
  806. D["HAVE_GETTIMEOFDAY"]=" 1"
  807. D["HAVE_INET_NTOA"]=" 1"
  808. D["HAVE_LOCALTIME_R"]=" 1"
  809. D["HAVE_MEMCHR"]=" 1"
  810. D["HAVE_MEMMOVE"]=" 1"
  811. D["HAVE_MEMSET"]=" 1"
  812. D["HAVE_POLL"]=" 1"
  813. D["HAVE_PUTENV"]=" 1"
  814. D["HAVE_REGCOMP"]=" 1"
  815. D["HAVE_SELECT"]=" 1"
  816. D["HAVE_SETLOCALE"]=" 1"
  817. D["HAVE_SNPRINTF"]=" 1"
  818. D["HAVE_SOCKET"]=" 1"
  819. D["HAVE_STRCHR"]=" 1"
  820. D["HAVE_STRDUP"]=" 1"
  821. D["HAVE_STRERROR"]=" 1"
  822. D["HAVE_STRFTIME"]=" 1"
  823. D["HAVE_STRLCAT"]=" 1"
  824. D["HAVE_STRLCPY"]=" 1"
  825. D["HAVE_STRPTIME"]=" 1"
  826. D["HAVE_STRSTR"]=" 1"
  827. D["HAVE_STRTOUL"]=" 1"
  828. D["HAVE_TIMEGM"]=" 1"
  829. D["HAVE_TZSET"]=" 1"
  830. D["__MT__"]=" 1"
  831. D["FEATURE_TOGGLE"]=" 1"
  832. D["FEATURE_FORCE_LOAD"]=" 1"
  833. D["FEATURE_FAST_REDIRECTS"]=" 1"
  834. D["FEATURE_STATISTICS"]=" 1"
  835. D["FEATURE_IMAGE_BLOCKING"]=" 1"
  836. D["FEATURE_ACL"]=" 1"
  837. D["FEATURE_TRUST"]=" 1"
  838. D["FEATURE_CGI_EDIT_ACTIONS"]=" 1"
  839. D["FEATURE_ZLIB"]=" 1"
  840. D["STATIC_PCRE"]=" 1"
  841. D["FEATURE_CONNECTION_KEEP_ALIVE"]=" 1"
  842. D["STATIC_PCRS"]=" 1"
  843. for (key in D) D_is_set[key] = 1
  844. FS = ""
  845. }
  846. /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
  847. line = $ 0
  848. split(line, arg, " ")
  849. if (arg[1] == "#") {
  850. defundef = arg[2]
  851. mac1 = arg[3]
  852. } else {
  853. defundef = substr(arg[1], 2)
  854. mac1 = arg[2]
  855. }
  856. split(mac1, mac2, "(") #)
  857. macro = mac2[1]
  858. prefix = substr(line, 1, index(line, defundef) - 1)
  859. if (D_is_set[macro]) {
  860. # Preserve the white space surrounding the "#".
  861. print prefix "define", macro P[macro] D[macro]
  862. next
  863. } else {
  864. # Replace #undef with comments. This is necessary, for example,
  865. # in the case of _POSIX_SOURCE, which is predefined and required
  866. # on some systems where configure will not decide to define it.
  867. if (defundef == "undef") {
  868. print "/*", prefix defundef, macro, "*/"
  869. next
  870. }
  871. }
  872. }
  873. { print }
  874. _ACAWK
  875. as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
  876. fi # test -n "$CONFIG_HEADERS"
  877.  
  878.  
  879. eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS "
  880. shift
  881. for ac_tag
  882. do
  883. case $ac_tag in
  884. :[FHLC]) ac_mode=$ac_tag; continue;;
  885. esac
  886. case $ac_mode$ac_tag in
  887. :[FHL]*:*);;
  888. :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
  889. :[FH]-) ac_tag=-:-;;
  890. :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  891. esac
  892. ac_save_IFS=$IFS
  893. IFS=:
  894. set x $ac_tag
  895. IFS=$ac_save_IFS
  896. shift
  897. ac_file=$1
  898. shift
  899.  
  900. case $ac_mode in
  901. :L) ac_source=$1;;
  902. :[FH])
  903. ac_file_inputs=
  904. for ac_f
  905. do
  906. case $ac_f in
  907. -) ac_f="$tmp/stdin";;
  908. *) # Look for the file first in the build tree, then in the source tree
  909. # (if the path is not absolute). The absolute path cannot be DOS-style,
  910. # because $ac_f cannot contain `:'.
  911. test -f "$ac_f" ||
  912. case $ac_f in
  913. [\\/$]*) false;;
  914. *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  915. esac ||
  916. as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
  917. esac
  918. case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  919. as_fn_append ac_file_inputs " '$ac_f'"
  920. done
  921.  
  922. # Let's still pretend it is `configure' which instantiates (i.e., don't
  923. # use $as_me), people would be surprised to read:
  924. # /* config.h. Generated by config.status. */
  925. configure_input='Generated from '`
  926. $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  927. `' by configure.'
  928. if test x"$ac_file" != x-; then
  929. configure_input="$ac_file. $configure_input"
  930. { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  931. $as_echo "$as_me: creating $ac_file" >&6;}
  932. fi
  933. # Neutralize special characters interpreted by sed in replacement strings.
  934. case $configure_input in #(
  935. *\&* | *\|* | *\\* )
  936. ac_sed_conf_input=`$as_echo "$configure_input" |
  937. sed 's/[\\\\&|]/\\\\&/g'`;; #(
  938. *) ac_sed_conf_input=$configure_input;;
  939. esac
  940.  
  941. case $ac_tag in
  942. *:-:* | *:-) cat >"$tmp/stdin" \
  943. || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
  944. esac
  945. ;;
  946. esac
  947.  
  948. ac_dir=`$as_dirname -- "$ac_file" ||
  949. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  950. X"$ac_file" : 'X\(//\)[^/]' \| \
  951. X"$ac_file" : 'X\(//\)$' \| \
  952. X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  953. $as_echo X"$ac_file" |
  954. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  955. s//\1/
  956. q
  957. }
  958. /^X\(\/\/\)[^/].*/{
  959. s//\1/
  960. q
  961. }
  962. /^X\(\/\/\)$/{
  963. s//\1/
  964. q
  965. }
  966. /^X\(\/\).*/{
  967. s//\1/
  968. q
  969. }
  970. s/.*/./; q'`
  971. as_dir="$ac_dir"; as_fn_mkdir_p
  972. ac_builddir=.
  973.  
  974. case "$ac_dir" in
  975. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  976. *)
  977. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  978. # A ".." for each directory in $ac_dir_suffix.
  979. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  980. case $ac_top_builddir_sub in
  981. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  982. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  983. esac ;;
  984. esac
  985. ac_abs_top_builddir=$ac_pwd
  986. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  987. # for backward compatibility:
  988. ac_top_builddir=$ac_top_build_prefix
  989.  
  990. case $srcdir in
  991. .) # We are building in place.
  992. ac_srcdir=.
  993. ac_top_srcdir=$ac_top_builddir_sub
  994. ac_abs_top_srcdir=$ac_pwd ;;
  995. [\\/]* | ?:[\\/]* ) # Absolute name.
  996. ac_srcdir=$srcdir$ac_dir_suffix;
  997. ac_top_srcdir=$srcdir
  998. ac_abs_top_srcdir=$srcdir ;;
  999. *) # Relative name.
  1000. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  1001. ac_top_srcdir=$ac_top_build_prefix$srcdir
  1002. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1003. esac
  1004. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1005.  
  1006.  
  1007. case $ac_mode in
  1008. :F)
  1009. #
  1010. # CONFIG_FILE
  1011. #
  1012.  
  1013. case $INSTALL in
  1014. [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  1015. *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  1016. esac
  1017. # If the template does not know about datarootdir, expand it.
  1018. # FIXME: This hack should be removed a few years after 2.60.
  1019. ac_datarootdir_hack=; ac_datarootdir_seen=
  1020. ac_sed_dataroot='
  1021. /datarootdir/ {
  1022. p
  1023. q
  1024. }
  1025. /@datadir@/p
  1026. /@docdir@/p
  1027. /@infodir@/p
  1028. /@localedir@/p
  1029. /@mandir@/p'
  1030. case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  1031. *datarootdir*) ac_datarootdir_seen=yes;;
  1032. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  1033. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  1034. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  1035. ac_datarootdir_hack='
  1036. s&@datadir@&${datarootdir}&g
  1037. s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
  1038. s&@infodir@&${datarootdir}/info&g
  1039. s&@localedir@&${datarootdir}/locale&g
  1040. s&@mandir@&${datarootdir}/man&g
  1041. s&\${datarootdir}&${prefix}/share&g' ;;
  1042. esac
  1043. ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
  1044. h
  1045. s///
  1046. s/^/:/
  1047. s/[ ]*$/:/
  1048. s/:\$(srcdir):/:/g
  1049. s/:\${srcdir}:/:/g
  1050. s/:@srcdir@:/:/g
  1051. s/^:*//
  1052. s/:*$//
  1053. x
  1054. s/\(=[ ]*\).*/\1/
  1055. G
  1056. s/\n//
  1057. s/^[^=]*=[ ]*$//
  1058. }
  1059.  
  1060. :t
  1061. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  1062. s|@configure_input@|$ac_sed_conf_input|;t t
  1063. s&@top_builddir@&$ac_top_builddir_sub&;t t
  1064. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  1065. s&@srcdir@&$ac_srcdir&;t t
  1066. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  1067. s&@top_srcdir@&$ac_top_srcdir&;t t
  1068. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  1069. s&@builddir@&$ac_builddir&;t t
  1070. s&@abs_builddir@&$ac_abs_builddir&;t t
  1071. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  1072. s&@INSTALL@&$ac_INSTALL&;t t
  1073. $ac_datarootdir_hack
  1074. "
  1075. eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
  1076. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1077.  
  1078. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  1079. { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  1080. { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  1081. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1082. which seems to be undefined. Please make sure it is defined" >&5
  1083. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1084. which seems to be undefined. Please make sure it is defined" >&2;}
  1085.  
  1086. rm -f "$tmp/stdin"
  1087. case $ac_file in
  1088. -) cat "$tmp/out" && rm -f "$tmp/out";;
  1089. *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  1090. esac \
  1091. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1092. ;;
  1093. :H)
  1094. #
  1095. # CONFIG_HEADER
  1096. #
  1097. if test x"$ac_file" != x-; then
  1098. {
  1099. $as_echo "/* $configure_input */" \
  1100. && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
  1101. } >"$tmp/config.h" \
  1102. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1103. if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
  1104. { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
  1105. $as_echo "$as_me: $ac_file is unchanged" >&6;}
  1106. else
  1107. rm -f "$ac_file"
  1108. mv "$tmp/config.h" "$ac_file" \
  1109. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1110. fi
  1111. else
  1112. $as_echo "/* $configure_input */" \
  1113. && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
  1114. || as_fn_error $? "could not create -" "$LINENO" 5
  1115. fi
  1116. ;;
  1117.  
  1118.  
  1119. esac
  1120.  
  1121. done # for ac_tag
  1122.  
  1123.  
  1124. as_fn_exit 0