SHA256
1
0
forked from pool/xmlrpc-c

89 Commits

Author SHA256 Message Date
Dominique Leuenberger
aa83b1088b Accepting request 1032645 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1032645
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=9
2022-11-02 11:46:41 +00:00
Martin Pluskal
1724cc46a4 Accepting request 1032199 from home:dirkmueller:Factory
- update to 1.54.06:
  * Abyss HTTP server: Fix memory corruption in processing of "authorization"
    header field. Broken in Xmlrpc-c 1.41

OBS-URL: https://build.opensuse.org/request/show/1032199
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=88
2022-11-01 08:28:21 +00:00
Dominique Leuenberger
5d88136dc9 Accepting request 994466 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/994466
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=8
2022-08-12 15:46:17 +00:00
Martin Pluskal
86021272ad Accepting request 993852 from home:dirkmueller:Factory
- update to 1.54.05:
  * Fix handling of error on pipe used to interrupt the wait for a client connection.
  * Build of client libraries: fix failure to find Curl stuff
  * fix bug: wild memory reference when server times out waiting for request header
  * fix bug: won't compile with --enable-libxml2
  * fix bug: ignores LDFLAGS_FOR_BUILD, LDFLAGS_PERSONAL, and LDFLAGS_PTHREAD
    when building the build tool Gennmtab
  * Fix bug: 'toValue' won't compile for vector of vectors or map of vectors. Thanks Yang Bo .
  * Fix tiny memory leak in virtually impossible low memory situation.
  * Build: fix missing xmlrpc-c/config.h include file in separate build tree build

OBS-URL: https://build.opensuse.org/request/show/993852
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=86
2022-08-11 07:56:01 +00:00
Dominique Leuenberger
fa6ca1ea79 Accepting request 896536 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/896536
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=7
2021-06-01 08:40:01 +00:00
Martin Pluskal
89eca52637 Accepting request 896438 from home:dirkmueller:Factory
- update to 1.51.07:
  * fix bug: wild memory reference when server times out waiting for request header.

OBS-URL: https://build.opensuse.org/request/show/896438
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=84
2021-06-01 05:05:35 +00:00
Dominique Leuenberger
84f31b0165 Accepting request 828326 from devel:libraries:c_c++
- update to 1.51.06:
  * Build: fix bug: won't compile with --enable-libxml2, introduced with Release 1.44 (December 2015).
  * Remove trace statements accidentally added in Release 1.51.00. (Released December 2017, promoted to Super Stable March 2019).
  * Build: fix bug: ignores LDFLAGS_FOR_BUILD, LDFLAGS_PERSONAL, and LDFLAGS_PTHREAD when building the build tool Gennmtab.
  * Fix tiny memory leak in virtually impossible low memory situation.
  * Fix bug: 'toValue' won't compile for vector of vectors or map of vectors. Thanks Yang Bo .
  * Build: fix missing xmlrpc-c/config.h include file in separate build tree build. Thanks Philip Belemezov <philip@belemezov.net>.
  * Build: Add --disable-abyss-openssl for build environments that appear to have Openssl but don't really. (A Pkg-config design flaw makes that happen sometimes - you can't control what directories it searches for .pc files).
  * Windows build: add Visual Studio 2017 project files, fix various things broken for Windows in recent updates. Thanks to Maksym Veremeyenko .
  * Disable 10M restriction on document size in Libxml2 XML parser.
  * Build: Recognize additional Linux "host OS" environments. E.g. "linux-uclibc".
  * Build: replace BUILDTOOL_CC and BUILDTOOL_CCLD with more conventional CC_FOR_BUILD. Add CFLAGS_FOR_BUILD, LDFLAGS_FOR_BUILD.
  * Build: Don't attempt to build C++ internal utility module cmdline_parser_cpp if we aren't building the C++ libraries. In that case, 1) it isn't needed, and 2) the environment probably is incapable of compiling C++.
  * Build: Use AC_CHECK_TOOL to determine 'ar' command and AC_PROG_RANLIB to determine 'ranlib' command to use.
  * Build: fix compile failure in build for a system that does not have Unicode wide characters (wchar_t).
  * Packet stream client: Add option to throw a BrokenConnEx exception when transport fails because the server hung up or network broke, instead of throwing error.
  * Add ServerAbyss::getListenName method, ChanSwitchUnixGetListeName: ability to find out on what port your server is listening.
  * Packet stream server ('serverPstreamConn'): fix bug: runOnce() fails with indication that it was interrupted when the server hangs up. Always broken (interruptible RunOnce() was new in Xmlrpc-c 1.14 (March 2008).
  * Fix compile failure with old OpenSSL that doesn't have SSL_ERROR_WANT_ACCEPT. Introduced in Xmlrpc-c 1.45.
  * Add SSL/TLS capability via OpenSSL to Abyss server.
  * Fix xmlrpc_mem_block accidentally made private in 1.44.
  * Build: Remove example and test program usage of XML parser facility (<xmlrpc-c/xmlparser.h>), which was made private in 1.44, so the examples and tools no longer build.
  * C++: Add 'toValue' and 'fromValue' for 64-bit integer (xmlrpc_c::value_i8).
  * Memory block utility: Remove xmlrpc_mem_block_init and xmlrpc_mem_block_clean. These complicate forward compatibility and probably were never used. xmlrpc_mem_block_new and xmlrpc_mem_block_free remain to fulfill the same purpose.
  * Remove XML parser (<xmlrpc-c/xmlparser.h>) from external API. This is not specific to XML-RPC, so has no business being a service of Xmlrpc-c. It is just an abstraction to allow us to use various XML parsing libraries (to wit, Expat and Libxml2). We don't think it was ever used externally.
  * Add xmlrpc_value_new(): deep copy of xmlrpc_value.
  * Abyss C++: Add 'terminate' and 'resetTerminate' methods, analogous to C Abyss 'ServerTerminate' and 'ServerResetTerminate'.
  * Fix bug: infinite recursion if you try to format a floating point value that was created from something other than a finite number. Creation of a floating point XML-RPC value from something other than a number now fails. Introduced in Xmlrpc-c 1.15 (June 2008).
  * Curl client: fix garbage in message where explanation from Curl library belongs. Always there, with some Curl libraries.
  * Curl client: fix instantaneous timeout with some Curl libraries. Introduced in Xmlrpc-c 1.41 (March 2015).

OBS-URL: https://build.opensuse.org/request/show/828326
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=6
2020-08-21 17:07:43 +00:00
Martin Pluskal
dd615333f9 Accepting request 828486 from home:dirkmueller:branches:devel:libraries:c_c++
- update to 1.51.06:
  * Build: fix bug: won't compile with --enable-libxml2, introduced with Release 1.44 (December 2015).
  * Remove trace statements accidentally added in Release 1.51.00. (Released December 2017, promoted to Super Stable March 2019).
  * Build: fix bug: ignores LDFLAGS_FOR_BUILD, LDFLAGS_PERSONAL, and LDFLAGS_PTHREAD when building the build tool Gennmtab.
  * Fix tiny memory leak in virtually impossible low memory situation.
  * Fix bug: 'toValue' won't compile for vector of vectors or map of vectors. Thanks Yang Bo .
  * Build: fix missing xmlrpc-c/config.h include file in separate build tree build. Thanks Philip Belemezov <philip@belemezov.net>.
  * Build: Add --disable-abyss-openssl for build environments that appear to have Openssl but don't really. (A Pkg-config design flaw makes that happen sometimes - you can't control what directories it searches for .pc files).
  * Windows build: add Visual Studio 2017 project files, fix various things broken for Windows in recent updates. Thanks to Maksym Veremeyenko .
  * Disable 10M restriction on document size in Libxml2 XML parser.
  * Build: Recognize additional Linux "host OS" environments. E.g. "linux-uclibc".
  * Build: replace BUILDTOOL_CC and BUILDTOOL_CCLD with more conventional CC_FOR_BUILD. Add CFLAGS_FOR_BUILD, LDFLAGS_FOR_BUILD.
  * Build: Don't attempt to build C++ internal utility module cmdline_parser_cpp if we aren't building the C++ libraries. In that case, 1) it isn't needed, and 2) the environment probably is incapable of compiling C++.
  * Build: Use AC_CHECK_TOOL to determine 'ar' command and AC_PROG_RANLIB to determine 'ranlib' command to use.
  * Build: fix compile failure in build for a system that does not have Unicode wide characters (wchar_t).
  * Packet stream client: Add option to throw a BrokenConnEx exception when transport fails because the server hung up or network broke, instead of throwing error.
  * Add ServerAbyss::getListenName method, ChanSwitchUnixGetListeName: ability to find out on what port your server is listening.
  * Packet stream server ('serverPstreamConn'): fix bug: runOnce() fails with indication that it was interrupted when the server hangs up. Always broken (interruptible RunOnce() was new in Xmlrpc-c 1.14 (March 2008).
  * Fix compile failure with old OpenSSL that doesn't have SSL_ERROR_WANT_ACCEPT. Introduced in Xmlrpc-c 1.45.
  * Add SSL/TLS capability via OpenSSL to Abyss server.
  * Fix xmlrpc_mem_block accidentally made private in 1.44.
  * Build: Remove example and test program usage of XML parser facility (<xmlrpc-c/xmlparser.h>), which was made private in 1.44, so the examples and tools no longer build.
  * C++: Add 'toValue' and 'fromValue' for 64-bit integer (xmlrpc_c::value_i8).
  * Memory block utility: Remove xmlrpc_mem_block_init and xmlrpc_mem_block_clean. These complicate forward compatibility and probably were never used. xmlrpc_mem_block_new and xmlrpc_mem_block_free remain to fulfill the same purpose.
  * Remove XML parser (<xmlrpc-c/xmlparser.h>) from external API. This is not specific to XML-RPC, so has no business being a service of Xmlrpc-c. It is just an abstraction to allow us to use various XML parsing libraries (to wit, Expat and Libxml2). We don't think it was ever used externally.
  * Add xmlrpc_value_new(): deep copy of xmlrpc_value.
  * Abyss C++: Add 'terminate' and 'resetTerminate' methods, analogous to C Abyss 'ServerTerminate' and 'ServerResetTerminate'.
  * Fix bug: infinite recursion if you try to format a floating point value that was created from something other than a finite number. Creation of a floating point XML-RPC value from something other than a number now fails. Introduced in Xmlrpc-c 1.15 (June 2008).
  * Curl client: fix garbage in message where explanation from Curl library belongs. Always there, with some Curl libraries.
  * Curl client: fix instantaneous timeout with some Curl libraries. Introduced in Xmlrpc-c 1.41 (March 2015).

OBS-URL: https://build.opensuse.org/request/show/828486
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=82
2020-08-21 12:33:26 +00:00
8c4c5dbae4 osc copypac from project:devel:libraries:c_c++ package:xmlrpc-c revision:78
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=81
2020-08-21 12:30:08 +00:00
32ae68a00a OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=80 2020-08-20 23:01:43 +00:00
507a19d766 - update to 1.51.06:
* Build: fix bug: won't compile with --enable-libxml2, introduced with Release 1.44 (December 2015).
  * Remove trace statements accidentally added in Release 1.51.00. (Released December 2017, promoted to Super Stable March 2019).
  * Build: fix bug: ignores LDFLAGS_FOR_BUILD, LDFLAGS_PERSONAL, and LDFLAGS_PTHREAD when building the build tool Gennmtab.
  * Fix tiny memory leak in virtually impossible low memory situation.
  * Fix bug: 'toValue' won't compile for vector of vectors or map of vectors. Thanks Yang Bo .
  * Build: fix missing xmlrpc-c/config.h include file in separate build tree build. Thanks Philip Belemezov <philip@belemezov.net>.
  * Build: Add --disable-abyss-openssl for build environments that appear to have Openssl but don't really. (A Pkg-config design flaw makes that happen sometimes - you can't control what directories it searches for .pc files).
  * Windows build: add Visual Studio 2017 project files, fix various things broken for Windows in recent updates. Thanks to Maksym Veremeyenko .
  * Disable 10M restriction on document size in Libxml2 XML parser.
  * Build: Recognize additional Linux "host OS" environments. E.g. "linux-uclibc".
  * Build: replace BUILDTOOL_CC and BUILDTOOL_CCLD with more conventional CC_FOR_BUILD. Add CFLAGS_FOR_BUILD, LDFLAGS_FOR_BUILD.
  * Build: Don't attempt to build C++ internal utility module cmdline_parser_cpp if we aren't building the C++ libraries. In that case, 1) it isn't needed, and 2) the environment probably is incapable of compiling C++.
  * Build: Use AC_CHECK_TOOL to determine 'ar' command and AC_PROG_RANLIB to determine 'ranlib' command to use.
  * Build: fix compile failure in build for a system that does not have Unicode wide characters (wchar_t).
  * Packet stream client: Add option to throw a BrokenConnEx exception when transport fails because the server hung up or network broke, instead of throwing error.
  * Add ServerAbyss::getListenName method, ChanSwitchUnixGetListeName: ability to find out on what port your server is listening.
  * Packet stream server ('serverPstreamConn'): fix bug: runOnce() fails with indication that it was interrupted when the server hangs up. Always broken (interruptible RunOnce() was new in Xmlrpc-c 1.14 (March 2008).
  * Fix compile failure with old OpenSSL that doesn't have SSL_ERROR_WANT_ACCEPT. Introduced in Xmlrpc-c 1.45.
  * Add SSL/TLS capability via OpenSSL to Abyss server.
  * Fix xmlrpc_mem_block accidentally made private in 1.44.
  * Build: Remove example and test program usage of XML parser facility (<xmlrpc-c/xmlparser.h>), which was made private in 1.44, so the examples and tools no longer build.
  * C++: Add 'toValue' and 'fromValue' for 64-bit integer (xmlrpc_c::value_i8).
  * Memory block utility: Remove xmlrpc_mem_block_init and xmlrpc_mem_block_clean. These complicate forward compatibility and probably were never used. xmlrpc_mem_block_new and xmlrpc_mem_block_free remain to fulfill the same purpose.
  * Remove XML parser (<xmlrpc-c/xmlparser.h>) from external API. This is not specific to XML-RPC, so has no business being a service of Xmlrpc-c. It is just an abstraction to allow us to use various XML parsing libraries (to wit, Expat and Libxml2). We don't think it was ever used externally.
  * Add xmlrpc_value_new(): deep copy of xmlrpc_value.
  * Abyss C++: Add 'terminate' and 'resetTerminate' methods, analogous to C Abyss 'ServerTerminate' and 'ServerResetTerminate'.
  * Fix bug: infinite recursion if you try to format a floating point value that was created from something other than a finite number. Creation of a floating point XML-RPC value from something other than a number now fails. Introduced in Xmlrpc-c 1.15 (June 2008).
  * Curl client: fix garbage in message where explanation from Curl library belongs. Always there, with some Curl libraries.
  * Curl client: fix instantaneous timeout with some Curl libraries. Introduced in Xmlrpc-c 1.41 (March 2015).

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=79
2020-08-20 12:41:20 +00:00
Yuchen Lin
70841e8fac Accepting request 482586 from devel:libraries:c_c++
- Update to version 1.39.12:

OBS-URL: https://build.opensuse.org/request/show/482586
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=5
2017-04-06 09:00:36 +00:00
Martin Pluskal
a5603c60ee OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=77 2017-03-24 18:01:15 +00:00
Martin Pluskal
f0f5ba39e7 - Update to version 1.39.12:
* For full list of changes see:
    http://xmlrpc-c.sourceforge.net/change_super_stable.html
- Drop upstreamed narrowing.patch
- Add xmlrpc-c-no_return_nonvoid.patch
- Update to 1.33.18

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=76
2017-03-24 17:52:37 +00:00
Dominique Leuenberger
a7ce36e457 Accepting request 415390 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/415390
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=4
2016-08-03 09:43:17 +00:00
Martin Pluskal
b8da36b918 Accepting request 415389 from home:Andreas_Schwab:Factory
- narrowing.patch: fix invalid narrowing conversion

OBS-URL: https://build.opensuse.org/request/show/415389
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=74
2016-07-27 10:46:49 +00:00
Dominique Leuenberger
2ce4b2b449 Accepting request 344892 from devel:libraries:c_c++
- Update to 1.3.18
  * Fix bug: infinite recursion if you try to format a floating 
		point value that was created from something other than a 
		finite number. Creation of a floating point XML-RPC value from 
		something other than a number now fails.

OBS-URL: https://build.opensuse.org/request/show/344892
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=3
2015-11-18 21:34:45 +00:00
Martin Pluskal
07990f5dc4 - Update to 1.3.18
* Fix bug: infinite recursion if you try to format a floating 
		point value that was created from something other than a 
		finite number. Creation of a floating point XML-RPC value from 
		something other than a number now fails.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=72
2015-11-17 12:25:57 +00:00
Dominique Leuenberger
45185b7e0c Accepting request 298143 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/298143
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=2
2015-04-21 08:53:11 +00:00
Martin Pluskal
bd738868b0 Accepting request 298142 from home:pluskalm:branches:devel:libraries:c_c++
- Update to 1.33.17
  * Build: fix a "recompile with -fPIC" failure in parallel make.

OBS-URL: https://build.opensuse.org/request/show/298142
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=70
2015-04-20 09:17:28 +00:00
Dominique Leuenberger
1f38e0cf98 Accepting request 290059 from devel:libraries:c_c++
Somehow usefull library

OBS-URL: https://build.opensuse.org/request/show/290059
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xmlrpc-c?expand=0&rev=1
2015-03-12 15:38:41 +00:00
Martin Pluskal
b6bf7bed6e - Update dependencies
- Enable checks

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=68
2015-03-09 16:12:34 +00:00
Ismail Dönmez
286d28d554 Accepting request 289863 from home:pluskalm:branches:devel:libraries:c_c++
- Cleanup spec file with spec-cleaner
- Use url for source
- Update to 1.33.16
  * Packet stream socket: fix: sends corrupted packet when the 
    packet contains an ESC character. Always broken. (packet 
    stream sockets were new in Xmlrpc-c 1.11 - June 2007).
  * Build: fix 'make distclean' so it doesn't leave src/cpp/srcdir 
    and src/cpp/blddir.
- Changes for 1.33.15
  * Build: fix 'make distclean' so it doesn't leave src/cpp/srcdir 
    and src/cpp/blddir.

OBS-URL: https://build.opensuse.org/request/show/289863
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=67
2015-03-08 15:36:39 +00:00
7ab34bc591 xmlrpc-1.33.06
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=66
2013-11-25 12:38:15 +00:00
ce98f74cca Accepting request 177146 from home:adra:branches:devel:libraries:c_c++
Update to 1.25.23, Removed xmlrpc-c-default-constructor.patch and xmlrpc-c-no-curltypes-incl.patch (fixed upstream), Updated license, Updated build requirements, Renamed libxmlrpc-c-devel package to xmlrpc-c-devel, Remove static libraries

OBS-URL: https://build.opensuse.org/request/show/177146
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=65
2013-06-03 14:04:49 +00:00
Pascal Bleser
63a4ae353f - fix requires in -devel package
- remove Authors block from description

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=64
2011-11-22 19:48:33 +00:00
9b4425d219 Remove redundant/unwanted tags/section (cf. specfile guidelines)
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=63
2011-11-21 17:13:28 +00:00
Ismail Dönmez
c49e03aeb8 Accepting request 92892 from home:rjschwei:branches:devel:libraries:c_c++
Fix build errors:
remove include of curl/types.h; file no longer exists and has been empty for a while

OBS-URL: https://build.opensuse.org/request/show/92892
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=62
2011-11-21 17:00:16 +00:00
Ismail Dönmez
ce2d8cadb4 Accepting request 74804 from home:appleonkel:branches:devel:libraries:c_c++
I updated to recent stable version (not superstable). I hope the new %{soname} version wouldn't break anything. Please have a deeper look at this package.

OBS-URL: https://build.opensuse.org/request/show/74804
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=61
2011-07-18 11:51:13 +00:00
Pascal Bleser
718b35254a 1.06.41
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=60
2010-10-30 18:14:12 +00:00
Peter Nixon
0a3c43bfba Accepting request 46856 from home:computersalat:devel
OBS-URL: https://build.opensuse.org/request/show/46856
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=59
2010-09-08 09:21:57 +00:00
Pascal Bleser
3c2e02c37d bump release to reflect spec changes
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=58
2009-09-28 23:36:19 +00:00
Pascal Bleser
638c9e5023 also ship .a libs
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=57
2009-09-28 20:22:37 +00:00
Pascal Bleser
fa41a25e2f fix build on SLES_9
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=56
2009-09-28 17:59:54 +00:00
Pascal Bleser
1e26336311 disable as-needed on suse < 10.0
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=55
2009-09-28 14:16:20 +00:00
Pascal Bleser
5abb4f844e update to 1.06.37 + spec fixes + fix build on factory with --as-needed
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=54
2009-09-28 07:19:39 +00:00
Cristian Rodríguez
15481458a4 Copy from home:bitshuffler:branches:devel:libraries:c_c++/xmlrpc-c via accept of submit request 10041
Request was accepted with message:
reviewed ok.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=53
2009-05-09 19:26:14 +00:00
Cristian Rodríguez
0b5b4d2ed0 Copy from home:bitshuffler:branches:devel:libraries:c_c++/xmlrpc-c via accept of submit request 10039
Request was accepted with message:
reviewed ok.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=52
2009-05-09 18:43:02 +00:00
Peter Nixon
58fc19a67a OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=51 2008-08-04 15:06:15 +00:00
Peter Nixon
6ff17f6d26 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=50 2008-08-04 12:17:26 +00:00
Peter Nixon
c11c7a456a OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=49 2008-08-04 12:14:22 +00:00
OBS User unknown
24930f6751 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=48 2007-06-12 22:59:28 +00:00
OBS User unknown
db0e1cd9e8 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=47 2007-06-12 20:22:24 +00:00
OBS User unknown
014b3e1f12 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=46 2007-06-12 20:20:11 +00:00
OBS User unknown
defb0955d2 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=45 2007-06-12 20:20:10 +00:00
OBS User unknown
40fbc4a1b1 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=44 2007-06-12 19:40:00 +00:00
OBS User unknown
8fc1ecd002 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=43 2007-06-12 18:45:52 +00:00
OBS User unknown
59e116c3bd OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=42 2007-06-12 16:31:45 +00:00
OBS User unknown
cee391c2ff OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=41 2007-06-12 14:09:22 +00:00
OBS User unknown
3fe83fd52d OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xmlrpc-c?expand=0&rev=40 2007-06-12 13:15:42 +00:00