Changeset 334
- Timestamp:
- 07/06/07 22:29:26 (1 year ago)
- Files:
-
- wifidog/wifidog-client/configure (modified) (36 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wifidog/wifidog-client/configure
r329 r334 823 823 INSTALL_SCRIPT 824 824 INSTALL_DATA 825 am__isrc 825 826 CYGPATH_W 826 827 PACKAGE … … 3261 3262 WIFIDOG_MAJOR_VERSION=1 3262 3263 WIFIDOG_MINOR_VERSION=1 3263 WIFIDOG_MICRO_VERSION=3_rc1 -ffw-063264 WIFIDOG_MICRO_VERSION=3_rc1 3264 3265 WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 3265 3266 … … 3268 3269 3269 3270 3270 am__api_version="1.9" 3271 am__api_version='1.10' 3272 3271 3273 # Find a good install program. We prefer a C program (faster), 3272 3274 # so one script is as good as another. But avoid the broken or … … 3420 3422 fi 3421 3423 3422 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 3423 # We used to keeping the `.' as first argument, in order to 3424 # allow $(mkdir_p) to be used without argument. As in 3425 # $(mkdir_p) $(somedir) 3426 # where $(somedir) is conditionally defined. However this is wrong 3427 # for two reasons: 3428 # 1. if the package is installed by a user who cannot write `.' 3429 # make install will fail, 3430 # 2. the above comment should most certainly read 3431 # $(mkdir_p) $(DESTDIR)$(somedir) 3432 # so it does not work when $(somedir) is undefined and 3433 # $(DESTDIR) is not. 3434 # To support the latter case, we have to write 3435 # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), 3436 # so the `.' trick is pointless. 3437 mkdir_p='mkdir -p --' 3438 else 3439 # On NextStep and OpenStep, the `mkdir' command does not 3440 # recognize any option. It will interpret all options as 3441 # directories to create, and then abort because `.' already 3442 # exists. 3443 for d in ./-p ./--version; 3444 do 3445 test -d $d && rmdir $d 3446 done 3447 # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. 3448 if test -f "$ac_aux_dir/mkinstalldirs"; then 3449 mkdir_p='$(mkinstalldirs)' 3424 { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 3425 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } 3426 if test -z "$MKDIR_P"; then 3427 if test "${ac_cv_path_mkdir+set}" = set; then 3428 echo $ECHO_N "(cached) $ECHO_C" >&6 3429 else 3430 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3431 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin 3432 do 3433 IFS=$as_save_IFS 3434 test -z "$as_dir" && as_dir=. 3435 for ac_prog in mkdir gmkdir; do 3436 for ac_exec_ext in '' $ac_executable_extensions; do 3437 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue 3438 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 3439 'mkdir (GNU coreutils) '* | \ 3440 'mkdir (coreutils) '* | \ 3441 'mkdir (fileutils) '4.1*) 3442 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext 3443 break 3;; 3444 esac 3445 done 3446 done 3447 done 3448 IFS=$as_save_IFS 3449 3450 fi 3451 3452 if test "${ac_cv_path_mkdir+set}" = set; then 3453 MKDIR_P="$ac_cv_path_mkdir -p" 3450 3454 else 3451 mkdir_p='$(install_sh) -d' 3455 # As a last resort, use the slow shell script. Don't cache a 3456 # value for MKDIR_P within a source directory, because that will 3457 # break other packages using the cache if that directory is 3458 # removed, or if the value is a relative name. 3459 test -d ./--version && rmdir ./--version 3460 MKDIR_P="$ac_install_sh -d" 3452 3461 fi 3453 3462 fi 3463 { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 3464 echo "${ECHO_T}$MKDIR_P" >&6; } 3465 3466 mkdir_p="$MKDIR_P" 3467 case $mkdir_p in 3468 [\\/$]* | ?:[\\/]*) ;; 3469 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; 3470 esac 3454 3471 3455 3472 for ac_prog in gawk mawk nawk awk … … 3587 3604 AMDEPBACKSLASH='\' 3588 3605 fi 3589 3590 3591 if test "x$enable_dependency_tracking" != xno; then 3606 if test "x$enable_dependency_tracking" != xno; then 3592 3607 AMDEP_TRUE= 3593 3608 AMDEP_FALSE='#' … … 3598 3613 3599 3614 3600 3601 # test to see if srcdir already configured 3602 if test "`cd $srcdir && pwd`" != "`pwd`" && 3603 test -f $srcdir/config.status; then 3604 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 3615 if test "`cd $srcdir && pwd`" != "`pwd`"; then 3616 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output 3617 # is not polluted with repeated "-I." 3618 am__isrc=' -I$(srcdir)' 3619 # test to see if srcdir already configured 3620 if test -f $srcdir/config.status; then 3621 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 3605 3622 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} 3606 3623 { (exit 1); exit 1; }; } 3624 fi 3607 3625 fi 3608 3626 … … 3647 3665 MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} 3648 3666 3649 install_sh=${install_sh-" $am_aux_dir/install-sh"}3667 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} 3650 3668 3651 3669 # Installed binaries are usually stripped using `strip' when the user … … 3751 3769 3752 3770 fi 3753 INSTALL_STRIP_PROGRAM="\$ {SHELL} \$(install_sh) -c -s"3771 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" 3754 3772 3755 3773 # We need awk for the "check" target. The system "awk" is bad on … … 3831 3849 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ 3832 3850 >/dev/null 2>conftest.err && 3851 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && 3833 3852 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && 3834 3853 grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && … … 3860 3879 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type 3861 3880 3862 3863 3864 if 3881 if 3865 3882 test "x$enable_dependency_tracking" != xno \ 3866 3883 && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then … … 3940 3957 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ 3941 3958 >/dev/null 2>conftest.err && 3959 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && 3942 3960 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && 3943 3961 grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && … … 3969 3987 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type 3970 3988 3971 3972 3973 if 3989 if 3974 3990 test "x$enable_dependency_tracking" != xno \ 3975 3991 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then … … 3996 4012 { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 3997 4013 echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } 3998 3999 4000 if test $USE_MAINTAINER_MODE = yes; then 4014 if test $USE_MAINTAINER_MODE = yes; then 4001 4015 MAINTAINER_MODE_TRUE= 4002 4016 MAINTAINER_MODE_FALSE='#' … … 4889 4903 *-*-irix6*) 4890 4904 # Find out which ABI we are using. 4891 echo '#line 4 891"configure"' > conftest.$ac_ext4905 echo '#line 4905 "configure"' > conftest.$ac_ext 4892 4906 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4893 4907 (eval $ac_compile) 2>&5 … … 7143 7157 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7144 7158 -e 's:$: $lt_compiler_flag:'` 7145 (eval echo "\"\$as_me:71 45: $lt_compile\"" >&5)7159 (eval echo "\"\$as_me:7159: $lt_compile\"" >&5) 7146 7160 (eval "$lt_compile" 2>conftest.err) 7147 7161 ac_status=$? 7148 7162 cat conftest.err >&5 7149 echo "$as_me:71 49: \$? = $ac_status" >&57163 echo "$as_me:7163: \$? = $ac_status" >&5 7150 7164 if (exit $ac_status) && test -s "$ac_outfile"; then 7151 7165 # The compiler can only warn and ignore the option if not recognized … … 7411 7425 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7412 7426 -e 's:$: $lt_compiler_flag:'` 7413 (eval echo "\"\$as_me:74 13: $lt_compile\"" >&5)7427 (eval echo "\"\$as_me:7427: $lt_compile\"" >&5) 7414 7428 (eval "$lt_compile" 2>conftest.err) 7415 7429 ac_status=$? 7416 7430 cat conftest.err >&5 7417 echo "$as_me:74 17: \$? = $ac_status" >&57431 echo "$as_me:7431: \$? = $ac_status" >&5 7418 7432 if (exit $ac_status) && test -s "$ac_outfile"; then 7419 7433 # The compiler can only warn and ignore the option if not recognized … … 7515 7529 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7516 7530 -e 's:$: $lt_compiler_flag:'` 7517 (eval echo "\"\$as_me:75 17: $lt_compile\"" >&5)7531 (eval echo "\"\$as_me:7531: $lt_compile\"" >&5) 7518 7532 (eval "$lt_compile" 2>out/conftest.err) 7519 7533 ac_status=$? 7520 7534 cat out/conftest.err >&5 7521 echo "$as_me:75 21: \$? = $ac_status" >&57535 echo "$as_me:7535: \$? = $ac_status" >&5 7522 7536 if (exit $ac_status) && test -s out/conftest2.$ac_objext 7523 7537 then … … 9812 9826 lt_status=$lt_dlunknown 9813 9827 cat > conftest.$ac_ext <<EOF 9814 #line 98 14"configure"9828 #line 9828 "configure" 9815 9829 #include "confdefs.h" 9816 9830 … … 9912 9926 lt_status=$lt_dlunknown 9913 9927 cat > conftest.$ac_ext <<EOF 9914 #line 99 14"configure"9928 #line 9928 "configure" 9915 9929 #include "confdefs.h" 9916 9930 … … 12248 12262 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12249 12263 -e 's:$: $lt_compiler_flag:'` 12250 (eval echo "\"\$as_me:122 50: $lt_compile\"" >&5)12264 (eval echo "\"\$as_me:12264: $lt_compile\"" >&5) 12251 12265 (eval "$lt_compile" 2>conftest.err) 12252 12266 ac_status=$? 12253 12267 cat conftest.err >&5 12254 echo "$as_me:122 54: \$? = $ac_status" >&512268 echo "$as_me:12268: \$? = $ac_status" >&5 12255 12269 if (exit $ac_status) && test -s "$ac_outfile"; then 12256 12270 # The compiler can only warn and ignore the option if not recognized … … 12352 12366 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12353 12367 -e 's:$: $lt_compiler_flag:'` 12354 (eval echo "\"\$as_me:123 54: $lt_compile\"" >&5)12368 (eval echo "\"\$as_me:12368: $lt_compile\"" >&5) 12355 12369 (eval "$lt_compile" 2>out/conftest.err) 12356 12370 ac_status=$? 12357 12371 cat out/conftest.err >&5 12358 echo "$as_me:123 58: \$? = $ac_status" >&512372 echo "$as_me:12372: \$? = $ac_status" >&5 12359 12373 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12360 12374 then … … 13913 13927 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13914 13928 -e 's:$: $lt_compiler_flag:'` 13915 (eval echo "\"\$as_me:139 15: $lt_compile\"" >&5)13929 (eval echo "\"\$as_me:13929: $lt_compile\"" >&5) 13916 13930 (eval "$lt_compile" 2>conftest.err) 13917 13931 ac_status=$? 13918 13932 cat conftest.err >&5 13919 echo "$as_me:139 19: \$? = $ac_status" >&513933 echo "$as_me:13933: \$? = $ac_status" >&5 13920 13934 if (exit $ac_status) && test -s "$ac_outfile"; then 13921 13935 # The compiler can only warn and ignore the option if not recognized … … 14017 14031 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14018 14032 -e 's:$: $lt_compiler_flag:'` 14019 (eval echo "\"\$as_me:140 19: $lt_compile\"" >&5)14033 (eval echo "\"\$as_me:14033: $lt_compile\"" >&5) 14020 14034 (eval "$lt_compile" 2>out/conftest.err) 14021 14035 ac_status=$? 14022 14036 cat out/conftest.err >&5 14023 echo "$as_me:140 23: \$? = $ac_status" >&514037 echo "$as_me:14037: \$? = $ac_status" >&5 14024 14038 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14025 14039 then … … 16204 16218 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16205 16219 -e 's:$: $lt_compiler_flag:'` 16206 (eval echo "\"\$as_me:162 06: $lt_compile\"" >&5)16220 (eval echo "\"\$as_me:16220: $lt_compile\"" >&5) 16207 16221 (eval "$lt_compile" 2>conftest.err) 16208 16222 ac_status=$? 16209 16223 cat conftest.err >&5 16210 echo "$as_me:162 10: \$? = $ac_status" >&516224 echo "$as_me:16224: \$? = $ac_status" >&5 16211 16225 if (exit $ac_status) && test -s "$ac_outfile"; then 16212 16226 # The compiler can only warn and ignore the option if not recognized … … 16472 16486 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16473 16487 -e 's:$: $lt_compiler_flag:'` 16474 (eval echo "\"\$as_me:164 74: $lt_compile\"" >&5)16488 (eval echo "\"\$as_me:16488: $lt_compile\"" >&5) 16475 16489 (eval "$lt_compile" 2>conftest.err) 16476 16490 ac_status=$? 16477 16491 cat conftest.err >&5 16478 echo "$as_me:164 78: \$? = $ac_status" >&516492 echo "$as_me:16492: \$? = $ac_status" >&5 16479 16493 if (exit $ac_status) && test -s "$ac_outfile"; then 16480 16494 # The compiler can only warn and ignore the option if not recognized … … 16576 16590 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16577 16591 -e 's:$: $lt_compiler_flag:'` 16578 (eval echo "\"\$as_me:165 78: $lt_compile\"" >&5)16592 (eval echo "\"\$as_me:16592: $lt_compile\"" >&5) 16579 16593 (eval "$lt_compile" 2>out/conftest.err) 16580 16594 ac_status=$? 16581 16595 cat out/conftest.err >&5 16582 echo "$as_me:165 82: \$? = $ac_status" >&516596 echo "$as_me:16596: \$? = $ac_status" >&5 16583 16597 if (exit $ac_status) && test -s out/conftest2.$ac_objext 16584 16598 then … … 19878 19892 fi 19879 19893 fi 19880 19881 19882 if test x$enable_doc = xyes; then 19894 if test x$enable_doc = xyes; then 19883 19895 DOC_TRUE= 19884 19896 DOC_FALSE='#' … … 19899 19911 enable_dot=yes 19900 19912 fi 19901 19902 19903 if test x$enable_doc = xtrue; then 19913 if test x$enable_doc = xtrue; then 19904 19914 ENABLE_DOXYGEN_TRUE= 19905 19915 ENABLE_DOXYGEN_FALSE='#' … … 20908 20918 srcdir='$srcdir' 20909 20919 INSTALL='$INSTALL' 20920 MKDIR_P='$MKDIR_P' 20910 20921 _ACEOF 20911 20922 … … 21134 21145 INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim 21135 21146 INSTALL_DATA!$INSTALL_DATA$ac_delim 21147 am__isrc!$am__isrc$ac_delim 21136 21148 CYGPATH_W!$CYGPATH_W$ac_delim 21137 21149 PACKAGE!$PACKAGE$ac_delim … … 21175 21187 host_vendor!$host_vendor$ac_delim 21176 21188 host_os!$host_os$ac_delim 21177 GREP!$GREP$ac_delim21178 21189 _ACEOF 21179 21190 … … 21217 21228 for ac_last_try in false false false false false :; do 21218 21229 cat >conf$$subs.sed <<_ACEOF 21230 GREP!$GREP$ac_delim 21219 21231 EGREP!$EGREP$ac_delim 21220 21232 LN_S!$LN_S$ac_delim … … 21241 21253 _ACEOF 21242 21254 21243 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 2 2; then21255 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 23; then 21244 21256 break 21245 21257 elif $ac_last_try; then … … 21468 21480 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; 21469 21481 esac 21482 ac_MKDIR_P=$MKDIR_P 21483 case $MKDIR_P in 21484 [\\/$]* | ?:[\\/]* ) ;; 21485 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; 21486 esac 21470 21487 _ACEOF 21471 21488 … … 21521 21538 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t 21522 21539 s&@INSTALL@&$ac_INSTALL&;t t 21540 s&@MKDIR_P@&$ac_MKDIR_P&;t t 21523 21541 $ac_datarootdir_hack 21524 21542 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out … … 21685 21703 # Grep'ing the first line is not enough: some people post-process 21686 21704 # each Makefile.in and add a new line on top of each file to say so. 21687 # So let's grep whole file. 21688 if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then 21705 # Grep'ing the whole file is not good either: AIX grep has a line 21706 # limit of 2048, but all sed's we know have understand at least 4000. 21707 if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then 21689 21708 dirpart=`$as_dirname -- "$mf" || 21690 21709 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
