PageRenderTime 76ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 3ms

/configure

https://gitlab.com/evergreen-bjwebb/opensrf-debian
Shell | 15699 lines | 13348 code | 1385 blank | 966 comment | 1198 complexity | faa3bb73c5fda06d5a27320c0ebd6aca MD5 | raw file
Possible License(s): GPL-2.0, BSD-3-Clause

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

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

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