diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-09-07 14:25:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-09-07 14:25:34 +0000 |
commit | 7ccda80cec5fd4b4511e0ff4b470767559afc294 (patch) | |
tree | 04608cb4476067f1457aedf248081b49e090869d /usr.bin | |
parent | 5df31e04732b430cf1ecab2fc6da258b7284c547 (diff) |
fix a configure bug introduced in the last commit
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/sudo/configure | 19 | ||||
-rw-r--r-- | usr.bin/sudo/configure.in | 3 |
2 files changed, 10 insertions, 12 deletions
diff --git a/usr.bin/sudo/configure b/usr.bin/sudo/configure index ea34396df78..6dc4d81647a 100644 --- a/usr.bin/sudo/configure +++ b/usr.bin/sudo/configure @@ -2110,7 +2110,6 @@ AUTH_EXCL_DEF= AUTH_DEF=passwd CHECKSHADOW=true -CHECKSIA= shadow_defs= shadow_funcs= shadow_libs= @@ -6083,7 +6082,7 @@ ia64-*-hpux*) ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 6086 "configure"' > conftest.$ac_ext + echo '#line 6085 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -7627,11 +7626,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7630: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7629: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7634: \$? = $ac_status" >&5 + echo "$as_me:7633: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7917,11 +7916,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7920: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7919: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7924: \$? = $ac_status" >&5 + echo "$as_me:7923: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -8021,11 +8020,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8024: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8023: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8028: \$? = $ac_status" >&5 + echo "$as_me:8027: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -10366,7 +10365,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 10369 "configure" +#line 10368 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10466,7 +10465,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 10469 "configure" +#line 10468 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/usr.bin/sudo/configure.in b/usr.bin/sudo/configure.in index 9c6fd38526e..4d430c3e6a3 100644 --- a/usr.bin/sudo/configure.in +++ b/usr.bin/sudo/configure.in @@ -1,6 +1,6 @@ dnl dnl Process this file with GNU autoconf to produce a configure script. -dnl $Sudo: configure.in,v 1.413.2.22 2007/09/06 11:18:04 millert Exp $ +dnl $Sudo: configure.in,v 1.413.2.23 2007/09/06 16:19:57 millert Exp $ dnl dnl Copyright (c) 1994-1996,1998-2007 Todd C. Miller <Todd.Miller@courtesan.com> dnl @@ -118,7 +118,6 @@ dnl dnl Other vaiables dnl CHECKSHADOW=true -CHECKSIA= shadow_defs= shadow_funcs= shadow_libs= |