Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 507784 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac.orig (-2 / +12 lines)
Lines 233-240 Link Here
233
dnl
233
dnl
234
dnl Optional flags, check for compiler support
234
dnl Optional flags, check for compiler support
235
dnl
235
dnl
236
AX_CHECK_COMPILE_FLAG([-msse4.1], [SSE41_SUPPORTED=1], [SSE41_SUPPORTED=0])
236
AC_ARG_ENABLE([sse4_1],
237
AM_CONDITIONAL([SSE41_SUPPORTED], [test x$SSE41_SUPPORTED = x1])
237
    [AS_HELP_STRING([--enable-sse4_1],
238
        [enable SSE4.1 optimized code @<:@default=auto@:>@])],
239
    [enable_sse41="$enableval"],
240
    [enable_sse41=auto]
241
)
242
if test "x$enable_sse41" = xyes; then
243
    AX_CHECK_COMPILE_FLAG([-msse4.1], [SSE41_SUPPORTED=1], [SSE41_SUPPORTED=0])
244
    AM_CONDITIONAL([SSE41_SUPPORTED], [test x$SSE41_SUPPORTED = x1])
245
else
246
    AM_CONDITIONAL([SSE41_SUPPORTED], [false])
247
fi
238
248
239
dnl
249
dnl
240
dnl Hacks to enable 32 or 64 bit build
250
dnl Hacks to enable 32 or 64 bit build

Return to bug 507784