diff options
Diffstat (limited to 'package/samba/Makefile')
| -rw-r--r-- | package/samba/Makefile | 32 | 
1 files changed, 24 insertions, 8 deletions
| diff --git a/package/samba/Makefile b/package/samba/Makefile index 82d4a5f87..63085b06a 100644 --- a/package/samba/Makefile +++ b/package/samba/Makefile @@ -4,15 +4,14 @@  include $(ADK_TOPDIR)/rules.mk  PKG_NAME:=		samba -PKG_VERSION:=		4.6.9 -PKG_RELEASE:=		1 -PKG_HASH:=		c31db4aad82f0b9588ef6c4b4dab5dce3fa1787bd298e62d953c2628bb1af21a +PKG_VERSION:=		4.19.4 +PKG_RELEASE:=		2 +PKG_HASH:=		4026d93b866db198c8ca1685b0f5d52793f65c6e63cb364163af661fdff0968c  PKG_DESCR:=		file and print server  PKG_SECTION:=		net/fs  PKG_DEPENDS:=		libuuid libpopt libgnutls libtirpc -PKG_DEPENDS+=		libtalloc -PKG_BUILDDEP:=		util-linux popt python2 gnutls talloc -PKG_BUILDDEP+=		heimdal-host python2-host libtirpc +PKG_DEPENDS+=		libtalloc libkrb5 +PKG_BUILDDEP:=		util-linux talloc p5-parse-yapp-host gnutls krb5  PKG_NEEDS:=		threads intl  PKG_URL:=		http://www.samba.org/  PKG_SITES:=		http://samba.org/samba/ftp/stable/ @@ -29,10 +28,12 @@ CONFIGURE_ARGS+=	--enable-fhs \  			--prefix=/usr \  			--sysconfdir=/etc \  			--localstatedir=/var \ -			--with-privatedir=/etc/samba \ +			--with-privatedir=/var/lib/samba \  			--cross-compile \  			--cross-answers=$(WRKSRC)/cache.txt \  			--hostcc=gcc \ +			--with-system-mitkrb5 \ +			--without-libunwind \  			--without-pie \  			--without-gettext \  			--without-relro \ @@ -44,20 +45,35 @@ CONFIGURE_ARGS+=	--enable-fhs \  			--without-ads \  			--without-ldap \  			--without-acl-support \ +			--without-ad-dc \ +			--without-json \ +			--without-libarchive \ +			--without-iconv \  			--disable-glusterfs \  			--disable-iprint \  			--disable-cups \  			--disable-avahi \  			--disable-rpath \ +			--disable-python \  			--bundled-libraries='com_err,!asn1_compile,!compile_et' \ +			--with-shared-modules=!vfs_snapper \  			--disable-rpath-install  CONFIGURE_ENV+=		PYTHON_CONFIG="$(STAGING_TARGET_DIR)/usr/bin/python-config" \  			python_LDFLAGS="" \ -			python_LIBDIR="" +			python_LIBDIR="" \ +			PERL="$(STAGING_HOST_DIR)/usr/bin/perl-host"  pre-configure:  	$(CP) ./files/cache.txt $(WRKSRC)  	echo 'Checking uname machine type: "$(ADK_TARGET_ARCH)"' >>$(WRKSRC)/cache.txt +ifneq ($(ADK_LINUX_64),) +	echo 'Checking for a 64-bit host to support lmdb: OK' >>$(WRKSRC)/cache.txt +	echo 'Checking for large file support without additional flags: OK' >>$(WRKSRC)/cache.txt +else +	echo 'Checking for a 64-bit host to support lmdb: NO' >>$(WRKSRC)/cache.txt +	echo 'Checking for large file support without additional flags: NO' >>$(WRKSRC)/cache.txt +	echo 'Checking for -D_FILE_OFFSET_BITS=64: OK' >>$(WRKSRC)/cache.txt +endif  samba-install:  	$(INSTALL_DIR) $(IDIR_SAMBA)/etc/samba | 
