Ver código fonte

mplayer: switch it to samba4

samba(3) has been deprecated for quite some time so switch mplayer to
use samba4 if available.
It needs a little extra tweak to pick up the proper cflags since the odd
configure script doesn't do it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias 9 anos atrás
pai
commit
b8931e7159
1 arquivos alterados com 4 adições e 2 exclusões
  1. 4 2
      package/mplayer/mplayer.mk

+ 4 - 2
package/mplayer/mplayer.mk

@@ -98,9 +98,11 @@ else
 MPLAYER_CONF_OPTS += --disable-termcap
 MPLAYER_CONF_OPTS += --disable-termcap
 endif
 endif
 
 
-ifeq ($(BR2_PACKAGE_SAMBA_SMBCLIENT),y)
+# mplayer doesn't pick up libsmbclient cflags
+ifeq ($(BR2_PACKAGE_SAMBA4),y)
+MPLAYER_CFLAGS += `$(PKG_CONFIG_HOST_BINARY) --cflags smbclient`
 MPLAYER_CONF_OPTS += --enable-smb
 MPLAYER_CONF_OPTS += --enable-smb
-MPLAYER_DEPENDENCIES += samba
+MPLAYER_DEPENDENCIES += samba4
 else
 else
 MPLAYER_CONF_OPTS += --disable-smb
 MPLAYER_CONF_OPTS += --disable-smb
 endif
 endif