summaryrefslogtreecommitdiff
path: root/net/samba3/files/patch-python_setup.py
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2007-05-24 07:54:25 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2007-05-24 07:54:25 +0000
commitcbf318b29dde8496a5d724c78e64cb5163b9a558 (patch)
treec7aec4678ade46e29d9008a8e73bec542b66fba8 /net/samba3/files/patch-python_setup.py
parentMake fetchable by update to latest release 3.6.1. (diff)
An update of net/samba3 to the 3.0.25 version plus security fixes.
Major features included in the 3.0.25 code base are: o Significant improvements in the winbind off-line logon support. o Support for secure DDNS updates as part of the 'net ads join' process. o Rewritten IdMap interface which allows for TTL based caching and per domain backends. o New plug-in interface for the "winbind nss info" parameter. o New file change notify subsystem which is able to make use of inotify on Linux. o Support for passing Windows security descriptors to a VFS plug-in allowing for multiple Unix ACL implements to running side by side on the Same server. o Improved compatibility with Windows Vista clients including improved read performance with Linux servers. o Man pages for IdMap and VFS plug-ins. Security Fixes included in the Samba 3.0.25 release are: o CVE-2007-2444 Versions: Samba 3.0.23d - 3.0.25pre2 Local SID/Name translation bug can result in user privilege elevation o CVE-2007-2446 Versions: Samba 3.0.0 - 3.0.24 Multiple heap overflows allow remote code execution o CVE-2007-2447 Versions: Samba 3.0.0 - 3.0.24 Unescaped user input parameters are passed as arguments to /bin/sh allowing for remote command execution PR: ports/112836 Submitted by: maintainer Approved by: portmgr (self)
Notes
Notes: svn path=/head/; revision=191627
Diffstat (limited to 'net/samba3/files/patch-python_setup.py')
-rw-r--r--net/samba3/files/patch-python_setup.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/samba3/files/patch-python_setup.py b/net/samba3/files/patch-python_setup.py
new file mode 100644
index 000000000000..fa195e473657
--- /dev/null
+++ b/net/samba3/files/patch-python_setup.py
@@ -0,0 +1,11 @@
+--- python/setup.py.orig Tue May 15 13:41:41 2007
++++ python/setup.py Tue May 15 13:43:03 2007
+@@ -67,6 +67,8 @@
+ libraries.append(lib[2:])
+ elif lib[0:8] == ("-pthread"):
+ pass # Skip linker flags
++ elif lib[0:4] == ("-pie"):
++ pass # Skip linker flags
+ elif lib[0:2] == "-L":
+ library_dirs.append(lib[2:])
+ elif lib[0:2] in ("-W","-s"):