configure revision d838582f
1#! /bin/sh 2# Guess values for system-dependent variables and create Makefiles. 3# Generated by GNU Autoconf 2.61 for mkfontdir 1.0.4. 4# 5# Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>. 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 16DUALCASE=1; export DUALCASE # for MKS sh 17if 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 24else 25 case `(set -o) 2>/dev/null` in 26 *posix*) set -o posix ;; 27esac 28 29fi 30 31 32 33 34# PATH needs CR 35# Avoid depending upon Character Ranges. 36as_cr_letters='abcdefghijklmnopqrstuvwxyz' 37as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 38as_cr_Letters=$as_cr_letters$as_cr_LETTERS 39as_cr_digits='0123456789' 40as_cr_alnum=$as_cr_Letters$as_cr_digits 41 42# The user is always right. 43if 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 53fi 54 55# Support unset when possible. 56if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 57 as_unset=unset 58else 59 as_unset=false 60fi 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.) 68as_nl=' 69' 70IFS=" "" $as_nl" 71 72# Find who we are. Look in the path if we contain no directory separator. 73case $0 in 74 *[\\/]* ) as_myself=$0 ;; 75 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 76for as_dir in $PATH 77do 78 IFS=$as_save_IFS 79 test -z "$as_dir" && as_dir=. 80 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 81done 82IFS=$as_save_IFS 83 84 ;; 85esac 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. 88if test "x$as_myself" = x; then 89 as_myself=$0 90fi 91if 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; } 94fi 95 96# Work around bugs in pre-3.0 UWIN ksh. 97for as_var in ENV MAIL MAILPATH 98do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 99done 100PS1='$ ' 101PS2='> ' 102PS4='+ ' 103 104# NLS nuisances. 105for 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 109do 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 115done 116 117# Required to use basename. 118if expr a : '\(a\)' >/dev/null 2>&1 && 119 test "X`expr 00001 : '.*\(...\)'`" = X001; then 120 as_expr=expr 121else 122 as_expr=false 123fi 124 125if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 126 as_basename=basename 127else 128 as_basename=false 129fi 130 131 132# Name of the executable. 133as_me=`$as_basename -- "$0" || 134$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 135 X"$0" : 'X\(//\)$' \| \ 136 X"$0" : 'X\(/\)' \| . 2>/dev/null || 137echo 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 156if test "x$CONFIG_SHELL" = x; then 157 if (eval ":") 2>/dev/null; then 158 as_have_required=yes 159else 160 as_have_required=no 161fi 162 163 if test $as_have_required = yes && (eval ": 164(as_func_return () { 165 (exit \$1) 166} 167as_func_success () { 168 as_func_return 0 169} 170as_func_failure () { 171 as_func_return 1 172} 173as_func_ret_success () { 174 return 0 175} 176as_func_ret_failure () { 177 return 1 178} 179 180exitcode=0 181if as_func_success; then 182 : 183else 184 exitcode=1 185 echo as_func_success failed. 186fi 187 188if as_func_failure; then 189 exitcode=1 190 echo as_func_failure succeeded. 191fi 192 193if as_func_ret_success; then 194 : 195else 196 exitcode=1 197 echo as_func_ret_success failed. 198fi 199 200if as_func_ret_failure; then 201 exitcode=1 202 echo as_func_ret_failure succeeded. 203fi 204 205if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 206 : 207else 208 exitcode=1 209 echo positional parameters were not saved. 210fi 211 212test \$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 : 221else 222 as_candidate_shells= 223 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 224for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 225do 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 234done 235IFS=$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 242if 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 249else 250 case `(set -o) 2>/dev/null` in 251 *posix*) set -o posix ;; 252esac 253 254fi 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 263if 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 270else 271 case `(set -o) 2>/dev/null` in 272 *posix*) set -o posix ;; 273esac 274 275fi 276 277 278: 279(as_func_return () { 280 (exit $1) 281} 282as_func_success () { 283 as_func_return 0 284} 285as_func_failure () { 286 as_func_return 1 287} 288as_func_ret_success () { 289 return 0 290} 291as_func_ret_failure () { 292 return 1 293} 294 295exitcode=0 296if as_func_success; then 297 : 298else 299 exitcode=1 300 echo as_func_success failed. 301fi 302 303if as_func_failure; then 304 exitcode=1 305 echo as_func_failure succeeded. 306fi 307 308if as_func_ret_success; then 309 : 310else 311 exitcode=1 312 echo as_func_ret_success failed. 313fi 314 315if as_func_ret_failure; then 316 exitcode=1 317 echo as_func_ret_failure succeeded. 318fi 319 320if ( set x; as_func_ret_success y && test x = "$1" ); then 321 : 322else 323 exitcode=1 324 echo positional parameters were not saved. 325fi 326 327test $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 338fi 339 340fi 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+"$@"} 350fi 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; } 359fi 360 361 362fi 363 364fi 365 366 367 368(eval "as_func_return () { 369 (exit \$1) 370} 371as_func_success () { 372 as_func_return 0 373} 374as_func_failure () { 375 as_func_return 1 376} 377as_func_ret_success () { 378 return 0 379} 380as_func_ret_failure () { 381 return 1 382} 383 384exitcode=0 385if as_func_success; then 386 : 387else 388 exitcode=1 389 echo as_func_success failed. 390fi 391 392if as_func_failure; then 393 exitcode=1 394 echo as_func_failure succeeded. 395fi 396 397if as_func_ret_success; then 398 : 399else 400 exitcode=1 401 echo as_func_ret_success failed. 402fi 403 404if as_func_ret_failure; then 405 exitcode=1 406 echo as_func_ret_failure succeeded. 407fi 408 409if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 410 : 411else 412 exitcode=1 413 echo positional parameters were not saved. 414fi 415 416test \$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 468if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 469 as_dirname=dirname 470else 471 as_dirname=false 472fi 473 474ECHO_C= ECHO_N= ECHO_T= 475case `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';; 483esac 484 485if expr a : '\(a\)' >/dev/null 2>&1 && 486 test "X`expr 00001 : '.*\(...\)'`" = X001; then 487 as_expr=expr 488else 489 as_expr=false 490fi 491 492rm -f conf$$ conf$$.exe conf$$.file 493if test -d conf$$.dir; then 494 rm -f conf$$.dir/conf$$.file 495else 496 rm -f conf$$.dir 497 mkdir conf$$.dir 498fi 499echo >conf$$.file 500if 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' 508elif ln conf$$.file conf$$ 2>/dev/null; then 509 as_ln_s=ln 510else 511 as_ln_s='cp -p' 512fi 513rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 514rmdir conf$$.dir 2>/dev/null 515 516if mkdir -p . 2>/dev/null; then 517 as_mkdir_p=: 518else 519 test -d ./-p && rmdir ./-p 520 as_mkdir_p=false 521fi 522 523if test -x / >/dev/null 2>&1; then 524 as_test_x='test -x' 525else 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 ' 543fi 544as_executable_p=$as_test_x 545 546# Sed expression to map a string onto a valid CPP name. 547as_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. 550as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 551 552 553 554exec 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. 559ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 560 561# 562# Initializations. 563# 564ac_default_prefix=/usr/local 565ac_clean_files= 566ac_config_libobj_dir=. 567LIBOBJS= 568cross_compiling=no 569subdirs= 570MFLAGS= 571MAKEFLAGS= 572SHELL=${CONFIG_SHELL-/bin/sh} 573 574# Identity of this package. 575PACKAGE_NAME='mkfontdir' 576PACKAGE_TARNAME='mkfontdir' 577PACKAGE_VERSION='1.0.4' 578PACKAGE_STRING='mkfontdir 1.0.4' 579PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' 580 581ac_subst_vars='SHELL 582PATH_SEPARATOR 583PACKAGE_NAME 584PACKAGE_TARNAME 585PACKAGE_VERSION 586PACKAGE_STRING 587PACKAGE_BUGREPORT 588exec_prefix 589prefix 590program_transform_name 591bindir 592sbindir 593libexecdir 594datarootdir 595datadir 596sysconfdir 597sharedstatedir 598localstatedir 599includedir 600oldincludedir 601docdir 602infodir 603htmldir 604dvidir 605pdfdir 606psdir 607libdir 608localedir 609mandir 610DEFS 611ECHO_C 612ECHO_N 613ECHO_T 614LIBS 615build_alias 616host_alias 617target_alias 618INSTALL_PROGRAM 619INSTALL_SCRIPT 620INSTALL_DATA 621am__isrc 622CYGPATH_W 623PACKAGE 624VERSION 625ACLOCAL 626AUTOCONF 627AUTOMAKE 628AUTOHEADER 629MAKEINFO 630install_sh 631STRIP 632INSTALL_STRIP_PROGRAM 633mkdir_p 634AWK 635SET_MAKE 636am__leading_dot 637AMTAR 638am__tar 639am__untar 640MAINTAINER_MODE_TRUE 641MAINTAINER_MODE_FALSE 642MAINT 643SED 644build 645build_cpu 646build_vendor 647build_os 648host 649host_cpu 650host_vendor 651host_os 652APP_MAN_SUFFIX 653LIB_MAN_SUFFIX 654FILE_MAN_SUFFIX 655MISC_MAN_SUFFIX 656DRIVER_MAN_SUFFIX 657ADMIN_MAN_SUFFIX 658APP_MAN_DIR 659LIB_MAN_DIR 660FILE_MAN_DIR 661MISC_MAN_DIR 662DRIVER_MAN_DIR 663ADMIN_MAN_DIR 664LIBOBJS 665LTLIBOBJS' 666ac_subst_files='' 667 ac_precious_vars='build_alias 668host_alias 669target_alias' 670 671 672# Initialize some variables set by options. 673ac_init_help= 674ac_init_version=false 675# The variables have the same names as the options, with 676# dashes changed to underlines. 677cache_file=/dev/null 678exec_prefix=NONE 679no_create= 680no_recursion= 681prefix=NONE 682program_prefix=NONE 683program_suffix=NONE 684program_transform_name=s,x,x, 685silent= 686site= 687srcdir= 688verbose= 689x_includes=NONE 690x_libraries=NONE 691 692# Installation directory options. 693# These are left unexpanded so users can "make install exec_prefix=/foo" 694# and all the variables that are supposed to be based on exec_prefix 695# by default will actually change. 696# Use braces instead of parens because sh, perl, etc. also accept them. 697# (The list follows the same order as the GNU Coding Standards.) 698bindir='${exec_prefix}/bin' 699sbindir='${exec_prefix}/sbin' 700libexecdir='${exec_prefix}/libexec' 701datarootdir='${prefix}/share' 702datadir='${datarootdir}' 703sysconfdir='${prefix}/etc' 704sharedstatedir='${prefix}/com' 705localstatedir='${prefix}/var' 706includedir='${prefix}/include' 707oldincludedir='/usr/include' 708docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' 709infodir='${datarootdir}/info' 710htmldir='${docdir}' 711dvidir='${docdir}' 712pdfdir='${docdir}' 713psdir='${docdir}' 714libdir='${exec_prefix}/lib' 715localedir='${datarootdir}/locale' 716mandir='${datarootdir}/man' 717 718ac_prev= 719ac_dashdash= 720for ac_option 721do 722 # If the previous option needs an argument, assign it. 723 if test -n "$ac_prev"; then 724 eval $ac_prev=\$ac_option 725 ac_prev= 726 continue 727 fi 728 729 case $ac_option in 730 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 731 *) ac_optarg=yes ;; 732 esac 733 734 # Accept the important Cygnus configure options, so we can diagnose typos. 735 736 case $ac_dashdash$ac_option in 737 --) 738 ac_dashdash=yes ;; 739 740 -bindir | --bindir | --bindi | --bind | --bin | --bi) 741 ac_prev=bindir ;; 742 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) 743 bindir=$ac_optarg ;; 744 745 -build | --build | --buil | --bui | --bu) 746 ac_prev=build_alias ;; 747 -build=* | --build=* | --buil=* | --bui=* | --bu=*) 748 build_alias=$ac_optarg ;; 749 750 -cache-file | --cache-file | --cache-fil | --cache-fi \ 751 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 752 ac_prev=cache_file ;; 753 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ 754 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) 755 cache_file=$ac_optarg ;; 756 757 --config-cache | -C) 758 cache_file=config.cache ;; 759 760 -datadir | --datadir | --datadi | --datad) 761 ac_prev=datadir ;; 762 -datadir=* | --datadir=* | --datadi=* | --datad=*) 763 datadir=$ac_optarg ;; 764 765 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ 766 | --dataroo | --dataro | --datar) 767 ac_prev=datarootdir ;; 768 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ 769 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) 770 datarootdir=$ac_optarg ;; 771 772 -disable-* | --disable-*) 773 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 774 # Reject names that are not valid shell variable names. 775 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && 776 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 777 { (exit 1); exit 1; }; } 778 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 779 eval enable_$ac_feature=no ;; 780 781 -docdir | --docdir | --docdi | --doc | --do) 782 ac_prev=docdir ;; 783 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) 784 docdir=$ac_optarg ;; 785 786 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) 787 ac_prev=dvidir ;; 788 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) 789 dvidir=$ac_optarg ;; 790 791 -enable-* | --enable-*) 792 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 793 # Reject names that are not valid shell variable names. 794 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && 795 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 796 { (exit 1); exit 1; }; } 797 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 798 eval enable_$ac_feature=\$ac_optarg ;; 799 800 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ 801 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ 802 | --exec | --exe | --ex) 803 ac_prev=exec_prefix ;; 804 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ 805 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ 806 | --exec=* | --exe=* | --ex=*) 807 exec_prefix=$ac_optarg ;; 808 809 -gas | --gas | --ga | --g) 810 # Obsolete; use --with-gas. 811 with_gas=yes ;; 812 813 -help | --help | --hel | --he | -h) 814 ac_init_help=long ;; 815 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) 816 ac_init_help=recursive ;; 817 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) 818 ac_init_help=short ;; 819 820 -host | --host | --hos | --ho) 821 ac_prev=host_alias ;; 822 -host=* | --host=* | --hos=* | --ho=*) 823 host_alias=$ac_optarg ;; 824 825 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) 826 ac_prev=htmldir ;; 827 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ 828 | --ht=*) 829 htmldir=$ac_optarg ;; 830 831 -includedir | --includedir | --includedi | --included | --include \ 832 | --includ | --inclu | --incl | --inc) 833 ac_prev=includedir ;; 834 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ 835 | --includ=* | --inclu=* | --incl=* | --inc=*) 836 includedir=$ac_optarg ;; 837 838 -infodir | --infodir | --infodi | --infod | --info | --inf) 839 ac_prev=infodir ;; 840 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) 841 infodir=$ac_optarg ;; 842 843 -libdir | --libdir | --libdi | --libd) 844 ac_prev=libdir ;; 845 -libdir=* | --libdir=* | --libdi=* | --libd=*) 846 libdir=$ac_optarg ;; 847 848 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ 849 | --libexe | --libex | --libe) 850 ac_prev=libexecdir ;; 851 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ 852 | --libexe=* | --libex=* | --libe=*) 853 libexecdir=$ac_optarg ;; 854 855 -localedir | --localedir | --localedi | --localed | --locale) 856 ac_prev=localedir ;; 857 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) 858 localedir=$ac_optarg ;; 859 860 -localstatedir | --localstatedir | --localstatedi | --localstated \ 861 | --localstate | --localstat | --localsta | --localst | --locals) 862 ac_prev=localstatedir ;; 863 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 864 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 865 localstatedir=$ac_optarg ;; 866 867 -mandir | --mandir | --mandi | --mand | --man | --ma | --m) 868 ac_prev=mandir ;; 869 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) 870 mandir=$ac_optarg ;; 871 872 -nfp | --nfp | --nf) 873 # Obsolete; use --without-fp. 874 with_fp=no ;; 875 876 -no-create | --no-create | --no-creat | --no-crea | --no-cre \ 877 | --no-cr | --no-c | -n) 878 no_create=yes ;; 879 880 -no-recursion | --no-recursion | --no-recursio | --no-recursi \ 881 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) 882 no_recursion=yes ;; 883 884 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ 885 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ 886 | --oldin | --oldi | --old | --ol | --o) 887 ac_prev=oldincludedir ;; 888 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ 889 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ 890 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) 891 oldincludedir=$ac_optarg ;; 892 893 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) 894 ac_prev=prefix ;; 895 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 896 prefix=$ac_optarg ;; 897 898 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 899 | --program-pre | --program-pr | --program-p) 900 ac_prev=program_prefix ;; 901 -program-prefix=* | --program-prefix=* | --program-prefi=* \ 902 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) 903 program_prefix=$ac_optarg ;; 904 905 -program-suffix | --program-suffix | --program-suffi | --program-suff \ 906 | --program-suf | --program-su | --program-s) 907 ac_prev=program_suffix ;; 908 -program-suffix=* | --program-suffix=* | --program-suffi=* \ 909 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) 910 program_suffix=$ac_optarg ;; 911 912 -program-transform-name | --program-transform-name \ 913 | --program-transform-nam | --program-transform-na \ 914 | --program-transform-n | --program-transform- \ 915 | --program-transform | --program-transfor \ 916 | --program-transfo | --program-transf \ 917 | --program-trans | --program-tran \ 918 | --progr-tra | --program-tr | --program-t) 919 ac_prev=program_transform_name ;; 920 -program-transform-name=* | --program-transform-name=* \ 921 | --program-transform-nam=* | --program-transform-na=* \ 922 | --program-transform-n=* | --program-transform-=* \ 923 | --program-transform=* | --program-transfor=* \ 924 | --program-transfo=* | --program-transf=* \ 925 | --program-trans=* | --program-tran=* \ 926 | --progr-tra=* | --program-tr=* | --program-t=*) 927 program_transform_name=$ac_optarg ;; 928 929 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) 930 ac_prev=pdfdir ;; 931 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) 932 pdfdir=$ac_optarg ;; 933 934 -psdir | --psdir | --psdi | --psd | --ps) 935 ac_prev=psdir ;; 936 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) 937 psdir=$ac_optarg ;; 938 939 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 940 | -silent | --silent | --silen | --sile | --sil) 941 silent=yes ;; 942 943 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) 944 ac_prev=sbindir ;; 945 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ 946 | --sbi=* | --sb=*) 947 sbindir=$ac_optarg ;; 948 949 -sharedstatedir | --sharedstatedir | --sharedstatedi \ 950 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ 951 | --sharedst | --shareds | --shared | --share | --shar \ 952 | --sha | --sh) 953 ac_prev=sharedstatedir ;; 954 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ 955 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ 956 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ 957 | --sha=* | --sh=*) 958 sharedstatedir=$ac_optarg ;; 959 960 -site | --site | --sit) 961 ac_prev=site ;; 962 -site=* | --site=* | --sit=*) 963 site=$ac_optarg ;; 964 965 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) 966 ac_prev=srcdir ;; 967 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) 968 srcdir=$ac_optarg ;; 969 970 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ 971 | --syscon | --sysco | --sysc | --sys | --sy) 972 ac_prev=sysconfdir ;; 973 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ 974 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) 975 sysconfdir=$ac_optarg ;; 976 977 -target | --target | --targe | --targ | --tar | --ta | --t) 978 ac_prev=target_alias ;; 979 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 980 target_alias=$ac_optarg ;; 981 982 -v | -verbose | --verbose | --verbos | --verbo | --verb) 983 verbose=yes ;; 984 985 -version | --version | --versio | --versi | --vers | -V) 986 ac_init_version=: ;; 987 988 -with-* | --with-*) 989 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 990 # Reject names that are not valid shell variable names. 991 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && 992 { echo "$as_me: error: invalid package name: $ac_package" >&2 993 { (exit 1); exit 1; }; } 994 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 995 eval with_$ac_package=\$ac_optarg ;; 996 997 -without-* | --without-*) 998 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` 999 # Reject names that are not valid shell variable names. 1000 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && 1001 { echo "$as_me: error: invalid package name: $ac_package" >&2 1002 { (exit 1); exit 1; }; } 1003 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1004 eval with_$ac_package=no ;; 1005 1006 --x) 1007 # Obsolete; use --with-x. 1008 with_x=yes ;; 1009 1010 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ 1011 | --x-incl | --x-inc | --x-in | --x-i) 1012 ac_prev=x_includes ;; 1013 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ 1014 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) 1015 x_includes=$ac_optarg ;; 1016 1017 -x-libraries | --x-libraries | --x-librarie | --x-librari \ 1018 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) 1019 ac_prev=x_libraries ;; 1020 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ 1021 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1022 x_libraries=$ac_optarg ;; 1023 1024 -*) { echo "$as_me: error: unrecognized option: $ac_option 1025Try \`$0 --help' for more information." >&2 1026 { (exit 1); exit 1; }; } 1027 ;; 1028 1029 *=*) 1030 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 1031 # Reject names that are not valid shell variable names. 1032 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 1033 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1034 { (exit 1); exit 1; }; } 1035 eval $ac_envvar=\$ac_optarg 1036 export $ac_envvar ;; 1037 1038 *) 1039 # FIXME: should be removed in autoconf 3.0. 1040 echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1041 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1042 echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1043 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1044 ;; 1045 1046 esac 1047done 1048 1049if test -n "$ac_prev"; then 1050 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1051 { echo "$as_me: error: missing argument to $ac_option" >&2 1052 { (exit 1); exit 1; }; } 1053fi 1054 1055# Be sure to have absolute directory names. 1056for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1057 datadir sysconfdir sharedstatedir localstatedir includedir \ 1058 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 1059 libdir localedir mandir 1060do 1061 eval ac_val=\$$ac_var 1062 case $ac_val in 1063 [\\/$]* | ?:[\\/]* ) continue;; 1064 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1065 esac 1066 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1067 { (exit 1); exit 1; }; } 1068done 1069 1070# There might be people who depend on the old broken behavior: `$host' 1071# used to hold the argument of --host etc. 1072# FIXME: To remove some day. 1073build=$build_alias 1074host=$host_alias 1075target=$target_alias 1076 1077# FIXME: To remove some day. 1078if test "x$host_alias" != x; then 1079 if test "x$build_alias" = x; then 1080 cross_compiling=maybe 1081 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1082 If a cross compiler is detected then cross compile mode will be used." >&2 1083 elif test "x$build_alias" != "x$host_alias"; then 1084 cross_compiling=yes 1085 fi 1086fi 1087 1088ac_tool_prefix= 1089test -n "$host_alias" && ac_tool_prefix=$host_alias- 1090 1091test "$silent" = yes && exec 6>/dev/null 1092 1093 1094ac_pwd=`pwd` && test -n "$ac_pwd" && 1095ac_ls_di=`ls -di .` && 1096ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1097 { echo "$as_me: error: Working directory cannot be determined" >&2 1098 { (exit 1); exit 1; }; } 1099test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1100 { echo "$as_me: error: pwd does not report name of working directory" >&2 1101 { (exit 1); exit 1; }; } 1102 1103 1104# Find the source files, if location was not specified. 1105if test -z "$srcdir"; then 1106 ac_srcdir_defaulted=yes 1107 # Try the directory containing this script, then the parent directory. 1108 ac_confdir=`$as_dirname -- "$0" || 1109$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1110 X"$0" : 'X\(//\)[^/]' \| \ 1111 X"$0" : 'X\(//\)$' \| \ 1112 X"$0" : 'X\(/\)' \| . 2>/dev/null || 1113echo X"$0" | 1114 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1115 s//\1/ 1116 q 1117 } 1118 /^X\(\/\/\)[^/].*/{ 1119 s//\1/ 1120 q 1121 } 1122 /^X\(\/\/\)$/{ 1123 s//\1/ 1124 q 1125 } 1126 /^X\(\/\).*/{ 1127 s//\1/ 1128 q 1129 } 1130 s/.*/./; q'` 1131 srcdir=$ac_confdir 1132 if test ! -r "$srcdir/$ac_unique_file"; then 1133 srcdir=.. 1134 fi 1135else 1136 ac_srcdir_defaulted=no 1137fi 1138if test ! -r "$srcdir/$ac_unique_file"; then 1139 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1140 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1141 { (exit 1); exit 1; }; } 1142fi 1143ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1144ac_abs_confdir=`( 1145 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 1146 { (exit 1); exit 1; }; } 1147 pwd)` 1148# When building in place, set srcdir=. 1149if test "$ac_abs_confdir" = "$ac_pwd"; then 1150 srcdir=. 1151fi 1152# Remove unnecessary trailing slashes from srcdir. 1153# Double slashes in file names in object file debugging info 1154# mess up M-x gdb in Emacs. 1155case $srcdir in 1156*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; 1157esac 1158for ac_var in $ac_precious_vars; do 1159 eval ac_env_${ac_var}_set=\${${ac_var}+set} 1160 eval ac_env_${ac_var}_value=\$${ac_var} 1161 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} 1162 eval ac_cv_env_${ac_var}_value=\$${ac_var} 1163done 1164 1165# 1166# Report the --help message. 1167# 1168if test "$ac_init_help" = "long"; then 1169 # Omit some internal or obsolete options to make the list less imposing. 1170 # This message is too long to be a string in the A/UX 3.1 sh. 1171 cat <<_ACEOF 1172\`configure' configures mkfontdir 1.0.4 to adapt to many kinds of systems. 1173 1174Usage: $0 [OPTION]... [VAR=VALUE]... 1175 1176To assign environment variables (e.g., CC, CFLAGS...), specify them as 1177VAR=VALUE. See below for descriptions of some of the useful variables. 1178 1179Defaults for the options are specified in brackets. 1180 1181Configuration: 1182 -h, --help display this help and exit 1183 --help=short display options specific to this package 1184 --help=recursive display the short help of all the included packages 1185 -V, --version display version information and exit 1186 -q, --quiet, --silent do not print \`checking...' messages 1187 --cache-file=FILE cache test results in FILE [disabled] 1188 -C, --config-cache alias for \`--cache-file=config.cache' 1189 -n, --no-create do not create output files 1190 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1191 1192Installation directories: 1193 --prefix=PREFIX install architecture-independent files in PREFIX 1194 [$ac_default_prefix] 1195 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1196 [PREFIX] 1197 1198By default, \`make install' will install all the files in 1199\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify 1200an installation prefix other than \`$ac_default_prefix' using \`--prefix', 1201for instance \`--prefix=\$HOME'. 1202 1203For better control, use the options below. 1204 1205Fine tuning of the installation directories: 1206 --bindir=DIR user executables [EPREFIX/bin] 1207 --sbindir=DIR system admin executables [EPREFIX/sbin] 1208 --libexecdir=DIR program executables [EPREFIX/libexec] 1209 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1210 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1211 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1212 --libdir=DIR object code libraries [EPREFIX/lib] 1213 --includedir=DIR C header files [PREFIX/include] 1214 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1215 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1216 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1217 --infodir=DIR info documentation [DATAROOTDIR/info] 1218 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1219 --mandir=DIR man documentation [DATAROOTDIR/man] 1220 --docdir=DIR documentation root [DATAROOTDIR/doc/mkfontdir] 1221 --htmldir=DIR html documentation [DOCDIR] 1222 --dvidir=DIR dvi documentation [DOCDIR] 1223 --pdfdir=DIR pdf documentation [DOCDIR] 1224 --psdir=DIR ps documentation [DOCDIR] 1225_ACEOF 1226 1227 cat <<\_ACEOF 1228 1229Program names: 1230 --program-prefix=PREFIX prepend PREFIX to installed program names 1231 --program-suffix=SUFFIX append SUFFIX to installed program names 1232 --program-transform-name=PROGRAM run sed PROGRAM on installed program names 1233 1234System types: 1235 --build=BUILD configure for building on BUILD [guessed] 1236 --host=HOST cross-compile to build programs to run on HOST [BUILD] 1237_ACEOF 1238fi 1239 1240if test -n "$ac_init_help"; then 1241 case $ac_init_help in 1242 short | recursive ) echo "Configuration of mkfontdir 1.0.4:";; 1243 esac 1244 cat <<\_ACEOF 1245 1246Optional Features: 1247 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1248 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1249 --enable-maintainer-mode enable make rules and dependencies not useful 1250 (and sometimes confusing) to the casual installer 1251 1252Optional Packages: 1253 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 1254 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 1255 --with-release-version=STRING 1256 Use release version string in package name 1257 1258Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>. 1259_ACEOF 1260ac_status=$? 1261fi 1262 1263if test "$ac_init_help" = "recursive"; then 1264 # If there are subdirs, report their specific --help. 1265 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1266 test -d "$ac_dir" || continue 1267 ac_builddir=. 1268 1269case "$ac_dir" in 1270.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1271*) 1272 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 1273 # A ".." for each directory in $ac_dir_suffix. 1274 ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` 1275 case $ac_top_builddir_sub in 1276 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 1277 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 1278 esac ;; 1279esac 1280ac_abs_top_builddir=$ac_pwd 1281ac_abs_builddir=$ac_pwd$ac_dir_suffix 1282# for backward compatibility: 1283ac_top_builddir=$ac_top_build_prefix 1284 1285case $srcdir in 1286 .) # We are building in place. 1287 ac_srcdir=. 1288 ac_top_srcdir=$ac_top_builddir_sub 1289 ac_abs_top_srcdir=$ac_pwd ;; 1290 [\\/]* | ?:[\\/]* ) # Absolute name. 1291 ac_srcdir=$srcdir$ac_dir_suffix; 1292 ac_top_srcdir=$srcdir 1293 ac_abs_top_srcdir=$srcdir ;; 1294 *) # Relative name. 1295 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 1296 ac_top_srcdir=$ac_top_build_prefix$srcdir 1297 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 1298esac 1299ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 1300 1301 cd "$ac_dir" || { ac_status=$?; continue; } 1302 # Check for guested configure. 1303 if test -f "$ac_srcdir/configure.gnu"; then 1304 echo && 1305 $SHELL "$ac_srcdir/configure.gnu" --help=recursive 1306 elif test -f "$ac_srcdir/configure"; then 1307 echo && 1308 $SHELL "$ac_srcdir/configure" --help=recursive 1309 else 1310 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1311 fi || ac_status=$? 1312 cd "$ac_pwd" || { ac_status=$?; break; } 1313 done 1314fi 1315 1316test -n "$ac_init_help" && exit $ac_status 1317if $ac_init_version; then 1318 cat <<\_ACEOF 1319mkfontdir configure 1.0.4 1320generated by GNU Autoconf 2.61 1321 1322Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 13232002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 1324This configure script is free software; the Free Software Foundation 1325gives unlimited permission to copy, distribute and modify it. 1326_ACEOF 1327 exit 1328fi 1329cat >config.log <<_ACEOF 1330This file contains any messages produced by compilers while 1331running configure, to aid debugging if configure makes a mistake. 1332 1333It was created by mkfontdir $as_me 1.0.4, which was 1334generated by GNU Autoconf 2.61. Invocation command line was 1335 1336 $ $0 $@ 1337 1338_ACEOF 1339exec 5>>config.log 1340{ 1341cat <<_ASUNAME 1342## --------- ## 1343## Platform. ## 1344## --------- ## 1345 1346hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` 1347uname -m = `(uname -m) 2>/dev/null || echo unknown` 1348uname -r = `(uname -r) 2>/dev/null || echo unknown` 1349uname -s = `(uname -s) 2>/dev/null || echo unknown` 1350uname -v = `(uname -v) 2>/dev/null || echo unknown` 1351 1352/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` 1353/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` 1354 1355/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` 1356/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` 1357/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` 1358/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` 1359/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` 1360/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` 1361/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` 1362 1363_ASUNAME 1364 1365as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1366for as_dir in $PATH 1367do 1368 IFS=$as_save_IFS 1369 test -z "$as_dir" && as_dir=. 1370 echo "PATH: $as_dir" 1371done 1372IFS=$as_save_IFS 1373 1374} >&5 1375 1376cat >&5 <<_ACEOF 1377 1378 1379## ----------- ## 1380## Core tests. ## 1381## ----------- ## 1382 1383_ACEOF 1384 1385 1386# Keep a trace of the command line. 1387# Strip out --no-create and --no-recursion so they do not pile up. 1388# Strip out --silent because we don't want to record it for future runs. 1389# Also quote any args containing shell meta-characters. 1390# Make two passes to allow for proper duplicate-argument suppression. 1391ac_configure_args= 1392ac_configure_args0= 1393ac_configure_args1= 1394ac_must_keep_next=false 1395for ac_pass in 1 2 1396do 1397 for ac_arg 1398 do 1399 case $ac_arg in 1400 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; 1401 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 1402 | -silent | --silent | --silen | --sile | --sil) 1403 continue ;; 1404 *\'*) 1405 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1406 esac 1407 case $ac_pass in 1408 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 1409 2) 1410 ac_configure_args1="$ac_configure_args1 '$ac_arg'" 1411 if test $ac_must_keep_next = true; then 1412 ac_must_keep_next=false # Got value, back to normal. 1413 else 1414 case $ac_arg in 1415 *=* | --config-cache | -C | -disable-* | --disable-* \ 1416 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ 1417 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ 1418 | -with-* | --with-* | -without-* | --without-* | --x) 1419 case "$ac_configure_args0 " in 1420 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; 1421 esac 1422 ;; 1423 -* ) ac_must_keep_next=true ;; 1424 esac 1425 fi 1426 ac_configure_args="$ac_configure_args '$ac_arg'" 1427 ;; 1428 esac 1429 done 1430done 1431$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } 1432$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } 1433 1434# When interrupted or exit'd, cleanup temporary files, and complete 1435# config.log. We remove comments because anyway the quotes in there 1436# would cause problems or look ugly. 1437# WARNING: Use '\'' to represent an apostrophe within the trap. 1438# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. 1439trap 'exit_status=$? 1440 # Save into config.log some information that might help in debugging. 1441 { 1442 echo 1443 1444 cat <<\_ASBOX 1445## ---------------- ## 1446## Cache variables. ## 1447## ---------------- ## 1448_ASBOX 1449 echo 1450 # The following way of writing the cache mishandles newlines in values, 1451( 1452 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 1453 eval ac_val=\$$ac_var 1454 case $ac_val in #( 1455 *${as_nl}*) 1456 case $ac_var in #( 1457 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 1458echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; 1459 esac 1460 case $ac_var in #( 1461 _ | IFS | as_nl) ;; #( 1462 *) $as_unset $ac_var ;; 1463 esac ;; 1464 esac 1465 done 1466 (set) 2>&1 | 1467 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( 1468 *${as_nl}ac_space=\ *) 1469 sed -n \ 1470 "s/'\''/'\''\\\\'\'''\''/g; 1471 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" 1472 ;; #( 1473 *) 1474 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 1475 ;; 1476 esac | 1477 sort 1478) 1479 echo 1480 1481 cat <<\_ASBOX 1482## ----------------- ## 1483## Output variables. ## 1484## ----------------- ## 1485_ASBOX 1486 echo 1487 for ac_var in $ac_subst_vars 1488 do 1489 eval ac_val=\$$ac_var 1490 case $ac_val in 1491 *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1492 esac 1493 echo "$ac_var='\''$ac_val'\''" 1494 done | sort 1495 echo 1496 1497 if test -n "$ac_subst_files"; then 1498 cat <<\_ASBOX 1499## ------------------- ## 1500## File substitutions. ## 1501## ------------------- ## 1502_ASBOX 1503 echo 1504 for ac_var in $ac_subst_files 1505 do 1506 eval ac_val=\$$ac_var 1507 case $ac_val in 1508 *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1509 esac 1510 echo "$ac_var='\''$ac_val'\''" 1511 done | sort 1512 echo 1513 fi 1514 1515 if test -s confdefs.h; then 1516 cat <<\_ASBOX 1517## ----------- ## 1518## confdefs.h. ## 1519## ----------- ## 1520_ASBOX 1521 echo 1522 cat confdefs.h 1523 echo 1524 fi 1525 test "$ac_signal" != 0 && 1526 echo "$as_me: caught signal $ac_signal" 1527 echo "$as_me: exit $exit_status" 1528 } >&5 1529 rm -f core *.core core.conftest.* && 1530 rm -f -r conftest* confdefs* conf$$* $ac_clean_files && 1531 exit $exit_status 1532' 0 1533for ac_signal in 1 2 13 15; do 1534 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal 1535done 1536ac_signal=0 1537 1538# confdefs.h avoids OS command line length limits that DEFS can exceed. 1539rm -f -r conftest* confdefs.h 1540 1541# Predefined preprocessor variables. 1542 1543cat >>confdefs.h <<_ACEOF 1544#define PACKAGE_NAME "$PACKAGE_NAME" 1545_ACEOF 1546 1547 1548cat >>confdefs.h <<_ACEOF 1549#define PACKAGE_TARNAME "$PACKAGE_TARNAME" 1550_ACEOF 1551 1552 1553cat >>confdefs.h <<_ACEOF 1554#define PACKAGE_VERSION "$PACKAGE_VERSION" 1555_ACEOF 1556 1557 1558cat >>confdefs.h <<_ACEOF 1559#define PACKAGE_STRING "$PACKAGE_STRING" 1560_ACEOF 1561 1562 1563cat >>confdefs.h <<_ACEOF 1564#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" 1565_ACEOF 1566 1567 1568# Let the site file select an alternate cache file if it wants to. 1569# Prefer explicitly selected file to automatically selected ones. 1570if test -n "$CONFIG_SITE"; then 1571 set x "$CONFIG_SITE" 1572elif test "x$prefix" != xNONE; then 1573 set x "$prefix/share/config.site" "$prefix/etc/config.site" 1574else 1575 set x "$ac_default_prefix/share/config.site" \ 1576 "$ac_default_prefix/etc/config.site" 1577fi 1578shift 1579for ac_site_file 1580do 1581 if test -r "$ac_site_file"; then 1582 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 1583echo "$as_me: loading site script $ac_site_file" >&6;} 1584 sed 's/^/| /' "$ac_site_file" >&5 1585 . "$ac_site_file" 1586 fi 1587done 1588 1589if test -r "$cache_file"; then 1590 # Some versions of bash will fail to source /dev/null (special 1591 # files actually), so we avoid doing that. 1592 if test -f "$cache_file"; then 1593 { echo "$as_me:$LINENO: loading cache $cache_file" >&5 1594echo "$as_me: loading cache $cache_file" >&6;} 1595 case $cache_file in 1596 [\\/]* | ?:[\\/]* ) . "$cache_file";; 1597 *) . "./$cache_file";; 1598 esac 1599 fi 1600else 1601 { echo "$as_me:$LINENO: creating cache $cache_file" >&5 1602echo "$as_me: creating cache $cache_file" >&6;} 1603 >$cache_file 1604fi 1605 1606# Check that the precious variables saved in the cache have kept the same 1607# value. 1608ac_cache_corrupted=false 1609for ac_var in $ac_precious_vars; do 1610 eval ac_old_set=\$ac_cv_env_${ac_var}_set 1611 eval ac_new_set=\$ac_env_${ac_var}_set 1612 eval ac_old_val=\$ac_cv_env_${ac_var}_value 1613 eval ac_new_val=\$ac_env_${ac_var}_value 1614 case $ac_old_set,$ac_new_set in 1615 set,) 1616 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 1617echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 1618 ac_cache_corrupted=: ;; 1619 ,set) 1620 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 1621echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 1622 ac_cache_corrupted=: ;; 1623 ,);; 1624 *) 1625 if test "x$ac_old_val" != "x$ac_new_val"; then 1626 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1627echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1628 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 1629echo "$as_me: former value: $ac_old_val" >&2;} 1630 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 1631echo "$as_me: current value: $ac_new_val" >&2;} 1632 ac_cache_corrupted=: 1633 fi;; 1634 esac 1635 # Pass precious variables to config.status. 1636 if test "$ac_new_set" = set; then 1637 case $ac_new_val in 1638 *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1639 *) ac_arg=$ac_var=$ac_new_val ;; 1640 esac 1641 case " $ac_configure_args " in 1642 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. 1643 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; 1644 esac 1645 fi 1646done 1647if $ac_cache_corrupted; then 1648 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1649echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1650 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1651echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1652 { (exit 1); exit 1; }; } 1653fi 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679ac_ext=c 1680ac_cpp='$CPP $CPPFLAGS' 1681ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 1682ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 1683ac_compiler_gnu=$ac_cv_c_compiler_gnu 1684 1685 1686am__api_version='1.10' 1687 1688ac_aux_dir= 1689for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do 1690 if test -f "$ac_dir/install-sh"; then 1691 ac_aux_dir=$ac_dir 1692 ac_install_sh="$ac_aux_dir/install-sh -c" 1693 break 1694 elif test -f "$ac_dir/install.sh"; then 1695 ac_aux_dir=$ac_dir 1696 ac_install_sh="$ac_aux_dir/install.sh -c" 1697 break 1698 elif test -f "$ac_dir/shtool"; then 1699 ac_aux_dir=$ac_dir 1700 ac_install_sh="$ac_aux_dir/shtool install -c" 1701 break 1702 fi 1703done 1704if test -z "$ac_aux_dir"; then 1705 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 1706echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} 1707 { (exit 1); exit 1; }; } 1708fi 1709 1710# These three variables are undocumented and unsupported, 1711# and are intended to be withdrawn in a future Autoconf release. 1712# They can cause serious problems if a builder's source tree is in a directory 1713# whose full name contains unusual characters. 1714ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. 1715ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. 1716ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 1717 1718 1719# Find a good install program. We prefer a C program (faster), 1720# so one script is as good as another. But avoid the broken or 1721# incompatible versions: 1722# SysV /etc/install, /usr/sbin/install 1723# SunOS /usr/etc/install 1724# IRIX /sbin/install 1725# AIX /bin/install 1726# AmigaOS /C/install, which installs bootblocks on floppy discs 1727# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag 1728# AFS /usr/afsws/bin/install, which mishandles nonexistent args 1729# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 1730# OS/2's system install, which has a completely different semantic 1731# ./install, which can be erroneously created by make from ./install.sh. 1732{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 1733echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } 1734if test -z "$INSTALL"; then 1735if test "${ac_cv_path_install+set}" = set; then 1736 echo $ECHO_N "(cached) $ECHO_C" >&6 1737else 1738 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1739for as_dir in $PATH 1740do 1741 IFS=$as_save_IFS 1742 test -z "$as_dir" && as_dir=. 1743 # Account for people who put trailing slashes in PATH elements. 1744case $as_dir/ in 1745 ./ | .// | /cC/* | \ 1746 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ 1747 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ 1748 /usr/ucb/* ) ;; 1749 *) 1750 # OSF1 and SCO ODT 3.0 have their own names for install. 1751 # Don't use installbsd from OSF since it installs stuff as root 1752 # by default. 1753 for ac_prog in ginstall scoinst install; do 1754 for ac_exec_ext in '' $ac_executable_extensions; do 1755 if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then 1756 if test $ac_prog = install && 1757 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 1758 # AIX install. It has an incompatible calling convention. 1759 : 1760 elif test $ac_prog = install && 1761 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 1762 # program-specific install script used by HP pwplus--don't use. 1763 : 1764 else 1765 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 1766 break 3 1767 fi 1768 fi 1769 done 1770 done 1771 ;; 1772esac 1773done 1774IFS=$as_save_IFS 1775 1776 1777fi 1778 if test "${ac_cv_path_install+set}" = set; then 1779 INSTALL=$ac_cv_path_install 1780 else 1781 # As a last resort, use the slow shell script. Don't cache a 1782 # value for INSTALL within a source directory, because that will 1783 # break other packages using the cache if that directory is 1784 # removed, or if the value is a relative name. 1785 INSTALL=$ac_install_sh 1786 fi 1787fi 1788{ echo "$as_me:$LINENO: result: $INSTALL" >&5 1789echo "${ECHO_T}$INSTALL" >&6; } 1790 1791# Use test -z because SunOS4 sh mishandles braces in ${var-val}. 1792# It thinks the first close brace ends the variable substitution. 1793test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' 1794 1795test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' 1796 1797test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 1798 1799{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 1800echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } 1801# Just in case 1802sleep 1 1803echo timestamp > conftest.file 1804# Do `set' in a subshell so we don't clobber the current shell's 1805# arguments. Must try -L first in case configure is actually a 1806# symlink; some systems play weird games with the mod time of symlinks 1807# (eg FreeBSD returns the mod time of the symlink's containing 1808# directory). 1809if ( 1810 set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` 1811 if test "$*" = "X"; then 1812 # -L didn't work. 1813 set X `ls -t $srcdir/configure conftest.file` 1814 fi 1815 rm -f conftest.file 1816 if test "$*" != "X $srcdir/configure conftest.file" \ 1817 && test "$*" != "X conftest.file $srcdir/configure"; then 1818 1819 # If neither matched, then we have a broken ls. This can happen 1820 # if, for instance, CONFIG_SHELL is bash and it inherits a 1821 # broken ls alias from the environment. This has actually 1822 # happened. Such a system could not be considered "sane". 1823 { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken 1824alias in your environment" >&5 1825echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken 1826alias in your environment" >&2;} 1827 { (exit 1); exit 1; }; } 1828 fi 1829 1830 test "$2" = conftest.file 1831 ) 1832then 1833 # Ok. 1834 : 1835else 1836 { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! 1837Check your system clock" >&5 1838echo "$as_me: error: newly created file is older than distributed files! 1839Check your system clock" >&2;} 1840 { (exit 1); exit 1; }; } 1841fi 1842{ echo "$as_me:$LINENO: result: yes" >&5 1843echo "${ECHO_T}yes" >&6; } 1844test "$program_prefix" != NONE && 1845 program_transform_name="s&^&$program_prefix&;$program_transform_name" 1846# Use a double $ so make ignores it. 1847test "$program_suffix" != NONE && 1848 program_transform_name="s&\$&$program_suffix&;$program_transform_name" 1849# Double any \ or $. echo might interpret backslashes. 1850# By default was `s,x,x', remove it if useless. 1851cat <<\_ACEOF >conftest.sed 1852s/[\\$]/&&/g;s/;s,x,x,$// 1853_ACEOF 1854program_transform_name=`echo $program_transform_name | sed -f conftest.sed` 1855rm -f conftest.sed 1856 1857# expand $ac_aux_dir to an absolute path 1858am_aux_dir=`cd $ac_aux_dir && pwd` 1859 1860test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" 1861# Use eval to expand $SHELL 1862if eval "$MISSING --run true"; then 1863 am_missing_run="$MISSING --run " 1864else 1865 am_missing_run= 1866 { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 1867echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} 1868fi 1869 1870{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 1871echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } 1872if test -z "$MKDIR_P"; then 1873 if test "${ac_cv_path_mkdir+set}" = set; then 1874 echo $ECHO_N "(cached) $ECHO_C" >&6 1875else 1876 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1877for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin 1878do 1879 IFS=$as_save_IFS 1880 test -z "$as_dir" && as_dir=. 1881 for ac_prog in mkdir gmkdir; do 1882 for ac_exec_ext in '' $ac_executable_extensions; do 1883 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue 1884 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 1885 'mkdir (GNU coreutils) '* | \ 1886 'mkdir (coreutils) '* | \ 1887 'mkdir (fileutils) '4.1*) 1888 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext 1889 break 3;; 1890 esac 1891 done 1892 done 1893done 1894IFS=$as_save_IFS 1895 1896fi 1897 1898 if test "${ac_cv_path_mkdir+set}" = set; then 1899 MKDIR_P="$ac_cv_path_mkdir -p" 1900 else 1901 # As a last resort, use the slow shell script. Don't cache a 1902 # value for MKDIR_P within a source directory, because that will 1903 # break other packages using the cache if that directory is 1904 # removed, or if the value is a relative name. 1905 test -d ./--version && rmdir ./--version 1906 MKDIR_P="$ac_install_sh -d" 1907 fi 1908fi 1909{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 1910echo "${ECHO_T}$MKDIR_P" >&6; } 1911 1912mkdir_p="$MKDIR_P" 1913case $mkdir_p in 1914 [\\/$]* | ?:[\\/]*) ;; 1915 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; 1916esac 1917 1918for ac_prog in gawk mawk nawk awk 1919do 1920 # Extract the first word of "$ac_prog", so it can be a program name with args. 1921set dummy $ac_prog; ac_word=$2 1922{ echo "$as_me:$LINENO: checking for $ac_word" >&5 1923echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 1924if test "${ac_cv_prog_AWK+set}" = set; then 1925 echo $ECHO_N "(cached) $ECHO_C" >&6 1926else 1927 if test -n "$AWK"; then 1928 ac_cv_prog_AWK="$AWK" # Let the user override the test. 1929else 1930as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1931for as_dir in $PATH 1932do 1933 IFS=$as_save_IFS 1934 test -z "$as_dir" && as_dir=. 1935 for ac_exec_ext in '' $ac_executable_extensions; do 1936 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1937 ac_cv_prog_AWK="$ac_prog" 1938 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1939 break 2 1940 fi 1941done 1942done 1943IFS=$as_save_IFS 1944 1945fi 1946fi 1947AWK=$ac_cv_prog_AWK 1948if test -n "$AWK"; then 1949 { echo "$as_me:$LINENO: result: $AWK" >&5 1950echo "${ECHO_T}$AWK" >&6; } 1951else 1952 { echo "$as_me:$LINENO: result: no" >&5 1953echo "${ECHO_T}no" >&6; } 1954fi 1955 1956 1957 test -n "$AWK" && break 1958done 1959 1960{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 1961echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } 1962set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 1963if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then 1964 echo $ECHO_N "(cached) $ECHO_C" >&6 1965else 1966 cat >conftest.make <<\_ACEOF 1967SHELL = /bin/sh 1968all: 1969 @echo '@@@%%%=$(MAKE)=@@@%%%' 1970_ACEOF 1971# GNU make sometimes prints "make[1]: Entering...", which would confuse us. 1972case `${MAKE-make} -f conftest.make 2>/dev/null` in 1973 *@@@%%%=?*=@@@%%%*) 1974 eval ac_cv_prog_make_${ac_make}_set=yes;; 1975 *) 1976 eval ac_cv_prog_make_${ac_make}_set=no;; 1977esac 1978rm -f conftest.make 1979fi 1980if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then 1981 { echo "$as_me:$LINENO: result: yes" >&5 1982echo "${ECHO_T}yes" >&6; } 1983 SET_MAKE= 1984else 1985 { echo "$as_me:$LINENO: result: no" >&5 1986echo "${ECHO_T}no" >&6; } 1987 SET_MAKE="MAKE=${MAKE-make}" 1988fi 1989 1990rm -rf .tst 2>/dev/null 1991mkdir .tst 2>/dev/null 1992if test -d .tst; then 1993 am__leading_dot=. 1994else 1995 am__leading_dot=_ 1996fi 1997rmdir .tst 2>/dev/null 1998 1999if test "`cd $srcdir && pwd`" != "`pwd`"; then 2000 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output 2001 # is not polluted with repeated "-I." 2002 am__isrc=' -I$(srcdir)' 2003 # test to see if srcdir already configured 2004 if test -f $srcdir/config.status; then 2005 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 2006echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} 2007 { (exit 1); exit 1; }; } 2008 fi 2009fi 2010 2011# test whether we have cygpath 2012if test -z "$CYGPATH_W"; then 2013 if (cygpath --version) >/dev/null 2>/dev/null; then 2014 CYGPATH_W='cygpath -w' 2015 else 2016 CYGPATH_W=echo 2017 fi 2018fi 2019 2020 2021# Define the identity of the package. 2022 PACKAGE='mkfontdir' 2023 VERSION='1.0.4' 2024 2025 2026cat >>confdefs.h <<_ACEOF 2027#define PACKAGE "$PACKAGE" 2028_ACEOF 2029 2030 2031cat >>confdefs.h <<_ACEOF 2032#define VERSION "$VERSION" 2033_ACEOF 2034 2035# Some tools Automake needs. 2036 2037ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} 2038 2039 2040AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} 2041 2042 2043AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} 2044 2045 2046AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} 2047 2048 2049MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} 2050 2051install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} 2052 2053# Installed binaries are usually stripped using `strip' when the user 2054# run `make install-strip'. However `strip' might not be the right 2055# tool to use in cross-compilation environments, therefore Automake 2056# will honor the `STRIP' environment variable to overrule this program. 2057if test "$cross_compiling" != no; then 2058 if test -n "$ac_tool_prefix"; then 2059 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. 2060set dummy ${ac_tool_prefix}strip; ac_word=$2 2061{ echo "$as_me:$LINENO: checking for $ac_word" >&5 2062echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 2063if test "${ac_cv_prog_STRIP+set}" = set; then 2064 echo $ECHO_N "(cached) $ECHO_C" >&6 2065else 2066 if test -n "$STRIP"; then 2067 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2068else 2069as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2070for as_dir in $PATH 2071do 2072 IFS=$as_save_IFS 2073 test -z "$as_dir" && as_dir=. 2074 for ac_exec_ext in '' $ac_executable_extensions; do 2075 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2076 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 2077 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2078 break 2 2079 fi 2080done 2081done 2082IFS=$as_save_IFS 2083 2084fi 2085fi 2086STRIP=$ac_cv_prog_STRIP 2087if test -n "$STRIP"; then 2088 { echo "$as_me:$LINENO: result: $STRIP" >&5 2089echo "${ECHO_T}$STRIP" >&6; } 2090else 2091 { echo "$as_me:$LINENO: result: no" >&5 2092echo "${ECHO_T}no" >&6; } 2093fi 2094 2095 2096fi 2097if test -z "$ac_cv_prog_STRIP"; then 2098 ac_ct_STRIP=$STRIP 2099 # Extract the first word of "strip", so it can be a program name with args. 2100set dummy strip; ac_word=$2 2101{ echo "$as_me:$LINENO: checking for $ac_word" >&5 2102echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 2103if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then 2104 echo $ECHO_N "(cached) $ECHO_C" >&6 2105else 2106 if test -n "$ac_ct_STRIP"; then 2107 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. 2108else 2109as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2110for as_dir in $PATH 2111do 2112 IFS=$as_save_IFS 2113 test -z "$as_dir" && as_dir=. 2114 for ac_exec_ext in '' $ac_executable_extensions; do 2115 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2116 ac_cv_prog_ac_ct_STRIP="strip" 2117 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2118 break 2 2119 fi 2120done 2121done 2122IFS=$as_save_IFS 2123 2124fi 2125fi 2126ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP 2127if test -n "$ac_ct_STRIP"; then 2128 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 2129echo "${ECHO_T}$ac_ct_STRIP" >&6; } 2130else 2131 { echo "$as_me:$LINENO: result: no" >&5 2132echo "${ECHO_T}no" >&6; } 2133fi 2134 2135 if test "x$ac_ct_STRIP" = x; then 2136 STRIP=":" 2137 else 2138 case $cross_compiling:$ac_tool_warned in 2139yes:) 2140{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2141whose name does not start with the host triplet. If you think this 2142configuration is useful to you, please write to autoconf@gnu.org." >&5 2143echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2144whose name does not start with the host triplet. If you think this 2145configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2146ac_tool_warned=yes ;; 2147esac 2148 STRIP=$ac_ct_STRIP 2149 fi 2150else 2151 STRIP="$ac_cv_prog_STRIP" 2152fi 2153 2154fi 2155INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" 2156 2157# We need awk for the "check" target. The system "awk" is bad on 2158# some platforms. 2159# Always define AMTAR for backward compatibility. 2160 2161AMTAR=${AMTAR-"${am_missing_run}tar"} 2162 2163am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' 2164 2165 2166 2167 2168 2169{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 2170echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; } 2171 # Check whether --enable-maintainer-mode was given. 2172if test "${enable_maintainer_mode+set}" = set; then 2173 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2174else 2175 USE_MAINTAINER_MODE=no 2176fi 2177 2178 { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 2179echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } 2180 if test $USE_MAINTAINER_MODE = yes; then 2181 MAINTAINER_MODE_TRUE= 2182 MAINTAINER_MODE_FALSE='#' 2183else 2184 MAINTAINER_MODE_TRUE='#' 2185 MAINTAINER_MODE_FALSE= 2186fi 2187 2188 MAINT=$MAINTAINER_MODE_TRUE 2189 2190 2191 2192# Find a good install program. We prefer a C program (faster), 2193# so one script is as good as another. But avoid the broken or 2194# incompatible versions: 2195# SysV /etc/install, /usr/sbin/install 2196# SunOS /usr/etc/install 2197# IRIX /sbin/install 2198# AIX /bin/install 2199# AmigaOS /C/install, which installs bootblocks on floppy discs 2200# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag 2201# AFS /usr/afsws/bin/install, which mishandles nonexistent args 2202# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 2203# OS/2's system install, which has a completely different semantic 2204# ./install, which can be erroneously created by make from ./install.sh. 2205{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 2206echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } 2207if test -z "$INSTALL"; then 2208if test "${ac_cv_path_install+set}" = set; then 2209 echo $ECHO_N "(cached) $ECHO_C" >&6 2210else 2211 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2212for as_dir in $PATH 2213do 2214 IFS=$as_save_IFS 2215 test -z "$as_dir" && as_dir=. 2216 # Account for people who put trailing slashes in PATH elements. 2217case $as_dir/ in 2218 ./ | .// | /cC/* | \ 2219 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ 2220 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ 2221 /usr/ucb/* ) ;; 2222 *) 2223 # OSF1 and SCO ODT 3.0 have their own names for install. 2224 # Don't use installbsd from OSF since it installs stuff as root 2225 # by default. 2226 for ac_prog in ginstall scoinst install; do 2227 for ac_exec_ext in '' $ac_executable_extensions; do 2228 if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then 2229 if test $ac_prog = install && 2230 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 2231 # AIX install. It has an incompatible calling convention. 2232 : 2233 elif test $ac_prog = install && 2234 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then 2235 # program-specific install script used by HP pwplus--don't use. 2236 : 2237 else 2238 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 2239 break 3 2240 fi 2241 fi 2242 done 2243 done 2244 ;; 2245esac 2246done 2247IFS=$as_save_IFS 2248 2249 2250fi 2251 if test "${ac_cv_path_install+set}" = set; then 2252 INSTALL=$ac_cv_path_install 2253 else 2254 # As a last resort, use the slow shell script. Don't cache a 2255 # value for INSTALL within a source directory, because that will 2256 # break other packages using the cache if that directory is 2257 # removed, or if the value is a relative name. 2258 INSTALL=$ac_install_sh 2259 fi 2260fi 2261{ echo "$as_me:$LINENO: result: $INSTALL" >&5 2262echo "${ECHO_T}$INSTALL" >&6; } 2263 2264# Use test -z because SunOS4 sh mishandles braces in ${var-val}. 2265# It thinks the first close brace ends the variable substitution. 2266test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' 2267 2268test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' 2269 2270test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 2271 2272 2273# Extract the first word of "sed", so it can be a program name with args. 2274set dummy sed; ac_word=$2 2275{ echo "$as_me:$LINENO: checking for $ac_word" >&5 2276echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 2277if test "${ac_cv_path_SED+set}" = set; then 2278 echo $ECHO_N "(cached) $ECHO_C" >&6 2279else 2280 case $SED in 2281 [\\/]* | ?:[\\/]*) 2282 ac_cv_path_SED="$SED" # Let the user override the test with a path. 2283 ;; 2284 *) 2285 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2286for as_dir in $PATH 2287do 2288 IFS=$as_save_IFS 2289 test -z "$as_dir" && as_dir=. 2290 for ac_exec_ext in '' $ac_executable_extensions; do 2291 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2292 ac_cv_path_SED="$as_dir/$ac_word$ac_exec_ext" 2293 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2294 break 2 2295 fi 2296done 2297done 2298IFS=$as_save_IFS 2299 2300 ;; 2301esac 2302fi 2303SED=$ac_cv_path_SED 2304if test -n "$SED"; then 2305 { echo "$as_me:$LINENO: result: $SED" >&5 2306echo "${ECHO_T}$SED" >&6; } 2307else 2308 { echo "$as_me:$LINENO: result: no" >&5 2309echo "${ECHO_T}no" >&6; } 2310fi 2311 2312 2313 2314 2315# Make sure we can run config.sub. 2316$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 2317 { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 2318echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} 2319 { (exit 1); exit 1; }; } 2320 2321{ echo "$as_me:$LINENO: checking build system type" >&5 2322echo $ECHO_N "checking build system type... $ECHO_C" >&6; } 2323if test "${ac_cv_build+set}" = set; then 2324 echo $ECHO_N "(cached) $ECHO_C" >&6 2325else 2326 ac_build_alias=$build_alias 2327test "x$ac_build_alias" = x && 2328 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 2329test "x$ac_build_alias" = x && 2330 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 2331echo "$as_me: error: cannot guess build type; you must specify one" >&2;} 2332 { (exit 1); exit 1; }; } 2333ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 2334 { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 2335echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} 2336 { (exit 1); exit 1; }; } 2337 2338fi 2339{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 2340echo "${ECHO_T}$ac_cv_build" >&6; } 2341case $ac_cv_build in 2342*-*-*) ;; 2343*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 2344echo "$as_me: error: invalid value of canonical build" >&2;} 2345 { (exit 1); exit 1; }; };; 2346esac 2347build=$ac_cv_build 2348ac_save_IFS=$IFS; IFS='-' 2349set x $ac_cv_build 2350shift 2351build_cpu=$1 2352build_vendor=$2 2353shift; shift 2354# Remember, the first character of IFS is used to create $*, 2355# except with old shells: 2356build_os=$* 2357IFS=$ac_save_IFS 2358case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 2359 2360 2361{ echo "$as_me:$LINENO: checking host system type" >&5 2362echo $ECHO_N "checking host system type... $ECHO_C" >&6; } 2363if test "${ac_cv_host+set}" = set; then 2364 echo $ECHO_N "(cached) $ECHO_C" >&6 2365else 2366 if test "x$host_alias" = x; then 2367 ac_cv_host=$ac_cv_build 2368else 2369 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 2370 { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 2371echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} 2372 { (exit 1); exit 1; }; } 2373fi 2374 2375fi 2376{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 2377echo "${ECHO_T}$ac_cv_host" >&6; } 2378case $ac_cv_host in 2379*-*-*) ;; 2380*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 2381echo "$as_me: error: invalid value of canonical host" >&2;} 2382 { (exit 1); exit 1; }; };; 2383esac 2384host=$ac_cv_host 2385ac_save_IFS=$IFS; IFS='-' 2386set x $ac_cv_host 2387shift 2388host_cpu=$1 2389host_vendor=$2 2390shift; shift 2391# Remember, the first character of IFS is used to create $*, 2392# except with old shells: 2393host_os=$* 2394IFS=$ac_save_IFS 2395case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 2396 2397 2398 2399 2400 2401if test x$APP_MAN_SUFFIX = x ; then 2402 APP_MAN_SUFFIX=1 2403fi 2404if test x$APP_MAN_DIR = x ; then 2405 APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)' 2406fi 2407 2408if test x$LIB_MAN_SUFFIX = x ; then 2409 LIB_MAN_SUFFIX=3 2410fi 2411if test x$LIB_MAN_DIR = x ; then 2412 LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)' 2413fi 2414 2415if test x$FILE_MAN_SUFFIX = x ; then 2416 case $host_os in 2417 solaris*) FILE_MAN_SUFFIX=4 ;; 2418 *) FILE_MAN_SUFFIX=5 ;; 2419 esac 2420fi 2421if test x$FILE_MAN_DIR = x ; then 2422 FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)' 2423fi 2424 2425if test x$MISC_MAN_SUFFIX = x ; then 2426 case $host_os in 2427 solaris*) MISC_MAN_SUFFIX=5 ;; 2428 *) MISC_MAN_SUFFIX=7 ;; 2429 esac 2430fi 2431if test x$MISC_MAN_DIR = x ; then 2432 MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)' 2433fi 2434 2435if test x$DRIVER_MAN_SUFFIX = x ; then 2436 case $host_os in 2437 solaris*) DRIVER_MAN_SUFFIX=7 ;; 2438 *) DRIVER_MAN_SUFFIX=4 ;; 2439 esac 2440fi 2441if test x$DRIVER_MAN_DIR = x ; then 2442 DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)' 2443fi 2444 2445if test x$ADMIN_MAN_SUFFIX = x ; then 2446 case $host_os in 2447 solaris*) ADMIN_MAN_SUFFIX=1m ;; 2448 *) ADMIN_MAN_SUFFIX=8 ;; 2449 esac 2450fi 2451if test x$ADMIN_MAN_DIR = x ; then 2452 ADMIN_MAN_DIR='$(mandir)/man$(ADMIN_MAN_SUFFIX)' 2453fi 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471# Check whether --with-release-version was given. 2472if test "${with_release_version+set}" = set; then 2473 withval=$with_release_version; RELEASE_VERSION="$withval" 2474else 2475 RELEASE_VERSION="" 2476fi 2477 2478 if test "x$RELEASE_VERSION" != "x"; then 2479 PACKAGE="$PACKAGE-$RELEASE_VERSION" 2480 PACKAGE_TARNAME="$PACKAGE_TARNAME-$RELEASE_VERSION" 2481 { echo "$as_me:$LINENO: Building with package name set to $PACKAGE" >&5 2482echo "$as_me: Building with package name set to $PACKAGE" >&6;} 2483 fi 2484 2485cat >>confdefs.h <<_ACEOF 2486#define PACKAGE_VERSION_MAJOR `echo $PACKAGE_VERSION | cut -d . -f 1` 2487_ACEOF 2488 2489 PVM=`echo $PACKAGE_VERSION | cut -d . -f 2 | cut -d - -f 1` 2490 if test "x$PVM" = "x"; then 2491 PVM="0" 2492 fi 2493 2494cat >>confdefs.h <<_ACEOF 2495#define PACKAGE_VERSION_MINOR $PVM 2496_ACEOF 2497 2498 PVP=`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1` 2499 if test "x$PVP" = "x"; then 2500 PVP="0" 2501 fi 2502 2503cat >>confdefs.h <<_ACEOF 2504#define PACKAGE_VERSION_PATCHLEVEL $PVP 2505_ACEOF 2506 2507 2508 2509ac_config_files="$ac_config_files Makefile" 2510 2511cat >confcache <<\_ACEOF 2512# This file is a shell script that caches the results of configure 2513# tests run on this system so they can be shared between configure 2514# scripts and configure runs, see configure's option --config-cache. 2515# It is not useful on other systems. If it contains results you don't 2516# want to keep, you may remove or edit it. 2517# 2518# config.status only pays attention to the cache file if you give it 2519# the --recheck option to rerun configure. 2520# 2521# `ac_cv_env_foo' variables (set or unset) will be overridden when 2522# loading this file, other *unset* `ac_cv_foo' will be assigned the 2523# following values. 2524 2525_ACEOF 2526 2527# The following way of writing the cache mishandles newlines in values, 2528# but we know of no workaround that is simple, portable, and efficient. 2529# So, we kill variables containing newlines. 2530# Ultrix sh set writes to stderr and can't be redirected directly, 2531# and sets the high bit in the cache file unless we assign to the vars. 2532( 2533 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do 2534 eval ac_val=\$$ac_var 2535 case $ac_val in #( 2536 *${as_nl}*) 2537 case $ac_var in #( 2538 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 2539echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; 2540 esac 2541 case $ac_var in #( 2542 _ | IFS | as_nl) ;; #( 2543 *) $as_unset $ac_var ;; 2544 esac ;; 2545 esac 2546 done 2547 2548 (set) 2>&1 | 2549 case $as_nl`(ac_space=' '; set) 2>&1` in #( 2550 *${as_nl}ac_space=\ *) 2551 # `set' does not quote correctly, so add quotes (double-quote 2552 # substitution turns \\\\ into \\, and sed turns \\ into \). 2553 sed -n \ 2554 "s/'/'\\\\''/g; 2555 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" 2556 ;; #( 2557 *) 2558 # `set' quotes correctly as required by POSIX, so do not add quotes. 2559 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 2560 ;; 2561 esac | 2562 sort 2563) | 2564 sed ' 2565 /^ac_cv_env_/b end 2566 t clear 2567 :clear 2568 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ 2569 t end 2570 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 2571 :end' >>confcache 2572if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 2573 if test -w "$cache_file"; then 2574 test "x$cache_file" != "x/dev/null" && 2575 { echo "$as_me:$LINENO: updating cache $cache_file" >&5 2576echo "$as_me: updating cache $cache_file" >&6;} 2577 cat confcache >$cache_file 2578 else 2579 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 2580echo "$as_me: not updating unwritable cache $cache_file" >&6;} 2581 fi 2582fi 2583rm -f confcache 2584 2585test "x$prefix" = xNONE && prefix=$ac_default_prefix 2586# Let make expand exec_prefix. 2587test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' 2588 2589# Transform confdefs.h into DEFS. 2590# Protect against shell expansion while executing Makefile rules. 2591# Protect against Makefile macro expansion. 2592# 2593# If the first sed substitution is executed (which looks for macros that 2594# take arguments), then branch to the quote section. Otherwise, 2595# look for a macro that doesn't take arguments. 2596ac_script=' 2597t clear 2598:clear 2599s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g 2600t quote 2601s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g 2602t quote 2603b any 2604:quote 2605s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g 2606s/\[/\\&/g 2607s/\]/\\&/g 2608s/\$/$$/g 2609H 2610:any 2611${ 2612 g 2613 s/^\n// 2614 s/\n/ /g 2615 p 2616} 2617' 2618DEFS=`sed -n "$ac_script" confdefs.h` 2619 2620 2621ac_libobjs= 2622ac_ltlibobjs= 2623for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 2624 # 1. Remove the extension, and $U if already installed. 2625 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 2626 ac_i=`echo "$ac_i" | sed "$ac_script"` 2627 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 2628 # will be set to the directory where LIBOBJS objects are built. 2629 ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" 2630 ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' 2631done 2632LIBOBJS=$ac_libobjs 2633 2634LTLIBOBJS=$ac_ltlibobjs 2635 2636 2637if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 2638 { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. 2639Usually this means the macro was only invoked conditionally." >&5 2640echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. 2641Usually this means the macro was only invoked conditionally." >&2;} 2642 { (exit 1); exit 1; }; } 2643fi 2644 2645: ${CONFIG_STATUS=./config.status} 2646ac_clean_files_save=$ac_clean_files 2647ac_clean_files="$ac_clean_files $CONFIG_STATUS" 2648{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 2649echo "$as_me: creating $CONFIG_STATUS" >&6;} 2650cat >$CONFIG_STATUS <<_ACEOF 2651#! $SHELL 2652# Generated by $as_me. 2653# Run this file to recreate the current configuration. 2654# Compiler output produced by configure, useful for debugging 2655# configure, is in config.log if it exists. 2656 2657debug=false 2658ac_cs_recheck=false 2659ac_cs_silent=false 2660SHELL=\${CONFIG_SHELL-$SHELL} 2661_ACEOF 2662 2663cat >>$CONFIG_STATUS <<\_ACEOF 2664## --------------------- ## 2665## M4sh Initialization. ## 2666## --------------------- ## 2667 2668# Be more Bourne compatible 2669DUALCASE=1; export DUALCASE # for MKS sh 2670if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 2671 emulate sh 2672 NULLCMD=: 2673 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 2674 # is contrary to our usage. Disable this feature. 2675 alias -g '${1+"$@"}'='"$@"' 2676 setopt NO_GLOB_SUBST 2677else 2678 case `(set -o) 2>/dev/null` in 2679 *posix*) set -o posix ;; 2680esac 2681 2682fi 2683 2684 2685 2686 2687# PATH needs CR 2688# Avoid depending upon Character Ranges. 2689as_cr_letters='abcdefghijklmnopqrstuvwxyz' 2690as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' 2691as_cr_Letters=$as_cr_letters$as_cr_LETTERS 2692as_cr_digits='0123456789' 2693as_cr_alnum=$as_cr_Letters$as_cr_digits 2694 2695# The user is always right. 2696if test "${PATH_SEPARATOR+set}" != set; then 2697 echo "#! /bin/sh" >conf$$.sh 2698 echo "exit 0" >>conf$$.sh 2699 chmod +x conf$$.sh 2700 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 2701 PATH_SEPARATOR=';' 2702 else 2703 PATH_SEPARATOR=: 2704 fi 2705 rm -f conf$$.sh 2706fi 2707 2708# Support unset when possible. 2709if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 2710 as_unset=unset 2711else 2712 as_unset=false 2713fi 2714 2715 2716# IFS 2717# We need space, tab and new line, in precisely that order. Quoting is 2718# there to prevent editors from complaining about space-tab. 2719# (If _AS_PATH_WALK were called with IFS unset, it would disable word 2720# splitting by setting IFS to empty value.) 2721as_nl=' 2722' 2723IFS=" "" $as_nl" 2724 2725# Find who we are. Look in the path if we contain no directory separator. 2726case $0 in 2727 *[\\/]* ) as_myself=$0 ;; 2728 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 2729for as_dir in $PATH 2730do 2731 IFS=$as_save_IFS 2732 test -z "$as_dir" && as_dir=. 2733 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 2734done 2735IFS=$as_save_IFS 2736 2737 ;; 2738esac 2739# We did not find ourselves, most probably we were run as `sh COMMAND' 2740# in which case we are not to be found in the path. 2741if test "x$as_myself" = x; then 2742 as_myself=$0 2743fi 2744if test ! -f "$as_myself"; then 2745 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 2746 { (exit 1); exit 1; } 2747fi 2748 2749# Work around bugs in pre-3.0 UWIN ksh. 2750for as_var in ENV MAIL MAILPATH 2751do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 2752done 2753PS1='$ ' 2754PS2='> ' 2755PS4='+ ' 2756 2757# NLS nuisances. 2758for as_var in \ 2759 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 2760 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 2761 LC_TELEPHONE LC_TIME 2762do 2763 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 2764 eval $as_var=C; export $as_var 2765 else 2766 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 2767 fi 2768done 2769 2770# Required to use basename. 2771if expr a : '\(a\)' >/dev/null 2>&1 && 2772 test "X`expr 00001 : '.*\(...\)'`" = X001; then 2773 as_expr=expr 2774else 2775 as_expr=false 2776fi 2777 2778if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 2779 as_basename=basename 2780else 2781 as_basename=false 2782fi 2783 2784 2785# Name of the executable. 2786as_me=`$as_basename -- "$0" || 2787$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 2788 X"$0" : 'X\(//\)$' \| \ 2789 X"$0" : 'X\(/\)' \| . 2>/dev/null || 2790echo X/"$0" | 2791 sed '/^.*\/\([^/][^/]*\)\/*$/{ 2792 s//\1/ 2793 q 2794 } 2795 /^X\/\(\/\/\)$/{ 2796 s//\1/ 2797 q 2798 } 2799 /^X\/\(\/\).*/{ 2800 s//\1/ 2801 q 2802 } 2803 s/.*/./; q'` 2804 2805# CDPATH. 2806$as_unset CDPATH 2807 2808 2809 2810 as_lineno_1=$LINENO 2811 as_lineno_2=$LINENO 2812 test "x$as_lineno_1" != "x$as_lineno_2" && 2813 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { 2814 2815 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 2816 # uniformly replaced by the line number. The first 'sed' inserts a 2817 # line-number line after each line using $LINENO; the second 'sed' 2818 # does the real work. The second script uses 'N' to pair each 2819 # line-number line with the line containing $LINENO, and appends 2820 # trailing '-' during substitution so that $LINENO is not a special 2821 # case at line end. 2822 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 2823 # scripts with optimization help from Paolo Bonzini. Blame Lee 2824 # E. McMahon (1931-1989) for sed's syntax. :-) 2825 sed -n ' 2826 p 2827 /[$]LINENO/= 2828 ' <$as_myself | 2829 sed ' 2830 s/[$]LINENO.*/&-/ 2831 t lineno 2832 b 2833 :lineno 2834 N 2835 :loop 2836 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ 2837 t loop 2838 s/-\n.*// 2839 ' >$as_me.lineno && 2840 chmod +x "$as_me.lineno" || 2841 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 2842 { (exit 1); exit 1; }; } 2843 2844 # Don't try to exec as it changes $[0], causing all sort of problems 2845 # (the dirname of $[0] is not the place where we might find the 2846 # original and so on. Autoconf is especially sensitive to this). 2847 . "./$as_me.lineno" 2848 # Exit status is that of the last command. 2849 exit 2850} 2851 2852 2853if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 2854 as_dirname=dirname 2855else 2856 as_dirname=false 2857fi 2858 2859ECHO_C= ECHO_N= ECHO_T= 2860case `echo -n x` in 2861-n*) 2862 case `echo 'x\c'` in 2863 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 2864 *) ECHO_C='\c';; 2865 esac;; 2866*) 2867 ECHO_N='-n';; 2868esac 2869 2870if expr a : '\(a\)' >/dev/null 2>&1 && 2871 test "X`expr 00001 : '.*\(...\)'`" = X001; then 2872 as_expr=expr 2873else 2874 as_expr=false 2875fi 2876 2877rm -f conf$$ conf$$.exe conf$$.file 2878if test -d conf$$.dir; then 2879 rm -f conf$$.dir/conf$$.file 2880else 2881 rm -f conf$$.dir 2882 mkdir conf$$.dir 2883fi 2884echo >conf$$.file 2885if ln -s conf$$.file conf$$ 2>/dev/null; then 2886 as_ln_s='ln -s' 2887 # ... but there are two gotchas: 2888 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 2889 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 2890 # In both cases, we have to default to `cp -p'. 2891 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 2892 as_ln_s='cp -p' 2893elif ln conf$$.file conf$$ 2>/dev/null; then 2894 as_ln_s=ln 2895else 2896 as_ln_s='cp -p' 2897fi 2898rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 2899rmdir conf$$.dir 2>/dev/null 2900 2901if mkdir -p . 2>/dev/null; then 2902 as_mkdir_p=: 2903else 2904 test -d ./-p && rmdir ./-p 2905 as_mkdir_p=false 2906fi 2907 2908if test -x / >/dev/null 2>&1; then 2909 as_test_x='test -x' 2910else 2911 if ls -dL / >/dev/null 2>&1; then 2912 as_ls_L_option=L 2913 else 2914 as_ls_L_option= 2915 fi 2916 as_test_x=' 2917 eval sh -c '\'' 2918 if test -d "$1"; then 2919 test -d "$1/."; 2920 else 2921 case $1 in 2922 -*)set "./$1";; 2923 esac; 2924 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in 2925 ???[sx]*):;;*)false;;esac;fi 2926 '\'' sh 2927 ' 2928fi 2929as_executable_p=$as_test_x 2930 2931# Sed expression to map a string onto a valid CPP name. 2932as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 2933 2934# Sed expression to map a string onto a valid variable name. 2935as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 2936 2937 2938exec 6>&1 2939 2940# Save the log message, to keep $[0] and so on meaningful, and to 2941# report actual input values of CONFIG_FILES etc. instead of their 2942# values after options handling. 2943ac_log=" 2944This file was extended by mkfontdir $as_me 1.0.4, which was 2945generated by GNU Autoconf 2.61. Invocation command line was 2946 2947 CONFIG_FILES = $CONFIG_FILES 2948 CONFIG_HEADERS = $CONFIG_HEADERS 2949 CONFIG_LINKS = $CONFIG_LINKS 2950 CONFIG_COMMANDS = $CONFIG_COMMANDS 2951 $ $0 $@ 2952 2953on `(hostname || uname -n) 2>/dev/null | sed 1q` 2954" 2955 2956_ACEOF 2957 2958cat >>$CONFIG_STATUS <<_ACEOF 2959# Files that config.status was made for. 2960config_files="$ac_config_files" 2961 2962_ACEOF 2963 2964cat >>$CONFIG_STATUS <<\_ACEOF 2965ac_cs_usage="\ 2966\`$as_me' instantiates files from templates according to the 2967current configuration. 2968 2969Usage: $0 [OPTIONS] [FILE]... 2970 2971 -h, --help print this help, then exit 2972 -V, --version print version number and configuration settings, then exit 2973 -q, --quiet do not print progress messages 2974 -d, --debug don't remove temporary files 2975 --recheck update $as_me by reconfiguring in the same conditions 2976 --file=FILE[:TEMPLATE] 2977 instantiate the configuration file FILE 2978 2979Configuration files: 2980$config_files 2981 2982Report bugs to <bug-autoconf@gnu.org>." 2983 2984_ACEOF 2985cat >>$CONFIG_STATUS <<_ACEOF 2986ac_cs_version="\\ 2987mkfontdir config.status 1.0.4 2988configured by $0, generated by GNU Autoconf 2.61, 2989 with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" 2990 2991Copyright (C) 2006 Free Software Foundation, Inc. 2992This config.status script is free software; the Free Software Foundation 2993gives unlimited permission to copy, distribute and modify it." 2994 2995ac_pwd='$ac_pwd' 2996srcdir='$srcdir' 2997INSTALL='$INSTALL' 2998MKDIR_P='$MKDIR_P' 2999_ACEOF 3000 3001cat >>$CONFIG_STATUS <<\_ACEOF 3002# If no file are specified by the user, then we need to provide default 3003# value. By we need to know if files were specified by the user. 3004ac_need_defaults=: 3005while test $# != 0 3006do 3007 case $1 in 3008 --*=*) 3009 ac_option=`expr "X$1" : 'X\([^=]*\)='` 3010 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` 3011 ac_shift=: 3012 ;; 3013 *) 3014 ac_option=$1 3015 ac_optarg=$2 3016 ac_shift=shift 3017 ;; 3018 esac 3019 3020 case $ac_option in 3021 # Handling of the options. 3022 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) 3023 ac_cs_recheck=: ;; 3024 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) 3025 echo "$ac_cs_version"; exit ;; 3026 --debug | --debu | --deb | --de | --d | -d ) 3027 debug=: ;; 3028 --file | --fil | --fi | --f ) 3029 $ac_shift 3030 CONFIG_FILES="$CONFIG_FILES $ac_optarg" 3031 ac_need_defaults=false;; 3032 --he | --h | --help | --hel | -h ) 3033 echo "$ac_cs_usage"; exit ;; 3034 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 3035 | -silent | --silent | --silen | --sile | --sil | --si | --s) 3036 ac_cs_silent=: ;; 3037 3038 # This is an error. 3039 -*) { echo "$as_me: error: unrecognized option: $1 3040Try \`$0 --help' for more information." >&2 3041 { (exit 1); exit 1; }; } ;; 3042 3043 *) ac_config_targets="$ac_config_targets $1" 3044 ac_need_defaults=false ;; 3045 3046 esac 3047 shift 3048done 3049 3050ac_configure_extra_args= 3051 3052if $ac_cs_silent; then 3053 exec 6>/dev/null 3054 ac_configure_extra_args="$ac_configure_extra_args --silent" 3055fi 3056 3057_ACEOF 3058cat >>$CONFIG_STATUS <<_ACEOF 3059if \$ac_cs_recheck; then 3060 echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 3061 CONFIG_SHELL=$SHELL 3062 export CONFIG_SHELL 3063 exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 3064fi 3065 3066_ACEOF 3067cat >>$CONFIG_STATUS <<\_ACEOF 3068exec 5>>config.log 3069{ 3070 echo 3071 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX 3072## Running $as_me. ## 3073_ASBOX 3074 echo "$ac_log" 3075} >&5 3076 3077_ACEOF 3078cat >>$CONFIG_STATUS <<_ACEOF 3079_ACEOF 3080 3081cat >>$CONFIG_STATUS <<\_ACEOF 3082 3083# Handling of arguments. 3084for ac_config_target in $ac_config_targets 3085do 3086 case $ac_config_target in 3087 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 3088 3089 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 3090echo "$as_me: error: invalid argument: $ac_config_target" >&2;} 3091 { (exit 1); exit 1; }; };; 3092 esac 3093done 3094 3095 3096# If the user did not use the arguments to specify the items to instantiate, 3097# then the envvar interface is used. Set only those that are not. 3098# We use the long form for the default assignment because of an extremely 3099# bizarre bug on SunOS 4.1.3. 3100if $ac_need_defaults; then 3101 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files 3102fi 3103 3104# Have a temporary directory for convenience. Make it in the build tree 3105# simply because there is no reason against having it here, and in addition, 3106# creating and moving files from /tmp can sometimes cause problems. 3107# Hook for its removal unless debugging. 3108# Note that there is a small window in which the directory will not be cleaned: 3109# after its creation but before its name has been assigned to `$tmp'. 3110$debug || 3111{ 3112 tmp= 3113 trap 'exit_status=$? 3114 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status 3115' 0 3116 trap '{ (exit 1); exit 1; }' 1 2 13 15 3117} 3118# Create a (secure) tmp directory for tmp files. 3119 3120{ 3121 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 3122 test -n "$tmp" && test -d "$tmp" 3123} || 3124{ 3125 tmp=./conf$$-$RANDOM 3126 (umask 077 && mkdir "$tmp") 3127} || 3128{ 3129 echo "$me: cannot create a temporary directory in ." >&2 3130 { (exit 1); exit 1; } 3131} 3132 3133# 3134# Set up the sed scripts for CONFIG_FILES section. 3135# 3136 3137# No need to generate the scripts if there are no CONFIG_FILES. 3138# This happens for instance when ./config.status config.h 3139if test -n "$CONFIG_FILES"; then 3140 3141_ACEOF 3142 3143 3144 3145ac_delim='%!_!# ' 3146for ac_last_try in false false false false false :; do 3147 cat >conf$$subs.sed <<_ACEOF 3148SHELL!$SHELL$ac_delim 3149PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim 3150PACKAGE_NAME!$PACKAGE_NAME$ac_delim 3151PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim 3152PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim 3153PACKAGE_STRING!$PACKAGE_STRING$ac_delim 3154PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim 3155exec_prefix!$exec_prefix$ac_delim 3156prefix!$prefix$ac_delim 3157program_transform_name!$program_transform_name$ac_delim 3158bindir!$bindir$ac_delim 3159sbindir!$sbindir$ac_delim 3160libexecdir!$libexecdir$ac_delim 3161datarootdir!$datarootdir$ac_delim 3162datadir!$datadir$ac_delim 3163sysconfdir!$sysconfdir$ac_delim 3164sharedstatedir!$sharedstatedir$ac_delim 3165localstatedir!$localstatedir$ac_delim 3166includedir!$includedir$ac_delim 3167oldincludedir!$oldincludedir$ac_delim 3168docdir!$docdir$ac_delim 3169infodir!$infodir$ac_delim 3170htmldir!$htmldir$ac_delim 3171dvidir!$dvidir$ac_delim 3172pdfdir!$pdfdir$ac_delim 3173psdir!$psdir$ac_delim 3174libdir!$libdir$ac_delim 3175localedir!$localedir$ac_delim 3176mandir!$mandir$ac_delim 3177DEFS!$DEFS$ac_delim 3178ECHO_C!$ECHO_C$ac_delim 3179ECHO_N!$ECHO_N$ac_delim 3180ECHO_T!$ECHO_T$ac_delim 3181LIBS!$LIBS$ac_delim 3182build_alias!$build_alias$ac_delim 3183host_alias!$host_alias$ac_delim 3184target_alias!$target_alias$ac_delim 3185INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim 3186INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim 3187INSTALL_DATA!$INSTALL_DATA$ac_delim 3188am__isrc!$am__isrc$ac_delim 3189CYGPATH_W!$CYGPATH_W$ac_delim 3190PACKAGE!$PACKAGE$ac_delim 3191VERSION!$VERSION$ac_delim 3192ACLOCAL!$ACLOCAL$ac_delim 3193AUTOCONF!$AUTOCONF$ac_delim 3194AUTOMAKE!$AUTOMAKE$ac_delim 3195AUTOHEADER!$AUTOHEADER$ac_delim 3196MAKEINFO!$MAKEINFO$ac_delim 3197install_sh!$install_sh$ac_delim 3198STRIP!$STRIP$ac_delim 3199INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim 3200mkdir_p!$mkdir_p$ac_delim 3201AWK!$AWK$ac_delim 3202SET_MAKE!$SET_MAKE$ac_delim 3203am__leading_dot!$am__leading_dot$ac_delim 3204AMTAR!$AMTAR$ac_delim 3205am__tar!$am__tar$ac_delim 3206am__untar!$am__untar$ac_delim 3207MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim 3208MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim 3209MAINT!$MAINT$ac_delim 3210SED!$SED$ac_delim 3211build!$build$ac_delim 3212build_cpu!$build_cpu$ac_delim 3213build_vendor!$build_vendor$ac_delim 3214build_os!$build_os$ac_delim 3215host!$host$ac_delim 3216host_cpu!$host_cpu$ac_delim 3217host_vendor!$host_vendor$ac_delim 3218host_os!$host_os$ac_delim 3219APP_MAN_SUFFIX!$APP_MAN_SUFFIX$ac_delim 3220LIB_MAN_SUFFIX!$LIB_MAN_SUFFIX$ac_delim 3221FILE_MAN_SUFFIX!$FILE_MAN_SUFFIX$ac_delim 3222MISC_MAN_SUFFIX!$MISC_MAN_SUFFIX$ac_delim 3223DRIVER_MAN_SUFFIX!$DRIVER_MAN_SUFFIX$ac_delim 3224ADMIN_MAN_SUFFIX!$ADMIN_MAN_SUFFIX$ac_delim 3225APP_MAN_DIR!$APP_MAN_DIR$ac_delim 3226LIB_MAN_DIR!$LIB_MAN_DIR$ac_delim 3227FILE_MAN_DIR!$FILE_MAN_DIR$ac_delim 3228MISC_MAN_DIR!$MISC_MAN_DIR$ac_delim 3229DRIVER_MAN_DIR!$DRIVER_MAN_DIR$ac_delim 3230ADMIN_MAN_DIR!$ADMIN_MAN_DIR$ac_delim 3231LIBOBJS!$LIBOBJS$ac_delim 3232LTLIBOBJS!$LTLIBOBJS$ac_delim 3233_ACEOF 3234 3235 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 85; then 3236 break 3237 elif $ac_last_try; then 3238 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 3239echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 3240 { (exit 1); exit 1; }; } 3241 else 3242 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 3243 fi 3244done 3245 3246ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` 3247if test -n "$ac_eof"; then 3248 ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` 3249 ac_eof=`expr $ac_eof + 1` 3250fi 3251 3252cat >>$CONFIG_STATUS <<_ACEOF 3253cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof 3254/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end 3255_ACEOF 3256sed ' 3257s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g 3258s/^/s,@/; s/!/@,|#_!!_#|/ 3259:n 3260t n 3261s/'"$ac_delim"'$/,g/; t 3262s/$/\\/; p 3263N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n 3264' >>$CONFIG_STATUS <conf$$subs.sed 3265rm -f conf$$subs.sed 3266cat >>$CONFIG_STATUS <<_ACEOF 3267:end 3268s/|#_!!_#|//g 3269CEOF$ac_eof 3270_ACEOF 3271 3272 3273# VPATH may cause trouble with some makes, so we remove $(srcdir), 3274# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and 3275# trailing colons and then remove the whole line if VPATH becomes empty 3276# (actually we leave an empty line to preserve line numbers). 3277if test "x$srcdir" = x.; then 3278 ac_vpsub='/^[ ]*VPATH[ ]*=/{ 3279s/:*\$(srcdir):*/:/ 3280s/:*\${srcdir}:*/:/ 3281s/:*@srcdir@:*/:/ 3282s/^\([^=]*=[ ]*\):*/\1/ 3283s/:*$// 3284s/^[^=]*=[ ]*$// 3285}' 3286fi 3287 3288cat >>$CONFIG_STATUS <<\_ACEOF 3289fi # test -n "$CONFIG_FILES" 3290 3291 3292for ac_tag in :F $CONFIG_FILES 3293do 3294 case $ac_tag in 3295 :[FHLC]) ac_mode=$ac_tag; continue;; 3296 esac 3297 case $ac_mode$ac_tag in 3298 :[FHL]*:*);; 3299 :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 3300echo "$as_me: error: Invalid tag $ac_tag." >&2;} 3301 { (exit 1); exit 1; }; };; 3302 :[FH]-) ac_tag=-:-;; 3303 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 3304 esac 3305 ac_save_IFS=$IFS 3306 IFS=: 3307 set x $ac_tag 3308 IFS=$ac_save_IFS 3309 shift 3310 ac_file=$1 3311 shift 3312 3313 case $ac_mode in 3314 :L) ac_source=$1;; 3315 :[FH]) 3316 ac_file_inputs= 3317 for ac_f 3318 do 3319 case $ac_f in 3320 -) ac_f="$tmp/stdin";; 3321 *) # Look for the file first in the build tree, then in the source tree 3322 # (if the path is not absolute). The absolute path cannot be DOS-style, 3323 # because $ac_f cannot contain `:'. 3324 test -f "$ac_f" || 3325 case $ac_f in 3326 [\\/$]*) false;; 3327 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 3328 esac || 3329 { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 3330echo "$as_me: error: cannot find input file: $ac_f" >&2;} 3331 { (exit 1); exit 1; }; };; 3332 esac 3333 ac_file_inputs="$ac_file_inputs $ac_f" 3334 done 3335 3336 # Let's still pretend it is `configure' which instantiates (i.e., don't 3337 # use $as_me), people would be surprised to read: 3338 # /* config.h. Generated by config.status. */ 3339 configure_input="Generated from "`IFS=: 3340 echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." 3341 if test x"$ac_file" != x-; then 3342 configure_input="$ac_file. $configure_input" 3343 { echo "$as_me:$LINENO: creating $ac_file" >&5 3344echo "$as_me: creating $ac_file" >&6;} 3345 fi 3346 3347 case $ac_tag in 3348 *:-:* | *:-) cat >"$tmp/stdin";; 3349 esac 3350 ;; 3351 esac 3352 3353 ac_dir=`$as_dirname -- "$ac_file" || 3354$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 3355 X"$ac_file" : 'X\(//\)[^/]' \| \ 3356 X"$ac_file" : 'X\(//\)$' \| \ 3357 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || 3358echo X"$ac_file" | 3359 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 3360 s//\1/ 3361 q 3362 } 3363 /^X\(\/\/\)[^/].*/{ 3364 s//\1/ 3365 q 3366 } 3367 /^X\(\/\/\)$/{ 3368 s//\1/ 3369 q 3370 } 3371 /^X\(\/\).*/{ 3372 s//\1/ 3373 q 3374 } 3375 s/.*/./; q'` 3376 { as_dir="$ac_dir" 3377 case $as_dir in #( 3378 -*) as_dir=./$as_dir;; 3379 esac 3380 test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { 3381 as_dirs= 3382 while :; do 3383 case $as_dir in #( 3384 *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( 3385 *) as_qdir=$as_dir;; 3386 esac 3387 as_dirs="'$as_qdir' $as_dirs" 3388 as_dir=`$as_dirname -- "$as_dir" || 3389$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 3390 X"$as_dir" : 'X\(//\)[^/]' \| \ 3391 X"$as_dir" : 'X\(//\)$' \| \ 3392 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 3393echo X"$as_dir" | 3394 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 3395 s//\1/ 3396 q 3397 } 3398 /^X\(\/\/\)[^/].*/{ 3399 s//\1/ 3400 q 3401 } 3402 /^X\(\/\/\)$/{ 3403 s//\1/ 3404 q 3405 } 3406 /^X\(\/\).*/{ 3407 s//\1/ 3408 q 3409 } 3410 s/.*/./; q'` 3411 test -d "$as_dir" && break 3412 done 3413 test -z "$as_dirs" || eval "mkdir $as_dirs" 3414 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 3415echo "$as_me: error: cannot create directory $as_dir" >&2;} 3416 { (exit 1); exit 1; }; }; } 3417 ac_builddir=. 3418 3419case "$ac_dir" in 3420.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 3421*) 3422 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 3423 # A ".." for each directory in $ac_dir_suffix. 3424 ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` 3425 case $ac_top_builddir_sub in 3426 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 3427 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 3428 esac ;; 3429esac 3430ac_abs_top_builddir=$ac_pwd 3431ac_abs_builddir=$ac_pwd$ac_dir_suffix 3432# for backward compatibility: 3433ac_top_builddir=$ac_top_build_prefix 3434 3435case $srcdir in 3436 .) # We are building in place. 3437 ac_srcdir=. 3438 ac_top_srcdir=$ac_top_builddir_sub 3439 ac_abs_top_srcdir=$ac_pwd ;; 3440 [\\/]* | ?:[\\/]* ) # Absolute name. 3441 ac_srcdir=$srcdir$ac_dir_suffix; 3442 ac_top_srcdir=$srcdir 3443 ac_abs_top_srcdir=$srcdir ;; 3444 *) # Relative name. 3445 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 3446 ac_top_srcdir=$ac_top_build_prefix$srcdir 3447 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 3448esac 3449ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 3450 3451 3452 case $ac_mode in 3453 :F) 3454 # 3455 # CONFIG_FILE 3456 # 3457 3458 case $INSTALL in 3459 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; 3460 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; 3461 esac 3462 ac_MKDIR_P=$MKDIR_P 3463 case $MKDIR_P in 3464 [\\/$]* | ?:[\\/]* ) ;; 3465 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; 3466 esac 3467_ACEOF 3468 3469cat >>$CONFIG_STATUS <<\_ACEOF 3470# If the template does not know about datarootdir, expand it. 3471# FIXME: This hack should be removed a few years after 2.60. 3472ac_datarootdir_hack=; ac_datarootdir_seen= 3473 3474case `sed -n '/datarootdir/ { 3475 p 3476 q 3477} 3478/@datadir@/p 3479/@docdir@/p 3480/@infodir@/p 3481/@localedir@/p 3482/@mandir@/p 3483' $ac_file_inputs` in 3484*datarootdir*) ac_datarootdir_seen=yes;; 3485*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) 3486 { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 3487echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} 3488_ACEOF 3489cat >>$CONFIG_STATUS <<_ACEOF 3490 ac_datarootdir_hack=' 3491 s&@datadir@&$datadir&g 3492 s&@docdir@&$docdir&g 3493 s&@infodir@&$infodir&g 3494 s&@localedir@&$localedir&g 3495 s&@mandir@&$mandir&g 3496 s&\\\${datarootdir}&$datarootdir&g' ;; 3497esac 3498_ACEOF 3499 3500# Neutralize VPATH when `$srcdir' = `.'. 3501# Shell code in configure.ac might set extrasub. 3502# FIXME: do we really want to maintain this feature? 3503cat >>$CONFIG_STATUS <<_ACEOF 3504 sed "$ac_vpsub 3505$extrasub 3506_ACEOF 3507cat >>$CONFIG_STATUS <<\_ACEOF 3508:t 3509/@[a-zA-Z_][a-zA-Z_0-9]*@/!b 3510s&@configure_input@&$configure_input&;t t 3511s&@top_builddir@&$ac_top_builddir_sub&;t t 3512s&@srcdir@&$ac_srcdir&;t t 3513s&@abs_srcdir@&$ac_abs_srcdir&;t t 3514s&@top_srcdir@&$ac_top_srcdir&;t t 3515s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t 3516s&@builddir@&$ac_builddir&;t t 3517s&@abs_builddir@&$ac_abs_builddir&;t t 3518s&@abs_top_builddir@&$ac_abs_top_builddir&;t t 3519s&@INSTALL@&$ac_INSTALL&;t t 3520s&@MKDIR_P@&$ac_MKDIR_P&;t t 3521$ac_datarootdir_hack 3522" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 3523 3524test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 3525 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 3526 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 3527 { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' 3528which seems to be undefined. Please make sure it is defined." >&5 3529echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 3530which seems to be undefined. Please make sure it is defined." >&2;} 3531 3532 rm -f "$tmp/stdin" 3533 case $ac_file in 3534 -) cat "$tmp/out"; rm -f "$tmp/out";; 3535 *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; 3536 esac 3537 ;; 3538 3539 3540 3541 esac 3542 3543done # for ac_tag 3544 3545 3546{ (exit 0); exit 0; } 3547_ACEOF 3548chmod +x $CONFIG_STATUS 3549ac_clean_files=$ac_clean_files_save 3550 3551 3552# configure is writing to config.log, and then calls config.status. 3553# config.status does its own redirection, appending to config.log. 3554# Unfortunately, on DOS this fails, as config.log is still kept open 3555# by configure, so config.status won't be able to write to it; its 3556# output is simply discarded. So we exec the FD to /dev/null, 3557# effectively closing config.log, so it can be properly (re)opened and 3558# appended to by config.status. When coming back to configure, we 3559# need to make the FD available again. 3560if test "$no_create" != yes; then 3561 ac_cs_success=: 3562 ac_config_status_args= 3563 test "$silent" = yes && 3564 ac_config_status_args="$ac_config_status_args --quiet" 3565 exec 5>/dev/null 3566 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false 3567 exec 5>>config.log 3568 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 3569 # would make configure fail if this is the last instruction. 3570 $ac_cs_success || { (exit 1); exit 1; } 3571fi 3572 3573