diff options
Diffstat (limited to 'winsup/lsaauth')
-rw-r--r-- | winsup/lsaauth/ChangeLog | 5 | ||||
-rwxr-xr-x | winsup/lsaauth/configure | 10 | ||||
-rw-r--r-- | winsup/lsaauth/configure.ac | 6 |
3 files changed, 11 insertions, 10 deletions
diff --git a/winsup/lsaauth/ChangeLog b/winsup/lsaauth/ChangeLog index 1569c75..020e972 100644 --- a/winsup/lsaauth/ChangeLog +++ b/winsup/lsaauth/ChangeLog @@ -1,5 +1,10 @@ 2013-12-03 Christopher Faylor <me.cygwin2013@cgf.cx> + * configure.ac: Back out stupid change. + * configure: Regenerate. + +2013-12-03 Christopher Faylor <me.cygwin2013@cgf.cx> + * configure.ac: Don't require 64-bit compiler for 32-bit builds. * configure: Regenerate. diff --git a/winsup/lsaauth/configure b/winsup/lsaauth/configure index 53a9a79..6073a2d 100755 --- a/winsup/lsaauth/configure +++ b/winsup/lsaauth/configure @@ -2901,8 +2901,9 @@ done test -z "$MINGW32_CC" && as_fn_error $? "no acceptable mingw32 cc found in \$PATH" "$LINENO" 5 ;; -x86_64) - for ac_prog in x86_64-w64-mingw32-gcc +esac + +for ac_prog in x86_64-w64-mingw32-gcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -2944,10 +2945,7 @@ fi test -n "$MINGW64_CC" && break done - test -z "$MINGW64_CC" && as_fn_error $? "no acceptable mingw64 cc found in \$PATH" "$LINENO" 5 - ;; -esac - +test -z "$MINGW64_CC" && as_fn_error $? "no acceptable mingw64 cc found in \$PATH" "$LINENO" 5 test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" diff --git a/winsup/lsaauth/configure.ac b/winsup/lsaauth/configure.ac index f38097d..fe2e30b 100644 --- a/winsup/lsaauth/configure.ac +++ b/winsup/lsaauth/configure.ac @@ -30,12 +30,10 @@ i?86) AC_CHECK_PROGS(MINGW32_CC, i686-w64-mingw32-gcc) test -z "$MINGW32_CC" && AC_MSG_ERROR([no acceptable mingw32 cc found in \$PATH]) ;; -x86_64) - AC_CHECK_PROGS(MINGW64_CC, x86_64-w64-mingw32-gcc) - test -z "$MINGW64_CC" && AC_MSG_ERROR([no acceptable mingw64 cc found in \$PATH]) - ;; esac +AC_CHECK_PROGS(MINGW64_CC, x86_64-w64-mingw32-gcc) +test -z "$MINGW64_CC" && AC_MSG_ERROR([no acceptable mingw64 cc found in \$PATH]) AC_ARG_PROGRAM |