mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
package/vlc: fix build with live555 and without openssl
Pass -DNO_OPENSSL to avoid a build failure with live555 but without
openssl
Fixes:
- http://autobuild.buildroot.org/results/70ca93aa5c9488a4657c7bcafa40bfb2e974a5b3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit e0fb418f78)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
6d0bfdf741
commit
8459b5d772
@@ -440,6 +440,9 @@ endif
|
|||||||
ifeq ($(BR2_PACKAGE_LIVE555),y)
|
ifeq ($(BR2_PACKAGE_LIVE555),y)
|
||||||
VLC_CONF_OPTS += --enable-live555
|
VLC_CONF_OPTS += --enable-live555
|
||||||
VLC_DEPENDENCIES += live555
|
VLC_DEPENDENCIES += live555
|
||||||
|
ifneq ($(BR2_PACKAGE_OPENSSL),y)
|
||||||
|
VLC_CONF_ENV += CXXFLAGS="$(TARGET_CXXFLAGS) -DNO_OPENSSL"
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
VLC_CONF_OPTS += --disable-live555
|
VLC_CONF_OPTS += --disable-live555
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user