[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#692769: marked as done (libxmlrpc-c3: armel architecture does not build shared libs)



Your message dated Sat, 11 Mar 2017 00:19:13 +0100
with message-id <[🔎] 20170310231910.3w4tjci4z5x4ymll@mapreri.org>
and subject line Re: Bug#692769: libxmlrpc-c3: armel architecture does not build shared libs
has caused the Debian Bug report #692769,
regarding libxmlrpc-c3: armel architecture does not build shared libs
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 owner@bugs.debian.org
immediately.)


-- 
692769: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692769
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: libxmlrpc-c3
Version: 1.06.27-1.1
Severity: normal

Hello,

I'm attempting to install libxmlrpc-c3 and libxmlrpc-c3-dev on an armel
architecture. When I apt-get install the libxmlrpc-c3-dev package, it
does not install the *.so files.

I pulled source and found that the build was not generating the shared
library files. There is an error in Makefile.config.in that is looking
at what type of host to build on. For building on gcc-based systems,
it compares to "linux-gnu" directly, but for the armel arch, the host
name is "linux-gnueabi". This causes the build system to just drop
the shared library generation.

I've created the following patch and tested it on my system:

-----------------------------  Start Patch-

--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -136,7 +136,7 @@
 # out how.  For the rest, we have this default:
 SHARED_LIB_TYPE = NONE

-ifeq ($(HOST_OS),linux-gnu)
+ifeq ($(findstring linux-gnu,$(HOST_OS)),linux-gnu)
   # Assume linker is GNU Compiler (gcc)
   SHARED_LIB_TYPE = unix
   SHLIB_SUFFIX = so

----------------------------  End Patch- -

Please let me know if you need additional information.


-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: armel (armv5tejl)

Kernel: Linux 2.6.29-ts4700-00 (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages libxmlrpc-c3 depends on:
ii  libc6                2.11.2-10           Embedded GNU C Library: Shared lib
ii  libcurl3             7.21.0-2.1+squeeze2 Multi-protocol file transfer libra
ii  libgcc1              1:4.4.5-8           GCC support library
ii  libstdc++6           4.4.5-8             The GNU Standard C++ Library v3

libxmlrpc-c3 recommends no packages.

libxmlrpc-c3 suggests no packages.

-- debconf information:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = "en_US.UTF-8",
	LC_ALL = (unset),
	LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory

--- End Message ---
--- Begin Message ---
On Thu, Nov 08, 2012 at 05:04:47PM +0000, Carl Allendorph wrote:
> I'm attempting to install libxmlrpc-c3 and libxmlrpc-c3-dev on an armel
> architecture. When I apt-get install the libxmlrpc-c3-dev package, it
> does not install the *.so files.
> 
> I pulled source and found that the build was not generating the shared
> library files. There is an error in Makefile.config.in that is looking
> at what type of host to build on. For building on gcc-based systems,
> it compares to "linux-gnu" directly, but for the armel arch, the host
> name is "linux-gnueabi". This causes the build system to just drop
> the shared library generation.

I think this has been fixed in the meantime:

libxmlrpc-core-c3-dev_1.33.14-3_armel.deb
─────────────────────────────────────────

 new debian package, version 2.0.
 size 197422 bytes: control archive=2697 bytes.
     765 bytes,    20 lines      control              
    6035 bytes,    70 lines      md5sums              
 Package: libxmlrpc-core-c3-dev
 Source: xmlrpc-c
 Version: 1.33.14-3
 Architecture: armel
 Maintainer: Debian QA Group <packages@qa.debian.org>
 Installed-Size: 857
 Depends: libc6-dev, libxmlrpc-core-c3 (= 1.33.14-3)
 Suggests: xmlrpc-api-utils
 Section: libdevel
 Priority: optional
 Homepage: http://xmlrpc-c.sourceforge.net
 Description: lightweight RPC library based on XML and HTTP [C development libraries]
  XML-RPC is a quick-and-easy way to make procedure calls over the Internet.
  It converts the procedure call into an XML document, sends it to a remote
  server using HTTP, and gets back the response as XML.
  .
  This library provides a modular implementation of XML-RPC for C.
  .
  Install this package if you wish to develop your own programs using this
  library.

drwxr-xr-x root/root         0 2016-07-23 16:10 ./
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/bin/
-rwxr-xr-x root/root     26108 2016-07-23 16:10 ./usr/bin/xmlrpc
-rwxr-xr-x root/root      6832 2016-07-23 16:10 ./usr/bin/xmlrpc-c-config
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/include/
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/XmlRpcCpp.h -> xmlrpc-c/oldcppwrapper.hpp
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc-c/
-rw-r--r-- root/root     20224 2016-07-23 16:10 ./usr/include/xmlrpc-c/abyss.h
-rw-r--r-- root/root      1851 2016-07-23 16:10 ./usr/include/xmlrpc-c/abyss_unixsock.h
-rw-r--r-- root/root      1333 2016-07-23 16:10 ./usr/include/xmlrpc-c/abyss_winsock.h
-rw-r--r-- root/root     30393 2016-07-23 16:10 ./usr/include/xmlrpc-c/base.h
-rw-r--r-- root/root       983 2016-07-23 16:10 ./usr/include/xmlrpc-c/c_util.h
-rw-r--r-- root/root     16228 2016-07-23 16:10 ./usr/include/xmlrpc-c/client.h
-rw-r--r-- root/root      5642 2016-07-23 16:10 ./usr/include/xmlrpc-c/client_global.h
-rw-r--r-- root/root      1188 2016-07-23 16:10 ./usr/include/xmlrpc-c/config.h
-rw-r--r-- root/root       411 2016-07-23 16:10 ./usr/include/xmlrpc-c/inttypes.h
-rw-r--r-- root/root       974 2016-07-23 16:10 ./usr/include/xmlrpc-c/json.h
-rw-r--r-- root/root        56 2016-07-23 16:10 ./usr/include/xmlrpc-c/oldxmlrpc.h
-rw-r--r-- root/root      8337 2016-07-23 16:10 ./usr/include/xmlrpc-c/server.h
-rw-r--r-- root/root     14945 2016-07-23 16:10 ./usr/include/xmlrpc-c/server_abyss.h
-rw-r--r-- root/root      1691 2016-07-23 16:10 ./usr/include/xmlrpc-c/server_cgi.h
-rw-r--r-- root/root      4473 2016-07-23 16:10 ./usr/include/xmlrpc-c/server_w32httpsys.h
-rw-r--r-- root/root      3312 2016-07-23 16:10 ./usr/include/xmlrpc-c/transport.h
-rw-r--r-- root/root     13531 2016-07-23 16:10 ./usr/include/xmlrpc-c/util.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc.h -> xmlrpc-c/oldxmlrpc.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc_abyss.h -> xmlrpc-c/server_abyss.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc_cgi.h -> xmlrpc-c/server_cgi.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc_client.h -> xmlrpc-c/client.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc_server.h -> xmlrpc-c/server.h
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/include/xmlrpc_server_w32httpsys.h -> xmlrpc-c/server_w32httpsys.h
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/lib/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/
-rw-r--r-- root/root    116338 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc.so -> libxmlrpc.so.3
-rw-r--r-- root/root    117984 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_abyss.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_abyss.so -> libxmlrpc_abyss.so.3
-rw-r--r-- root/root     48286 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_client.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_client.so -> libxmlrpc_client.so.3
-rw-r--r-- root/root     24088 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server.so -> libxmlrpc_server.so.3
-rw-r--r-- root/root     23360 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_abyss.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_abyss.so -> libxmlrpc_server_abyss.so.3
-rw-r--r-- root/root      7282 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_cgi.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_cgi.so -> libxmlrpc_server_cgi.so.3
-rw-r--r-- root/root     28454 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_util.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_util.so -> libxmlrpc_util.so.3
-rw-r--r-- root/root     41166 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmlparse.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmlparse.so -> libxmlrpc_xmlparse.so.3
-rw-r--r-- root/root    103346 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmltok.a
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmltok.so -> libxmlrpc_xmltok.so.3
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc-base/
-rw-r--r-- root/root       294 2016-07-23 16:09 ./usr/share/doc-base/libxmlrpc-core-c3-dev
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc/libxmlrpc-core-c3-dev/
-rw-r--r-- root/root       674 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/CREDITS
-rw-r--r-- root/root      2972 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/DEVELOPING
-rw-r--r-- root/root      1654 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/README
-rw-r--r-- root/root      2200 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/SECURITY
-rw-r--r-- root/root      2798 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/TESTING
-rw-r--r-- root/root      4464 2016-07-23 16:10 ./usr/share/doc/libxmlrpc-core-c3-dev/changelog.Debian.gz
-rw-r--r-- root/root      1643 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/changelog.gz
-rw-r--r-- root/root     10734 2016-07-23 16:09 ./usr/share/doc/libxmlrpc-core-c3-dev/copyright
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/
-rw-r--r-- root/root      4013 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/Makefile
-rw-r--r-- root/root      1474 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/README
-rw-r--r-- root/root      2372 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/auth_client.c
-rw-r--r-- root/root      4598 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/compound_value_client.c
-rw-r--r-- root/root      5672 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/compound_value_server.c
drwxr-xr-x root/root         0 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/
-rw-r--r-- root/root      3053 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/Makefile
-rw-r--r-- root/root      2289 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/asynch_client.cpp
-rw-r--r-- root/root      4004 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/callinfo_abyss_server.cpp
-rw-r--r-- root/root      2593 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/pstream_client.cpp
-rw-r--r-- root/root      2549 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/pstream_inetd_server.cpp
-rw-r--r-- root/root      2425 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/pstream_serial_server.cpp
-rw-r--r-- root/root      2252 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/sample_add_client_complex.cpp
-rw-r--r-- root/root      2559 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/xmlrpc_inetd_server.cpp
-rw-r--r-- root/root      2176 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/xmlrpc_loop_server.cpp
-rw-r--r-- root/root       974 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/xmlrpc_sample_add_client.cpp
-rw-r--r-- root/root      2015 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/xmlrpc_sample_add_server.cpp
-rw-r--r-- root/root      1580 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/cpp/xmlrpc_sample_add_server_cgi.cpp
-rw-r--r-- root/root      1756 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/gen_sample_add_xml.c
-rw-r--r-- root/root      4282 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/interrupted_client.c
-rw-r--r-- root/root      4153 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/interrupted_server.c
-rw-r--r-- root/root      2171 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/json.c
-rw-r--r-- root/root      2299 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/parse_xml.c
-rw-r--r-- root/root      1673 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/synch_client.c
-rw-r--r-- root/root      3742 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_asynch_client.c
-rw-r--r-- root/root      3785 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_inetd_server.c
-rw-r--r-- root/root      4944 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_loop_server.c
-rw-r--r-- root/root      2181 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_sample_add_client.c
-rw-r--r-- root/root      3308 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_sample_add_server.c
-rw-r--r-- root/root      1781 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_sample_add_server_cgi.c
-rw-r--r-- root/root      7999 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_sample_add_server_w32httpsys.c
-rw-r--r-- root/root     13809 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_server_validatee.c
-rw-r--r-- root/root      3169 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/examples/xmlrpc_socket_server.c
-rw-r--r-- root/root      7272 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3-dev/xmlrpc.html


libxmlrpc-core-c3_1.33.14-3_armel.deb
─────────────────────────────────────

 new debian package, version 2.0.
 size 124998 bytes: control archive=1102 bytes.
     633 bytes,    16 lines      control              
    1008 bytes,    12 lines      md5sums              
     335 bytes,     9 lines      shlibs               
      60 bytes,     2 lines      triggers             
 Package: libxmlrpc-core-c3
 Source: xmlrpc-c
 Version: 1.33.14-3
 Architecture: armel
 Maintainer: Debian QA Group <packages@qa.debian.org>
 Installed-Size: 419
 Depends: libc6 (>= 2.8), libcurl3 (>= 7.16.2)
 Section: libs
 Priority: optional
 Homepage: http://xmlrpc-c.sourceforge.net
 Description: lightweight RPC library based on XML and HTTP [C runtime libraries]
  XML-RPC is a quick-and-easy way to make procedure calls over the Internet.
  It converts the procedure call into an XML document, sends it to a remote
  server using HTTP, and gets back the response as XML.
  .
  This library provides a modular implementation of XML-RPC for C.

drwxr-xr-x root/root         0 2016-07-23 16:10 ./
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/lib/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc.so.3 -> libxmlrpc.so.3.33
-rw-r--r-- root/root     75108 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_abyss.so.3 -> libxmlrpc_abyss.so.3.33
-rw-r--r-- root/root     75100 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_abyss.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_client.so.3 -> libxmlrpc_client.so.3.33
-rw-r--r-- root/root     34120 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_client.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server.so.3 -> libxmlrpc_server.so.3.33
-rw-r--r-- root/root     21852 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_abyss.so.3 -> libxmlrpc_server_abyss.so.3.33
-rw-r--r-- root/root     21800 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_abyss.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_cgi.so.3 -> libxmlrpc_server_cgi.so.3.33
-rw-r--r-- root/root      9512 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_server_cgi.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_util.so.3 -> libxmlrpc_util.so.3.33
-rw-r--r-- root/root     17704 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_util.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmlparse.so.3 -> libxmlrpc_xmlparse.so.3.33
-rw-r--r-- root/root     38236 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmlparse.so.3.33
lrwxrwxrwx root/root         0 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmltok.so.3 -> libxmlrpc_xmltok.so.3.33
-rw-r--r-- root/root     91540 2016-07-23 16:10 ./usr/lib/arm-linux-gnueabi/libxmlrpc_xmltok.so.3.33
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc/
drwxr-xr-x root/root         0 2016-07-23 16:10 ./usr/share/doc/libxmlrpc-core-c3/
-rw-r--r-- root/root      4464 2016-07-23 16:10 ./usr/share/doc/libxmlrpc-core-c3/changelog.Debian.gz
-rw-r--r-- root/root      1643 2014-07-15 23:06 ./usr/share/doc/libxmlrpc-core-c3/changelog.gz
-rw-r--r-- root/root     10734 2016-07-23 16:09 ./usr/share/doc/libxmlrpc-core-c3/copyright


> I've created the following patch and tested it on my system:

And this patch doesn't apply anymore anyway.


I'm closing this bug.

-- 
regards,
                        Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540      .''`.
more about me:  https://mapreri.org                             : :'  :
Launchpad user: https://launchpad.net/~mapreri                  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-

Attachment: signature.asc
Description: PGP signature


--- End Message ---

Reply to: