[Pkg-voip-commits] r10014 - in /ptlib/trunk/debian: changelog control libpt2.10.7.install libpt2.10.8.install patches/ patches/hurd-compile-error.cxx patches/series

dedu-guest at alioth.debian.org dedu-guest at alioth.debian.org
Sun Oct 28 17:44:08 UTC 2012


Author: dedu-guest
Date: Sun Oct 28 17:44:07 2012
New Revision: 10014

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=10014
Log:
* New upstream release
* NEW package libpt2.10.8 - match-soname 
* Add patch to fix compile error on GNU/Hurd

Added:
    ptlib/trunk/debian/libpt2.10.8.install
      - copied unchanged from r10013, ptlib/trunk/debian/libpt2.10.7.install
    ptlib/trunk/debian/patches/
    ptlib/trunk/debian/patches/hurd-compile-error.cxx
    ptlib/trunk/debian/patches/series
Removed:
    ptlib/trunk/debian/libpt2.10.7.install
Modified:
    ptlib/trunk/debian/changelog
    ptlib/trunk/debian/control

Modified: ptlib/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/trunk/debian/changelog?rev=10014&op=diff
==============================================================================
--- ptlib/trunk/debian/changelog (original)
+++ ptlib/trunk/debian/changelog Sun Oct 28 17:44:07 2012
@@ -1,6 +1,9 @@
-ptlib (2.10.7~dfsg-2) UNRELEASED; urgency=low
-
+ptlib (2.10.8~dfsg-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * NEW package libpt2.10.8 - match-soname 
   * Remove some unneeded Build-Conflicts
+  * Add patch to fix compile error on GNU/Hurd
 
  -- Eugen Dedu <Eugen.Dedu at pu-pm.univ-fcomte.fr>  Thu, 13 Sep 2012 10:09:01 +1000
 

Modified: ptlib/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/trunk/debian/control?rev=10014&op=diff
==============================================================================
--- ptlib/trunk/debian/control (original)
+++ ptlib/trunk/debian/control Sun Oct 28 17:44:07 2012
@@ -15,7 +15,7 @@
 Vcs-Svn: svn://svn.debian.org/pkg-voip/ptlib/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-voip/ptlib/trunk/
 
-Package: libpt2.10.7
+Package: libpt2.10.8
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: Portable Tools Library
@@ -30,7 +30,7 @@
 Package: libpt-dev
 Section: libdevel
 Architecture: any
-Depends: ${misc:Depends}, libpt2.10.7 (= ${binary:Version}),
+Depends: ${misc:Depends}, libpt2.10.8 (= ${binary:Version}),
  libc6-dev, libssl-dev, libldap2-dev, libsdl1.2-dev, libexpat1-dev, libsasl2-dev, unixodbc-dev, pkg-config
 Description: Portable Tools Library development files
  This package contains the headers and a static version of the library
@@ -42,7 +42,7 @@
 Section: debug
 Priority: extra
 Architecture: any
-Depends: ${misc:Depends}, libpt2.10.7 (= ${binary:Version})
+Depends: ${misc:Depends}, libpt2.10.8 (= ${binary:Version})
 Description: Portable Tools Library development debug files
  This package contains the shared and static debug symbols of the library
  PTLib, which is a moderately large class library that has its genesis

Added: ptlib/trunk/debian/patches/hurd-compile-error.cxx
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/trunk/debian/patches/hurd-compile-error.cxx?rev=10014&op=file
==============================================================================
--- ptlib/trunk/debian/patches/hurd-compile-error.cxx (added)
+++ ptlib/trunk/debian/patches/hurd-compile-error.cxx Sun Oct 28 17:44:07 2012
@@ -1,0 +1,17 @@
+--- a/src/ptlib/unix/serchan.cxx	2012/10/23 09:01:18	28507
++++ b/src/ptlib/unix/serchan.cxx	2012/10/27 20:38:14	28508
+@@ -376,10 +376,13 @@
+   // save new baud rate
+   baudRate = newBaudRate;
+ 
+-#if defined(P_FREEBSD) || defined(P_OPENBSD) || defined (P_NETBSD) || defined(P_MACOSX) || defined(P_MACOS) || defined(P_GNU_HURD)
++#if defined(P_FREEBSD) || defined(P_OPENBSD) || defined (P_NETBSD) || defined(P_MACOSX) || defined(P_MACOS)
+   // The BSD way
+   Termio.c_ispeed = baud;
+   Termio.c_ospeed = baud;
++#elif defined(P_GNU_HURD)
++  Termio.__ispeed = baud;
++  Termio.__ospeed = baud;
+ #else
+   // The Linux way
+   Termio.c_cflag &= ~CBAUD;

Added: ptlib/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/trunk/debian/patches/series?rev=10014&op=file
==============================================================================
--- ptlib/trunk/debian/patches/series (added)
+++ ptlib/trunk/debian/patches/series Sun Oct 28 17:44:07 2012
@@ -1,0 +1,1 @@
+hurd-compile-error.cxx




More information about the Pkg-voip-commits mailing list