Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-09-20 18:46:11 +0300
committerMarti Maria <marti.maria@littlecms.com>2022-09-20 18:46:11 +0300
commit430f9166ed15f991c3f92ba592e2cdf1d1429f64 (patch)
treeaae8494ff12c4c60219740a376496efe42124daf
parent7ec90142c2cf63e99fb6d9f0993ddf6a30addf12 (diff)
parent55068d311d0a8ab6fe908d6f72ddd2132e34bb14 (diff)
Merge branch 'master' of https://github.com/mm2/Little-CMS
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 26c2b2d..5dbc03b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -212,7 +212,7 @@ AC_LANG_PUSH([C])
AC_MSG_CHECKING([whether compiler supports SSE2])
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
#include <emmintrin.h>
- main() { __m128i n = _mm_set1_epi8(42); }]])],
+ int main() { __m128i n = _mm_set1_epi8(42); }]])],
[ac_compiler_supports_sse2=yes], [ac_compiler_supports_sse2=no])
AC_MSG_RESULT([$ac_compiler_supports_sse2])
AS_IF([test "x$ac_compiler_supports_sse2" != "xyes"],