From b6af1e02efe594039707cd882517663d5370f375 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Thu, 25 Aug 2016 15:26:24 +0200 Subject: testing/[multiple]: move unmaintained packages This moves all packages from testing to unmaintained which have not been updated for atleast 6 months. If you are affected by this commit please follow this proceddure: * make sure your packages build on all architectures * move your pacakge(s) back to testing * if you want to keep this package and can maintain it (or find somebody to maintain it for you) for a minimum of 6 months ask it to be moved to community --- testing/ptlib/musl-fixes.patch | 70 ------------------------------------------ 1 file changed, 70 deletions(-) delete mode 100644 testing/ptlib/musl-fixes.patch (limited to 'testing/ptlib/musl-fixes.patch') diff --git a/testing/ptlib/musl-fixes.patch b/testing/ptlib/musl-fixes.patch deleted file mode 100644 index a0819c89d5..0000000000 --- a/testing/ptlib/musl-fixes.patch +++ /dev/null @@ -1,70 +0,0 @@ ---- ./include/ptlib/unix/ptlib/pmachdep.h.orig -+++ ./include/ptlib/unix/ptlib/pmachdep.h -@@ -51,7 +51,7 @@ - - #define HAS_IFREQ - --#if __GNU_LIBRARY__ < 6 -+#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 6 - #define P_LINUX_LIB_OLD - typedef int socklen_t; - #endif ---- ./src/ptlib/unix/pipechan.cxx.orig -+++ ./src/ptlib/unix/pipechan.cxx -@@ -44,7 +44,7 @@ - #include - - #if defined(P_LINUX) || defined(P_SOLARIS) --#include -+#include - #endif - - #include "../common/pipechan.cxx" ---- ./src/ptlib/unix/channel.cxx.orig -+++ ./src/ptlib/unix/channel.cxx -@@ -36,6 +36,7 @@ - - #include - #include -+#include - - - #include "../common/pchannel.cxx" ---- ./src/ptlib/unix/osutil.cxx.orig -+++ ./src/ptlib/unix/osutil.cxx -@@ -275,9 +275,9 @@ - PInt64 PString::AsInt64(unsigned base) const - { - char * dummy; --#if defined(P_SOLARIS) || defined(__BEOS__) || defined (P_AIX) || defined(P_IRIX) || defined (P_QNX) -+#if (LONG_BIT == 32) || defined(P_SOLARIS) || defined(__BEOS__) || defined (P_AIX) || defined(P_IRIX) || defined (P_QNX) - return strtoll(theArray, &dummy, base); --#elif defined(P_VXWORKS) || defined(P_RTEMS) -+#elif (LONG_BIT == 64) || defined(P_VXWORKS) || defined(P_RTEMS) - return strtol(theArray, &dummy, base); - #else - return strtoq(theArray, &dummy, base); -@@ -287,9 +287,9 @@ - PUInt64 PString::AsUnsigned64(unsigned base) const - { - char * dummy; --#if defined(P_SOLARIS) || defined(__BEOS__) || defined (P_AIX) || defined (P_IRIX) || defined (P_QNX) -+#if (LONG_BIT == 32 ) || defined(P_SOLARIS) || defined(__BEOS__) || defined (P_AIX) || defined (P_IRIX) || defined (P_QNX) - return strtoull(theArray, &dummy, base); --#elif defined(P_VXWORKS) || defined(P_RTEMS) -+#elif (LONG_BIT == 64) || defined(P_VXWORKS) || defined(P_RTEMS) - return strtoul(theArray, &dummy, base); - #else - return strtouq(theArray, &dummy, base); ---- ./src/ptlib/common/sockets.cxx.orig -+++ ./src/ptlib/common/sockets.cxx -@@ -77,6 +77,9 @@ - #endif - #endif - -+#ifndef NETDB_SUCCESS -+#define NETDB_SUCCESS 0 -+#endif - - /////////////////////////////////////////////////////////////////////////////// - // PIPSocket::Address -- cgit v1.2.3