Browse Source

update to latest stable version

Waldemar Brodkorb 14 years ago
parent
commit
f95254a21d

+ 2 - 2
package/samba/Makefile

@@ -4,9 +4,9 @@
 include ${TOPDIR}/rules.mk
 include ${TOPDIR}/rules.mk
 
 
 PKG_NAME:=		samba
 PKG_NAME:=		samba
-PKG_VERSION:=		3.5.3
+PKG_VERSION:=		3.6.0
 PKG_RELEASE:=		1
 PKG_RELEASE:=		1
-PKG_MD5SUM:=		7c8d2a34b649380d5df838c3e030dbec
+PKG_MD5SUM:=		e297e0ea7923c7de8d7c1d8fd0ec0a05
 PKG_DESCR:=		NetBIOS/SMB file and print server
 PKG_DESCR:=		NetBIOS/SMB file and print server
 PKG_SECTION:=		net/fs
 PKG_SECTION:=		net/fs
 PKG_BUILDDEP:=		gettext
 PKG_BUILDDEP:=		gettext

+ 0 - 19
package/samba/patches/patch-client_mount_cifs_c

@@ -1,19 +0,0 @@
---- samba-3.5.3.orig/client/mount.cifs.c	2010-05-17 13:51:23.000000000 +0200
-+++ samba-3.5.3/client/mount.cifs.c	2010-06-11 12:39:34.501613636 +0200
-@@ -39,7 +39,6 @@
- #include <mntent.h>
- #include <fcntl.h>
- #include <limits.h>
--#include <fstab.h>
- #include "mount.h"
- 
- #define MOUNT_CIFS_VERSION_MAJOR "1"
-@@ -112,7 +111,7 @@
-  * The legacy behavior is now disabled by default. To reenable it, set the
-  * following #define to true.
-  */
--#define CIFS_LEGACY_SETUID_CHECK 0
-+#define CIFS_LEGACY_SETUID_CHECK 1
- 
- /*
-  * When an unprivileged user runs a setuid mount.cifs, we set certain mount

+ 0 - 20
package/samba/patches/patch-source3_registry_reg_perfcount_c

@@ -1,20 +0,0 @@
---- samba-3.5.3.orig/source3/registry/reg_perfcount.c	2010-05-17 13:51:23.000000000 +0200
-+++ samba-3.5.3/source3/registry/reg_perfcount.c	2010-06-11 12:21:42.911613348 +0200
-@@ -618,14 +618,14 @@ static bool _reg_perfcount_add_counter(s
- 	obj = NULL;
- 	memset(buf, 0, PERFCOUNT_MAX_LEN);
- 	memcpy(buf, data.dptr, data.dsize);
--	begin = index(buf, '[');
--	end = index(buf, ']');
-+	begin = strchr(buf, '[');
-+	end = strchr(buf, ']');
- 	if(begin == NULL || end == NULL)
- 		return False;
- 	start = begin+1;
- 
- 	while(start < end) {
--		stop = index(start, ',');
-+		stop = strchr(start, ',');
- 		if(stop == NULL)
- 			stop = end;
- 		*stop = '\0';