diff options
author | Samuel Martin <s.martin49@gmail.com> | 2014-02-08 15:34:52 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-08 22:04:16 +0100 |
commit | 833bc901d633a0cefec51efd32b7967a0877df8a (patch) | |
tree | afc410d3a44d92d0e329a94c42f5ee8085b33d78 | |
parent | efa9a3f25e9db265a95d51b33a49d4556d45e713 (diff) | |
download | buildroot-833bc901d633a0cefec51efd32b7967a0877df8a.tar.gz buildroot-833bc901d633a0cefec51efd32b7967a0877df8a.zip |
vlc: fix live555 support
vlc looks for a *.pc file which is not provided by the live555 package.
So, instead, we explicitly set the LIVE555_CFLAGS and LIVE555_LIBS
variables.
Fixes:
http://autobuild.buildroot.org/results/b59/b5972ecad4e5004dc23a2366066ce45346994f58/build-end.log
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/vlc/vlc.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index 10271516ac..feee82db98 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -194,6 +194,15 @@ endif ifeq ($(BR2_PACKAGE_LIVE555),y) VLC_CONF_OPT += --enable-live555 VLC_DEPENDENCIES += live555 +VLC_CONF_ENV = \ + LIVE555_CFLAGS="\ + -I$(STAGING_DIR)/usr/include/live \ + -I$(STAGING_DIR)/usr/include/live/BasicUsageEnvironment \ + -I$(STAGING_DIR)/usr/include/live/groupsock \ + -I$(STAGING_DIR)/usr/include/live/liveMedia \ + -I$(STAGING_DIR)/usr/include/live/UsageEnvironment \ + " \ + LIVE555_LIBS="-L$(STAGING_DIR)/usr/lib -lliveMedia" else VLC_CONF_OPT += --disable-live555 endif |