Your message dated Sat, 01 Sep 2012 11:00:04 +0000
with message-id <[email protected]>
and subject line Bug#681645: fixed in ptlib 2.10.7~dfsg-1
has caused the Debian Bug report #681645,
regarding ptlib:  FTBFS on Debian GNU/Hurd [patch attached]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
681645: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681645
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ptlib
Version: 2.10.4~dfsg-1
Severity: important
User: [email protected]
Usertags: hurd
Tags: patch

Hi,

Currently ptlib fails to build on Debian GNU/Hurd.

Attached is a patch for building on Hurd.  It also requires a fix to remove the 
--enable-oss flag
when building on Hurd as we don't have sound support.

Thank you,

Barry deFreese

Index: ptlib-2.10.4~dfsg/configure
===================================================================
--- ptlib-2.10.4~dfsg.orig/configure    2012-07-14 21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/configure 2012-07-14 21:44:26.000000000 +0000
@@ -4358,6 +4358,24 @@
 
                    ;;
 
+  gnu*)            OSTYPE=gnu ;
+                   OSRELEASE="\"`uname -r`\"";
+                  OS_TAG="P_GNU" ;
+                   need_pragma=yes ;
+
+$as_echo "#define P_PTHREADS 1" >>confdefs.h
+
+
+ac_fn_cxx_check_func "$LINENO" "swab" "ac_cv_func_swab"
+if test "x$ac_cv_func_swab" = x""yes; then :
+
+$as_echo "#define USE_SYSTEM_SWAB /**/" >>confdefs.h
+
+fi
+
+                   ;;
+
+
   freebsd*|kfreebsd*)       OSTYPE=FreeBSD ;
                   OS_TAG="P_FREEBSD" ;
                    if test "x$OSRELEASE" = "x"; then
Index: ptlib-2.10.4~dfsg/include/ptbuildopts.h.in
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptbuildopts.h.in     2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptbuildopts.h.in  2012-07-14 21:44:26.000000000 
+0000
@@ -50,6 +50,7 @@
 #undef    P_MACOSX
 #undef    P_CYGWIN
 #undef    P_MINGW
+#undef    P_GNU
 #undef    P_UNKNOWN_OS 
 
 #ifndef _WIN32_WCE
Index: ptlib-2.10.4~dfsg/include/ptlib/Nucleus++/ptlib/pmachdep.h
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptlib/Nucleus++/ptlib/pmachdep.h     
2012-07-14 21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptlib/Nucleus++/ptlib/pmachdep.h  2012-07-14 
21:44:26.000000000 +0000
@@ -62,6 +62,23 @@
 #endif
 
 ///////////////////////////////////////////////////////////////////////////////
+#if defined(P_GNU)
+
+#include <paths.h>
+#include <errno.h>
+#include <signal.h>
+#include <sys/ioctl.h>
+#include <sys/fcntl.h>
+#include <sys/termios.h>
+#include <unistd.h>
+#include <net/if.h>
+#include <netinet/in.h>
+#include <dlfcn.h>
+
+#define HAS_IFREQ
+#define PSETPGRP()  setpgrp()
+
+///////////////////////////////////////////////////////////////////////////////
 #elif defined(P_FREEBSD)
 
 #if defined(P_PTHREADS)
Index: ptlib-2.10.4~dfsg/include/ptlib/Nucleus++/ptlib/ptlib.inl
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptlib/Nucleus++/ptlib/ptlib.inl      
2012-07-14 21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptlib/Nucleus++/ptlib/ptlib.inl   2012-07-14 
21:44:26.000000000 +0000
@@ -29,7 +29,7 @@
  * $Id: ptlib.inl 25251 2011-03-04 11:12:05Z rjongbloed $
  */
 
-#if defined(P_LINUX)
+#if defined(P_LINUX) || defined(P_GNU)
 #if (__GNUC_MINOR__ < 7)
 #include <localeinfo.h>
 #else
Index: ptlib-2.10.4~dfsg/include/ptlib/unix/ptlib/pmachdep.h
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptlib/unix/ptlib/pmachdep.h  2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptlib/unix/ptlib/pmachdep.h       2012-07-14 
21:44:26.000000000 +0000
@@ -61,6 +61,23 @@
 #endif
 
 ///////////////////////////////////////////////////////////////////////////////
+#elif defined(P_GNU)
+
+#include <paths.h>
+#include <errno.h>
+#include <signal.h>
+#include <sys/ioctl.h>
+#include <sys/fcntl.h>
+#include <sys/termios.h>
+#include <unistd.h>
+#include <net/if.h>
+#include <netinet/in.h>
+#include <netinet/tcp.h>
+#include <dlfcn.h>
+
+#define HAS_IFREQ
+
+///////////////////////////////////////////////////////////////////////////////
 #elif defined(P_FREEBSD)
 
 #if defined(P_PTHREADS)
Index: ptlib-2.10.4~dfsg/include/ptlib/unix/ptlib/ptlib.inl
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptlib/unix/ptlib/ptlib.inl   2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptlib/unix/ptlib/ptlib.inl        2012-07-14 
21:44:26.000000000 +0000
@@ -29,7 +29,7 @@
  * $Id: ptlib.inl 19008 2007-11-29 09:17:41Z rjongbloed $
  */
 
-#if defined(P_LINUX)
+#if defined(P_LINUX) || defined(P_GNU)
 #if (__GNUC_MINOR__ < 7 && __GNUC__ <= 2)
 #include <localeinfo.h>
 #else
Index: ptlib-2.10.4~dfsg/include/ptlib/object.h
===================================================================
--- ptlib-2.10.4~dfsg.orig/include/ptlib/object.h       2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/include/ptlib/object.h    2012-07-14 21:44:26.000000000 
+0000
@@ -755,6 +755,9 @@
 #ifdef P_LINUX
                               + sizeof(pthread_t)
 #endif
+#ifdef P_GNU
+                              + sizeof(pthread_t)
+#endif
                               )%8
       };
 
@@ -769,6 +772,9 @@
 #ifdef P_LINUX
       pthread_t    thread;
 #endif
+#ifdef P_GNU
+      pthread_t    thread;
+#endif
       char         guard[NumGuardBytes];
 
       static char GuardBytes[NumGuardBytes];
Index: ptlib-2.10.4~dfsg/make/unix.mak
===================================================================
--- ptlib-2.10.4~dfsg.orig/make/unix.mak        2012-07-14 21:43:50.000000000 
+0000
+++ ptlib-2.10.4~dfsg/make/unix.mak     2012-07-14 21:44:26.000000000 +0000
@@ -57,7 +57,7 @@
 .PHONY: all $(STANDARD_TARGETS)
 
 
-ifeq (,$(findstring $(OSTYPE),linux FreeBSD OpenBSD NetBSD solaris beos Darwin 
Carbon AIX Nucleus VxWorks rtems QNX cygwin mingw))
+ifeq (,$(findstring $(OSTYPE),linux gnu FreeBSD OpenBSD NetBSD solaris beos 
Darwin Carbon AIX Nucleus VxWorks rtems QNX cygwin mingw))
 
 default_target :
        @echo
@@ -70,7 +70,7 @@
        @echo
        @echo "         Currently supported OSTYPE names are:"
        @echo "              linux Linux linux-gnu mklinux"
-       @echo "              solaris Solaris SunOS"
+       @echo "              gnu solaris Solaris SunOS"
        @echo "              FreeBSD OpenBSD NetBSD beos Darwin Carbon"
        @echo "              VxWorks rtems mingw"
        @echo
@@ -165,6 +165,41 @@
 
 endif # linux
 
+####################################################
+
+ifeq ($(OSTYPE),gnu)
+
+ifeq ($(MACHTYPE),x86)
+ifdef CPUTYPE
+ifeq ($(CPUTYPE),crusoe)
+STDCCFLAGS     += -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe 
-mpreferred-stack-boundary=2 -march=i686 -malign-functions=0 
+STDCCFLAGS      += -malign-jumps=0 -malign-loops=0
+else
+STDCCFLAGS     += -mcpu=$(CPUTYPE)
+endif
+endif
+endif
+
+ifeq ($(MACHTYPE),ia64)
+STDCCFLAGS     += -DP_64BIT
+endif
+
+ifeq ($(MACHTYPE),x86_64)
+STDCCFLAGS     += -DP_64BIT
+LDLIBS         += -lresolv
+endif
+
+ifeq ($(P_SHAREDLIB),1)
+ifndef PROG
+STDCCFLAGS     += -fPIC -DPIC
+endif # PROG
+endif # P_SHAREDLIB
+
+
+STATIC_LIBS    := libstdc++.a libg++.a libm.a libc.a
+SYSLIBDIR      := $(shell $(PTLIBDIR)/make/ptlib-config --libdir)
+
+endif # gnu
 
 ####################################################
 
Index: ptlib-2.10.4~dfsg/src/ptlib/unix/serchan.cxx
===================================================================
--- ptlib-2.10.4~dfsg.orig/src/ptlib/unix/serchan.cxx   2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/src/ptlib/unix/serchan.cxx        2012-07-14 
21:44:26.000000000 +0000
@@ -43,6 +43,10 @@
 #define  TCSETATTR(f,t)  tcsetattr(f,TCSANOW,t)
 #define  TCGETATTR(f,t)  tcgetattr(f,t)
 
+#elif defined(P_GNU)
+#define  TCSETATTR(f,t)  tcsetattr(f,TCSANOW,t)
+#define  TCGETATTR(f,t)  tcgetattr(f,t)
+
 #elif defined(P_FREEBSD) || defined(P_OPENBSD) || defined (P_NETBSD) || 
defined(P_MACOSX) || defined(P_MACOS) || defined(P_RTEMS)
 #include <sys/ttycom.h>
 #define TCGETA TIOCGETA
@@ -380,6 +384,9 @@
   // The BSD way
   Termio.c_ispeed = baud; 
   Termio.c_ospeed = baud;
+#elif defined(P_GNU)
+  Termio.__ispeed = baud; 
+  Termio.__ospeed = baud;
 #else
   // The Linux way
   Termio.c_cflag &= ~CBAUD;
Index: ptlib-2.10.4~dfsg/src/ptlib/unix/osutil.cxx
===================================================================
--- ptlib-2.10.4~dfsg.orig/src/ptlib/unix/osutil.cxx    2012-07-14 
21:43:50.000000000 +0000
+++ ptlib-2.10.4~dfsg/src/ptlib/unix/osutil.cxx 2012-07-14 22:19:47.000000000 
+0000
@@ -48,7 +48,7 @@
 #pragma implementation "object.h"
 #pragma implementation "contain.h"
 
-#if defined(P_LINUX)
+#if defined(P_LINUX) || defined(P_GNU)
 #ifndef _REENTRANT
 #define _REENTRANT
 #endif
@@ -69,7 +69,7 @@
 #endif
 #include <ctype.h>
 
-#if defined(P_LINUX)
+#if defined(P_LINUX) || defined(P_GNU)
 
 #include <mntent.h>
 #include <sys/vfs.h>
@@ -507,7 +507,7 @@
   if (stat(operator+("."), &status) != -1) {
     dev_t my_dev = status.st_dev;
 
-#if defined(P_LINUX) || defined(P_IRIX)
+#if defined(P_LINUX) || defined(P_IRIX) || defined(P_GNU)
 
     FILE * fp = setmntent(MOUNTED, "r");
     if (fp != NULL) {
@@ -575,7 +575,7 @@
 
 PBoolean PDirectory::GetVolumeSpace(PInt64 & total, PInt64 & free, DWORD & 
clusterSize) const
 {
-#if defined(P_LINUX) || defined(P_FREEBSD) || defined(P_OPENBSD) || 
defined(P_NETBSD) || defined(P_MACOSX) || defined(P_MACOS)
+#if defined(P_LINUX) || defined(P_FREEBSD) || defined(P_OPENBSD) || 
defined(P_NETBSD) || defined(P_MACOSX) || defined(P_MACOS) || defined(P_GNU)
 
   struct statfs fs;
 
@@ -1262,10 +1262,10 @@
 
 PString PTime::GetTimeSeparator()
 {
-#if defined(P_LINUX) || defined(P_HPUX9) || defined(P_SOLARIS) || 
defined(P_IRIX)
+#if defined(P_LINUX) || defined(P_HPUX9) || defined(P_SOLARIS) || 
defined(P_IRIX) || defined(P_GNU)
 #  if defined(P_USE_LANGINFO)
      char * p = nl_langinfo(T_FMT);
-#  elif defined(P_LINUX)
+#  elif defined(P_LINUX) || defined(P_GNU)
      char * p = _time_info->time; 
 #  endif
   char buffer[2];
@@ -1295,7 +1295,7 @@
 
 PTime::DateOrder PTime::GetDateOrder()
 {
-#if defined(P_USE_LANGINFO) || defined(P_LINUX)
+#if defined(P_USE_LANGINFO) || defined(P_LINUX) || defined(P_GNU)
 #  if defined(P_USE_LANGINFO)
      char * p = nl_langinfo(D_FMT);
 #  else
@@ -1339,7 +1339,7 @@
 
 PString PTime::GetDateSeparator()
 {
-#if defined(P_USE_LANGINFO) || defined(P_LINUX)
+#if defined(P_USE_LANGINFO) || defined(P_LINUX) || defined(P_GNU)
 #  if defined(P_USE_LANGINFO)
      char * p = nl_langinfo(D_FMT);
 #  else
@@ -1378,7 +1378,7 @@
                    nl_langinfo((nl_item)(DAY_1+(int)day))
                 );
 
-#elif defined(P_LINUX)
+#elif defined(P_LINUX) || defined(P_GNU)
   return (type == Abbreviated) ? PString(_time_info->abbrev_wkday[(int)day]) :
                        PString(_time_info->full_wkday[(int)day]);
 
@@ -1411,7 +1411,7 @@
      (type == Abbreviated) ? nl_langinfo((nl_item)(ABMON_1+(int)month-1)) :
                    nl_langinfo((nl_item)(MON_1+(int)month-1))
                 );
-#elif defined(P_LINUX)
+#elif defined(P_LINUX) || defined(P_GNU)
   return (type == Abbreviated) ? 
PString(_time_info->abbrev_month[(int)month-1]) :
                        PString(_time_info->full_month[(int)month-1]);
 #elif defined(P_USE_STRFTIME)
@@ -1446,7 +1446,7 @@
 
 int PTime::GetTimeZone(PTime::TimeZoneType type) 
 {
-#if defined(P_LINUX) || defined(P_SOLARIS) || defined (P_AIX) || 
defined(P_IRIX)
+#if defined(P_LINUX) || defined(P_SOLARIS) || defined (P_AIX) || 
defined(P_IRIX) || defined(P_GNU)
   long tz = -::timezone/60;
   if (type == StandardTime)
     return tz;
@@ -1478,7 +1478,7 @@
 
 PString PTime::GetTimeZoneString(PTime::TimeZoneType type) 
 {
-#if defined(P_LINUX) || defined(P_SUN4) || defined(P_SOLARIS) || defined 
(P_AIX) || defined(P_IRIX) || defined(P_QNX)
+#if defined(P_LINUX) || defined(P_SUN4) || defined(P_SOLARIS) || defined 
(P_AIX) || defined(P_IRIX) || defined(P_QNX) || defined(P_GNU)
   const char * str = (type == StandardTime) ? ::tzname[0] : ::tzname[1]; 
   if (str != NULL)
     return str;
Index: ptlib-2.10.4~dfsg/src/ptlib/unix/tlib.cxx
===================================================================
--- ptlib-2.10.4~dfsg.orig/src/ptlib/unix/tlib.cxx      2012-02-21 
22:56:58.000000000 +0000
+++ ptlib-2.10.4~dfsg/src/ptlib/unix/tlib.cxx   2012-07-14 22:40:37.000000000 
+0000
@@ -64,13 +64,13 @@
 #include <sys/wait.h>
 #include <errno.h>
 
-#if defined(P_LINUX)
+#if defined(P_LINUX) || defined(P_GNU)
 #include <sys/cdefs.h>
 #include <sys/types.h>
 #include <sys/mman.h>
 #endif
 
-#if defined(P_LINUX) || defined(P_SUN4) || defined(P_SOLARIS) || 
defined(P_FREEBSD) || defined(P_OPENBSD) || defined(P_NETBSD) || 
defined(P_MACOSX) || defined(P_MACOS) || defined (P_AIX) || defined(P_BEOS) || 
defined(P_IRIX) || defined(P_QNX)
+#if defined(P_LINUX) || defined(P_SUN4) || defined(P_SOLARIS) || 
defined(P_FREEBSD) || defined(P_OPENBSD) || defined(P_NETBSD) || 
defined(P_MACOSX) || defined(P_MACOS) || defined (P_AIX) || defined(P_BEOS) || 
defined(P_IRIX) || defined(P_QNX) || defined(P_GNU)
 #include <sys/utsname.h>
 #define  HAS_UNAME
 #elif defined(P_RTEMS)
@@ -217,7 +217,7 @@
 #if defined(P_PTHREADS) && !defined(P_THREAD_SAFE_CLIB)
   struct passwd pwd;
   char buffer[1024];
-#if defined (P_LINUX) || defined(P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS)
+#if defined (P_LINUX) || defined(P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS) || defined(P_GNU)
   ::getpwuid_r(geteuid(), &pwd,
                buffer, 1024,
                &pw);
@@ -268,7 +268,7 @@
   struct passwd pwd;
   char buffer[1024];
   struct passwd * pw = NULL;
-#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS)
+#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS) || defined(P_GNU)
   ::getpwuid_r(geteuid(), &pwd, buffer, 1024, &pw);
 #else
   pw = ::getpwuid_r(geteuid(), &pwd, buffer, 1024);
@@ -309,7 +309,7 @@
     struct passwd pwd;
     char buffer[1024];
     struct passwd * pw = NULL;
-#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS)
+#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS) || defined(P_GNU)
     ::getpwnam_r(username, &pwd, buffer, 1024, &pw);
 #else
     pw = ::getpwnam_r(username, &pwd, buffer, 1024);
@@ -356,7 +356,7 @@
   struct group grp;
   char buffer[1024];
   struct group * gr = NULL;
-#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS)
+#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS) || defined(P_GNU)
   ::getgrgid_r(getegid(), &grp, buffer, 1024, &gr);
 #else
   gr = ::getgrgid_r(getegid(), &grp, buffer, 1024);
@@ -397,7 +397,7 @@
     struct group grp;
     char buffer[1024];
     struct group * gr = NULL;
-#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS)
+#if defined (P_LINUX) || defined (P_AIX) || defined(P_IRIX) || (__GNUC__>=3 && 
defined(P_SOLARIS)) || defined(P_RTEMS) || defined(P_GNU)
     ::getgrnam_r(groupname, &grp, buffer, 1024, &gr);
 #else
     gr = ::getgrnam_r(groupname, &grp, buffer, 1024);
Index: ptlib-2.10.4~dfsg/src/ptlib/common/sockets.cxx
===================================================================
--- ptlib-2.10.4~dfsg.orig/src/ptlib/common/sockets.cxx 2012-02-21 
22:57:00.000000000 +0000
+++ ptlib-2.10.4~dfsg/src/ptlib/common/sockets.cxx      2012-07-14 
23:00:21.000000000 +0000
@@ -582,7 +582,7 @@
     host_info = Vx_gethostbyname((char *)name, &hostEnt);
     localErrNo = h_errno;
 
-#elif defined P_LINUX
+#elif defined P_LINUX || defined(P_GNU)
 
     char buffer[REENTRANT_BUFFER_LEN];
     struct hostent hostEnt;
@@ -711,7 +711,7 @@
     struct hostent hostEnt;
     host_info = Vx_gethostbyaddr(addr.GetPointer(), &hostEnt);
 
-#elif defined P_LINUX
+#elif defined P_LINUX || defined(P_GNU)
 
     char buffer[REENTRANT_BUFFER_LEN];
     struct hostent hostEnt;

--- End Message ---
--- Begin Message ---
Source: ptlib
Source-Version: 2.10.7~dfsg-1

We believe that the bug you reported is fixed in the latest version of
ptlib, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mark Purcell <[email protected]> (supplier of updated ptlib package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 01 Sep 2012 10:09:01 +1000
Source: ptlib
Binary: libpt2.10.7 libpt-dev libpt-dbg libpt-doc
Architecture: source amd64 all
Version: 2.10.7~dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian VoIP Team <[email protected]>
Changed-By: Mark Purcell <[email protected]>
Description: 
 libpt-dbg  - Portable Tools Library development debug files
 libpt-dev  - Portable Tools Library development files
 libpt-doc  - Portable Tools Library documentation & sample files
 libpt2.10.7 - Portable Tools Library
Closes: 681645
Changes: 
 ptlib (2.10.7~dfsg-1) experimental; urgency=low
 .
   * New upstream release
     - Fixes " FTBFS on Debian GNU/Hurd [patch attached]" (Closes: #681645)
   * NEW package libpt2.10.7 - match-soname
   * Update debian/watch
Checksums-Sha1: 
 dbc6074fad3ca741120bff1843faa3b76084a4c1 1783 ptlib_2.10.7~dfsg-1.dsc
 5e4a7f494ba174e50cfcc60b546c53536d75d815 5394418 ptlib_2.10.7~dfsg.orig.tar.gz
 e6567539954b59f1351cd4c7bb140f98605cf818 23875 
ptlib_2.10.7~dfsg-1.debian.tar.gz
 2af8e1a903326df64ec23238fa60c17696113d62 1508574 
libpt2.10.7_2.10.7~dfsg-1_amd64.deb
 4d9a320522e72160b3c9f953f61fb434a2601ca1 2930242 
libpt-dev_2.10.7~dfsg-1_amd64.deb
 97308adf4714cb36a3d31d59431eb9e40b343a10 340064 
libpt-dbg_2.10.7~dfsg-1_amd64.deb
 da7230e3fd9cab30d7a8afca52c2ad8e08011423 9923800 
libpt-doc_2.10.7~dfsg-1_all.deb
Checksums-Sha256: 
 80a9994a0015df361b25d1694ba3d85fe04f78355f3bf38f140e208f487212da 1783 
ptlib_2.10.7~dfsg-1.dsc
 49ac3be9c3c42e4a768efa999db9e33807fe6cc2758bea9853b6bff95bf7bc4f 5394418 
ptlib_2.10.7~dfsg.orig.tar.gz
 9603fd74683e1522be4196398e528fb2d364e7104d42061c49f27ab5fb5f8cc3 23875 
ptlib_2.10.7~dfsg-1.debian.tar.gz
 74165b67c87321918087efcdefbc0793f70c0fdc23b3c4d9caa874537313903d 1508574 
libpt2.10.7_2.10.7~dfsg-1_amd64.deb
 26143487efd30ef6c2ecc4e2a11eb4c977066135ea6b1bbed66b6b5e44b20c2e 2930242 
libpt-dev_2.10.7~dfsg-1_amd64.deb
 c6c836538c7c9381ef274e7b83a4dbc3719b5a532ddfe392ce5a244747aa7879 340064 
libpt-dbg_2.10.7~dfsg-1_amd64.deb
 b04461180a55171b07eecd409c198aec40e78e58fed22d4585031fe113f08fe3 9923800 
libpt-doc_2.10.7~dfsg-1_all.deb
Files: 
 3bf083ac1447d7a51139e4c6af309a0d 1783 libs optional ptlib_2.10.7~dfsg-1.dsc
 0da9c20a76a1808136ab219004bf507e 5394418 libs optional 
ptlib_2.10.7~dfsg.orig.tar.gz
 a3df01e39069d2663c3d1bcb0c143258 23875 libs optional 
ptlib_2.10.7~dfsg-1.debian.tar.gz
 99136485865798ab1a4f53c781a50b86 1508574 libs optional 
libpt2.10.7_2.10.7~dfsg-1_amd64.deb
 83be779545163364f3d862257fa1aef7 2930242 libdevel optional 
libpt-dev_2.10.7~dfsg-1_amd64.deb
 c78dde94e8df2e7030d9c9d695ae0b99 340064 debug extra 
libpt-dbg_2.10.7~dfsg-1_amd64.deb
 a8e26e5b525e07e8bc76f9ca4cf2dfd7 9923800 doc extra 
libpt-doc_2.10.7~dfsg-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlBBfBsACgkQoCzanz0IthIeRACffIu5tHRt1ayy8hWm9a38tPaz
wMUAnjxMfcC8aAJp5ZOnWXxSF3nFqA5D
=w9sW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to