From 8e1e3e58fb326ed21506ff04f4950578fa066287 Mon Sep 17 00:00:00 2001 From: Hans-Christian Egtvedt Date: Tue, 13 Jan 2009 07:29:35 +0000 Subject: samba: bump version to 3.2.7 and refresh patches against this version This patch bumps the Samba version to 3.2.7 and refreshes the patches. It also fixes two minor issues by introducing two new small patches. --- package/samba/samba-add-check-for-__use_bsd.patch | 12 +++--- .../samba/samba-do-not-check-glibc-version.patch | 4 +- package/samba/samba-fix-client-mtab.patch | 11 ++++++ package/samba/samba-fix-mount.cifs.patch | 40 ++++++++++++++++++++ package/samba/samba-getgrouplist.patch | 2 +- package/samba/samba-use-unsigned-enums.patch | 43 ---------------------- package/samba/samba.mk | 2 +- 7 files changed, 61 insertions(+), 53 deletions(-) create mode 100644 package/samba/samba-fix-client-mtab.patch create mode 100644 package/samba/samba-fix-mount.cifs.patch delete mode 100644 package/samba/samba-use-unsigned-enums.patch (limited to 'package/samba') diff --git a/package/samba/samba-add-check-for-__use_bsd.patch b/package/samba/samba-add-check-for-__use_bsd.patch index 9ed1052a1..df84a713e 100644 --- a/package/samba/samba-add-check-for-__use_bsd.patch +++ b/package/samba/samba-add-check-for-__use_bsd.patch @@ -1,6 +1,6 @@ --- a/source/client/mount.cifs.c +++ b/source/client/mount.cifs.c -@@ -91,6 +91,7 @@ char * prefixpath = NULL; +@@ -96,6 +96,7 @@ char * prefixpath = NULL; /* glibc doesn't have strlcpy, strlcat. Ensure we do. JRA. We * don't link to libreplace so need them here. */ @@ -8,11 +8,11 @@ /* like strncpy but does not 0 fill the buffer and always null * terminates. bufsize is the size of the destination buffer */ -@@ -126,6 +127,7 @@ static size_t strlcat(char *d, const cha - } - return ret; +@@ -177,6 +178,7 @@ static void mount_cifs_usage(void) + SAFE_FREE(mountpassword); + exit(EX_USAGE); } +#endif /* __GLIBC__ && !(__UCLIBC__ && __USE_BSD) */ - /* BB finish BB - + /* caller frees username if necessary */ + static char * getusername(void) { diff --git a/package/samba/samba-do-not-check-glibc-version.patch b/package/samba/samba-do-not-check-glibc-version.patch index 9049cd70a..ddb116bca 100644 --- a/package/samba/samba-do-not-check-glibc-version.patch +++ b/package/samba/samba-do-not-check-glibc-version.patch @@ -1,6 +1,6 @@ --- a/source/configure +++ b/source/configure -@@ -40770,85 +40770,8 @@ fi +@@ -41016,85 +41016,8 @@ fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext @@ -88,7 +88,7 @@ for ac_func in getgrouplist do -@@ -40943,8 +40866,6 @@ _ACEOF +@@ -41189,8 +41112,6 @@ _ACEOF fi done diff --git a/package/samba/samba-fix-client-mtab.patch b/package/samba/samba-fix-client-mtab.patch new file mode 100644 index 000000000..21e71586b --- /dev/null +++ b/package/samba/samba-fix-client-mtab.patch @@ -0,0 +1,11 @@ +--- a/source/client/mtab.c ++++ b/source/client/mtab.c +@@ -31,6 +31,8 @@ + #include + #include + #include ++#include ++#include + #include + #include + #include diff --git a/package/samba/samba-fix-mount.cifs.patch b/package/samba/samba-fix-mount.cifs.patch new file mode 100644 index 000000000..dcb30ebec --- /dev/null +++ b/package/samba/samba-fix-mount.cifs.patch @@ -0,0 +1,40 @@ +--- a/source/client/mount.cifs.c ++++ b/source/client/mount.cifs.c +@@ -16,6 +16,10 @@ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + ++#ifdef _SAMBA_BUILD_ ++#include "include/config.h" ++#endif ++ + #ifndef _GNU_SOURCE + #define _GNU_SOURCE + #endif +@@ -57,10 +61,6 @@ + #endif /* _SAMBA_BUILD_ */ + #endif /* MOUNT_CIFS_VENDOR_SUFFIX */ + +-#ifdef _SAMBA_BUILD_ +-#include "include/config.h" +-#endif +- + #ifndef MS_MOVE + #define MS_MOVE 8192 + #endif +@@ -138,6 +138,7 @@ static size_t strlcat(char *d, const cha + return ret; + } + #endif ++#endif /* __GLIBC__ && !(__UCLIBC__ && __USE_BSD) */ + + /* BB finish BB + +@@ -178,7 +179,6 @@ static void mount_cifs_usage(void) + SAFE_FREE(mountpassword); + exit(EX_USAGE); + } +-#endif /* __GLIBC__ && !(__UCLIBC__ && __USE_BSD) */ + + /* caller frees username if necessary */ + static char * getusername(void) { diff --git a/package/samba/samba-getgrouplist.patch b/package/samba/samba-getgrouplist.patch index b09bb75eb..8c1e3afca 100644 --- a/package/samba/samba-getgrouplist.patch +++ b/package/samba/samba-getgrouplist.patch @@ -1,6 +1,6 @@ --- a/source/configure.in +++ b/source/configure.in -@@ -1182,38 +1182,6 @@ AC_TRY_COMPILE([ +@@ -1199,38 +1199,6 @@ AC_TRY_COMPILE([ AC_DEFINE(HAVE_PRCTL, 1, [Whether prctl is available]),[]) # diff --git a/package/samba/samba-use-unsigned-enums.patch b/package/samba/samba-use-unsigned-enums.patch deleted file mode 100644 index 228680ea1..000000000 --- a/package/samba/samba-use-unsigned-enums.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -ur samba-3.0.25a/source/configure.in samba-3.0.25a-patched/source/configure.in ---- samba-3.0.25a/source/configure.in 2007-06-19 11:40:49.000000000 -0500 -+++ samba-3.0.25a-patched/source/configure.in 2007-06-19 11:45:04.000000000 -0500 -@@ -511,37 +511,8 @@ - AC_DEFINE(HAVE_VOLATILE, 1, [Whether the C compiler understands volatile]) - fi - --############################################ --# check if the compiler can handle negative enum values --# and don't truncate the values to INT_MAX --# a runtime test is needed here --AC_SUBST(PIDL_ARGS) --AC_CACHE_CHECK([that the C compiler understands negative enum values],SMB_BUILD_CC_NEGATIVE_ENUM_VALUES, [ -- AC_TRY_RUN( --[ -- #include -- enum negative_values { NEGATIVE_VALUE = 0xFFFFFFFF }; -- int main(void) { -- enum negative_values v1 = NEGATIVE_VALUE; -- unsigned v2 = NEGATIVE_VALUE; -- -- if (v1 != 0xFFFFFFFF) { -- printf("%u != 0xFFFFFFFF\n", v1); -- return 1; -- } -- if (v2 != 0xFFFFFFFF) { -- printf("%u != 0xFFFFFFFF\n", v2); -- return 1; -- } -- -- return 0; -- } --], -- SMB_BUILD_CC_NEGATIVE_ENUM_VALUES=yes,SMB_BUILD_CC_NEGATIVE_ENUM_VALUES=no)]) --if test x"$SMB_BUILD_CC_NEGATIVE_ENUM_VALUES" != x"yes"; then -- AC_MSG_WARN([using --unit-enums for pidl]) -- PIDL_ARGS="$PIDL_ARGS --uint-enums" --fi -+# Just hard code this for cross compile cases -+PIDL_ARGS="$PIDL_ARGS --uint-enums" - - dnl Figure out the flags to support named structure initializers - diff --git a/package/samba/samba.mk b/package/samba/samba.mk index ad0bec9d9..234bf2beb 100644 --- a/package/samba/samba.mk +++ b/package/samba/samba.mk @@ -3,7 +3,7 @@ # samba # ############################################################# -SAMBA_VERSION:=3.2.5 +SAMBA_VERSION:=3.2.7 SAMBA_SOURCE:=samba-$(SAMBA_VERSION).tar.gz SAMBA_SITE:=http://samba.org/samba/ftp/stable/ SAMBA_DIR:=$(BUILD_DIR)/samba-$(SAMBA_VERSION)/source -- cgit v1.2.3