Merge pull request #567 from proski/no-nasm
Don't fail without working nasm if rfxcodec is not enabled
This commit is contained in:
commit
87c6272f5d
@ -125,6 +125,12 @@ AC_ARG_ENABLE(painter, AS_HELP_STRING([--enable-painter],
|
|||||||
[], [enable_painter=no])
|
[], [enable_painter=no])
|
||||||
AM_CONDITIONAL(XRDP_PAINTER, [test x$enable_painter = xyes])
|
AM_CONDITIONAL(XRDP_PAINTER, [test x$enable_painter = xyes])
|
||||||
|
|
||||||
|
# Don't fail without working nasm if rfxcodec is not enabled
|
||||||
|
if test "x$enable_rfxcodec" != xyes; then
|
||||||
|
with_simd=no
|
||||||
|
export with_simd
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if -ldl is needed to use dlopen()
|
# Check if -ldl is needed to use dlopen()
|
||||||
DLOPEN_LIBS=
|
DLOPEN_LIBS=
|
||||||
AC_CHECK_FUNC(dlopen, [],
|
AC_CHECK_FUNC(dlopen, [],
|
||||||
|
Loading…
Reference in New Issue
Block a user