relocate packages on recipes-base/recipes-enigma2/recipes-wlan.
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-base / samba / samba-3.0.37 / kernel-oplocks.patch
diff --git a/meta-openvuplus/recipes-base/samba/samba-3.0.37/kernel-oplocks.patch b/meta-openvuplus/recipes-base/samba/samba-3.0.37/kernel-oplocks.patch
deleted file mode 100644 (file)
index bee0f1d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-Linux oplock support is conditional on HAVE_KERNEL_OPLOCKS_LINUX,
-not plain old LINUX.
-
-http://websvn.samba.org/cgi-bin/viewcvs.cgi?rev=23962&view=rev
---- source/modules/vfs_default.c.orig  2010-09-06 17:37:48.256826182 +0200
-+++ source/modules/vfs_default.c       2010-09-06 17:38:25.300843377 +0200
-@@ -813,10 +813,11 @@
-       START_PROFILE(syscall_linux_setlease);
--#ifdef LINUX
-+#ifdef HAVE_KERNEL_OPLOCKS_LINUX
-       /* first set the signal handler */
--      if(linux_set_lease_sighandler(fd) == -1)
-+      if(linux_set_lease_sighandler(fd) == -1) {
-               return -1;
-+      }
-       result = linux_setlease(fd, leasetype);
- #else