diff mbox series

[OpenWrt-Devel] samba36: Disable external libtdb and libtevent

Message ID 20180701000252.24414-1-rosenp@gmail.com
State Accepted
Delegated to: John Crispin
Headers show
Series [OpenWrt-Devel] samba36: Disable external libtdb and libtevent | expand

Commit Message

Rosen Penev July 1, 2018, 12:02 a.m. UTC
This was causing issues recently as samba36 is not API compatible with the
libtdb in the packages repo. It shouldn't be using it anyway. Nor tevent.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
 package/network/services/samba36/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/package/network/services/samba36/Makefile b/package/network/services/samba36/Makefile
index 39bfcc6c4f..75705d0b37 100644
--- a/package/network/services/samba36/Makefile
+++ b/package/network/services/samba36/Makefile
@@ -9,7 +9,7 @@  include $(TOPDIR)/rules.mk
 
 PKG_NAME:=samba
 PKG_VERSION:=3.6.25
-PKG_RELEASE:=10
+PKG_RELEASE:=11
 
 PKG_SOURCE_URL:=https://download.samba.org/pub/samba \
 		https://download.samba.org/pub/samba/stable
@@ -108,6 +108,8 @@  CONFIGURE_ARGS += \
 	--disable-avahi \
 	--disable-cups \
 	--disable-external-libtalloc \
+	--disable-external-libtdb \
+	--disable-external-libtevent \
 	--disable-pie \
 	--disable-relro \
 	--disable-static \