PageRenderTime 73ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 1ms

/xfce4-power-manager-1.2.0/configure

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

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