diff options
-rw-r--r-- | package/python3/patches/patch-Modules_posixmodule_c | 20 | ||||
-rw-r--r-- | package/trafshow/Makefile | 5 |
2 files changed, 23 insertions, 2 deletions
diff --git a/package/python3/patches/patch-Modules_posixmodule_c b/package/python3/patches/patch-Modules_posixmodule_c new file mode 100644 index 000000000..537958513 --- /dev/null +++ b/package/python3/patches/patch-Modules_posixmodule_c @@ -0,0 +1,20 @@ +--- Python-3.3.2.orig/Modules/posixmodule.c 2013-05-15 18:32:59.000000000 +0200 ++++ Python-3.3.2/Modules/posixmodule.c 2014-01-06 18:59:54.000000000 +0100 +@@ -7679,7 +7679,7 @@ PyDoc_STRVAR(posix_close__doc__, + Close a file descriptor (for low level IO)."); + + static PyObject * +-posix_close(PyObject *self, PyObject *args) ++posix_pyclose(PyObject *self, PyObject *args) + { + int fd, res; + if (!PyArg_ParseTuple(args, "i:close", &fd)) +@@ -11082,7 +11082,7 @@ static PyMethodDef posix_methods[] = { + {"open", (PyCFunction)posix_open,\ + METH_VARARGS | METH_KEYWORDS, + posix_open__doc__}, +- {"close", posix_close, METH_VARARGS, posix_close__doc__}, ++ {"close", posix_pyclose, METH_VARARGS, posix_close__doc__}, + {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__}, + {"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__}, + {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, diff --git a/package/trafshow/Makefile b/package/trafshow/Makefile index 2e60ec055..3af13570f 100644 --- a/package/trafshow/Makefile +++ b/package/trafshow/Makefile @@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk PKG_NAME:= trafshow PKG_VERSION:= 5.2.3 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_MD5SUM:= 0b2f0bb23b7832138b7d841437b9e182 PKG_DESCR:= traffic analyzing tool PKG_SECTION:= net @@ -20,7 +20,8 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,TRAFSHOW,trafshow,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -TARGET_CPPFLAGS+= -DHAVE_SOCKADDR_STORAGE -DHAVE_HAS_COLORS +TARGET_CPPFLAGS+= -DHAVE_SOCKADDR_STORAGE -DHAVE_HAS_COLORS -D_GNU_SOURCE +TARGET_LDFLAGS+= -ltinfo trafshow-install: ${INSTALL_DIR} ${IDIR_TRAFSHOW}/usr/bin |