[Pkg-voip-commits] r10679 - in /ptlib/branches/ptlib2.10-luyten/debian: changelog patches/gcc-5_support patches/ppc64el-arm64-mips64.diff patches/series

dedu-guest at alioth.debian.org dedu-guest at alioth.debian.org
Fri Jun 26 10:07:20 UTC 2015


Author: dedu-guest
Date: Fri Jun 26 10:07:20 2015
New Revision: 10679

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=10679
Log:
* patches/gcc-5_support: Fix FTBS with GCC 5 (Closes: Bug#778074).
* Non-mantainer upload.
* Define P_64BIT and LIB64 for arm64, mips64(el) and ppc64el (Closes: #748911).

Added:
    ptlib/branches/ptlib2.10-luyten/debian/patches/gcc-5_support
    ptlib/branches/ptlib2.10-luyten/debian/patches/ppc64el-arm64-mips64.diff
Modified:
    ptlib/branches/ptlib2.10-luyten/debian/changelog
    ptlib/branches/ptlib2.10-luyten/debian/patches/series

Modified: ptlib/branches/ptlib2.10-luyten/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/changelog?rev=10679&op=diff
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/changelog	(original)
+++ ptlib/branches/ptlib2.10-luyten/debian/changelog	Fri Jun 26 10:07:20 2015
@@ -1,3 +1,16 @@
+ptlib (2.10.10~dfsg-5) unstable; urgency=medium
+
+  * patches/gcc-5_support: Fix FTBS with GCC 5 (Closes: Bug#778074).
+
+ -- Eugen Dedu <Eugen.Dedu at pu-pm.univ-fcomte.fr>  Fri, 26 Jun 2014 09:50:49 +0100
+
+ptlib (2.10.10~dfsg-4.1) unstable; urgency=low
+
+  * Non-mantainer upload.
+  * Define P_64BIT and LIB64 for arm64, mips64(el) and ppc64el (Closes: #748911).
+
+ -- YunQiang Su <syq at debian.org>  Wed, 08 Oct 2014 10:18:48 +0800
+
 ptlib (2.10.10~dfsg-4) unstable; urgency=medium
 
   * patches/bison-fix: Update patch to fix crash (Closes: Bug#735600).

Added: ptlib/branches/ptlib2.10-luyten/debian/patches/gcc-5_support
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/patches/gcc-5_support?rev=10679&op=file
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/patches/gcc-5_support	(added)
+++ ptlib/branches/ptlib2.10-luyten/debian/patches/gcc-5_support	Fri Jun 26 10:07:20 2015
@@ -0,0 +1,13 @@
+Index: ptlib-2.10.10~dfsg/include/ptlib/critsec.h
+===================================================================
+--- ptlib-2.10.10~dfsg.orig/include/ptlib/critsec.h
++++ ptlib-2.10.10~dfsg/include/ptlib/critsec.h
+@@ -40,7 +40,7 @@
+ #if P_HAS_ATOMIC_INT
+ 
+ #if defined(__GNUC__)
+-#  if __GNUC__ >= 4 && __GNUC_MINOR__ >= 2
++#  if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 2) || __GNUC__ >= 5
+ #     include <ext/atomicity.h>
+ #  else
+ #     include <bits/atomicity.h>

Added: ptlib/branches/ptlib2.10-luyten/debian/patches/ppc64el-arm64-mips64.diff
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/patches/ppc64el-arm64-mips64.diff?rev=10679&op=file
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/patches/ppc64el-arm64-mips64.diff	(added)
+++ ptlib/branches/ptlib2.10-luyten/debian/patches/ppc64el-arm64-mips64.diff	Fri Jun 26 10:07:20 2015
@@ -0,0 +1,62 @@
+Index: ptlib-2.10.10~dfsg/configure.ac
+===================================================================
+--- ptlib-2.10.10~dfsg.orig/configure.ac	2034-11-21 10:56:41.345832345 +0800
++++ ptlib-2.10.10~dfsg/configure.ac	2034-11-21 10:56:41.330207343 +0800
+@@ -324,7 +324,7 @@
+ 	MACHTYPE=ppc
+ 	;;
+ 
+-   ppc64 | powerpc64 )
++   ppc64 | powerpc64 | ppc64el | powerpc64le )
+ 	MACHTYPE=ppc64
+ 	P_64BIT=1
+         LIB64=1
+@@ -345,6 +345,17 @@
+ 	MACHTYPE=s390
+ 	;;
+ 
++   aarch64 )
++	MACHTYPE=arm64
++	P_64BIT=1
++        LIB64=1
++	;;
++   mips64 | mips64el )
++	MACHTYPE=mips64
++	P_64BIT=1
++        LIB64=1
++	;;
++
+    * )
+ 	MACHTYPE=$target_cpu
+ 	AC_MSG_WARN("CPU $target_cpu not recognized - proceed with caution!")
+Index: ptlib-2.10.10~dfsg/configure
+===================================================================
+--- ptlib-2.10.10~dfsg.orig/configure	2013-02-20 10:12:27.000000000 +0800
++++ ptlib-2.10.10~dfsg/configure	2034-11-21 10:57:54.220838053 +0800
+@@ -4649,7 +4649,7 @@
+ 	MACHTYPE=ppc
+ 	;;
+ 
+-   ppc64 | powerpc64 )
++   ppc64 | powerpc64 | ppc64el | powerpc64le )
+ 	MACHTYPE=ppc64
+ 	P_64BIT=1
+         LIB64=1
+@@ -4670,6 +4670,17 @@
+ 	MACHTYPE=s390
+ 	;;
+ 
++   aarch64 )
++	MACHTYPE=arm64
++	P_64BIT=1
++        LIB64=1
++	;;
++   mips64 | mips64el )
++	MACHTYPE=mips64
++	P_64BIT=1
++        LIB64=1
++	;;
++
+    * )
+ 	MACHTYPE=$target_cpu
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"CPU $target_cpu not recognized - proceed with caution!\"" >&5

Modified: ptlib/branches/ptlib2.10-luyten/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/patches/series?rev=10679&op=diff
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/patches/series	(original)
+++ ptlib/branches/ptlib2.10-luyten/debian/patches/series	Fri Jun 26 10:07:20 2015
@@ -1,2 +1,4 @@
 hurd-fix
 bison-fix
+ppc64el-arm64-mips64.diff
+gcc-5_support




More information about the Pkg-voip-commits mailing list