Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.2 2007/02/23 20:35:13 drochner Exp $
--- python/setup.py.in.orig 2006-01-19 04:49:14.000000000 +0100
+++ python/setup.py.in
@@ -6,7 +6,7 @@ from distutils.core import setup, Extens
dnet_srcs = [ '@srcdir@/dnet.c' ]
dnet_incdirs = [ '@top_srcdir@/include' ]
dnet_libdirs = []
-dnet_libs = []
+dnet_libs = [ 'dnet' ]
dnet_extargs = []
dnet_extobj = []
+12
View File
@@ -0,0 +1,12 @@
$NetBSD: patch-ab,v 1.1 2006/03/23 00:59:05 joerg Exp $
--- python/dnet.pyx.orig 2006-03-23 00:52:42.000000000 +0000
+++ python/dnet.pyx
@@ -46,7 +46,6 @@ cdef __memcpy(char *dst, object src, int
memcpy(dst, src, n)
cdef __oserror():
- cdef extern int errno
return strerror(errno)
def __iter_append(entry, l):
+12
View File
@@ -0,0 +1,12 @@
$NetBSD: patch-ac,v 1.3 2007/03/02 10:52:24 drochner Exp $
--- python/dnet.c.orig 2007-01-20 12:39:54.000000000 +0100
+++ python/dnet.c
@@ -444,7 +444,6 @@ static PyObject *__pyx_f_4dnet___memcpy(
}
static PyObject *__pyx_f_4dnet___oserror(void) {
- __PYX_EXTERN_C int errno;
PyObject *__pyx_r;
PyObject *__pyx_1 = 0;