mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-12 14:53:28 +08:00
package/freerdp: move architecture-specific block
Move the arch-spcific block up, so it does not interfere with followup patches (mostly to ease review). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
53ba93a473
commit
d081d51bf9
@ -48,6 +48,22 @@ else
|
||||
FREERDP_CONF_OPTS += -DWITH_PULSEAUDIO=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
||||
FREERDP_CONF_OPTS += -DWITH_NEON=ON
|
||||
else
|
||||
FREERDP_CONF_OPTS += -DWITH_NEON=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_SSE2),y)
|
||||
FREERDP_CONF_OPTS += -DWITH_SSE2=ON
|
||||
else
|
||||
FREERDP_CONF_OPTS += -DWITH_SSE2=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_arm)$(BR2_armeb),y)
|
||||
FREERDP_CONF_OPTS += -DARM_FP_ABI=$(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXEXT),y)
|
||||
FREERDP_DEPENDENCIES += xlib_libXext
|
||||
FREERDP_CONF_OPTS += -DWITH_X11=ON
|
||||
@ -97,20 +113,4 @@ else
|
||||
FREERDP_CONF_OPTS += -DWITH_XV=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
||||
FREERDP_CONF_OPTS += -DWITH_NEON=ON
|
||||
else
|
||||
FREERDP_CONF_OPTS += -DWITH_NEON=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_SSE2),y)
|
||||
FREERDP_CONF_OPTS += -DWITH_SSE2=ON
|
||||
else
|
||||
FREERDP_CONF_OPTS += -DWITH_SSE2=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_arm)$(BR2_armeb),y)
|
||||
FREERDP_CONF_OPTS += -DARM_FP_ABI=$(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
|
Loading…
Reference in New Issue
Block a user