PageRenderTime 65ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 2ms

/configure

http://github.com/bengardner/uncrustify
Shell | 6547 lines | 5408 code | 493 blank | 646 comment | 607 complexity | d99896f216c606ac6845f80e4ae0ffce MD5 | raw file
Possible License(s): GPL-2.0

Large files files are truncated, but you can click here to view the full file

  1. #! /bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated by GNU Autoconf 2.69 for uncrustify 0.61.
  4. #
  5. #
  6. # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
  7. #
  8. #
  9. # This configure script is free software; the Free Software Foundation
  10. # gives unlimited permission to copy, distribute and modify it.
  11. ## -------------------- ##
  12. ## M4sh Initialization. ##
  13. ## -------------------- ##
  14. # Be more Bourne compatible
  15. DUALCASE=1; export DUALCASE # for MKS sh
  16. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  17. emulate sh
  18. NULLCMD=:
  19. # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  20. # is contrary to our usage. Disable this feature.
  21. alias -g '${1+"$@"}'='"$@"'
  22. setopt NO_GLOB_SUBST
  23. else
  24. case `(set -o) 2>/dev/null` in #(
  25. *posix*) :
  26. set -o posix ;; #(
  27. *) :
  28. ;;
  29. esac
  30. fi
  31. as_nl='
  32. '
  33. export as_nl
  34. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  35. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  36. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  37. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  38. # Prefer a ksh shell builtin over an external printf program on Solaris,
  39. # but without wasting forks for bash or zsh.
  40. if test -z "$BASH_VERSION$ZSH_VERSION" \
  41. && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  42. as_echo='print -r --'
  43. as_echo_n='print -rn --'
  44. elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  45. as_echo='printf %s\n'
  46. as_echo_n='printf %s'
  47. else
  48. if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  49. as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  50. as_echo_n='/usr/ucb/echo -n'
  51. else
  52. as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  53. as_echo_n_body='eval
  54. arg=$1;
  55. case $arg in #(
  56. *"$as_nl"*)
  57. expr "X$arg" : "X\\(.*\\)$as_nl";
  58. arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  59. esac;
  60. expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  61. '
  62. export as_echo_n_body
  63. as_echo_n='sh -c $as_echo_n_body as_echo'
  64. fi
  65. export as_echo_body
  66. as_echo='sh -c $as_echo_body as_echo'
  67. fi
  68. # The user is always right.
  69. if test "${PATH_SEPARATOR+set}" != set; then
  70. PATH_SEPARATOR=:
  71. (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  72. (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  73. PATH_SEPARATOR=';'
  74. }
  75. fi
  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.)
  81. IFS=" "" $as_nl"
  82. # Find who we are. Look in the path if we contain no directory separator.
  83. as_myself=
  84. case $0 in #((
  85. *[\\/]* ) as_myself=$0 ;;
  86. *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  87. for as_dir in $PATH
  88. do
  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
  93. IFS=$as_save_IFS
  94. ;;
  95. esac
  96. # We did not find ourselves, most probably we were run as `sh COMMAND'
  97. # in which case we are not to be found in the path.
  98. if test "x$as_myself" = x; then
  99. as_myself=$0
  100. fi
  101. if test ! -f "$as_myself"; then
  102. $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  103. exit 1
  104. fi
  105. # Unset variables that we do not need and which cause bugs (e.g. in
  106. # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
  107. # suppresses any "Segmentation fault" message there. '((' could
  108. # trigger a bug in pdksh 5.2.14.
  109. for as_var in BASH_ENV ENV MAIL MAILPATH
  110. do eval test x\${$as_var+set} = xset \
  111. && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  112. done
  113. PS1='$ '
  114. PS2='> '
  115. PS4='+ '
  116. # NLS nuisances.
  117. LC_ALL=C
  118. export LC_ALL
  119. LANGUAGE=C
  120. export LANGUAGE
  121. # CDPATH.
  122. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  123. # Use a proper internal environment variable to ensure we don't fall
  124. # into an infinite loop, continuously re-executing ourselves.
  125. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
  126. _as_can_reexec=no; export _as_can_reexec;
  127. # We cannot yet assume a decent shell, so we have to provide a
  128. # neutralization value for shells without unset; and this also
  129. # works around shells that cannot unset nonexistent variables.
  130. # Preserve -v and -x to the replacement shell.
  131. BASH_ENV=/dev/null
  132. ENV=/dev/null
  133. (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  134. case $- in # ((((
  135. *v*x* | *x*v* ) as_opts=-vx ;;
  136. *v* ) as_opts=-v ;;
  137. *x* ) as_opts=-x ;;
  138. * ) as_opts= ;;
  139. esac
  140. exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  141. # Admittedly, this is quite paranoid, since all the known shells bail
  142. # out after a failed `exec'.
  143. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  144. as_fn_exit 255
  145. fi
  146. # We don't want this to propagate to other subprocesses.
  147. { _as_can_reexec=; unset _as_can_reexec;}
  148. if test "x$CONFIG_SHELL" = x; then
  149. as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
  150. emulate sh
  151. NULLCMD=:
  152. # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
  153. # is contrary to our usage. Disable this feature.
  154. alias -g '\${1+\"\$@\"}'='\"\$@\"'
  155. setopt NO_GLOB_SUBST
  156. else
  157. case \`(set -o) 2>/dev/null\` in #(
  158. *posix*) :
  159. set -o posix ;; #(
  160. *) :
  161. ;;
  162. esac
  163. fi
  164. "
  165. as_required="as_fn_return () { (exit \$1); }
  166. as_fn_success () { as_fn_return 0; }
  167. as_fn_failure () { as_fn_return 1; }
  168. as_fn_ret_success () { return 0; }
  169. as_fn_ret_failure () { return 1; }
  170. exitcode=0
  171. as_fn_success || { exitcode=1; echo as_fn_success failed.; }
  172. as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
  173. as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
  174. as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
  175. if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
  176. else
  177. exitcode=1; echo positional parameters were not saved.
  178. fi
  179. test x\$exitcode = x0 || exit 1
  180. test -x / || exit 1"
  181. as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  182. as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  183. eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  184. test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
  185. test \$(( 1 + 1 )) = 2 || exit 1"
  186. if (eval "$as_required") 2>/dev/null; then :
  187. as_have_required=yes
  188. else
  189. as_have_required=no
  190. fi
  191. if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
  192. else
  193. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  194. as_found=false
  195. for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  196. do
  197. IFS=$as_save_IFS
  198. test -z "$as_dir" && as_dir=.
  199. as_found=:
  200. case $as_dir in #(
  201. /*)
  202. for as_base in sh bash ksh sh5; do
  203. # Try only shells that exist, to save several forks.
  204. as_shell=$as_dir/$as_base
  205. if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
  206. { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
  207. CONFIG_SHELL=$as_shell as_have_required=yes
  208. if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
  209. break 2
  210. fi
  211. fi
  212. done;;
  213. esac
  214. as_found=false
  215. done
  216. $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
  217. { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
  218. CONFIG_SHELL=$SHELL as_have_required=yes
  219. fi; }
  220. IFS=$as_save_IFS
  221. if test "x$CONFIG_SHELL" != x; then :
  222. export CONFIG_SHELL
  223. # We cannot yet assume a decent shell, so we have to provide a
  224. # neutralization value for shells without unset; and this also
  225. # works around shells that cannot unset nonexistent variables.
  226. # Preserve -v and -x to the replacement shell.
  227. BASH_ENV=/dev/null
  228. ENV=/dev/null
  229. (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  230. case $- in # ((((
  231. *v*x* | *x*v* ) as_opts=-vx ;;
  232. *v* ) as_opts=-v ;;
  233. *x* ) as_opts=-x ;;
  234. * ) as_opts= ;;
  235. esac
  236. exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  237. # Admittedly, this is quite paranoid, since all the known shells bail
  238. # out after a failed `exec'.
  239. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  240. exit 255
  241. fi
  242. if test x$as_have_required = xno; then :
  243. $as_echo "$0: This script requires a shell more modern than all"
  244. $as_echo "$0: the shells that I found on your system."
  245. if test x${ZSH_VERSION+set} = xset ; then
  246. $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
  247. $as_echo "$0: be upgraded to zsh 4.3.4 or later."
  248. else
  249. $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
  250. $0: including any error possibly output before this
  251. $0: message. Then install a modern shell, or manually run
  252. $0: the script under such a shell if you do have one."
  253. fi
  254. exit 1
  255. fi
  256. fi
  257. fi
  258. SHELL=${CONFIG_SHELL-/bin/sh}
  259. export SHELL
  260. # Unset more variables known to interfere with behavior of common tools.
  261. CLICOLOR_FORCE= GREP_OPTIONS=
  262. unset CLICOLOR_FORCE GREP_OPTIONS
  263. ## --------------------- ##
  264. ## M4sh Shell Functions. ##
  265. ## --------------------- ##
  266. # as_fn_unset VAR
  267. # ---------------
  268. # Portably unset VAR.
  269. as_fn_unset ()
  270. {
  271. { eval $1=; unset $1;}
  272. }
  273. as_unset=as_fn_unset
  274. # as_fn_set_status STATUS
  275. # -----------------------
  276. # Set $? to STATUS, without forking.
  277. as_fn_set_status ()
  278. {
  279. return $1
  280. } # as_fn_set_status
  281. # as_fn_exit STATUS
  282. # -----------------
  283. # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  284. as_fn_exit ()
  285. {
  286. set +e
  287. as_fn_set_status $1
  288. exit $1
  289. } # as_fn_exit
  290. # as_fn_mkdir_p
  291. # -------------
  292. # Create "$as_dir" as a directory, including parents if necessary.
  293. as_fn_mkdir_p ()
  294. {
  295. case $as_dir in #(
  296. -*) as_dir=./$as_dir;;
  297. esac
  298. test -d "$as_dir" || eval $as_mkdir_p || {
  299. as_dirs=
  300. while :; do
  301. case $as_dir in #(
  302. *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  303. *) as_qdir=$as_dir;;
  304. esac
  305. as_dirs="'$as_qdir' $as_dirs"
  306. as_dir=`$as_dirname -- "$as_dir" ||
  307. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  308. X"$as_dir" : 'X\(//\)[^/]' \| \
  309. X"$as_dir" : 'X\(//\)$' \| \
  310. X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  311. $as_echo X"$as_dir" |
  312. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  313. s//\1/
  314. q
  315. }
  316. /^X\(\/\/\)[^/].*/{
  317. s//\1/
  318. q
  319. }
  320. /^X\(\/\/\)$/{
  321. s//\1/
  322. q
  323. }
  324. /^X\(\/\).*/{
  325. s//\1/
  326. q
  327. }
  328. s/.*/./; q'`
  329. test -d "$as_dir" && break
  330. done
  331. test -z "$as_dirs" || eval "mkdir $as_dirs"
  332. } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
  333. } # as_fn_mkdir_p
  334. # as_fn_executable_p FILE
  335. # -----------------------
  336. # Test if FILE is an executable regular file.
  337. as_fn_executable_p ()
  338. {
  339. test -f "$1" && test -x "$1"
  340. } # as_fn_executable_p
  341. # as_fn_append VAR VALUE
  342. # ----------------------
  343. # Append the text in VALUE to the end of the definition contained in VAR. Take
  344. # advantage of any shell optimizations that allow amortized linear growth over
  345. # repeated appends, instead of the typical quadratic growth present in naive
  346. # implementations.
  347. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  348. eval 'as_fn_append ()
  349. {
  350. eval $1+=\$2
  351. }'
  352. else
  353. as_fn_append ()
  354. {
  355. eval $1=\$$1\$2
  356. }
  357. fi # as_fn_append
  358. # as_fn_arith ARG...
  359. # ------------------
  360. # Perform arithmetic evaluation on the ARGs, and store the result in the
  361. # global $as_val. Take advantage of shells that can avoid forks. The arguments
  362. # must be portable across $(()) and expr.
  363. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  364. eval 'as_fn_arith ()
  365. {
  366. as_val=$(( $* ))
  367. }'
  368. else
  369. as_fn_arith ()
  370. {
  371. as_val=`expr "$@" || test $? -eq 1`
  372. }
  373. fi # as_fn_arith
  374. # as_fn_error STATUS ERROR [LINENO LOG_FD]
  375. # ----------------------------------------
  376. # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  377. # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  378. # script with STATUS, using 1 if that was 0.
  379. as_fn_error ()
  380. {
  381. as_status=$1; test $as_status -eq 0 && as_status=1
  382. if test "$4"; then
  383. as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  384. $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  385. fi
  386. $as_echo "$as_me: error: $2" >&2
  387. as_fn_exit $as_status
  388. } # as_fn_error
  389. if expr a : '\(a\)' >/dev/null 2>&1 &&
  390. test "X`expr 00001 : '.*\(...\)'`" = X001; then
  391. as_expr=expr
  392. else
  393. as_expr=false
  394. fi
  395. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  396. as_basename=basename
  397. else
  398. as_basename=false
  399. fi
  400. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  401. as_dirname=dirname
  402. else
  403. as_dirname=false
  404. fi
  405. as_me=`$as_basename -- "$0" ||
  406. $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  407. X"$0" : 'X\(//\)$' \| \
  408. X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  409. $as_echo X/"$0" |
  410. sed '/^.*\/\([^/][^/]*\)\/*$/{
  411. s//\1/
  412. q
  413. }
  414. /^X\/\(\/\/\)$/{
  415. s//\1/
  416. q
  417. }
  418. /^X\/\(\/\).*/{
  419. s//\1/
  420. q
  421. }
  422. s/.*/./; q'`
  423. # Avoid depending upon Character Ranges.
  424. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  425. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  426. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  427. as_cr_digits='0123456789'
  428. as_cr_alnum=$as_cr_Letters$as_cr_digits
  429. as_lineno_1=$LINENO as_lineno_1a=$LINENO
  430. as_lineno_2=$LINENO as_lineno_2a=$LINENO
  431. eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
  432. test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
  433. # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
  434. sed -n '
  435. p
  436. /[$]LINENO/=
  437. ' <$as_myself |
  438. sed '
  439. s/[$]LINENO.*/&-/
  440. t lineno
  441. b
  442. :lineno
  443. N
  444. :loop
  445. s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
  446. t loop
  447. s/-\n.*//
  448. ' >$as_me.lineno &&
  449. chmod +x "$as_me.lineno" ||
  450. { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
  451. # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
  452. # already done that, so ensure we don't try to do so again and fall
  453. # in an infinite loop. This has already happened in practice.
  454. _as_can_reexec=no; export _as_can_reexec
  455. # Don't try to exec as it changes $[0], causing all sort of problems
  456. # (the dirname of $[0] is not the place where we might find the
  457. # original and so on. Autoconf is especially sensitive to this).
  458. . "./$as_me.lineno"
  459. # Exit status is that of the last command.
  460. exit
  461. }
  462. ECHO_C= ECHO_N= ECHO_T=
  463. case `echo -n x` in #(((((
  464. -n*)
  465. case `echo 'xy\c'` in
  466. *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  467. xy) ECHO_C='\c';;
  468. *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
  469. ECHO_T=' ';;
  470. esac;;
  471. *)
  472. ECHO_N='-n';;
  473. esac
  474. rm -f conf$$ conf$$.exe conf$$.file
  475. if test -d conf$$.dir; then
  476. rm -f conf$$.dir/conf$$.file
  477. else
  478. rm -f conf$$.dir
  479. mkdir conf$$.dir 2>/dev/null
  480. fi
  481. if (echo >conf$$.file) 2>/dev/null; then
  482. if ln -s conf$$.file conf$$ 2>/dev/null; then
  483. as_ln_s='ln -s'
  484. # ... but there are two gotchas:
  485. # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  486. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  487. # In both cases, we have to default to `cp -pR'.
  488. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  489. as_ln_s='cp -pR'
  490. elif ln conf$$.file conf$$ 2>/dev/null; then
  491. as_ln_s=ln
  492. else
  493. as_ln_s='cp -pR'
  494. fi
  495. else
  496. as_ln_s='cp -pR'
  497. fi
  498. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  499. rmdir conf$$.dir 2>/dev/null
  500. if mkdir -p . 2>/dev/null; then
  501. as_mkdir_p='mkdir -p "$as_dir"'
  502. else
  503. test -d ./-p && rmdir ./-p
  504. as_mkdir_p=false
  505. fi
  506. as_test_x='test -x'
  507. as_executable_p=as_fn_executable_p
  508. # Sed expression to map a string onto a valid CPP name.
  509. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  510. # Sed expression to map a string onto a valid variable name.
  511. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  512. test -n "$DJDIR" || exec 7<&0 </dev/null
  513. exec 6>&1
  514. # Name of the host.
  515. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
  516. # so uname gets run too.
  517. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  518. #
  519. # Initializations.
  520. #
  521. ac_default_prefix=/usr/local
  522. ac_clean_files=
  523. ac_config_libobj_dir=.
  524. LIBOBJS=
  525. cross_compiling=no
  526. subdirs=
  527. MFLAGS=
  528. MAKEFLAGS=
  529. # Identity of this package.
  530. PACKAGE_NAME='uncrustify'
  531. PACKAGE_TARNAME='uncrustify'
  532. PACKAGE_VERSION='0.61'
  533. PACKAGE_STRING='uncrustify 0.61'
  534. PACKAGE_BUGREPORT=''
  535. PACKAGE_URL='http://uncrustify.sourceforge.net/'
  536. ac_unique_file="src/uncrustify.cpp"
  537. # Factoring default headers for most tests.
  538. ac_includes_default="\
  539. #include <stdio.h>
  540. #ifdef HAVE_SYS_TYPES_H
  541. # include <sys/types.h>
  542. #endif
  543. #ifdef HAVE_SYS_STAT_H
  544. # include <sys/stat.h>
  545. #endif
  546. #ifdef STDC_HEADERS
  547. # include <stdlib.h>
  548. # include <stddef.h>
  549. #else
  550. # ifdef HAVE_STDLIB_H
  551. # include <stdlib.h>
  552. # endif
  553. #endif
  554. #ifdef HAVE_STRING_H
  555. # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  556. # include <memory.h>
  557. # endif
  558. # include <string.h>
  559. #endif
  560. #ifdef HAVE_STRINGS_H
  561. # include <strings.h>
  562. #endif
  563. #ifdef HAVE_INTTYPES_H
  564. # include <inttypes.h>
  565. #endif
  566. #ifdef HAVE_STDINT_H
  567. # include <stdint.h>
  568. #endif
  569. #ifdef HAVE_UNISTD_H
  570. # include <unistd.h>
  571. #endif"
  572. ac_subst_vars='am__EXEEXT_FALSE
  573. am__EXEEXT_TRUE
  574. LTLIBOBJS
  575. LIBOBJS
  576. EGREP
  577. GREP
  578. CPP
  579. am__fastdepCC_FALSE
  580. am__fastdepCC_TRUE
  581. CCDEPMODE
  582. ac_ct_CC
  583. CFLAGS
  584. CC
  585. am__fastdepCXX_FALSE
  586. am__fastdepCXX_TRUE
  587. CXXDEPMODE
  588. am__nodep
  589. AMDEPBACKSLASH
  590. AMDEP_FALSE
  591. AMDEP_TRUE
  592. am__quote
  593. am__include
  594. DEPDIR
  595. OBJEXT
  596. EXEEXT
  597. ac_ct_CXX
  598. CPPFLAGS
  599. LDFLAGS
  600. CXXFLAGS
  601. CXX
  602. MAINT
  603. MAINTAINER_MODE_FALSE
  604. MAINTAINER_MODE_TRUE
  605. AM_BACKSLASH
  606. AM_DEFAULT_VERBOSITY
  607. AM_DEFAULT_V
  608. AM_V
  609. am__untar
  610. am__tar
  611. AMTAR
  612. am__leading_dot
  613. SET_MAKE
  614. AWK
  615. mkdir_p
  616. MKDIR_P
  617. INSTALL_STRIP_PROGRAM
  618. STRIP
  619. install_sh
  620. MAKEINFO
  621. AUTOHEADER
  622. AUTOMAKE
  623. AUTOCONF
  624. ACLOCAL
  625. VERSION
  626. PACKAGE
  627. CYGPATH_W
  628. am__isrc
  629. INSTALL_DATA
  630. INSTALL_SCRIPT
  631. INSTALL_PROGRAM
  632. target_alias
  633. host_alias
  634. build_alias
  635. LIBS
  636. ECHO_T
  637. ECHO_N
  638. ECHO_C
  639. DEFS
  640. mandir
  641. localedir
  642. libdir
  643. psdir
  644. pdfdir
  645. dvidir
  646. htmldir
  647. infodir
  648. docdir
  649. oldincludedir
  650. includedir
  651. localstatedir
  652. sharedstatedir
  653. sysconfdir
  654. datadir
  655. datarootdir
  656. libexecdir
  657. sbindir
  658. bindir
  659. program_transform_name
  660. prefix
  661. exec_prefix
  662. PACKAGE_URL
  663. PACKAGE_BUGREPORT
  664. PACKAGE_STRING
  665. PACKAGE_VERSION
  666. PACKAGE_TARNAME
  667. PACKAGE_NAME
  668. PATH_SEPARATOR
  669. SHELL'
  670. ac_subst_files=''
  671. ac_user_opts='
  672. enable_option_checking
  673. enable_silent_rules
  674. enable_maintainer_mode
  675. enable_dependency_tracking
  676. '
  677. ac_precious_vars='build_alias
  678. host_alias
  679. target_alias
  680. CXX
  681. CXXFLAGS
  682. LDFLAGS
  683. LIBS
  684. CPPFLAGS
  685. CCC
  686. CC
  687. CFLAGS
  688. CPP'
  689. # Initialize some variables set by options.
  690. ac_init_help=
  691. ac_init_version=false
  692. ac_unrecognized_opts=
  693. ac_unrecognized_sep=
  694. # The variables have the same names as the options, with
  695. # dashes changed to underlines.
  696. cache_file=/dev/null
  697. exec_prefix=NONE
  698. no_create=
  699. no_recursion=
  700. prefix=NONE
  701. program_prefix=NONE
  702. program_suffix=NONE
  703. program_transform_name=s,x,x,
  704. silent=
  705. site=
  706. srcdir=
  707. verbose=
  708. x_includes=NONE
  709. x_libraries=NONE
  710. # Installation directory options.
  711. # These are left unexpanded so users can "make install exec_prefix=/foo"
  712. # and all the variables that are supposed to be based on exec_prefix
  713. # by default will actually change.
  714. # Use braces instead of parens because sh, perl, etc. also accept them.
  715. # (The list follows the same order as the GNU Coding Standards.)
  716. bindir='${exec_prefix}/bin'
  717. sbindir='${exec_prefix}/sbin'
  718. libexecdir='${exec_prefix}/libexec'
  719. datarootdir='${prefix}/share'
  720. datadir='${datarootdir}'
  721. sysconfdir='${prefix}/etc'
  722. sharedstatedir='${prefix}/com'
  723. localstatedir='${prefix}/var'
  724. includedir='${prefix}/include'
  725. oldincludedir='/usr/include'
  726. docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  727. infodir='${datarootdir}/info'
  728. htmldir='${docdir}'
  729. dvidir='${docdir}'
  730. pdfdir='${docdir}'
  731. psdir='${docdir}'
  732. libdir='${exec_prefix}/lib'
  733. localedir='${datarootdir}/locale'
  734. mandir='${datarootdir}/man'
  735. ac_prev=
  736. ac_dashdash=
  737. for ac_option
  738. do
  739. # If the previous option needs an argument, assign it.
  740. if test -n "$ac_prev"; then
  741. eval $ac_prev=\$ac_option
  742. ac_prev=
  743. continue
  744. fi
  745. case $ac_option in
  746. *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  747. *=) ac_optarg= ;;
  748. *) ac_optarg=yes ;;
  749. esac
  750. # Accept the important Cygnus configure options, so we can diagnose typos.
  751. case $ac_dashdash$ac_option in
  752. --)
  753. ac_dashdash=yes ;;
  754. -bindir | --bindir | --bindi | --bind | --bin | --bi)
  755. ac_prev=bindir ;;
  756. -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  757. bindir=$ac_optarg ;;
  758. -build | --build | --buil | --bui | --bu)
  759. ac_prev=build_alias ;;
  760. -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  761. build_alias=$ac_optarg ;;
  762. -cache-file | --cache-file | --cache-fil | --cache-fi \
  763. | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  764. ac_prev=cache_file ;;
  765. -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  766. | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  767. cache_file=$ac_optarg ;;
  768. --config-cache | -C)
  769. cache_file=config.cache ;;
  770. -datadir | --datadir | --datadi | --datad)
  771. ac_prev=datadir ;;
  772. -datadir=* | --datadir=* | --datadi=* | --datad=*)
  773. datadir=$ac_optarg ;;
  774. -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
  775. | --dataroo | --dataro | --datar)
  776. ac_prev=datarootdir ;;
  777. -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
  778. | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
  779. datarootdir=$ac_optarg ;;
  780. -disable-* | --disable-*)
  781. ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  782. # Reject names that are not valid shell variable names.
  783. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  784. as_fn_error $? "invalid feature name: $ac_useropt"
  785. ac_useropt_orig=$ac_useropt
  786. ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  787. case $ac_user_opts in
  788. *"
  789. "enable_$ac_useropt"
  790. "*) ;;
  791. *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
  792. ac_unrecognized_sep=', ';;
  793. esac
  794. eval enable_$ac_useropt=no ;;
  795. -docdir | --docdir | --docdi | --doc | --do)
  796. ac_prev=docdir ;;
  797. -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
  798. docdir=$ac_optarg ;;
  799. -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
  800. ac_prev=dvidir ;;
  801. -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
  802. dvidir=$ac_optarg ;;
  803. -enable-* | --enable-*)
  804. ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  805. # Reject names that are not valid shell variable names.
  806. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  807. as_fn_error $? "invalid feature name: $ac_useropt"
  808. ac_useropt_orig=$ac_useropt
  809. ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  810. case $ac_user_opts in
  811. *"
  812. "enable_$ac_useropt"
  813. "*) ;;
  814. *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
  815. ac_unrecognized_sep=', ';;
  816. esac
  817. eval enable_$ac_useropt=\$ac_optarg ;;
  818. -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  819. | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  820. | --exec | --exe | --ex)
  821. ac_prev=exec_prefix ;;
  822. -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  823. | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  824. | --exec=* | --exe=* | --ex=*)
  825. exec_prefix=$ac_optarg ;;
  826. -gas | --gas | --ga | --g)
  827. # Obsolete; use --with-gas.
  828. with_gas=yes ;;
  829. -help | --help | --hel | --he | -h)
  830. ac_init_help=long ;;
  831. -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
  832. ac_init_help=recursive ;;
  833. -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
  834. ac_init_help=short ;;
  835. -host | --host | --hos | --ho)
  836. ac_prev=host_alias ;;
  837. -host=* | --host=* | --hos=* | --ho=*)
  838. host_alias=$ac_optarg ;;
  839. -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
  840. ac_prev=htmldir ;;
  841. -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
  842. | --ht=*)
  843. htmldir=$ac_optarg ;;
  844. -includedir | --includedir | --includedi | --included | --include \
  845. | --includ | --inclu | --incl | --inc)
  846. ac_prev=includedir ;;
  847. -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  848. | --includ=* | --inclu=* | --incl=* | --inc=*)
  849. includedir=$ac_optarg ;;
  850. -infodir | --infodir | --infodi | --infod | --info | --inf)
  851. ac_prev=infodir ;;
  852. -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  853. infodir=$ac_optarg ;;
  854. -libdir | --libdir | --libdi | --libd)
  855. ac_prev=libdir ;;
  856. -libdir=* | --libdir=* | --libdi=* | --libd=*)
  857. libdir=$ac_optarg ;;
  858. -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  859. | --libexe | --libex | --libe)
  860. ac_prev=libexecdir ;;
  861. -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  862. | --libexe=* | --libex=* | --libe=*)
  863. libexecdir=$ac_optarg ;;
  864. -localedir | --localedir | --localedi | --localed | --locale)
  865. ac_prev=localedir ;;
  866. -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
  867. localedir=$ac_optarg ;;
  868. -localstatedir | --localstatedir | --localstatedi | --localstated \
  869. | --localstate | --localstat | --localsta | --localst | --locals)
  870. ac_prev=localstatedir ;;
  871. -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  872. | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
  873. localstatedir=$ac_optarg ;;
  874. -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  875. ac_prev=mandir ;;
  876. -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  877. mandir=$ac_optarg ;;
  878. -nfp | --nfp | --nf)
  879. # Obsolete; use --without-fp.
  880. with_fp=no ;;
  881. -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  882. | --no-cr | --no-c | -n)
  883. no_create=yes ;;
  884. -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  885. | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  886. no_recursion=yes ;;
  887. -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  888. | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  889. | --oldin | --oldi | --old | --ol | --o)
  890. ac_prev=oldincludedir ;;
  891. -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  892. | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  893. | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  894. oldincludedir=$ac_optarg ;;
  895. -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  896. ac_prev=prefix ;;
  897. -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  898. prefix=$ac_optarg ;;
  899. -program-prefix | --program-prefix | --program-prefi | --program-pref \
  900. | --program-pre | --program-pr | --program-p)
  901. ac_prev=program_prefix ;;
  902. -program-prefix=* | --program-prefix=* | --program-prefi=* \
  903. | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  904. program_prefix=$ac_optarg ;;
  905. -program-suffix | --program-suffix | --program-suffi | --program-suff \
  906. | --program-suf | --program-su | --program-s)
  907. ac_prev=program_suffix ;;
  908. -program-suffix=* | --program-suffix=* | --program-suffi=* \
  909. | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  910. program_suffix=$ac_optarg ;;
  911. -program-transform-name | --program-transform-name \
  912. | --program-transform-nam | --program-transform-na \
  913. | --program-transform-n | --program-transform- \
  914. | --program-transform | --program-transfor \
  915. | --program-transfo | --program-transf \
  916. | --program-trans | --program-tran \
  917. | --progr-tra | --program-tr | --program-t)
  918. ac_prev=program_transform_name ;;
  919. -program-transform-name=* | --program-transform-name=* \
  920. | --program-transform-nam=* | --program-transform-na=* \
  921. | --program-transform-n=* | --program-transform-=* \
  922. | --program-transform=* | --program-transfor=* \
  923. | --program-transfo=* | --program-transf=* \
  924. | --program-trans=* | --program-tran=* \
  925. | --progr-tra=* | --program-tr=* | --program-t=*)
  926. program_transform_name=$ac_optarg ;;
  927. -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
  928. ac_prev=pdfdir ;;
  929. -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
  930. pdfdir=$ac_optarg ;;
  931. -psdir | --psdir | --psdi | --psd | --ps)
  932. ac_prev=psdir ;;
  933. -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
  934. psdir=$ac_optarg ;;
  935. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  936. | -silent | --silent | --silen | --sile | --sil)
  937. silent=yes ;;
  938. -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  939. ac_prev=sbindir ;;
  940. -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  941. | --sbi=* | --sb=*)
  942. sbindir=$ac_optarg ;;
  943. -sharedstatedir | --sharedstatedir | --sharedstatedi \
  944. | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  945. | --sharedst | --shareds | --shared | --share | --shar \
  946. | --sha | --sh)
  947. ac_prev=sharedstatedir ;;
  948. -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  949. | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  950. | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  951. | --sha=* | --sh=*)
  952. sharedstatedir=$ac_optarg ;;
  953. -site | --site | --sit)
  954. ac_prev=site ;;
  955. -site=* | --site=* | --sit=*)
  956. site=$ac_optarg ;;
  957. -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  958. ac_prev=srcdir ;;
  959. -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  960. srcdir=$ac_optarg ;;
  961. -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  962. | --syscon | --sysco | --sysc | --sys | --sy)
  963. ac_prev=sysconfdir ;;
  964. -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  965. | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  966. sysconfdir=$ac_optarg ;;
  967. -target | --target | --targe | --targ | --tar | --ta | --t)
  968. ac_prev=target_alias ;;
  969. -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  970. target_alias=$ac_optarg ;;
  971. -v | -verbose | --verbose | --verbos | --verbo | --verb)
  972. verbose=yes ;;
  973. -version | --version | --versio | --versi | --vers | -V)
  974. ac_init_version=: ;;
  975. -with-* | --with-*)
  976. ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  977. # Reject names that are not valid shell variable names.
  978. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  979. as_fn_error $? "invalid package name: $ac_useropt"
  980. ac_useropt_orig=$ac_useropt
  981. ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  982. case $ac_user_opts in
  983. *"
  984. "with_$ac_useropt"
  985. "*) ;;
  986. *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
  987. ac_unrecognized_sep=', ';;
  988. esac
  989. eval with_$ac_useropt=\$ac_optarg ;;
  990. -without-* | --without-*)
  991. ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  992. # Reject names that are not valid shell variable names.
  993. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  994. as_fn_error $? "invalid package name: $ac_useropt"
  995. ac_useropt_orig=$ac_useropt
  996. ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  997. case $ac_user_opts in
  998. *"
  999. "with_$ac_useropt"
  1000. "*) ;;
  1001. *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
  1002. ac_unrecognized_sep=', ';;
  1003. esac
  1004. eval with_$ac_useropt=no ;;
  1005. --x)
  1006. # Obsolete; use --with-x.
  1007. with_x=yes ;;
  1008. -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  1009. | --x-incl | --x-inc | --x-in | --x-i)
  1010. ac_prev=x_includes ;;
  1011. -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  1012. | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  1013. x_includes=$ac_optarg ;;
  1014. -x-libraries | --x-libraries | --x-librarie | --x-librari \
  1015. | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  1016. ac_prev=x_libraries ;;
  1017. -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  1018. | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  1019. x_libraries=$ac_optarg ;;
  1020. -*) as_fn_error $? "unrecognized option: \`$ac_option'
  1021. Try \`$0 --help' for more information"
  1022. ;;
  1023. *=*)
  1024. ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
  1025. # Reject names that are not valid shell variable names.
  1026. case $ac_envvar in #(
  1027. '' | [0-9]* | *[!_$as_cr_alnum]* )
  1028. as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
  1029. esac
  1030. eval $ac_envvar=\$ac_optarg
  1031. export $ac_envvar ;;
  1032. *)
  1033. # FIXME: should be removed in autoconf 3.0.
  1034. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  1035. expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  1036. $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  1037. : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
  1038. ;;
  1039. esac
  1040. done
  1041. if test -n "$ac_prev"; then
  1042. ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  1043. as_fn_error $? "missing argument to $ac_option"
  1044. fi
  1045. if test -n "$ac_unrecognized_opts"; then
  1046. case $enable_option_checking in
  1047. no) ;;
  1048. fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
  1049. *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
  1050. esac
  1051. fi
  1052. # Check all directory arguments for consistency.
  1053. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
  1054. datadir sysconfdir sharedstatedir localstatedir includedir \
  1055. oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
  1056. libdir localedir mandir
  1057. do
  1058. eval ac_val=\$$ac_var
  1059. # Remove trailing slashes.
  1060. case $ac_val in
  1061. */ )
  1062. ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
  1063. eval $ac_var=\$ac_val;;
  1064. esac
  1065. # Be sure to have absolute directory names.
  1066. case $ac_val in
  1067. [\\/$]* | ?:[\\/]* ) continue;;
  1068. NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
  1069. esac
  1070. as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
  1071. done
  1072. # There might be people who depend on the old broken behavior: `$host'
  1073. # used to hold the argument of --host etc.
  1074. # FIXME: To remove some day.
  1075. build=$build_alias
  1076. host=$host_alias
  1077. target=$target_alias
  1078. # FIXME: To remove some day.
  1079. if test "x$host_alias" != x; then
  1080. if test "x$build_alias" = x; then
  1081. cross_compiling=maybe
  1082. elif test "x$build_alias" != "x$host_alias"; then
  1083. cross_compiling=yes
  1084. fi
  1085. fi
  1086. ac_tool_prefix=
  1087. test -n "$host_alias" && ac_tool_prefix=$host_alias-
  1088. test "$silent" = yes && exec 6>/dev/null
  1089. ac_pwd=`pwd` && test -n "$ac_pwd" &&
  1090. ac_ls_di=`ls -di .` &&
  1091. ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
  1092. as_fn_error $? "working directory cannot be determined"
  1093. test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
  1094. as_fn_error $? "pwd does not report name of working directory"
  1095. # Find the source files, if location was not specified.
  1096. if test -z "$srcdir"; then
  1097. ac_srcdir_defaulted=yes
  1098. # Try the directory containing this script, then the parent directory.
  1099. ac_confdir=`$as_dirname -- "$as_myself" ||
  1100. $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1101. X"$as_myself" : 'X\(//\)[^/]' \| \
  1102. X"$as_myself" : 'X\(//\)$' \| \
  1103. X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
  1104. $as_echo X"$as_myself" |
  1105. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1106. s//\1/
  1107. q
  1108. }
  1109. /^X\(\/\/\)[^/].*/{
  1110. s//\1/
  1111. q
  1112. }
  1113. /^X\(\/\/\)$/{
  1114. s//\1/
  1115. q
  1116. }
  1117. /^X\(\/\).*/{
  1118. s//\1/
  1119. q
  1120. }
  1121. s/.*/./; q'`
  1122. srcdir=$ac_confdir
  1123. if test ! -r "$srcdir/$ac_unique_file"; then
  1124. srcdir=..
  1125. fi
  1126. else
  1127. ac_srcdir_defaulted=no
  1128. fi
  1129. if test ! -r "$srcdir/$ac_unique_file"; then
  1130. test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
  1131. as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
  1132. fi
  1133. ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
  1134. ac_abs_confdir=`(
  1135. cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
  1136. pwd)`
  1137. # When building in place, set srcdir=.
  1138. if test "$ac_abs_confdir" = "$ac_pwd"; then
  1139. srcdir=.
  1140. fi
  1141. # Remove unnecessary trailing slashes from srcdir.
  1142. # Double slashes in file names in object file debugging info
  1143. # mess up M-x gdb in Emacs.
  1144. case $srcdir in
  1145. */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
  1146. esac
  1147. for ac_var in $ac_precious_vars; do
  1148. eval ac_env_${ac_var}_set=\${${ac_var}+set}
  1149. eval ac_env_${ac_var}_value=\$${ac_var}
  1150. eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
  1151. eval ac_cv_env_${ac_var}_value=\$${ac_var}
  1152. done
  1153. #
  1154. # Report the --help message.
  1155. #
  1156. if test "$ac_init_help" = "long"; then
  1157. # Omit some internal or obsolete options to make the list less imposing.
  1158. # This message is too long to be a string in the A/UX 3.1 sh.
  1159. cat <<_ACEOF
  1160. \`configure' configures uncrustify 0.61 to adapt to many kinds of systems.
  1161. Usage: $0 [OPTION]... [VAR=VALUE]...
  1162. To assign environment variables (e.g., CC, CFLAGS...), specify them as
  1163. VAR=VALUE. See below for descriptions of some of the useful variables.
  1164. Defaults for the options are specified in brackets.
  1165. Configuration:
  1166. -h, --help display this help and exit
  1167. --help=short display options specific to this package
  1168. --help=recursive display the short help of all the included packages
  1169. -V, --version display version information and exit
  1170. -q, --quiet, --silent do not print \`checking ...' messages
  1171. --cache-file=FILE cache test results in FILE [disabled]
  1172. -C, --config-cache alias for \`--cache-file=config.cache'
  1173. -n, --no-create do not create output files
  1174. --srcdir=DIR find the sources in DIR [configure dir or \`..']
  1175. Installation directories:
  1176. --prefix=PREFIX install architecture-independent files in PREFIX
  1177. [$ac_default_prefix]
  1178. --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
  1179. [PREFIX]
  1180. By default, \`make install' will install all the files in
  1181. \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
  1182. an installation prefix other than \`$ac_default_prefix' using \`--prefix',
  1183. for instance \`--prefix=\$HOME'.
  1184. For better control, use the options below.
  1185. Fine tuning of the installation directories:
  1186. --bindir=DIR user executables [EPREFIX/bin]
  1187. --sbindir=DIR system admin executables [EPREFIX/sbin]
  1188. --libexecdir=DIR program executables [EPREFIX/libexec]
  1189. --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
  1190. --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
  1191. --localstatedir=DIR modifiable single-machine data [PREFIX/var]
  1192. --libdir=DIR object code libraries [EPREFIX/lib]
  1193. --includedir=DIR C header files [PREFIX/include]
  1194. --oldincludedir=DIR C header files for non-gcc [/usr/include]
  1195. --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
  1196. --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
  1197. --infodir=DIR info documentation [DATAROOTDIR/info]
  1198. --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
  1199. --mandir=DIR man documentation [DATAROOTDIR/man]
  1200. --docdir=DIR documentation root [DATAROOTDIR/doc/uncrustify]
  1201. --htmldir=DIR html documentation [DOCDIR]
  1202. --dvidir=DIR dvi documentation [DOCDIR]
  1203. --pdfdir=DIR pdf documentation [DOCDIR]
  1204. --psdir=DIR ps documentation [DOCDIR]
  1205. _ACEOF
  1206. cat <<\_ACEOF
  1207. Program names:
  1208. --program-prefix=PREFIX prepend PREFIX to installed program names
  1209. --program-suffix=SUFFIX append SUFFIX to installed program names
  1210. --program-transform-name=PROGRAM run sed PROGRAM on installed program names
  1211. _ACEOF
  1212. fi
  1213. if test -n "$ac_init_help"; then
  1214. case $ac_init_help in
  1215. short | recursive ) echo "Configuration of uncrustify 0.61:";;
  1216. esac
  1217. cat <<\_ACEOF
  1218. Optional Features:
  1219. --disable-option-checking ignore unrecognized --enable/--with options
  1220. --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
  1221. --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
  1222. --enable-silent-rules less verbose build output (undo: "make V=1")
  1223. --disable-silent-rules verbose build output (undo: "make V=0")
  1224. --enable-maintainer-mode
  1225. enable make rules and dependencies not useful (and
  1226. sometimes confusing) to the casual installer
  1227. --enable-dependency-tracking
  1228. do not reject slow dependency extractors
  1229. --disable-dependency-tracking
  1230. speeds up one-time build
  1231. Some influential environment variables:
  1232. CXX C++ compiler command
  1233. CXXFLAGS C++ compiler flags
  1234. LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
  1235. nonstandard directory <lib dir>
  1236. LIBS libraries to pass to the linker, e.g. -l<library>
  1237. CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
  1238. you have headers in a nonstandard directory <include dir>
  1239. CC C compiler command
  1240. CFLAGS C compiler flags
  1241. CPP C preprocessor
  1242. Use these variables to override the choices made by `configure' or to help
  1243. it to find libraries and programs with nonstandard names/locations.
  1244. Report bugs to the package provider.
  1245. uncrustify home page: <http://uncrustify.sourceforge.net/>.
  1246. _ACEOF
  1247. ac_status=$?
  1248. fi
  1249. if test "$ac_init_help" = "recursive"; then
  1250. # If there are subdirs, report their specific --help.
  1251. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
  1252. test -d "$ac_dir" ||
  1253. { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
  1254. continue
  1255. ac_builddir=.
  1256. case "$ac_dir" in
  1257. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1258. *)
  1259. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  1260. # A ".." for each directory in $ac_dir_suffix.
  1261. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  1262. case $ac_top_builddir_sub in
  1263. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1264. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  1265. esac ;;
  1266. esac
  1267. ac_abs_top_builddir=$ac_pwd
  1268. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  1269. # for backward compatibility:
  1270. ac_top_builddir=$ac_top_build_prefix
  1271. case $srcdir in
  1272. .) # We are building in place.
  1273. ac_srcdir=.
  1274. ac_top_srcdir=$ac_top_builddir_sub
  1275. ac_abs_top_srcdir=$ac_pwd ;;
  1276. [\\/]* | ?:[\\/]* ) # Absolute name.
  1277. ac_srcdir=$srcdir$ac_dir_suffix;
  1278. ac_top_srcdir=$srcdir
  1279. ac_abs_top_srcdir=$srcdir ;;
  1280. *) # Relative name.
  1281. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  1282. ac_top_srcdir=$ac_top_build_prefix$srcdir
  1283. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1284. esac
  1285. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1286. cd "$ac_dir" || { ac_status=$?; continue; }
  1287. # Check for guested configure.
  1288. if test -f "$ac_srcdir/configure.gnu"; then
  1289. echo &&
  1290. $SHELL "$ac_srcdir/configure.gnu" --help=recursive
  1291. elif test -f "$ac_srcdir/configure"; then
  1292. echo &&
  1293. $SHELL "$ac_srcdir/configure" --help=recursive
  1294. else
  1295. $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
  1296. fi || ac_status=$?
  1297. cd "$ac_pwd" || { ac_status=$?; break; }
  1298. done
  1299. fi
  1300. test -n "$ac_init_help" && exit $ac_status
  1301. if $ac_init_version; then
  1302. cat <<\_ACEOF
  1303. uncrustify configure 0.61
  1304. generated by GNU Autoconf 2.69
  1305. Copyright (C) 2012 Free Software Foundation, Inc.
  1306. This configure script is free software; the Free Software Foundation
  1307. gives unlimited permission to copy, distribute and modify it.
  1308. _ACEOF
  1309. exit
  1310. fi
  1311. ## ------------------------ ##
  1312. ## Autoconf initialization. ##
  1313. ## ------------------------ ##
  1314. # ac_fn_cxx_try_compile LINENO
  1315. # ----------------------------
  1316. # Try to compile conftest.$ac_ext, and return whether this succeeded.
  1317. ac_fn_cxx_try_compile ()
  1318. {
  1319. as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1320. rm -f conftest.$ac_objext
  1321. if { { ac_try="$ac_compile"
  1322. case "(($ac_try" in
  1323. *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1324. *) ac_try_echo=$ac_try;;
  1325. esac
  1326. eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1327. $as_echo "$ac_try_echo"; } >&5
  1328. (eval "$ac_compile") 2>conftest.err
  1329. ac_status=$?
  1330. if test -s conftest.err; then
  1331. grep -v '^ *+' conftest.err >conftest.er1
  1332. cat conftest.er1 >&5
  1333. mv -f conftest.er1 conftest.err
  1334. fi
  1335. $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1336. test $ac_status = 0; } && {
  1337. test -z "$ac_cxx_werror_flag" ||
  1338. test ! -s conftest.err
  1339. } && test -s conftest.$ac_objext; then :
  1340. ac_retval=0
  1341. else
  1342. $as_echo "$as_me: failed program was:" >&5
  1343. sed 's/^/| /' conftest.$ac_ext >&5
  1344. ac_retval=1
  1345. fi
  1346. eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1347. as_fn_set_status $ac_retval
  1348. } # ac_fn_cxx_try_compile
  1349. # ac_fn_c_try_compile LINENO
  1350. # --------------------------
  1351. # Try to compile conftest.$ac_ext, and return whether this succeeded.
  1352. ac_fn_c_try_compile ()
  1353. {
  1354. as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1355. rm -f conftest.$ac_objext
  1356. if { { ac_try="$ac_compile"
  1357. case "(($ac_try" in
  1358. *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1359. *) ac_try_echo=$ac_try;;
  1360. esac
  1361. eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1362. $as_echo "$ac_try_echo"; } >&5
  1363. (eval "$ac_compile") 2>conftest.err
  1364. ac_status=$?
  1365. if test -s conftest.err; then
  1366. grep -v '^ *+' conftest.err >conftest.er1
  1367. cat conftest.er1 >&5
  1368. mv -f conftest.er1 conftest.err
  1369. fi
  1370. $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1371. test $ac_status = 0; } && {
  1372. test -z "$ac_c_werror_flag" ||
  1373. test ! -s conftest.err
  1374. } && test -s conftest.$ac_objext; then :
  1375. ac_retval=0
  1376. else
  1377. $as_echo "$as_me: failed program was:" >&5
  1378. sed 's/^/| /' conftest.$ac_ext >&5
  1379. ac_retval=1
  1380. fi
  1381. eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1382. as_fn_set_status $ac_retval
  1383. } # ac_fn_c_try_compile
  1384. # ac_fn_c_try_cpp LINENO
  1385. # ----------------------
  1386. # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
  1387. ac_fn_c_try_cpp ()
  1388. {
  1389. as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1390. if { { ac_try="$ac_cpp conftest.$ac_ext"
  1391. case "(($ac_try" in
  1392. *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1393. *) ac_try_echo=$ac_try;;
  1394. esac
  1395. eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1396. $as_echo "$ac_try_echo"; } >&5
  1397. (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
  1398. ac_status=$?
  1399. if test -s conftest.err; then
  1400. grep -v '^ *+' conftest.err >conftest.er1
  1401. cat conftest.er1 >&5
  1402. mv -f conftest.er1 conftest.err
  1403. fi
  1404. $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1405. test $ac_status = 0; } > conftest.i && {
  1406. test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  1407. test ! -s conftest.err
  1408. }; then :
  1409. ac_retval=0
  1410. else
  1411. $as_echo "$as_me: failed program was:" >&5
  1412. sed 's/^/| /' conftest.$ac_ext >&5
  1413. ac_retval=1
  1414. fi
  1415. eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1416. as_fn_set_status $ac_retval
  1417. } # ac_fn_c_try_cpp
  1418. # ac_fn_c_try_run LINENO
  1419. # ----------------------
  1420. # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
  1421. # that executables *can* be run.
  1422. ac_fn_c_try_run ()
  1423. {
  1424. as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1425. if { { ac_try="$ac_link"
  1426. case "(($ac_try" in
  1427. *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1428. *) ac_try_echo=$ac_try;;
  1429. esac
  1430. eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1431. $as_echo "$ac_try_echo"; } >&5
  1432. (eval "$ac_link") 2>&5
  1433. ac_status=$?
  1434. $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1435. test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
  1436. { { case "(($ac_try" in
  1437. *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1438. *) ac_try_echo=$ac_try;;
  1439. esac
  1440. eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1441. $as_echo "$ac_try_echo"; } >&5
  1442. (eval "$ac_try") 2>&5
  1443. ac_status=$?
  1444. $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1445. test $ac_status = 0; }; }; then :
  1446. ac_retval=0
  1447. else
  1448. $as_echo "$as_me: program exited with status $ac_status" >&5
  1449. $as_echo "$as_me: failed program was:" >&5
  1450. sed 's/^/| /' conftest.$ac_ext >&5
  1451. ac_retval=$ac_status
  1452. fi
  1453. rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1454. eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1455. as_fn_set_status $ac_retval
  1456. } # ac_fn_c_try_run
  1457. # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
  1458. # -------------------------------------------------------
  1459. # Tests whether HEADER exists, giving a warning if it cannot be compiled using
  1460. # the include files in INCLUDES and setting the cache variable VAR
  1461. # accordingly.
  1462. ac_fn_c_check_header_mongrel ()
  1463. {
  1464. as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1465. if eval \${$3+:} false; then :
  1466. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1467. $as_echo_n "checking for $2... " >&6; }
  1468. if eval \${$3+:} false; then :
  1469. $as_echo_n "(cached) " >&6
  1470. fi
  1471. eval ac_res=\$$3
  1472. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1473. $as_echo "$ac_res" >&6; }
  1474. else
  1475. # Is the header compilable?
  1476. { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
  1477. $as_echo_n "checking $2 usability... " >&6; }
  1478. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1479. /* end confdefs.h. */
  1480. $4
  1481. #include <$2>
  1482. _ACEOF
  1483. if ac_fn_c_try_compile "$LINENO"; then :
  1484. ac_header_compiler=yes
  1485. else
  1486. ac_header_compiler=no
  1487. fi
  1488. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1489. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
  1490. $as_echo "$ac_header_compiler" >&6; }
  1491. # Is the header present?
  1492. { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
  1493. $as_echo_n "checking $2 presence... " >&6; }
  1494. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1495. /* end confdefs.h. */
  1496. #include <$2>
  1497. _ACEOF
  1498. if ac_fn_c_try_cpp "$LINENO"; then :
  1499. ac_header_preproc=yes
  1500. else
  1501. ac_header_preproc=no
  1502. fi
  1503. rm -f conftest.err conftest.i conftest.$ac_ext
  1504. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc…

Large files files are truncated, but you can click here to view the full file