43aa2fcc54
This will fix the build with gcc 10 due to the library codebase being
switched to C++11.
It should be noted that bumping the C++ requirement from C++11 to C++14
is not needed for this bump as this change is not yet in this version:
f6a0b004e0
Also update indentation in hash file (two spaces)
Fixes:
- http://autobuild.buildroot.org/results/4546ce4f176164462b0e73c387bc45c9771f98f7
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# openal
|
|
#
|
|
################################################################################
|
|
|
|
OPENAL_VERSION = 1.20.1
|
|
OPENAL_SITE = $(call github,kcat,openal-soft,openal-soft-$(OPENAL_VERSION))
|
|
OPENAL_LICENSE = LGPL-2.0+
|
|
OPENAL_LICENSE_FILES = COPYING
|
|
OPENAL_INSTALL_STAGING = YES
|
|
|
|
# We don't need examples, tests and utilities, Distros don't ship them either
|
|
OPENAL_CONF_OPTS += -DALSOFT_UTILS=OFF -DALSOFT_EXAMPLES=OFF -DALSOFT_TESTS=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))
|