diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-18 20:22:57 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-20 23:21:48 +0200 |
commit | b824253913c0360e1b8ab9be60d8041b59337b3e (patch) | |
tree | 298b6979df7f101894b22f291458b7083ca180b4 /package/vlc | |
parent | 13f7959e8d99468ab6718f037210c972120ea775 (diff) | |
download | buildroot-b824253913c0360e1b8ab9be60d8041b59337b3e.tar.gz buildroot-b824253913c0360e1b8ab9be60d8041b59337b3e.zip |
package/vlc: use pkgconf to find live555 libraries
Some live555 libraries were missing in LIVE555_LIBS.
Instead of maintaining the list of live555 library files we use pkgconf
instead.
Fixes
http://autobuild.buildroot.net/results/744/7445bdc2fdcb28aa7f58c0249653329414e447df/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/vlc')
-rw-r--r-- | package/vlc/vlc.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index ed682e60b3..d4be8b0bf1 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -427,14 +427,6 @@ endif ifeq ($(BR2_PACKAGE_LIVE555),y) VLC_CONF_OPTS += --enable-live555 VLC_DEPENDENCIES += live555 -VLC_CONF_ENV += \ - LIVE555_CFLAGS="\ - -I$(STAGING_DIR)/usr/include/BasicUsageEnvironment \ - -I$(STAGING_DIR)/usr/include/groupsock \ - -I$(STAGING_DIR)/usr/include/liveMedia \ - -I$(STAGING_DIR)/usr/include/UsageEnvironment \ - " \ - LIVE555_LIBS="-L$(STAGING_DIR)/usr/lib -lliveMedia" else VLC_CONF_OPTS += --disable-live555 endif |