bad657ddfc
openal can uses __atomic_*() intrinsics when available, or fall-back on __sync_*() built-ins. This commit adjusts the package to take into account for those dependencies, and makes sure we link against libatomic when gcc >= 4.8 so that the __atomic_*() intrinsics can be used on all architectures. Fixes: http://autobuild.buildroot.org/results/314fb8da3ca87984e9240d67ff233e2f999ae89e/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# openal
|
|
#
|
|
################################################################################
|
|
|
|
OPENAL_VERSION = 1.17.2
|
|
OPENAL_SOURCE = openal-soft-$(OPENAL_VERSION).tar.bz2
|
|
OPENAL_SITE = http://kcat.strangesoft.net/openal-releases
|
|
OPENAL_LICENSE = LGPLv2+
|
|
OPENAL_LICENSE_FILES = COPYING
|
|
OPENAL_INSTALL_STAGING = YES
|
|
|
|
# We don't need the utilities, Distros don't ship them either
|
|
OPENAL_CONF_OPTS += -DALSOFT_UTILS=OFF
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_4_8),y)
|
|
OPENAL_CONF_OPTS += -DEXTRA_LIBS=atomic
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
|
OPENAL_DEPENDENCIES += alsa-lib
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_ALSA=ON
|
|
else
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_ALSA=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JACK2),y)
|
|
OPENAL_DEPENDENCIES += jack2
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_JACK=ON
|
|
else
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_JACK=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PORTAUDIO),y)
|
|
OPENAL_DEPENDENCIES += portaudio
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PORTAUDIO=ON
|
|
else
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PORTAUDIO=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PULSEAUDIO),y)
|
|
OPENAL_DEPENDENCIES += pulseaudio
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PULSEAUDIO=ON
|
|
else
|
|
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PULSEAUDIO=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
OPENAL_CONF_OPTS += -DLIBTYPE=STATIC
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|