diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-10-25 19:39:09 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-10-25 19:39:09 +0200 |
commit | e3e90b119bf04d8db44ee5aada6129654eab8440 (patch) | |
tree | c940b0236e84b463c264874837c1e58f67ad3711 /configure.ac | |
parent | f2c9ee62541384a17990e8280dba52832593b5d2 (diff) | |
download | gnutls-e3e90b119bf04d8db44ee5aada6129654eab8440.tar.gz |
Added COFF versions of assembly files.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d558994285..c881664b75 100644 --- a/configure.ac +++ b/configure.ac @@ -68,6 +68,16 @@ fi AM_CONDITIONAL(ENABLE_CXX, test "$use_cxx" != "no") AM_CONDITIONAL(WANT_TEST_SUITE, [test -f tests/suite/mini-eagain2.c]) +dnl Detect windows build +case "$host" in + *-*-mingw32*) + have_win32=yes + ;; + *) + ;; +esac + +AM_CONDITIONAL(WIN32, test "$have_win32" = yes) dnl Hardware Acceleration AC_ARG_ENABLE(hardware-acceleration, @@ -75,6 +85,7 @@ AC_ARG_ENABLE(hardware-acceleration, use_accel=$enableval, use_accel=yes) hw_accel=none + if test "$use_accel" != "no"; then case $host_cpu in i?86 | x86_64 | amd64) |