| 1 |
#! /bin/sh |
|---|
| 2 |
# Guess values for system-dependent variables and create Makefiles. |
|---|
| 3 |
# Generated by GNU Autoconf 2.61 for trackerd 1.0.2. |
|---|
| 4 |
# |
|---|
| 5 |
# Report bugs to <axel@zankasoftware.com>. |
|---|
| 6 |
# |
|---|
| 7 |
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
|---|
| 8 |
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
|---|
| 9 |
# This configure script is free software; the Free Software Foundation |
|---|
| 10 |
# gives unlimited permission to copy, distribute and modify it. |
|---|
| 11 |
## --------------------- ## |
|---|
| 12 |
## M4sh Initialization. ## |
|---|
| 13 |
## --------------------- ## |
|---|
| 14 |
|
|---|
| 15 |
# Be more Bourne compatible |
|---|
| 16 |
DUALCASE=1; export DUALCASE # for MKS sh |
|---|
| 17 |
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then |
|---|
| 18 |
emulate sh |
|---|
| 19 |
NULLCMD=: |
|---|
| 20 |
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which |
|---|
| 21 |
# is contrary to our usage. Disable this feature. |
|---|
| 22 |
alias -g '${1+"$@"}'='"$@"' |
|---|
| 23 |
setopt NO_GLOB_SUBST |
|---|
| 24 |
else |
|---|
| 25 |
case `(set -o) 2>/dev/null` in |
|---|
| 26 |
*posix*) set -o posix ;; |
|---|
| 27 |
esac |
|---|
| 28 |
|
|---|
| 29 |
fi |
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
# PATH needs CR |
|---|
| 35 |
# Avoid depending upon Character Ranges. |
|---|
| 36 |
as_cr_letters='abcdefghijklmnopqrstuvwxyz' |
|---|
| 37 |
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' |
|---|
| 38 |
as_cr_Letters=$as_cr_letters$as_cr_LETTERS |
|---|
| 39 |
as_cr_digits='0123456789' |
|---|
| 40 |
as_cr_alnum=$as_cr_Letters$as_cr_digits |
|---|
| 41 |
|
|---|
| 42 |
# The user is always right. |
|---|
| 43 |
if test "${PATH_SEPARATOR+set}" != set; then |
|---|
| 44 |
echo "#! /bin/sh" >conf$$.sh |
|---|
| 45 |
echo "exit 0" >>conf$$.sh |
|---|
| 46 |
chmod +x conf$$.sh |
|---|
| 47 |
if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then |
|---|
| 48 |
PATH_SEPARATOR=';' |
|---|
| 49 |
else |
|---|
| 50 |
PATH_SEPARATOR=: |
|---|
| 51 |
fi |
|---|
| 52 |
rm -f conf$$.sh |
|---|
| 53 |
fi |
|---|
| 54 |
|
|---|
| 55 |
# Support unset when possible. |
|---|
| 56 |
if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then |
|---|
| 57 |
as_unset=unset |
|---|
| 58 |
else |
|---|
| 59 |
as_unset=false |
|---|
| 60 |
fi |
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 |
# IFS |
|---|
| 64 |
# We need space, tab and new line, in precisely that order. Quoting is |
|---|
| 65 |
# there to prevent editors from complaining about space-tab. |
|---|
| 66 |
# (If _AS_PATH_WALK were called with IFS unset, it would disable word |
|---|
| 67 |
# splitting by setting IFS to empty value.) |
|---|
| 68 |
as_nl=' |
|---|
| 69 |
' |
|---|
| 70 |
IFS=" "" $as_nl" |
|---|
| 71 |
|
|---|
| 72 |
# Find who we are. Look in the path if we contain no directory separator. |
|---|
| 73 |
case $0 in |
|---|
| 74 |
*[\\/]* ) as_myself=$0 ;; |
|---|
| 75 |
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR |
|---|
| 76 |
for as_dir in $PATH |
|---|
| 77 |
do |
|---|
| 78 |
IFS=$as_save_IFS |
|---|
| 79 |
test -z "$as_dir" && as_dir=. |
|---|
| 80 |
test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break |
|---|
| 81 |
done |
|---|
| 82 |
IFS=$as_save_IFS |
|---|
| 83 |
|
|---|
| 84 |
;; |
|---|
| 85 |
esac |
|---|
| 86 |
# We did not find ourselves, most probably we were run as `sh COMMAND' |
|---|
| 87 |
# in which case we are not to be found in the path. |
|---|
| 88 |
if test "x$as_myself" = x; then |
|---|
| 89 |
as_myself=$0 |
|---|
| 90 |
fi |
|---|
| 91 |
if test ! -f "$as_myself"; then |
|---|
| 92 |
echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 |
|---|
| 93 |
{ (exit 1); exit 1; } |
|---|
| 94 |
fi |
|---|
| 95 |
|
|---|
| 96 |
# Work around bugs in pre-3.0 UWIN ksh. |
|---|
| 97 |
for as_var in ENV MAIL MAILPATH |
|---|
| 98 |
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var |
|---|
| 99 |
done |
|---|
| 100 |
PS1='$ ' |
|---|
| 101 |
PS2='> ' |
|---|
| 102 |
PS4='+ ' |
|---|
| 103 |
|
|---|
| 104 |
# NLS nuisances. |
|---|
| 105 |
for as_var in \ |
|---|
| 106 |
LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ |
|---|
| 107 |
LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ |
|---|
| 108 |
LC_TELEPHONE LC_TIME |
|---|
| 109 |
do |
|---|
| 110 |
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then |
|---|
| 111 |
eval $as_var=C; export $as_var |
|---|
| 112 |
else |
|---|
| 113 |
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var |
|---|
| 114 |
fi |
|---|
| 115 |
done |
|---|
| 116 |
|
|---|
| 117 |
# Required to use basename. |
|---|
| 118 |
if expr a : '\(a\)' >/dev/null 2>&1 && |
|---|
| 119 |
test "X`expr 00001 : '.*\(...\)'`" = X001; then |
|---|
| 120 |
as_expr=expr |
|---|
| 121 |
else |
|---|
| 122 |
as_expr=false |
|---|
| 123 |
fi |
|---|
| 124 |
|
|---|
| 125 |
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then |
|---|
| 126 |
as_basename=basename |
|---|
| 127 |
else |
|---|
| 128 |
as_basename=false |
|---|
| 129 |
fi |
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
# Name of the executable. |
|---|
| 133 |
as_me=`$as_basename -- "$0" || |
|---|
| 134 |
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ |
|---|
| 135 |
X"$0" : 'X\(//\)$' \| \ |
|---|
| 136 |
X"$0" : 'X\(/\)' \| . 2>/dev/null || |
|---|
| 137 |
echo X/"$0" | |
|---|
| 138 |
sed '/^.*\/\([^/][^/]*\)\/*$/{ |
|---|
| 139 |
s//\1/ |
|---|
| 140 |
q |
|---|
| 141 |
} |
|---|
| 142 |
/^X\/\(\/\/\)$/{ |
|---|
| 143 |
s//\1/ |
|---|
| 144 |
q |
|---|
| 145 |
} |
|---|
| 146 |
/^X\/\(\/\).*/{ |
|---|
| 147 |
s//\1/ |
|---|
| 148 |
q |
|---|
| 149 |
} |
|---|
| 150 |
s/.*/./; q'` |
|---|
| 151 |
|
|---|
| 152 |
# CDPATH. |
|---|
| 153 |
$as_unset CDPATH |
|---|
| 154 |
|
|---|
| 155 |
|
|---|
| 156 |
if test "x$CONFIG_SHELL" = x; then |
|---|
| 157 |
if (eval ":") 2>/dev/null; then |
|---|
| 158 |
as_have_required=yes |
|---|
| 159 |
else |
|---|
| 160 |
as_have_required=no |
|---|
| 161 |
fi |
|---|
| 162 |
|
|---|
| 163 |
if test $as_have_required = yes && (eval ": |
|---|
| 164 |
(as_func_return () { |
|---|
| 165 |
(exit \$1) |
|---|
| 166 |
} |
|---|
| 167 |
as_func_success () { |
|---|
| 168 |
as_func_return 0 |
|---|
| 169 |
} |
|---|
| 170 |
as_func_failure () { |
|---|
| 171 |
as_func_return 1 |
|---|
| 172 |
} |
|---|
| 173 |
as_func_ret_success () { |
|---|
| 174 |
return 0 |
|---|
| 175 |
} |
|---|
| 176 |
as_func_ret_failure () { |
|---|
| 177 |
return 1 |
|---|
| 178 |
} |
|---|
| 179 |
|
|---|
| 180 |
exitcode=0 |
|---|
| 181 |
if as_func_success; then |
|---|
| 182 |
: |
|---|
| 183 |
else |
|---|
| 184 |
exitcode=1 |
|---|
| 185 |
echo as_func_success failed. |
|---|
| 186 |
fi |
|---|
| 187 |
|
|---|
| 188 |
if as_func_failure; then |
|---|
| 189 |
exitcode=1 |
|---|
| 190 |
echo as_func_failure succeeded. |
|---|
| 191 |
fi |
|---|
| 192 |
|
|---|
| 193 |
if as_func_ret_success; then |
|---|
| 194 |
: |
|---|
| 195 |
else |
|---|
| 196 |
exitcode=1 |
|---|
| 197 |
echo as_func_ret_success failed. |
|---|
| 198 |
fi |
|---|
| 199 |
|
|---|
| 200 |
if as_func_ret_failure; then |
|---|
| 201 |
exitcode=1 |
|---|
| 202 |
echo as_func_ret_failure succeeded. |
|---|
| 203 |
fi |
|---|
| 204 |
|
|---|
| 205 |
if ( set x; as_func_ret_success y && test x = \"\$1\" ); then |
|---|
| 206 |
: |
|---|
| 207 |
else |
|---|
| 208 |
exitcode=1 |
|---|
| 209 |
echo positional parameters were not saved. |
|---|
| 210 |
fi |
|---|
| 211 |
|
|---|
| 212 |
test \$exitcode = 0) || { (exit 1); exit 1; } |
|---|
| 213 |
|
|---|
| 214 |
( |
|---|
| 215 |
as_lineno_1=\$LINENO |
|---|
| 216 |
as_lineno_2=\$LINENO |
|---|
| 217 |
test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && |
|---|
| 218 |
test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } |
|---|
| 219 |
") 2> /dev/null; then |
|---|
| 220 |
: |
|---|
| 221 |
else |
|---|
| 222 |
as_candidate_shells= |
|---|
| 223 |
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR |
|---|
| 224 |
for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH |
|---|
| 225 |
do |
|---|
| 226 |
IFS=$as_save_IFS |
|---|
| 227 |
test -z "$as_dir" && as_dir=. |
|---|
| 228 |
case $as_dir in |
|---|
| 229 |
/*) |
|---|
| 230 |
for as_base in sh bash ksh sh5; do |
|---|
| 231 |
as_candidate_shells="$as_candidate_shells $as_dir/$as_base" |
|---|
| 232 |
done;; |
|---|
| 233 |
esac |
|---|
| 234 |
done |
|---|
| 235 |
IFS=$as_save_IFS |
|---|
| 236 |
|
|---|
| 237 |
|
|---|
| 238 |
for as_shell in $as_candidate_shells $SHELL; do |
|---|
| 239 |
# Try only shells that exist, to save several forks. |
|---|
| 240 |
if { test -f "$as_shell" || test -f "$as_shell.exe"; } && |
|---|
| 241 |
{ ("$as_shell") 2> /dev/null <<\_ASEOF |
|---|
| 242 |
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then |
|---|
| 243 |
emulate sh |
|---|
| 244 |
NULLCMD=: |
|---|
| 245 |
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which |
|---|
| 246 |
# is contrary to our usage. Disable this feature. |
|---|
| 247 |
alias -g '${1+"$@"}'='"$@"' |
|---|
| 248 |
setopt NO_GLOB_SUBST |
|---|
| 249 |
else |
|---|
| 250 |
case `(set -o) 2>/dev/null` in |
|---|
| 251 |
*posix*) set -o posix ;; |
|---|
| 252 |
esac |
|---|
| 253 |
|
|---|
| 254 |
fi |
|---|
| 255 |
|
|---|
| 256 |
|
|---|
| 257 |
: |
|---|
| 258 |
_ASEOF |
|---|
| 259 |
}; then |
|---|
| 260 |
CONFIG_SHELL=$as_shell |
|---|
| 261 |
as_have_required=yes |
|---|
| 262 |
if { "$as_shell" 2> /dev/null <<\_ASEOF |
|---|
| 263 |
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then |
|---|
| 264 |
emulate sh |
|---|
| 265 |
NULLCMD=: |
|---|
| 266 |
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which |
|---|
| 267 |
# is contrary to our usage. Disable this feature. |
|---|
| 268 |
alias -g '${1+"$@"}'='"$@"' |
|---|
| 269 |
setopt NO_GLOB_SUBST |
|---|
| 270 |
else |
|---|
| 271 |
case `(set -o) 2>/dev/null` in |
|---|
| 272 |
*posix*) set -o posix ;; |
|---|
| 273 |
esac |
|---|
| 274 |
|
|---|
| 275 |
fi |
|---|
| 276 |
|
|---|
| 277 |
|
|---|
| 278 |
: |
|---|
| 279 |
(as_func_return () { |
|---|
| 280 |
(exit $1) |
|---|
| 281 |
} |
|---|
| 282 |
as_func_success () { |
|---|
| 283 |
as_func_return 0 |
|---|
| 284 |
} |
|---|
| 285 |
as_func_failure () { |
|---|
| 286 |
as_func_return 1 |
|---|
| 287 |
} |
|---|
| 288 |
as_func_ret_success () { |
|---|
| 289 |
return 0 |
|---|
| 290 |
} |
|---|
| 291 |
as_func_ret_failure () { |
|---|
| 292 |
return 1 |
|---|
| 293 |
} |
|---|
| 294 |
|
|---|
| 295 |
exitcode=0 |
|---|
| 296 |
if as_func_success; then |
|---|
| 297 |
: |
|---|
| 298 |
else |
|---|
| 299 |
exitcode=1 |
|---|
| 300 |
echo as_func_success failed. |
|---|
| 301 |
fi |
|---|
| 302 |
|
|---|
| 303 |
if as_func_failure; then |
|---|
| 304 |
exitcode=1 |
|---|
| 305 |
echo as_func_failure succeeded. |
|---|
| 306 |
fi |
|---|
| 307 |
|
|---|
| 308 |
if as_func_ret_success; then |
|---|
| 309 |
: |
|---|
| 310 |
else |
|---|
| 311 |
exitcode=1 |
|---|
| 312 |
echo as_func_ret_success failed. |
|---|
| 313 |
fi |
|---|
| 314 |
|
|---|
| 315 |
if as_func_ret_failure; then |
|---|
| 316 |
exitcode=1 |
|---|
| 317 |
echo as_func_ret_failure succeeded. |
|---|
| 318 |
fi |
|---|
| 319 |
|
|---|
| 320 |
if ( set x; as_func_ret_success y && test x = "$1" ); then |
|---|
| 321 |
: |
|---|
| 322 |
else |
|---|
| 323 |
exitcode=1 |
|---|
| 324 |
echo positional parameters were not saved. |
|---|
| 325 |
fi |
|---|
| 326 |
|
|---|
| 327 |
test $exitcode = 0) || { (exit 1); exit 1; } |
|---|
| 328 |
|
|---|
| 329 |
( |
|---|
| 330 |
as_lineno_1=$LINENO |
|---|
| 331 |
as_lineno_2=$LINENO |
|---|
| 332 |
test "x$as_lineno_1" != "x$as_lineno_2" && |
|---|
| 333 |
test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } |
|---|
| 334 |
|
|---|
| 335 |
_ASEOF |
|---|
| 336 |
}; then |
|---|
| 337 |
break |
|---|
| 338 |
fi |
|---|
| 339 |
|
|---|
| 340 |
fi |
|---|
| 341 |
|
|---|
| 342 |
done |
|---|
| 343 |
|
|---|
| 344 |
if test "x$CONFIG_SHELL" != x; then |
|---|
| 345 |
for as_var in BASH_ENV ENV |
|---|
| 346 |
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var |
|---|
| 347 |
done |
|---|
| 348 |
export CONFIG_SHELL |
|---|
| 349 |
exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} |
|---|
| 350 |
fi |
|---|
| 351 |
|
|---|
| 352 |
|
|---|
| 353 |
if test $as_have_required = no; then |
|---|
| 354 |
echo This script requires a shell more modern than all the |
|---|
| 355 |
echo shells that I found on your system. Please install a |
|---|
| 356 |
echo modern shell, or manually run the script under such a |
|---|
| 357 |
echo shell if you do have one. |
|---|
| 358 |
{ (exit 1); exit 1; } |
|---|
| 359 |
fi |
|---|
| 360 |
|
|---|
| 361 |
|
|---|
| 362 |
fi |
|---|
| 363 |
|
|---|
| 364 |
fi |
|---|
| 365 |
|
|---|
| 366 |
|
|---|
| 367 |
|
|---|
| 368 |
(eval "as_func_return () { |
|---|
| 369 |
(exit \$1) |
|---|
| 370 |
} |
|---|
| 371 |
as_func_success () { |
|---|
| 372 |
as_func_return 0 |
|---|
| 373 |
} |
|---|
| 374 |
as_func_failure () { |
|---|
| 375 |
as_func_return 1 |
|---|
| 376 |
} |
|---|
| 377 |
as_func_ret_success () { |
|---|
| 378 |
return 0 |
|---|
| 379 |
} |
|---|
| 380 |
as_func_ret_failure () { |
|---|
| 381 |
return 1 |
|---|
| 382 |
} |
|---|
| 383 |
|
|---|
| 384 |
exitcode=0 |
|---|
| 385 |
if as_func_success; then |
|---|
| 386 |
: |
|---|
| 387 |
else |
|---|
| 388 |
exitcode=1 |
|---|
| 389 |
echo as_func_success failed. |
|---|
| 390 |
fi |
|---|
| 391 |
|
|---|
| 392 |
if as_func_failure; then |
|---|
| 393 |
exitcode=1 |
|---|
| 394 |
echo as_func_failure succeeded. |
|---|
| 395 |
fi |
|---|
| 396 |
|
|---|
| 397 |
if as_func_ret_success; then |
|---|
| 398 |
: |
|---|
| 399 |
else |
|---|
| 400 |
exitcode=1 |
|---|
| 401 |
echo as_func_ret_success failed. |
|---|
| 402 |
fi |
|---|
| 403 |
|
|---|
| 404 |
if as_func_ret_failure; then |
|---|
| 405 |
exitcode=1 |
|---|
| 406 |
echo as_func_ret_failure succeeded. |
|---|
| 407 |
fi |
|---|
| 408 |
|
|---|
| 409 |
if ( set x; as_func_ret_success y && test x = \"\$1\" ); then |
|---|
| 410 |
: |
|---|
| 411 |
else |
|---|
| 412 |
exitcode=1 |
|---|
| 413 |
echo positional parameters were not saved. |
|---|
| 414 |
fi |
|---|
| 415 |
|
|---|
| 416 |
test \$exitcode = 0") || { |
|---|
| 417 |
echo No shell found that supports shell functions. |
|---|
| 418 |
echo Please tell autoconf@gnu.org about your system, |
|---|
| 419 |
echo including any error possibly output before this |
|---|
| 420 |
echo message |
|---|
| 421 |
} |
|---|
| 422 |
|
|---|
| 423 |
|
|---|
| 424 |
|
|---|
| 425 |
as_lineno_1=$LINENO |
|---|
| 426 |
as_lineno_2=$LINENO |
|---|
| 427 |
test "x$as_lineno_1" != "x$as_lineno_2" && |
|---|
| 428 |
test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { |
|---|
| 429 |
|
|---|
| 430 |
# Create $as_me.lineno as a copy of $as_myself, but with $LINENO |
|---|
| 431 |
# uniformly replaced by the line number. The first 'sed' inserts a |
|---|
| 432 |
# line-number line after each line using $LINENO; the second 'sed' |
|---|
| 433 |
# does the real work. The second script uses 'N' to pair each |
|---|
| 434 |
# line-number line with the line containing $LINENO, and appends |
|---|
| 435 |
# trailing '-' during substitution so that $LINENO is not a special |
|---|
| 436 |
# case at line end. |
|---|
| 437 |
# (Raja R Harinath suggested sed '=', and Paul Eggert wrote the |
|---|
| 438 |
# scripts with optimization help from Paolo Bonzini. Blame Lee |
|---|
| 439 |
# E. McMahon (1931-1989) for sed's syntax. :-) |
|---|
| 440 |
sed -n ' |
|---|
| 441 |
p |
|---|
| 442 |
/[$]LINENO/= |
|---|
| 443 |
' <$as_myself | |
|---|
| 444 |
sed ' |
|---|
| 445 |
s/[$]LINENO.*/&-/ |
|---|
| 446 |
t lineno |
|---|
| 447 |
b |
|---|
| 448 |
:lineno |
|---|
| 449 |
N |
|---|
| 450 |
:loop |
|---|
| 451 |
s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ |
|---|
| 452 |
t loop |
|---|
| 453 |
s/-\n.*// |
|---|
| 454 |
' >$as_me.lineno && |
|---|
| 455 |
chmod +x "$as_me.lineno" || |
|---|
| 456 |
{ echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 |
|---|
| 457 |
{ (exit 1); exit 1; }; } |
|---|
| 458 |
|
|---|
| 459 |
# Don't try to exec as it changes $[0], causing all sort of problems |
|---|
| 460 |
# (the dirname of $[0] is not the place where we might find the |
|---|
| 461 |
# original and so on. Autoconf is especially sensitive to this). |
|---|
| 462 |
. "./$as_me.lineno" |
|---|
| 463 |
# Exit status is that of the last command. |
|---|
| 464 |
exit |
|---|
| 465 |
} |
|---|
| 466 |
|
|---|
| 467 |
|
|---|
| 468 |
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then |
|---|
| 469 |
as_dirname=dirname |
|---|
| 470 |
else |
|---|
| 471 |
as_dirname=false |
|---|
| 472 |
fi |
|---|
| 473 |
|
|---|
| 474 |
ECHO_C= ECHO_N= ECHO_T= |
|---|
| 475 |
case `echo -n x` in |
|---|
| 476 |
-n*) |
|---|
| 477 |
case `echo 'x\c'` in |
|---|
| 478 |
*c*) ECHO_T=' ';; # ECHO_T is single tab character. |
|---|
| 479 |
*) ECHO_C='\c';; |
|---|
| 480 |
esac;; |
|---|
| 481 |
*) |
|---|
| 482 |
ECHO_N='-n';; |
|---|
| 483 |
esac |
|---|
| 484 |
|
|---|
| 485 |
if expr a : '\(a\)' >/dev/null 2>&1 && |
|---|
| 486 |
test "X`expr 00001 : '.*\(...\)'`" = X001; then |
|---|
| 487 |
as_expr=expr |
|---|
| 488 |
else |
|---|
| 489 |
as_expr=false |
|---|
| 490 |
fi |
|---|
| 491 |
|
|---|
| 492 |
rm -f conf$$ conf$$.exe conf$$.file |
|---|
| 493 |
if test -d conf$$.dir; then |
|---|
| 494 |
rm -f conf$$.dir/conf$$.file |
|---|
| 495 |
else |
|---|
| 496 |
rm -f conf$$.dir |
|---|
| 497 |
mkdir conf$$.dir |
|---|
| 498 |
fi |
|---|
| 499 |
echo >conf$$.file |
|---|
| 500 |
if ln -s conf$$.file conf$$ 2>/dev/null; then |
|---|
| 501 |
as_ln_s='ln -s' |
|---|
| 502 |
# ... but there are two gotchas: |
|---|
| 503 |
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. |
|---|
| 504 |
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. |
|---|
| 505 |
# In both cases, we have to default to `cp -p'. |
|---|
| 506 |
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || |
|---|
| 507 |
as_ln_s='cp -p' |
|---|
| 508 |
elif ln conf$$.file conf$$ 2>/dev/null; then |
|---|
| 509 |
as_ln_s=ln |
|---|
| 510 |
else |
|---|
| 511 |
as_ln_s='cp -p' |
|---|
| 512 |
fi |
|---|
| 513 |
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file |
|---|
| 514 |
rmdir conf$$.dir 2>/dev/null |
|---|
| 515 |
|
|---|
| 516 |
if mkdir -p . 2>/dev/null; then |
|---|
| 517 |
as_mkdir_p=: |
|---|
| 518 |
else |
|---|
| 519 |
test -d ./-p && rmdir ./-p |
|---|
| 520 |
as_mkdir_p=false |
|---|
| 521 |
fi |
|---|
| 522 |
|
|---|
| 523 |
if test -x / >/dev/null 2>&1; then |
|---|
| 524 |
as_test_x='test -x' |
|---|
| 525 |
else |
|---|
| 526 |
if ls -dL / >/dev/null 2>&1; then |
|---|
| 527 |
as_ls_L_option=L |
|---|
| 528 |
else |
|---|
| 529 |
as_ls_L_option= |
|---|
| 530 |
fi |
|---|
| 531 |
as_test_x=' |
|---|
| 532 |
eval sh -c '\'' |
|---|
| 533 |
if test -d "$1"; then |
|---|
| 534 |
test -d "$1/."; |
|---|
| 535 |
else |
|---|
| 536 |
case $1 in |
|---|
| 537 |
-*)set "./$1";; |
|---|
| 538 |
esac; |
|---|
| 539 |
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in |
|---|
| 540 |
???[sx]*):;;*)false;;esac;fi |
|---|
| 541 |
'\'' sh |
|---|
| 542 |
' |
|---|
| 543 |
fi |
|---|
| 544 |
as_executable_p=$as_test_x |
|---|
| 545 |
|
|---|
| 546 |
# Sed expression to map a string onto a valid CPP name. |
|---|
| 547 |
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" |
|---|
| 548 |
|
|---|
| 549 |
# Sed expression to map a string onto a valid variable name. |
|---|
| 550 |
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" |
|---|
| 551 |
|
|---|
| 552 |
|
|---|
| 553 |
|
|---|
| 554 |
exec 7<&0 </dev/null 6>&1 |
|---|
| 555 |
|
|---|
| 556 |
# Name of the host. |
|---|
| 557 |
# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, |
|---|
| 558 |
# so uname gets run too. |
|---|
| 559 |
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` |
|---|
| 560 |
|
|---|
| 561 |
# |
|---|
| 562 |
# Initializations. |
|---|
| 563 |
# |
|---|
| 564 |
ac_default_prefix=/usr/local |
|---|
| 565 |
ac_clean_files= |
|---|
| 566 |
ac_config_libobj_dir=. |
|---|
| 567 |
LIBOBJS= |
|---|
| 568 |
cross_compiling=no |
|---|
| 569 |
subdirs= |
|---|
| 570 |
MFLAGS= |
|---|
| 571 |
MAKEFLAGS= |
|---|
| 572 |
SHELL=${CONFIG_SHELL-/bin/sh} |
|---|
| 573 |
|
|---|
| 574 |
# Identity of this package. |
|---|
| 575 |
PACKAGE_NAME='trackerd' |
|---|
| 576 |
PACKAGE_TARNAME='trackerd' |
|---|
| 577 |
PACKAGE_VERSION='1.0.2' |
|---|
| 578 |
PACKAGE_STRING='trackerd 1.0.2' |
|---|
| 579 |
PACKAGE_BUGREPORT='axel@zankasoftware.com' |
|---|
| 580 |
|
|---|
| 581 |
ac_unique_file="config.h.in" |
|---|
| 582 |
# Factoring default headers for most tests. |
|---|
| 583 |
ac_includes_default="\ |
|---|
| 584 |
#include <stdio.h> |
|---|
| 585 |
#ifdef HAVE_SYS_TYPES_H |
|---|
| 586 |
# include <sys/types.h> |
|---|
| 587 |
#endif |
|---|
| 588 |
#ifdef HAVE_SYS_STAT_H |
|---|
| 589 |
# include <sys/stat.h> |
|---|
| 590 |
#endif |
|---|
| 591 |
#ifdef STDC_HEADERS |
|---|
| 592 |
# include <stdlib.h> |
|---|
| 593 |
# include <stddef.h> |
|---|
| 594 |
#else |
|---|
| 595 |
# ifdef HAVE_STDLIB_H |
|---|
| 596 |
# include <stdlib.h> |
|---|
| 597 |
# endif |
|---|
| 598 |
#endif |
|---|
| 599 |
#ifdef HAVE_STRING_H |
|---|
| 600 |
# if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 601 |
# include <memory.h> |
|---|
| 602 |
# endif |
|---|
| 603 |
# include <string.h> |
|---|
| 604 |
#endif |
|---|
| 605 |
#ifdef HAVE_STRINGS_H |
|---|
| 606 |
# include <strings.h> |
|---|
| 607 |
#endif |
|---|
| 608 |
#ifdef HAVE_INTTYPES_H |
|---|
| 609 |
# include <inttypes.h> |
|---|
| 610 |
#endif |
|---|
| 611 |
#ifdef HAVE_STDINT_H |
|---|
| 612 |
# include <stdint.h> |
|---|
| 613 |
#endif |
|---|
| 614 |
#ifdef HAVE_UNISTD_H |
|---|
| 615 |
# include <unistd.h> |
|---|
| 616 |
#endif" |
|---|
| 617 |
|
|---|
| 618 |
ac_subst_vars='SHELL |
|---|
| 619 |
PATH_SEPARATOR |
|---|
| 620 |
PACKAGE_NAME |
|---|
| 621 |
PACKAGE_TARNAME |
|---|
| 622 |
PACKAGE_VERSION |
|---|
| 623 |
PACKAGE_STRING |
|---|
| 624 |
PACKAGE_BUGREPORT |
|---|
| 625 |
exec_prefix |
|---|
| 626 |
prefix |
|---|
| 627 |
program_transform_name |
|---|
| 628 |
bindir |
|---|
| 629 |
sbindir |
|---|
| 630 |
libexecdir |
|---|
| 631 |
datarootdir |
|---|
| 632 |
datadir |
|---|
| 633 |
sysconfdir |
|---|
| 634 |
sharedstatedir |
|---|
| 635 |
localstatedir |
|---|
| 636 |
includedir |
|---|
| 637 |
oldincludedir |
|---|
| 638 |
docdir |
|---|
| 639 |
infodir |
|---|
| 640 |
htmldir |
|---|
| 641 |
dvidir |
|---|
| 642 |
pdfdir |
|---|
| 643 |
psdir |
|---|
| 644 |
libdir |
|---|
| 645 |
localedir |
|---|
| 646 |
mandir |
|---|
| 647 |
DEFS |
|---|
| 648 |
ECHO_C |
|---|
| 649 |
ECHO_N |
|---|
| 650 |
ECHO_T |
|---|
| 651 |
LIBS |
|---|
| 652 |
build_alias |
|---|
| 653 |
host_alias |
|---|
| 654 |
target_alias |
|---|
| 655 |
build |
|---|
| 656 |
build_cpu |
|---|
| 657 |
build_vendor |
|---|
| 658 |
build_os |
|---|
| 659 |
host |
|---|
| 660 |
host_cpu |
|---|
| 661 |
host_vendor |
|---|
| 662 |
host_os |
|---|
| 663 |
WT_VERSION |
|---|
| 664 |
CC |
|---|
| 665 |
CFLAGS |
|---|
| 666 |
LDFLAGS |
|---|
| 667 |
CPPFLAGS |
|---|
| 668 |
ac_ct_CC |
|---|
| 669 |
EXEEXT |
|---|
| 670 |
OBJEXT |
|---|
| 671 |
INSTALL_PROGRAM |
|---|
| 672 |
INSTALL_SCRIPT |
|---|
| 673 |
INSTALL_DATA |
|---|
| 674 |
SET_MAKE |
|---|
| 675 |
WT_USER |
|---|
| 676 |
WT_GROUP |
|---|
| 677 |
fake_prefix |
|---|
| 678 |
trackerddir |
|---|
| 679 |
objdir |
|---|
| 680 |
rundir |
|---|
| 681 |
WT_MAINTAINER |
|---|
| 682 |
CPP |
|---|
| 683 |
GREP |
|---|
| 684 |
EGREP |
|---|
| 685 |
subdirs |
|---|
| 686 |
LIBOBJS |
|---|
| 687 |
LTLIBOBJS' |
|---|
| 688 |
ac_subst_files='' |
|---|
| 689 |
ac_precious_vars='build_alias |
|---|
| 690 |
host_alias |
|---|
| 691 |
target_alias |
|---|
| 692 |
CC |
|---|
| 693 |
CFLAGS |
|---|
| 694 |
LDFLAGS |
|---|
| 695 |
LIBS |
|---|
| 696 |
CPPFLAGS |
|---|
| 697 |
CPP' |
|---|
| 698 |
ac_subdirs_all='libwired' |
|---|
| 699 |
|
|---|
| 700 |
# Initialize some variables set by options. |
|---|
| 701 |
ac_init_help= |
|---|
| 702 |
ac_init_version=false |
|---|
| 703 |
# The variables have the same names as the options, with |
|---|
| 704 |
# dashes changed to underlines. |
|---|
| 705 |
cache_file=/dev/null |
|---|
| 706 |
exec_prefix=NONE |
|---|
| 707 |
no_create= |
|---|
| 708 |
no_recursion= |
|---|
| 709 |
prefix=NONE |
|---|
| 710 |
program_prefix=NONE |
|---|
| 711 |
program_suffix=NONE |
|---|
| 712 |
program_transform_name=s,x,x, |
|---|
| 713 |
silent= |
|---|
| 714 |
site= |
|---|
| 715 |
srcdir= |
|---|
| 716 |
verbose= |
|---|
| 717 |
x_includes=NONE |
|---|
| 718 |
x_libraries=NONE |
|---|
| 719 |
|
|---|
| 720 |
# Installation directory options. |
|---|
| 721 |
# These are left unexpanded so users can "make install exec_prefix=/foo" |
|---|
| 722 |
# and all the variables that are supposed to be based on exec_prefix |
|---|
| 723 |
# by default will actually change. |
|---|
| 724 |
# Use braces instead of parens because sh, perl, etc. also accept them. |
|---|
| 725 |
# (The list follows the same order as the GNU Coding Standards.) |
|---|
| 726 |
bindir='${exec_prefix}/bin' |
|---|
| 727 |
sbindir='${exec_prefix}/sbin' |
|---|
| 728 |
libexecdir='${exec_prefix}/libexec' |
|---|
| 729 |
datarootdir='${prefix}/share' |
|---|
| 730 |
datadir='${datarootdir}' |
|---|
| 731 |
sysconfdir='${prefix}/etc' |
|---|
| 732 |
sharedstatedir='${prefix}/com' |
|---|
| 733 |
localstatedir='${prefix}/var' |
|---|
| 734 |
includedir='${prefix}/include' |
|---|
| 735 |
oldincludedir='/usr/include' |
|---|
| 736 |
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' |
|---|
| 737 |
infodir='${datarootdir}/info' |
|---|
| 738 |
htmldir='${docdir}' |
|---|
| 739 |
dvidir='${docdir}' |
|---|
| 740 |
pdfdir='${docdir}' |
|---|
| 741 |
psdir='${docdir}' |
|---|
| 742 |
libdir='${exec_prefix}/lib' |
|---|
| 743 |
localedir='${datarootdir}/locale' |
|---|
| 744 |
mandir='${datarootdir}/man' |
|---|
| 745 |
|
|---|
| 746 |
ac_prev= |
|---|
| 747 |
ac_dashdash= |
|---|
| 748 |
for ac_option |
|---|
| 749 |
do |
|---|
| 750 |
# If the previous option needs an argument, assign it. |
|---|
| 751 |
if test -n "$ac_prev"; then |
|---|
| 752 |
eval $ac_prev=\$ac_option |
|---|
| 753 |
ac_prev= |
|---|
| 754 |
continue |
|---|
| 755 |
fi |
|---|
| 756 |
|
|---|
| 757 |
case $ac_option in |
|---|
| 758 |
*=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; |
|---|
| 759 |
*) ac_optarg=yes ;; |
|---|
| 760 |
esac |
|---|
| 761 |
|
|---|
| 762 |
# Accept the important Cygnus configure options, so we can diagnose typos. |
|---|
| 763 |
|
|---|
| 764 |
case $ac_dashdash$ac_option in |
|---|
| 765 |
--) |
|---|
| 766 |
ac_dashdash=yes ;; |
|---|
| 767 |
|
|---|
| 768 |
-bindir | --bindir | --bindi | --bind | --bin | --bi) |
|---|
| 769 |
ac_prev=bindir ;; |
|---|
| 770 |
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) |
|---|
| 771 |
bindir=$ac_optarg ;; |
|---|
| 772 |
|
|---|
| 773 |
-build | --build | --buil | --bui | --bu) |
|---|
| 774 |
ac_prev=build_alias ;; |
|---|
| 775 |
-build=* | --build=* | --buil=* | --bui=* | --bu=*) |
|---|
| 776 |
build_alias=$ac_optarg ;; |
|---|
| 777 |
|
|---|
| 778 |
-cache-file | --cache-file | --cache-fil | --cache-fi \ |
|---|
| 779 |
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) |
|---|
| 780 |
ac_prev=cache_file ;; |
|---|
| 781 |
-cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ |
|---|
| 782 |
| --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) |
|---|
| 783 |
cache_file=$ac_optarg ;; |
|---|
| 784 |
|
|---|
| 785 |
--config-cache | -C) |
|---|
| 786 |
cache_file=config.cache ;; |
|---|
| 787 |
|
|---|
| 788 |
-datadir | --datadir | --datadi | --datad) |
|---|
| 789 |
ac_prev=datadir ;; |
|---|
| 790 |
-datadir=* | --datadir=* | --datadi=* | --datad=*) |
|---|
| 791 |
datadir=$ac_optarg ;; |
|---|
| 792 |
|
|---|
| 793 |
-datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ |
|---|
| 794 |
| --dataroo | --dataro | --datar) |
|---|
| 795 |
ac_prev=datarootdir ;; |
|---|
| 796 |
-datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ |
|---|
| 797 |
| --dataroot=* | --dataroo=* | --dataro=* | --datar=*) |
|---|
| 798 |
datarootdir=$ac_optarg ;; |
|---|
| 799 |
|
|---|
| 800 |
-disable-* | --disable-*) |
|---|
| 801 |
ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` |
|---|
| 802 |
# Reject names that are not valid shell variable names. |
|---|
| 803 |
expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && |
|---|
| 804 |
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2 |
|---|
| 805 |
{ (exit 1); exit 1; }; } |
|---|
| 806 |
ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` |
|---|
| 807 |
eval enable_$ac_feature=no ;; |
|---|
| 808 |
|
|---|
| 809 |
-docdir | --docdir | --docdi | --doc | --do) |
|---|
| 810 |
ac_prev=docdir ;; |
|---|
| 811 |
-docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) |
|---|
| 812 |
docdir=$ac_optarg ;; |
|---|
| 813 |
|
|---|
| 814 |
-dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) |
|---|
| 815 |
ac_prev=dvidir ;; |
|---|
| 816 |
-dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) |
|---|
| 817 |
dvidir=$ac_optarg ;; |
|---|
| 818 |
|
|---|
| 819 |
-enable-* | --enable-*) |
|---|
| 820 |
ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` |
|---|
| 821 |
# Reject names that are not valid shell variable names. |
|---|
| 822 |
expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && |
|---|
| 823 |
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2 |
|---|
| 824 |
{ (exit 1); exit 1; }; } |
|---|
| 825 |
ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` |
|---|
| 826 |
eval enable_$ac_feature=\$ac_optarg ;; |
|---|
| 827 |
|
|---|
| 828 |
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ |
|---|
| 829 |
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ |
|---|
| 830 |
| --exec | --exe | --ex) |
|---|
| 831 |
ac_prev=exec_prefix ;; |
|---|
| 832 |
-exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ |
|---|
| 833 |
| --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ |
|---|
| 834 |
| --exec=* | --exe=* | --ex=*) |
|---|
| 835 |
exec_prefix=$ac_optarg ;; |
|---|
| 836 |
|
|---|
| 837 |
-gas | --gas | --ga | --g) |
|---|
| 838 |
# Obsolete; use --with-gas. |
|---|
| 839 |
with_gas=yes ;; |
|---|
| 840 |
|
|---|
| 841 |
-help | --help | --hel | --he | -h) |
|---|
| 842 |
ac_init_help=long ;; |
|---|
| 843 |
-help=r* | --help=r* | --hel=r* | --he=r* | -hr*) |
|---|
| 844 |
ac_init_help=recursive ;; |
|---|
| 845 |
-help=s* | --help=s* | --hel=s* | --he=s* | -hs*) |
|---|
| 846 |
ac_init_help=short ;; |
|---|
| 847 |
|
|---|
| 848 |
-host | --host | --hos | --ho) |
|---|
| 849 |
ac_prev=host_alias ;; |
|---|
| 850 |
-host=* | --host=* | --hos=* | --ho=*) |
|---|
| 851 |
host_alias=$ac_optarg ;; |
|---|
| 852 |
|
|---|
| 853 |
-htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) |
|---|
| 854 |
ac_prev=htmldir ;; |
|---|
| 855 |
-htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ |
|---|
| 856 |
| --ht=*) |
|---|
| 857 |
htmldir=$ac_optarg ;; |
|---|
| 858 |
|
|---|
| 859 |
-includedir | --includedir | --includedi | --included | --include \ |
|---|
| 860 |
| --includ | --inclu | --incl | --inc) |
|---|
| 861 |
ac_prev=includedir ;; |
|---|
| 862 |
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ |
|---|
| 863 |
| --includ=* | --inclu=* | --incl=* | --inc=*) |
|---|
| 864 |
includedir=$ac_optarg ;; |
|---|
| 865 |
|
|---|
| 866 |
-infodir | --infodir | --infodi | --infod | --info | --inf) |
|---|
| 867 |
ac_prev=infodir ;; |
|---|
| 868 |
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) |
|---|
| 869 |
infodir=$ac_optarg ;; |
|---|
| 870 |
|
|---|
| 871 |
-libdir | --libdir | --libdi | --libd) |
|---|
| 872 |
ac_prev=libdir ;; |
|---|
| 873 |
-libdir=* | --libdir=* | --libdi=* | --libd=*) |
|---|
| 874 |
libdir=$ac_optarg ;; |
|---|
| 875 |
|
|---|
| 876 |
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ |
|---|
| 877 |
| --libexe | --libex | --libe) |
|---|
| 878 |
ac_prev=libexecdir ;; |
|---|
| 879 |
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ |
|---|
| 880 |
| --libexe=* | --libex=* | --libe=*) |
|---|
| 881 |
libexecdir=$ac_optarg ;; |
|---|
| 882 |
|
|---|
| 883 |
-localedir | --localedir | --localedi | --localed | --locale) |
|---|
| 884 |
ac_prev=localedir ;; |
|---|
| 885 |
-localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) |
|---|
| 886 |
localedir=$ac_optarg ;; |
|---|
| 887 |
|
|---|
| 888 |
-localstatedir | --localstatedir | --localstatedi | --localstated \ |
|---|
| 889 |
| --localstate | --localstat | --localsta | --localst | --locals) |
|---|
| 890 |
ac_prev=localstatedir ;; |
|---|
| 891 |
-localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ |
|---|
| 892 |
| --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) |
|---|
| 893 |
localstatedir=$ac_optarg ;; |
|---|
| 894 |
|
|---|
| 895 |
-mandir | --mandir | --mandi | --mand | --man | --ma | --m) |
|---|
| 896 |
ac_prev=mandir ;; |
|---|
| 897 |
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) |
|---|
| 898 |
mandir=$ac_optarg ;; |
|---|
| 899 |
|
|---|
| 900 |
-nfp | --nfp | --nf) |
|---|
| 901 |
# Obsolete; use --without-fp. |
|---|
| 902 |
with_fp=no ;; |
|---|
| 903 |
|
|---|
| 904 |
-no-create | --no-create | --no-creat | --no-crea | --no-cre \ |
|---|
| 905 |
| --no-cr | --no-c | -n) |
|---|
| 906 |
no_create=yes ;; |
|---|
| 907 |
|
|---|
| 908 |
-no-recursion | --no-recursion | --no-recursio | --no-recursi \ |
|---|
| 909 |
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) |
|---|
| 910 |
no_recursion=yes ;; |
|---|
| 911 |
|
|---|
| 912 |
-oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ |
|---|
| 913 |
| --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ |
|---|
| 914 |
| --oldin | --oldi | --old | --ol | --o) |
|---|
| 915 |
ac_prev=oldincludedir ;; |
|---|
| 916 |
-oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ |
|---|
| 917 |
| --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ |
|---|
| 918 |
| --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) |
|---|
| 919 |
oldincludedir=$ac_optarg ;; |
|---|
| 920 |
|
|---|
| 921 |
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p) |
|---|
| 922 |
ac_prev=prefix ;; |
|---|
| 923 |
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) |
|---|
| 924 |
prefix=$ac_optarg ;; |
|---|
| 925 |
|
|---|
| 926 |
-program-prefix | --program-prefix | --program-prefi | --program-pref \ |
|---|
| 927 |
| --program-pre | --program-pr | --program-p) |
|---|
| 928 |
ac_prev=program_prefix ;; |
|---|
| 929 |
-program-prefix=* | --program-prefix=* | --program-prefi=* \ |
|---|
| 930 |
| --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) |
|---|
| 931 |
program_prefix=$ac_optarg ;; |
|---|
| 932 |
|
|---|
| 933 |
-program-suffix | --program-suffix | --program-suffi | --program-suff \ |
|---|
| 934 |
| --program-suf | --program-su | --program-s) |
|---|
| 935 |
ac_prev=program_suffix ;; |
|---|
| 936 |
-program-suffix=* | --program-suffix=* | --program-suffi=* \ |
|---|
| 937 |
| --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) |
|---|
| 938 |
program_suffix=$ac_optarg ;; |
|---|
| 939 |
|
|---|
| 940 |
-program-transform-name | --program-transform-name \ |
|---|
| 941 |
| --program-transform-nam | --program-transform-na \ |
|---|
| 942 |
| --program-transform-n | --program-transform- \ |
|---|
| 943 |
| --program-transform | --program-transfor \ |
|---|
| 944 |
| --program-transfo | --program-transf \ |
|---|
| 945 |
| --program-trans | --program-tran \ |
|---|
| 946 |
| --progr-tra | --program-tr | --program-t) |
|---|
| 947 |
ac_prev=program_transform_name ;; |
|---|
| 948 |
-program-transform-name=* | --program-transform-name=* \ |
|---|
| 949 |
| --program-transform-nam=* | --program-transform-na=* \ |
|---|
| 950 |
| --program-transform-n=* | --program-transform-=* \ |
|---|
| 951 |
| --program-transform=* | --program-transfor=* \ |
|---|
| 952 |
| --program-transfo=* | --program-transf=* \ |
|---|
| 953 |
| --program-trans=* | --program-tran=* \ |
|---|
| 954 |
| --progr-tra=* | --program-tr=* | --program-t=*) |
|---|
| 955 |
program_transform_name=$ac_optarg ;; |
|---|
| 956 |
|
|---|
| 957 |
-pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) |
|---|
| 958 |
ac_prev=pdfdir ;; |
|---|
| 959 |
-pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) |
|---|
| 960 |
pdfdir=$ac_optarg ;; |
|---|
| 961 |
|
|---|
| 962 |
-psdir | --psdir | --psdi | --psd | --ps) |
|---|
| 963 |
ac_prev=psdir ;; |
|---|
| 964 |
-psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) |
|---|
| 965 |
psdir=$ac_optarg ;; |
|---|
| 966 |
|
|---|
| 967 |
-q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
|---|
| 968 |
| -silent | --silent | --silen | --sile | --sil) |
|---|
| 969 |
silent=yes ;; |
|---|
| 970 |
|
|---|
| 971 |
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) |
|---|
| 972 |
ac_prev=sbindir ;; |
|---|
| 973 |
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ |
|---|
| 974 |
| --sbi=* | --sb=*) |
|---|
| 975 |
sbindir=$ac_optarg ;; |
|---|
| 976 |
|
|---|
| 977 |
-sharedstatedir | --sharedstatedir | --sharedstatedi \ |
|---|
| 978 |
| --sharedstated | --sharedstate | --sharedstat | --sharedsta \ |
|---|
| 979 |
| --sharedst | --shareds | --shared | --share | --shar \ |
|---|
| 980 |
| --sha | --sh) |
|---|
| 981 |
ac_prev=sharedstatedir ;; |
|---|
| 982 |
-sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ |
|---|
| 983 |
| --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ |
|---|
| 984 |
| --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ |
|---|
| 985 |
| --sha=* | --sh=*) |
|---|
| 986 |
sharedstatedir=$ac_optarg ;; |
|---|
| 987 |
|
|---|
| 988 |
-site | --site | --sit) |
|---|
| 989 |
ac_prev=site ;; |
|---|
| 990 |
-site=* | --site=* | --sit=*) |
|---|
| 991 |
site=$ac_optarg ;; |
|---|
| 992 |
|
|---|
| 993 |
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr) |
|---|
| 994 |
ac_prev=srcdir ;; |
|---|
| 995 |
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) |
|---|
| 996 |
srcdir=$ac_optarg ;; |
|---|
| 997 |
|
|---|
| 998 |
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ |
|---|
| 999 |
| --syscon | --sysco | --sysc | --sys | --sy) |
|---|
| 1000 |
ac_prev=sysconfdir ;; |
|---|
| 1001 |
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ |
|---|
| 1002 |
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) |
|---|
| 1003 |
sysconfdir=$ac_optarg ;; |
|---|
| 1004 |
|
|---|
| 1005 |
-target | --target | --targe | --targ | --tar | --ta | --t) |
|---|
| 1006 |
ac_prev=target_alias ;; |
|---|
| 1007 |
-target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) |
|---|
| 1008 |
target_alias=$ac_optarg ;; |
|---|
| 1009 |
|
|---|
| 1010 |
-v | -verbose | --verbose | --verbos | --verbo | --verb) |
|---|
| 1011 |
verbose=yes ;; |
|---|
| 1012 |
|
|---|
| 1013 |
-version | --version | --versio | --versi | --vers | -V) |
|---|
| 1014 |
ac_init_version=: ;; |
|---|
| 1015 |
|
|---|
| 1016 |
-with-* | --with-*) |
|---|
| 1017 |
ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` |
|---|
| 1018 |
# Reject names that are not valid shell variable names. |
|---|
| 1019 |
expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && |
|---|
| 1020 |
{ echo "$as_me: error: invalid package name: $ac_package" >&2 |
|---|
| 1021 |
{ (exit 1); exit 1; }; } |
|---|
| 1022 |
ac_package=`echo $ac_package | sed 's/[-.]/_/g'` |
|---|
| 1023 |
eval with_$ac_package=\$ac_optarg ;; |
|---|
| 1024 |
|
|---|
| 1025 |
-without-* | --without-*) |
|---|
| 1026 |
ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` |
|---|
| 1027 |
# Reject names that are not valid shell variable names. |
|---|
| 1028 |
expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && |
|---|
| 1029 |
{ echo "$as_me: error: invalid package name: $ac_package" >&2 |
|---|
| 1030 |
{ (exit 1); exit 1; }; } |
|---|
| 1031 |
ac_package=`echo $ac_package | sed 's/[-.]/_/g'` |
|---|
| 1032 |
eval with_$ac_package=no ;; |
|---|
| 1033 |
|
|---|
| 1034 |
--x) |
|---|
| 1035 |
# Obsolete; use --with-x. |
|---|
| 1036 |
with_x=yes ;; |
|---|
| 1037 |
|
|---|
| 1038 |
-x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ |
|---|
| 1039 |
| --x-incl | --x-inc | --x-in | --x-i) |
|---|
| 1040 |
ac_prev=x_includes ;; |
|---|
| 1041 |
-x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ |
|---|
| 1042 |
| --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) |
|---|
| 1043 |
x_includes=$ac_optarg ;; |
|---|
| 1044 |
|
|---|
| 1045 |
-x-libraries | --x-libraries | --x-librarie | --x-librari \ |
|---|
| 1046 |
| --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) |
|---|
| 1047 |
ac_prev=x_libraries ;; |
|---|
| 1048 |
-x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ |
|---|
| 1049 |
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) |
|---|
| 1050 |
x_libraries=$ac_optarg ;; |
|---|
| 1051 |
|
|---|
| 1052 |
-*) { echo "$as_me: error: unrecognized option: $ac_option |
|---|
| 1053 |
Try \`$0 --help' for more information." >&2 |
|---|
| 1054 |
{ (exit 1); exit 1; }; } |
|---|
| 1055 |
;; |
|---|
| 1056 |
|
|---|
| 1057 |
*=*) |
|---|
| 1058 |
ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` |
|---|
| 1059 |
# Reject names that are not valid shell variable names. |
|---|
| 1060 |
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && |
|---|
| 1061 |
{ echo "$as_me: error: invalid variable name: $ac_envvar" >&2 |
|---|
| 1062 |
{ (exit 1); exit 1; }; } |
|---|
| 1063 |
eval $ac_envvar=\$ac_optarg |
|---|
| 1064 |
export $ac_envvar ;; |
|---|
| 1065 |
|
|---|
| 1066 |
*) |
|---|
| 1067 |
# FIXME: should be removed in autoconf 3.0. |
|---|
| 1068 |
echo "$as_me: WARNING: you should use --build, --host, --target" >&2 |
|---|
| 1069 |
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && |
|---|
| 1070 |
echo "$as_me: WARNING: invalid host type: $ac_option" >&2 |
|---|
| 1071 |
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} |
|---|
| 1072 |
;; |
|---|
| 1073 |
|
|---|
| 1074 |
esac |
|---|
| 1075 |
done |
|---|
| 1076 |
|
|---|
| 1077 |
if test -n "$ac_prev"; then |
|---|
| 1078 |
ac_option=--`echo $ac_prev | sed 's/_/-/g'` |
|---|
| 1079 |
{ echo "$as_me: error: missing argument to $ac_option" >&2 |
|---|
| 1080 |
{ (exit 1); exit 1; }; } |
|---|
| 1081 |
fi |
|---|
| 1082 |
|
|---|
| 1083 |
# Be sure to have absolute directory names. |
|---|
| 1084 |
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ |
|---|
| 1085 |
datadir sysconfdir sharedstatedir localstatedir includedir \ |
|---|
| 1086 |
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ |
|---|
| 1087 |
libdir localedir mandir |
|---|
| 1088 |
do |
|---|
| 1089 |
eval ac_val=\$$ac_var |
|---|
| 1090 |
case $ac_val in |
|---|
| 1091 |
[\\/$]* | ?:[\\/]* ) continue;; |
|---|
| 1092 |
NONE | '' ) case $ac_var in *prefix ) continue;; esac;; |
|---|
| 1093 |
esac |
|---|
| 1094 |
{ echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 |
|---|
| 1095 |
{ (exit 1); exit 1; }; } |
|---|
| 1096 |
done |
|---|
| 1097 |
|
|---|
| 1098 |
# There might be people who depend on the old broken behavior: `$host' |
|---|
| 1099 |
# used to hold the argument of --host etc. |
|---|
| 1100 |
# FIXME: To remove some day. |
|---|
| 1101 |
build=$build_alias |
|---|
| 1102 |
host=$host_alias |
|---|
| 1103 |
target=$target_alias |
|---|
| 1104 |
|
|---|
| 1105 |
# FIXME: To remove some day. |
|---|
| 1106 |
if test "x$host_alias" != x; then |
|---|
| 1107 |
if test "x$build_alias" = x; then |
|---|
| 1108 |
cross_compiling=maybe |
|---|
| 1109 |
echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. |
|---|
| 1110 |
If a cross compiler is detected then cross compile mode will be used." >&2 |
|---|
| 1111 |
elif test "x$build_alias" != "x$host_alias"; then |
|---|
| 1112 |
cross_compiling=yes |
|---|
| 1113 |
fi |
|---|
| 1114 |
fi |
|---|
| 1115 |
|
|---|
| 1116 |
ac_tool_prefix= |
|---|
| 1117 |
test -n "$host_alias" && ac_tool_prefix=$host_alias- |
|---|
| 1118 |
|
|---|
| 1119 |
test "$silent" = yes && exec 6>/dev/null |
|---|
| 1120 |
|
|---|
| 1121 |
|
|---|
| 1122 |
ac_pwd=`pwd` && test -n "$ac_pwd" && |
|---|
| 1123 |
ac_ls_di=`ls -di .` && |
|---|
| 1124 |
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || |
|---|
| 1125 |
{ echo "$as_me: error: Working directory cannot be determined" >&2 |
|---|
| 1126 |
{ (exit 1); exit 1; }; } |
|---|
| 1127 |
test "X$ac_ls_di" = "X$ac_pwd_ls_di" || |
|---|
| 1128 |
{ echo "$as_me: error: pwd does not report name of working directory" >&2 |
|---|
| 1129 |
{ (exit 1); exit 1; }; } |
|---|
| 1130 |
|
|---|
| 1131 |
|
|---|
| 1132 |
# Find the source files, if location was not specified. |
|---|
| 1133 |
if test -z "$srcdir"; then |
|---|
| 1134 |
ac_srcdir_defaulted=yes |
|---|
| 1135 |
# Try the directory containing this script, then the parent directory. |
|---|
| 1136 |
ac_confdir=`$as_dirname -- "$0" || |
|---|
| 1137 |
$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|---|
| 1138 |
X"$0" : 'X\(//\)[^/]' \| \ |
|---|
| 1139 |
X"$0" : 'X\(//\)$' \| \ |
|---|
| 1140 |
X"$0" : 'X\(/\)' \| . 2>/dev/null || |
|---|
| 1141 |
echo X"$0" | |
|---|
| 1142 |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ |
|---|
| 1143 |
s//\1/ |
|---|
| 1144 |
q |
|---|
| 1145 |
} |
|---|
| 1146 |
/^X\(\/\/\)[^/].*/{ |
|---|
| 1147 |
s//\1/ |
|---|
| 1148 |
q |
|---|
| 1149 |
} |
|---|
| 1150 |
/^X\(\/\/\)$/{ |
|---|
| 1151 |
s//\1/ |
|---|
| 1152 |
q |
|---|
| 1153 |
} |
|---|
| 1154 |
/^X\(\/\).*/{ |
|---|
| 1155 |
s//\1/ |
|---|
| 1156 |
q |
|---|
| 1157 |
} |
|---|
| 1158 |
s/.*/./; q'` |
|---|
| 1159 |
srcdir=$ac_confdir |
|---|
| 1160 |
if test ! -r "$srcdir/$ac_unique_file"; then |
|---|
| 1161 |
srcdir=.. |
|---|
| 1162 |
fi |
|---|
| 1163 |
else |
|---|
| 1164 |
ac_srcdir_defaulted=no |
|---|
| 1165 |
fi |
|---|
| 1166 |
if test ! -r "$srcdir/$ac_unique_file"; then |
|---|
| 1167 |
test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." |
|---|
| 1168 |
{ echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 |
|---|
| 1169 |
{ (exit 1); exit 1; }; } |
|---|
| 1170 |
fi |
|---|
| 1171 |
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" |
|---|
| 1172 |
ac_abs_confdir=`( |
|---|
| 1173 |
cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 |
|---|
| 1174 |
{ (exit 1); exit 1; }; } |
|---|
| 1175 |
pwd)` |
|---|
| 1176 |
# When building in place, set srcdir=. |
|---|
| 1177 |
if test "$ac_abs_confdir" = "$ac_pwd"; then |
|---|
| 1178 |
srcdir=. |
|---|
| 1179 |
fi |
|---|
| 1180 |
# Remove unnecessary trailing slashes from srcdir. |
|---|
| 1181 |
# Double slashes in file names in object file debugging info |
|---|
| 1182 |
# mess up M-x gdb in Emacs. |
|---|
| 1183 |
case $srcdir in |
|---|
| 1184 |
*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; |
|---|
| 1185 |
esac |
|---|
| 1186 |
for ac_var in $ac_precious_vars; do |
|---|
| 1187 |
eval ac_env_${ac_var}_set=\${${ac_var}+set} |
|---|
| 1188 |
eval ac_env_${ac_var}_value=\$${ac_var} |
|---|
| 1189 |
eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} |
|---|
| 1190 |
eval ac_cv_env_${ac_var}_value=\$${ac_var} |
|---|
| 1191 |
done |
|---|
| 1192 |
|
|---|
| 1193 |
# |
|---|
| 1194 |
# Report the --help message. |
|---|
| 1195 |
# |
|---|
| 1196 |
if test "$ac_init_help" = "long"; then |
|---|
| 1197 |
# Omit some internal or obsolete options to make the list less imposing. |
|---|
| 1198 |
# This message is too long to be a string in the A/UX 3.1 sh. |
|---|
| 1199 |
cat <<_ACEOF |
|---|
| 1200 |
\`configure' configures trackerd 1.0.2 to adapt to many kinds of systems. |
|---|
| 1201 |
|
|---|
| 1202 |
Usage: $0 [OPTION]... [VAR=VALUE]... |
|---|
| 1203 |
|
|---|
| 1204 |
To assign environment variables (e.g., CC, CFLAGS...), specify them as |
|---|
| 1205 |
VAR=VALUE. See below for descriptions of some of the useful variables. |
|---|
| 1206 |
|
|---|
| 1207 |
Defaults for the options are specified in brackets. |
|---|
| 1208 |
|
|---|
| 1209 |
Configuration: |
|---|
| 1210 |
-h, --help display this help and exit |
|---|
| 1211 |
--help=short display options specific to this package |
|---|
| 1212 |
--help=recursive display the short help of all the included packages |
|---|
| 1213 |
-V, --version display version information and exit |
|---|
| 1214 |
-q, --quiet, --silent do not print \`checking...' messages |
|---|
| 1215 |
--cache-file=FILE cache test results in FILE [disabled] |
|---|
| 1216 |
-C, --config-cache alias for \`--cache-file=config.cache' |
|---|
| 1217 |
-n, --no-create do not create output files |
|---|
| 1218 |
--srcdir=DIR find the sources in DIR [configure dir or \`..'] |
|---|
| 1219 |
|
|---|
| 1220 |
Installation directories: |
|---|
| 1221 |
--prefix=PREFIX install architecture-independent files in PREFIX |
|---|
| 1222 |
[$ac_default_prefix] |
|---|
| 1223 |
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX |
|---|
| 1224 |
[PREFIX] |
|---|
| 1225 |
|
|---|
| 1226 |
By default, \`make install' will install all the files in |
|---|
| 1227 |
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify |
|---|
| 1228 |
an installation prefix other than \`$ac_default_prefix' using \`--prefix', |
|---|
| 1229 |
for instance \`--prefix=\$HOME'. |
|---|
| 1230 |
|
|---|
| 1231 |
For better control, use the options below. |
|---|
| 1232 |
|
|---|
| 1233 |
Fine tuning of the installation directories: |
|---|
| 1234 |
--bindir=DIR user executables [EPREFIX/bin] |
|---|
| 1235 |
--sbindir=DIR system admin executables [EPREFIX/sbin] |
|---|
| 1236 |
--libexecdir=DIR program executables [EPREFIX/libexec] |
|---|
| 1237 |
--sysconfdir=DIR read-only single-machine data [PREFIX/etc] |
|---|
| 1238 |
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] |
|---|
| 1239 |
--localstatedir=DIR modifiable single-machine data [PREFIX/var] |
|---|
| 1240 |
--libdir=DIR object code libraries [EPREFIX/lib] |
|---|
| 1241 |
--includedir=DIR C header files [PREFIX/include] |
|---|
| 1242 |
--oldincludedir=DIR C header files for non-gcc [/usr/include] |
|---|
| 1243 |
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share] |
|---|
| 1244 |
--datadir=DIR read-only architecture-independent data [DATAROOTDIR] |
|---|
| 1245 |
--infodir=DIR info documentation [DATAROOTDIR/info] |
|---|
| 1246 |
--localedir=DIR locale-dependent data [DATAROOTDIR/locale] |
|---|
| 1247 |
--mandir=DIR man documentation [DATAROOTDIR/man] |
|---|
| 1248 |
--docdir=DIR documentation root [DATAROOTDIR/doc/trackerd] |
|---|
| 1249 |
--htmldir=DIR html documentation [DOCDIR] |
|---|
| 1250 |
--dvidir=DIR dvi documentation [DOCDIR] |
|---|
| 1251 |
--pdfdir=DIR pdf documentation [DOCDIR] |
|---|
| 1252 |
--psdir=DIR ps documentation [DOCDIR] |
|---|
| 1253 |
_ACEOF |
|---|
| 1254 |
|
|---|
| 1255 |
cat <<\_ACEOF |
|---|
| 1256 |
|
|---|
| 1257 |
System types: |
|---|
| 1258 |
--build=BUILD configure for building on BUILD [guessed] |
|---|
| 1259 |
--host=HOST cross-compile to build programs to run on HOST [BUILD] |
|---|
| 1260 |
_ACEOF |
|---|
| 1261 |
fi |
|---|
| 1262 |
|
|---|
| 1263 |
if test -n "$ac_init_help"; then |
|---|
| 1264 |
case $ac_init_help in |
|---|
| 1265 |
short | recursive ) echo "Configuration of trackerd 1.0.2:";; |
|---|
| 1266 |
esac |
|---|
| 1267 |
cat <<\_ACEOF |
|---|
| 1268 |
|
|---|
| 1269 |
Optional Features: |
|---|
| 1270 |
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) |
|---|
| 1271 |
--enable-FEATURE[=ARG] include FEATURE [ARG=yes] |
|---|
| 1272 |
--enable-warnings enable warnings |
|---|
| 1273 |
|
|---|
| 1274 |
--disable-largefile omit support for large files |
|---|
| 1275 |
|
|---|
| 1276 |
Optional Packages: |
|---|
| 1277 |
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] |
|---|
| 1278 |
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) |
|---|
| 1279 |
--with-user=USER install files as USER [wired] |
|---|
| 1280 |
--with-group=GROUP install files as GROUP [daemon] |
|---|
| 1281 |
--with-fake-prefix=FPREFIX |
|---|
| 1282 |
install in FPREFIX but look like PREFIX [PREFIX] |
|---|
| 1283 |
--with-trackerddir=DIR install tracker components in PREFIX/DIR [wired] |
|---|
| 1284 |
|
|---|
| 1285 |
|
|---|
| 1286 |
Some influential environment variables: |
|---|
| 1287 |
CC C compiler command |
|---|
| 1288 |
CFLAGS C compiler flags |
|---|
| 1289 |
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a |
|---|
| 1290 |
nonstandard directory <lib dir> |
|---|
| 1291 |
LIBS libraries to pass to the linker, e.g. -l<library> |
|---|
| 1292 |
CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if |
|---|
| 1293 |
you have headers in a nonstandard directory <include dir> |
|---|
| 1294 |
CPP C preprocessor |
|---|
| 1295 |
|
|---|
| 1296 |
Use these variables to override the choices made by `configure' or to help |
|---|
| 1297 |
it to find libraries and programs with nonstandard names/locations. |
|---|
| 1298 |
|
|---|
| 1299 |
Report bugs to <axel@zankasoftware.com>. |
|---|
| 1300 |
_ACEOF |
|---|
| 1301 |
ac_status=$? |
|---|
| 1302 |
fi |
|---|
| 1303 |
|
|---|
| 1304 |
if test "$ac_init_help" = "recursive"; then |
|---|
| 1305 |
# If there are subdirs, report their specific --help. |
|---|
| 1306 |
for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue |
|---|
| 1307 |
test -d "$ac_dir" || continue |
|---|
| 1308 |
ac_builddir=. |
|---|
| 1309 |
|
|---|
| 1310 |
case "$ac_dir" in |
|---|
| 1311 |
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; |
|---|
| 1312 |
*) |
|---|
| 1313 |
ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` |
|---|
| 1314 |
# A ".." for each directory in $ac_dir_suffix. |
|---|
| 1315 |
ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` |
|---|
| 1316 |
case $ac_top_builddir_sub in |
|---|
| 1317 |
"") ac_top_builddir_sub=. ac_top_build_prefix= ;; |
|---|
| 1318 |
*) ac_top_build_prefix=$ac_top |
|---|