summaryrefslogtreecommitdiff
path: root/debian/patches/build-against-system-enet.patch
diff options
context:
space:
mode:
authorChristoph Egger <christoph@debian.org>2017-05-28 23:20:29 +0200
committerChristoph Egger <christoph@debian.org>2017-05-28 23:20:29 +0200
commitf45b321dde21cdff0a97ed3be111c7412c7aebd3 (patch)
tree22d63b78950fe65a7e6fa97a9fdd0f71a5b1e4bf /debian/patches/build-against-system-enet.patch
parent3c1d7fe148a6eac9343f6b6d53b4baa82268a3ed (diff)
Commit Debian 3.0 (quilt) metadata
[dgit (3.10) quilt-fixup]
Diffstat (limited to 'debian/patches/build-against-system-enet.patch')
-rw-r--r--debian/patches/build-against-system-enet.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/patches/build-against-system-enet.patch b/debian/patches/build-against-system-enet.patch
deleted file mode 100644
index c02d7f5..0000000
--- a/debian/patches/build-against-system-enet.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Description: Make python-enet build against system libenet 0.0~svn21-1
-Origin: debian
-Forwarded: no
-Last-Update: 2011-05-01
-
---- python-enet-0.0~svn21.orig/setup.py
-+++ python-enet-0.0~svn21/setup.py
-@@ -31,22 +31,22 @@ import sys
-
- source_files = ["enet.pyx"]
-
--_enet_files = glob.glob("enet/*.c")
-+# _enet_files = glob.glob("enet/*.c")
-
--if not _enet_files:
-- print("You need to download and extract the enet 1.3 source to enet/")
-- print("Download the source from: http://enet.bespin.org/SourceDistro.html")
-- print("See the README for more instructions")
-- sys.exit(1)
--
--source_files.extend(_enet_files)
-+# if not _enet_files:
-+# print("You need to download and extract the enet 1.3 source to enet/")
-+# print("Download the source from: http://enet.bespin.org/SourceDistro.html")
-+# print("See the README for more instructions")
-+# sys.exit(1)
-+#
-+# source_files.extend(_enet_files)
-
- define_macros = [('HAS_POLL', None),
- ('HAS_FCNTL', None),
- ('HAS_MSGHDR_FLAGS', None),
- ('HAS_SOCKLEN_T', None) ]
-
--libraries = []
-+libraries = ['enet']
-
- if sys.platform == 'win32':
- define_macros.extend([('WIN32', None)])