summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-fs/samba/files/samba-3.0.4-python-setup.patch')
-rw-r--r--net-fs/samba/files/samba-3.0.4-python-setup.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/net-fs/samba/files/samba-3.0.4-python-setup.patch b/net-fs/samba/files/samba-3.0.4-python-setup.patch
deleted file mode 100644
index 55de92bb585a..000000000000
--- a/net-fs/samba/files/samba-3.0.4-python-setup.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- source/python/setup.py 2004-04-04 09:37:15.000000000 +0200
-+++ source/python/setup.py.new 2004-05-09 12:38:43.196926688 +0200
-@@ -50,16 +50,25 @@
- libraries = []
- library_dirs = []
-
-+next_is_path = 0
- for lib in string.split(samba_libs):
-- if lib[0:2] == "-l":
-+ if next_is_path <> 0:
-+ library_dirs.append(lib);
-+ next_is_path = 0;
-+ continue
-+ if lib == "-Wl,-rpath":
-+ next_is_path = 1;
-+ continue
-+ elif lib[0:2] == "-l":
- libraries.append(lib[2:])
- continue
-- if lib[0:2] == "-L":
-+ elif lib[0:2] == "-L":
- library_dirs.append(lib[2:])
- continue
-- if lib[0:2] == "-W":
-+ elif lib[0:2] == "-W":
- # Skip linker flags
- continue
-+
- print "Unknown entry '%s' in $LIBS variable passed to setup.py" % lib
- sys.exit(1)
-