From bebbe792df26f355f82da8d7508f719f56a8a559 Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Thu, 28 Feb 2008 02:13:42 +0000 Subject: Make sure 'linkage.h' headers are installed. Add hack to bootstrap newer versions of GCC. Filter out 'gnu99' from assembly flags. Use the 'headers' target instead of 'pregen' to prepare for more NPTL integration. Fix broken MTD package configuration....someone believes in the Klingon release process apparently. Fix build issues with netplug and libpng. Fix source path for microcom as original site no longer exists. --- package/netplug/netplug-getsockname-cast.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/netplug/netplug-getsockname-cast.patch (limited to 'package/netplug') diff --git a/package/netplug/netplug-getsockname-cast.patch b/package/netplug/netplug-getsockname-cast.patch new file mode 100644 index 000000000..c8e38e6f9 --- /dev/null +++ b/package/netplug/netplug-getsockname-cast.patch @@ -0,0 +1,12 @@ +diff -ur netplug-1.2.9/netlink.c netplug-1.2.9-patched/netlink.c +--- netplug-1.2.9/netlink.c 2005-01-07 23:57:09.000000000 -0600 ++++ netplug-1.2.9-patched/netlink.c 2008-02-27 17:59:48.373864047 -0600 +@@ -286,7 +286,7 @@ + + int addr_len = sizeof(addr); + +- if (getsockname(fd, (struct sockaddr *) &addr, &addr_len) == -1) { ++ if (getsockname(fd, (struct sockaddr *) &addr, (socklen_t *) &addr_len) == -1) { + do_log(LOG_ERR, "Could not get socket details: %m"); + exit(1); + } -- cgit v1.2.3