Compare commits
45 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
beddf7cc75 | ||
|
|
c94be9cd41 | ||
|
|
f19a94c8fa | ||
|
|
f6aad88403 | ||
|
|
f12a5e24de | ||
|
|
7a50a0484f | ||
|
|
6a90c73483 | ||
|
|
2f9ade2902 | ||
|
|
f92c101d05 | ||
|
|
0e279f2bdf | ||
|
|
7eb15cf563 | ||
|
|
32d77fa707 | ||
|
|
53b1fc3aa9 | ||
|
|
8e001b534d | ||
|
|
973106e66e | ||
|
|
beeafb4b11 | ||
|
|
398566348e | ||
|
|
c5b672b392 | ||
|
|
7ec2883a62 | ||
|
|
9bbd63d057 | ||
|
|
349aa4369b | ||
|
|
7321f88182 | ||
|
|
26b35488da | ||
|
|
549b6ee65d | ||
|
|
5db1e53dea | ||
|
|
7ea18d7ffa | ||
|
|
a3a8fe5af2 | ||
| 2fefbf50d0 | |||
|
|
50e919084e | ||
|
|
4219eb7a8a | ||
|
|
e3dd5b7410 | ||
|
|
b03580677f | ||
|
419f03570f |
|||
| c85811e257 | |||
| b442cf537e | |||
| e1bf03ae31 | |||
| b2dc9e9333 | |||
| 1d08af0f0c | |||
|
|
732293b8fa | ||
|
|
01b2a6becd | ||
| cd1fc7a892 | |||
|
|
c820a8d95f | ||
|
|
46bffbbc77 | ||
|
|
3269ec56f9 | ||
|
|
5c1623f34b |
17 changed files with 242 additions and 2684 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -1 +1,9 @@
|
|||
/xmlrpc-c-1.32.5.tar.xz
|
||||
/xmlrpc-c-1.47.1.tar.xz
|
||||
/xmlrpc-c-1.48.0.tar.xz
|
||||
/xmlrpc-c-1.49.02.tar.xz
|
||||
/xmlrpc-c-1.51.0.tar.xz
|
||||
/xmlrpc-1.51.08.tgz
|
||||
/xmlrpc-c-1.59.02.tgz
|
||||
/xmlrpc-c-1.59.03.tgz
|
||||
/xmlrpc-c-1.60.04.tgz
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
From 4d3bbc5d59418666a5fc91c8fe3e301ee9c89b32 Mon Sep 17 00:00:00 2001
|
||||
From aca713786debd68c81a823c5989afb3de82da45b Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Sat, 5 Apr 2008 11:41:34 +0200
|
||||
Subject: [PATCH 3/8] Use proper datatypes for 'long long'
|
||||
Subject: [PATCH 2/3] Use proper datatypes for 'long long'
|
||||
|
||||
xmlrpc-c uses 'long long' at some places (e.g. in printf
|
||||
statements with PRId64) under the assumption that it has a
|
||||
|
|
@ -16,13 +16,13 @@ It is arguable whether 'int_least64_t' (and 'int_least32_t')
|
|||
would be a better choice for 'int64_t' (and 'int32_t'), but
|
||||
for now, the patch uses datatypes with exact widths.
|
||||
---
|
||||
include/xmlrpc-c/base.h | 7 ++++---
|
||||
lib/libutil/string_number.c | 1 +
|
||||
src/cpp/param_list.cpp | 8 ++++----
|
||||
3 files changed, 9 insertions(+), 7 deletions(-)
|
||||
include/xmlrpc-c/base.h | 7 ++++---
|
||||
lib/libutil/string_number.c | 1 +
|
||||
src/cpp/param_list.cpp | 2 +-
|
||||
3 files changed, 6 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/include/xmlrpc-c/base.h b/include/xmlrpc-c/base.h
|
||||
index cdc9161..cbdf3d0 100644
|
||||
index e74e2c5..90f2c91 100644
|
||||
--- a/include/xmlrpc-c/base.h
|
||||
+++ b/include/xmlrpc-c/base.h
|
||||
@@ -5,6 +5,7 @@
|
||||
|
|
@ -31,9 +31,9 @@ index cdc9161..cbdf3d0 100644
|
|||
#include <stdarg.h>
|
||||
+#include <stdint.h>
|
||||
#include <time.h>
|
||||
#include <xmlrpc-c/c_util.h>
|
||||
#include <xmlrpc-c/c_util.h> /* For XMLRPC_DLLEXPORT */
|
||||
#include <xmlrpc-c/util.h>
|
||||
@@ -50,9 +51,9 @@ xmlrpc_version(unsigned int * const majorP,
|
||||
@@ -73,9 +74,9 @@ xmlrpc_version(unsigned int * const majorP,
|
||||
|
||||
typedef signed int xmlrpc_int;
|
||||
/* An integer of the type defined by XML-RPC <int>; i.e. 32 bit */
|
||||
|
|
@ -45,7 +45,7 @@ index cdc9161..cbdf3d0 100644
|
|||
/* An integer of the type defined by "XML-RPC" <i8>; i.e. 64 bit */
|
||||
typedef int xmlrpc_bool;
|
||||
/* A boolean (of the type defined by XML-RPC <boolean>, but there's
|
||||
@@ -89,7 +90,7 @@ typedef int xmlrpc_socket;
|
||||
@@ -112,7 +113,7 @@ typedef int xmlrpc_socket;
|
||||
#define XMLRPC_INT32_MAX 0x7fffffff
|
||||
#define XMLRPC_INT32_MIN (-XMLRPC_INT32_MAX - 1)
|
||||
|
||||
|
|
@ -67,23 +67,9 @@ index 1c284af..a7e78ad 100644
|
|||
|
||||
#include <xmlrpc-c/base.h>
|
||||
diff --git a/src/cpp/param_list.cpp b/src/cpp/param_list.cpp
|
||||
index 67c636b..60f7df9 100644
|
||||
index 1f7ae41..60f7df9 100644
|
||||
--- a/src/cpp/param_list.cpp
|
||||
+++ b/src/cpp/param_list.cpp
|
||||
@@ -265,10 +265,10 @@ paramList::getNil(unsigned int const paramNumber) const {
|
||||
|
||||
|
||||
|
||||
-long long
|
||||
+xmlrpc_int64
|
||||
paramList::getI8(unsigned int const paramNumber,
|
||||
- long long const minimum,
|
||||
- long long const maximum) const {
|
||||
+ xmlrpc_int64 const minimum,
|
||||
+ xmlrpc_int64 const maximum) const {
|
||||
|
||||
if (paramNumber >= this->paramVector.size())
|
||||
throw(fault("Not enough parameters", fault::CODE_TYPE));
|
||||
@@ -277,7 +277,7 @@ paramList::getI8(unsigned int const paramNumber,
|
||||
throw(fault("Parameter that is supposed to be 64-bit integer is not",
|
||||
fault::CODE_TYPE));
|
||||
|
|
@ -94,5 +80,5 @@ index 67c636b..60f7df9 100644
|
|||
|
||||
if (longlongvalue < minimum)
|
||||
--
|
||||
1.7.4
|
||||
2.13.1
|
||||
|
||||
|
|
@ -1,17 +1,18 @@
|
|||
From 255ebf4b1204124123971a3bb27741cccbb51692 Mon Sep 17 00:00:00 2001
|
||||
From 9bb040a9ae29e1b5afcb674c74f107114b316818 Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Thu, 29 Jul 2010 19:25:32 +0200
|
||||
Subject: [PATCH 5/8] allow 30x redirections
|
||||
Subject: [PATCH 3/3] allow 30x redirections
|
||||
|
||||
---
|
||||
lib/curl_transport/curltransaction.c | 4 ++++
|
||||
lib/curl_transport/curltransaction.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/lib/curl_transport/curltransaction.c b/lib/curl_transport/curltransaction.c
|
||||
index 0f76fc2..6292aee 100644
|
||||
index f0aafae..b5392a9 100644
|
||||
--- a/lib/curl_transport/curltransaction.c
|
||||
+++ b/lib/curl_transport/curltransaction.c
|
||||
@@ -600,6 +600,10 @@ setupCurlSession(xmlrpc_env * const envP,
|
||||
@@ -671,6 +671,10 @@ setupCurlSession(xmlrpc_env * const envP,
|
||||
|
||||
curl_easy_setopt(curlSessionP, CURLOPT_POST, 1);
|
||||
curl_easy_setopt(curlSessionP, CURLOPT_URL, transP->serverUrl);
|
||||
|
||||
|
|
@ -23,5 +24,5 @@ index 0f76fc2..6292aee 100644
|
|||
if (!envP->fault_occurred) {
|
||||
curl_easy_setopt(curlSessionP, CURLOPT_POSTFIELDS,
|
||||
--
|
||||
1.7.10.4
|
||||
2.13.1
|
||||
|
||||
10
Makefile
10
Makefile
|
|
@ -1,10 +0,0 @@
|
|||
MAKEFILE_COMMON = $(HOME)/.fedora/common.mk
|
||||
-include $(MAKEFILE_COMMON)
|
||||
|
||||
all:
|
||||
|
||||
SVN_VER ?= ${VERSION}
|
||||
|
||||
svn-sources:
|
||||
cd $(DESTDIR) . && svn export https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/advanced@${SVN_REV} xmlrpc-c-${SVN_VER}
|
||||
cd $(DESTDIR) . && tar cJf xmlrpc-c-${SVN_VER}.tar.xz xmlrpc-c-${SVN_VER} --owner root --group root --mode=go-w,a+rX
|
||||
104
dfs.cc
104
dfs.cc
|
|
@ -1,104 +0,0 @@
|
|||
/* --*- c++ -*--
|
||||
* Copyright (C) 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; version 3 of the License.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <iostream>
|
||||
|
||||
class node {
|
||||
public:
|
||||
node(std::string const &name) : name_(name) {}
|
||||
void add_child(class node *n)
|
||||
{
|
||||
children_.push_back(n);
|
||||
}
|
||||
|
||||
void dfs(std::list<std::string> &res);
|
||||
bool visited;
|
||||
|
||||
private:
|
||||
std::string const name_;
|
||||
std::list<class node *> children_;
|
||||
};
|
||||
|
||||
void node::dfs(std::list<std::string> &res)
|
||||
{
|
||||
std::list<class node *>::iterator i;
|
||||
|
||||
visited = true;
|
||||
|
||||
for (i = children_.begin(); i != children_.end(); ++i) {
|
||||
if ((*i)->visited)
|
||||
continue;
|
||||
|
||||
(*i)->dfs(res);
|
||||
}
|
||||
|
||||
res.push_front(name_);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
std::map<std::string, class node *> nodes;
|
||||
|
||||
for (;;) {
|
||||
std::string name;
|
||||
class node *cur_node;
|
||||
|
||||
std::cin >> name;
|
||||
if (!std::cin.good())
|
||||
break;
|
||||
|
||||
if (nodes.find(name) == nodes.end())
|
||||
nodes[name] = new node(name);
|
||||
|
||||
cur_node = nodes[name];
|
||||
|
||||
while (std::cin.good()) {
|
||||
std::cin >> name;
|
||||
|
||||
if (name == "##")
|
||||
break;
|
||||
|
||||
if (nodes.find(name) == nodes.end())
|
||||
nodes[name] = new node(name);
|
||||
|
||||
cur_node->add_child(nodes[name]);
|
||||
}
|
||||
}
|
||||
|
||||
typedef std::map<std::string, class node *>::iterator node_iterator;
|
||||
|
||||
for (node_iterator n = nodes.begin(); n != nodes.end(); ++n) {
|
||||
for (node_iterator m = nodes.begin();
|
||||
m != nodes.end(); ++m)
|
||||
m->second->visited = false;
|
||||
|
||||
std::list<std::string> res(nodes.size());
|
||||
n->second->dfs(res);
|
||||
|
||||
for (std::list<std::string>::const_iterator i = res.begin();
|
||||
i != res.end(); ++i)
|
||||
std::cout << *i << " ";
|
||||
|
||||
std::cout << std::endl;
|
||||
}
|
||||
}
|
||||
57
dso-fixup
57
dso-fixup
|
|
@ -1,57 +0,0 @@
|
|||
#! /bin/bash
|
||||
# Copyright (C) 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; version 3 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
## Usage: dso-fixup <build-root> <libdir> <pattern> <libs>*
|
||||
|
||||
BR=$1
|
||||
LIBDIR=$2
|
||||
PATTERN=$3
|
||||
shift 3
|
||||
|
||||
for i; do
|
||||
echo -n $(basename "$i")' '
|
||||
readelf -d $i | sed "\\!(NEEDED).*${PATTERN}!"'s/[^:]\+: \[\(.*\)\]/\1/p;d' | xargs echo -n
|
||||
echo " ##"
|
||||
done | ./depsort | while read lib deps; do
|
||||
link=$BR$LIBDIR/${lib%.so.*}.so
|
||||
test -L "$link" || {
|
||||
echo "bad file '$link'" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
set -- $deps
|
||||
test $# -ne 0 || continue
|
||||
|
||||
rm -f $link
|
||||
|
||||
|
||||
{
|
||||
echo '/* GNU ld script */'
|
||||
echo -n "INPUT($LIBDIR/$lib"
|
||||
d=
|
||||
if test "$#" -gt 0; then
|
||||
echo -n " AS_NEEDED("
|
||||
for i; do
|
||||
echo -n "$d$LIBDIR/$i"
|
||||
d=' '
|
||||
done
|
||||
echo -n ")"
|
||||
fi
|
||||
echo ")"
|
||||
} > "$link"
|
||||
|
||||
chmod 0644 "$link"
|
||||
done
|
||||
1
lastver
1
lastver
|
|
@ -1 +0,0 @@
|
|||
2451
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
5c8a328f52e4f010d1ea3b56ae685874 xmlrpc-c-1.32.5.tar.xz
|
||||
SHA512 (xmlrpc-c-1.60.04.tgz) = 68407053eec1e3f32187169f5bb976e9f043f1576dd9fb7a9076ed00414dd0293cfdf72527a314c244dd48986402af3c9cc33d110ed3b382a13190eb8dddb734
|
||||
|
|
|
|||
2
verinfo
2
verinfo
|
|
@ -1,2 +0,0 @@
|
|||
http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced/
|
||||
revision=([0-9]+)
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
From 80047d74644eeda55c451aea59951eb502649cf4 Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Thu, 29 Jul 2010 19:43:08 +0200
|
||||
Subject: [PATCH 7/8] check vasprintf return value
|
||||
|
||||
---
|
||||
lib/libutil/asprintf.c | 3 ++-
|
||||
lib/util/casprintf.c | 3 ++-
|
||||
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/lib/libutil/asprintf.c b/lib/libutil/asprintf.c
|
||||
index a79cd81..5a06f0f 100644
|
||||
--- a/lib/libutil/asprintf.c
|
||||
+++ b/lib/libutil/asprintf.c
|
||||
@@ -121,7 +121,8 @@ xmlrpc_vasprintf(const char ** const retvalP,
|
||||
char * string;
|
||||
|
||||
#if HAVE_ASPRINTF
|
||||
- vasprintf(&string, fmt, varargs);
|
||||
+ if (vasprintf(&string, fmt, varargs) < 0)
|
||||
+ string = NULL;
|
||||
#else
|
||||
simpleVasprintf(&string, fmt, varargs);
|
||||
#endif
|
||||
diff --git a/lib/util/casprintf.c b/lib/util/casprintf.c
|
||||
index 643f145..9139253 100644
|
||||
--- a/lib/util/casprintf.c
|
||||
+++ b/lib/util/casprintf.c
|
||||
@@ -99,7 +99,8 @@ cvasprintf(const char ** const retvalP,
|
||||
char * string;
|
||||
|
||||
#if HAVE_ASPRINTF
|
||||
- vasprintf(&string, fmt, varargs);
|
||||
+ if (vasprintf(&string, fmt, varargs) < 0)
|
||||
+ string = NULL;
|
||||
#else
|
||||
simpleVasprintf(&string, fmt, varargs);
|
||||
#endif
|
||||
--
|
||||
1.7.3.4
|
||||
|
||||
2128
xmlrpc-c-cmake.patch
2128
xmlrpc-c-cmake.patch
File diff suppressed because it is too large
Load diff
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/src/xmlrpc_server_abyss.c b/src/xmlrpc_server_abyss.c
|
||||
index 614f64b..998290f 100644
|
||||
--- a/src/xmlrpc_server_abyss.c
|
||||
+++ b/src/xmlrpc_server_abyss.c
|
||||
@@ -776,7 +776,7 @@ createServer(xmlrpc_env * const envP,
|
||||
ServerInit2(abyssServerP, &error);
|
||||
|
||||
if (error) {
|
||||
- xmlrpc_faultf(envP, error);
|
||||
+ xmlrpc_faultf(envP, "%s", error);
|
||||
xmlrpc_strfree(error);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
From df68067713ab58bf14ac1e75eace9fac45dba7d9 Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Thu, 30 Dec 2010 20:44:06 +0100
|
||||
Subject: [PATCH 8/8] include missing <xmlrpc-c/string_int.h>
|
||||
|
||||
gives
|
||||
|
||||
| /tmp/xmlrpc-c/src/xmlrpc_libxml2.c: In function 'end_element':
|
||||
| /tmp/xmlrpc-c/src/xmlrpc_libxml2.c:303:2: warning: implicit declaration of function 'xmlrpc_streq'
|
||||
| ...
|
||||
| ../src/libxmlrpc.so.3.25: undefined reference to `xmlrpc_streq'
|
||||
|
||||
else.
|
||||
---
|
||||
src/xmlrpc_libxml2.c | 1 +
|
||||
1 files changed, 1 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/src/xmlrpc_libxml2.c b/src/xmlrpc_libxml2.c
|
||||
index 57ae06b..ef073d4 100644
|
||||
--- a/src/xmlrpc_libxml2.c
|
||||
+++ b/src/xmlrpc_libxml2.c
|
||||
@@ -38,6 +38,7 @@
|
||||
|
||||
#include "xmlrpc-c/base.h"
|
||||
#include "xmlrpc-c/base_int.h"
|
||||
+#include "xmlrpc-c/string_int.h"
|
||||
#include "xmlrpc-c/xmlparser.h"
|
||||
|
||||
/* Define the contents of our internal structure. */
|
||||
--
|
||||
1.7.3.4
|
||||
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
--- xmlrpc-c-1.32.5/src/cpp/base64.cpp~ 2010-05-21 00:52:29.000000000 +0200
|
||||
+++ xmlrpc-c-1.32.5/src/cpp/base64.cpp 2016-02-16 08:37:43.874552656 +0100
|
||||
@@ -15,14 +15,14 @@
|
||||
namespace {
|
||||
|
||||
char const table_a2b_base64[] = {
|
||||
- -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
|
||||
- -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
|
||||
- -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
|
||||
- 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1, /* Note PAD->0 */
|
||||
- -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
|
||||
- 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
|
||||
- -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
|
||||
- 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
|
||||
+ 64,64,64,64, 64,64,64,64, 64,64,64,64, 64,64,64,64,
|
||||
+ 64,64,64,64, 64,64,64,64, 64,64,64,64, 64,64,64,64,
|
||||
+ 64,64,64,64, 64,64,64,64, 64,64,64,62, 64,64,64,63,
|
||||
+ 52,53,54,55, 56,57,58,59, 60,61,64,64, 64, 0,64,64, /* Note PAD->0 */
|
||||
+ 64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
|
||||
+ 15,16,17,18, 19,20,21,22, 23,24,25,64, 64,64,64,64,
|
||||
+ 64,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
|
||||
+ 41,42,43,44, 45,46,47,48, 49,50,51,64, 64,64,64,64
|
||||
};
|
||||
|
||||
char const base64Pad('=');
|
||||
@@ -210,7 +210,7 @@
|
||||
buffer.discardResidue();
|
||||
} else {
|
||||
unsigned int const tableIndex(thisChar);
|
||||
- if (table_a2b_base64[tableIndex] == -1)
|
||||
+ if (table_a2b_base64[tableIndex] == 64)
|
||||
throwf("Contains non-base64 character "
|
||||
"with ASCII code 0x%02x", thisChar);
|
||||
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
From 25a777bb0ee2e2ee17d87006f76b3cea5d15a9f7 Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Mon, 25 Feb 2008 17:48:25 +0100
|
||||
Subject: [PATCH 2/9] fixed broken format string modifiers
|
||||
|
||||
---
|
||||
examples/json.c | 4 ++--
|
||||
examples/parse_xml.c | 2 +-
|
||||
2 files changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/examples/json.c b/examples/json.c
|
||||
index 89fe82b..91ea50d 100644
|
||||
--- a/examples/json.c
|
||||
+++ b/examples/json.c
|
||||
@@ -41,7 +41,7 @@ printAsXml(xmlrpc_value * const valP) {
|
||||
printf("XML-RPC XML:\n");
|
||||
|
||||
printf("%.*s\n",
|
||||
- XMLRPC_MEMBLOCK_SIZE(char, &out),
|
||||
+ (int)XMLRPC_MEMBLOCK_SIZE(char, &out),
|
||||
XMLRPC_MEMBLOCK_CONTENTS(char, &out));
|
||||
|
||||
XMLRPC_MEMBLOCK_CLEAN(char, &out);
|
||||
@@ -70,7 +70,7 @@ printAsJson(xmlrpc_value * const valP) {
|
||||
printf("JSON:\n");
|
||||
|
||||
printf("%.*s\n",
|
||||
- XMLRPC_MEMBLOCK_SIZE(char, &out),
|
||||
+ (int)XMLRPC_MEMBLOCK_SIZE(char, &out),
|
||||
XMLRPC_MEMBLOCK_CONTENTS(char, &out));
|
||||
|
||||
XMLRPC_MEMBLOCK_CLEAN(char, &out);
|
||||
diff --git a/examples/parse_xml.c b/examples/parse_xml.c
|
||||
index 2e6c508..4f6c308 100644
|
||||
--- a/examples/parse_xml.c
|
||||
+++ b/examples/parse_xml.c
|
||||
@@ -58,7 +58,7 @@ describeXmlElement(const xml_element * const elemP,
|
||||
printf("%sXML element type: '%s'\n",
|
||||
prefix, xml_element_name(elemP));
|
||||
|
||||
- printf("%sNumber of child elements: %u\n",
|
||||
+ printf("%sNumber of child elements: %zu\n",
|
||||
prefix, xml_element_children_size(elemP));
|
||||
|
||||
for (i = 0; i < xml_element_children_size(elemP); ++i) {
|
||||
--
|
||||
1.7.6
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
From 6affc342b968ec042d9efe84ca0ea40c8d88e8bf Mon Sep 17 00:00:00 2001
|
||||
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||
Date: Sat, 21 Nov 2009 14:12:41 +0100
|
||||
Subject: [PATCH 4/5] fixed unitialized variable
|
||||
|
||||
Reported by Nikola Pajkovsky <npajkovs AT redhat.com>:
|
||||
|
||||
Problem shows up only when you compiled xmlrpc with nss and try to
|
||||
connect to server with wrong certificate.
|
||||
---
|
||||
lib/curl_transport/curltransaction.c | 1 +
|
||||
1 files changed, 1 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/lib/curl_transport/curltransaction.c b/lib/curl_transport/curltransaction.c
|
||||
index 59cb6ab..3c75010 100644
|
||||
--- a/lib/curl_transport/curltransaction.c
|
||||
+++ b/lib/curl_transport/curltransaction.c
|
||||
@@ -641,6 +641,7 @@ curlTransaction_create(xmlrpc_env * const envP,
|
||||
curlTransactionP->curlSessionP = curlSessionP;
|
||||
curlTransactionP->userContextP = userContextP;
|
||||
curlTransactionP->progress = progress;
|
||||
+ curlTransactionP->curlError[0] = '\0';
|
||||
|
||||
curlTransactionP->serverUrl = strdup(serverP->serverUrl);
|
||||
if (curlTransactionP->serverUrl == NULL)
|
||||
--
|
||||
1.7.1.1
|
||||
|
||||
379
xmlrpc-c.spec
379
xmlrpc-c.spec
|
|
@ -1,73 +1,57 @@
|
|||
%global advanced_branch 1
|
||||
%global svnrev 2451
|
||||
# build order matters and multiple threads break it
|
||||
%global _smp_mflags -j1
|
||||
|
||||
%{!?release_func:%global release_func() %%{?prerelease:0.}%1%%{?prerelease:.%%prerelease}%%{?dist}}
|
||||
|
||||
Summary: A lightweight RPC library based on XML and HTTP
|
||||
Name: xmlrpc-c
|
||||
Version: 1.32.5
|
||||
Release: %release_func 1909.svn%svnrev
|
||||
# See COPYING for details.
|
||||
Name: xmlrpc-c
|
||||
Version: 1.60.04
|
||||
Release: 7%{?dist}
|
||||
Summary: Lightweight RPC library based on XML and HTTP
|
||||
# See doc/COPYING for details.
|
||||
# The Python 1.5.2 license used by a few files is just BSD.
|
||||
License: BSD and MIT
|
||||
Group: System Environment/Libraries
|
||||
URL: http://xmlrpc-c.sourceforge.net/
|
||||
%{!?advanced_branch:Source0: http://dl.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-%version.tgz}
|
||||
# generated by 'make svn-sources [SVN_VER=%version SVN_REV=%svnrev]'. Unfortunately,
|
||||
# upstream does not tag versions so we must fetch from the branch and
|
||||
# check which version was used for it
|
||||
%{?advanced_branch:Source0: xmlrpc-c-%version.tar.xz}
|
||||
# Automatically converted from old format: BSD and MIT - review is highly recommended.
|
||||
License: LicenseRef-Callaway-BSD AND LicenseRef-Callaway-MIT
|
||||
URL: http://xmlrpc-c.sourceforge.net/
|
||||
Source: http://dl.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-%version.tgz
|
||||
|
||||
Source100: dfs.cc
|
||||
Source101: dso-fixup
|
||||
# Upstreamable patches
|
||||
Patch102: 0002-Use-proper-datatypes-for-long-long.patch
|
||||
Patch103: 0003-allow-30x-redirections.patch
|
||||
|
||||
Patch100: xmlrpc-c-cmake.patch
|
||||
Patch102: xmlrpc-c-printf-size_t.patch
|
||||
Patch105: xmlrpc-c-longlong.patch
|
||||
Patch107: xmlrpc-c-uninit-curl.patch
|
||||
Patch108: xmlrpc-c-30x-redirect.patch
|
||||
Patch109: xmlrpc-c-check-vasprintf-return-value.patch
|
||||
Patch110: xmlrpc-c-include-string_int.h.patch
|
||||
Patch111: xmlrpc-c-format-security-warning.patch
|
||||
Patch112: xmlrpc-c-int-to-char-conversion.patch
|
||||
|
||||
|
||||
BuildRoot: %_tmppath/%name-%version-%release-root
|
||||
BuildRequires: cmake
|
||||
BuildRequires: curl-devel libxml2-devel readline-devel ncurses-devel
|
||||
BuildRequires: git-core
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: pkgconfig(libxml-2.0)
|
||||
BuildRequires: pkgconfig(openssl)
|
||||
BuildRequires: pkgconfig(libcurl)
|
||||
BuildRequires: readline-devel
|
||||
BuildRequires: ncurses-devel
|
||||
|
||||
%package c++
|
||||
Summary: C++ libraries for xmlrpc-c
|
||||
Group: System Environment/Libraries
|
||||
Requires: %name%{?_isa} = %version-%release
|
||||
Summary: C++ libraries for xmlrpc-c
|
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
%package client
|
||||
Summary: C client libraries for xmlrpc-c
|
||||
Group: System Environment/Libraries
|
||||
Requires: %name%{?_isa} = %version-%release
|
||||
Summary: C client libraries for xmlrpc-c
|
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
%package client++
|
||||
Summary: C++ client libraries for xmlrpc-c
|
||||
Group: System Environment/Libraries
|
||||
Requires: %name%{?_isa} = %version-%release
|
||||
Requires: %name-c++%{?_isa} = %version-%release
|
||||
Requires: %name-client%{?_isa} = %version-%release
|
||||
Summary: C++ client libraries for xmlrpc-c
|
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
%package devel
|
||||
Summary: Development files for xmlrpc-c based programs
|
||||
Group: Development/Libraries
|
||||
Requires: %name%{?_isa} = %version-%release
|
||||
Requires: %name-c++%{?_isa} = %version-%release
|
||||
Requires: %name-client%{?_isa} = %version-%release
|
||||
Requires: %name-client++%{?_isa} = %version-%release
|
||||
Summary: Development files for xmlrpc-c based programs
|
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-client++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
%package apps
|
||||
Summary: Sample XML-RPC applications
|
||||
Group: Applications/Internet
|
||||
Requires: %name%{?_isa} = %version-%release
|
||||
Requires: %name-c++%{?_isa} = %version-%release
|
||||
Requires: %name-client%{?_isa} = %version-%release
|
||||
Requires: %name-client++%{?_isa} = %version-%release
|
||||
Summary: Sample XML-RPC applications
|
||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: %{name}-client++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -117,135 +101,212 @@ This package contains some handy XML-RPC demo applications.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch100 -p1
|
||||
%patch102 -p1
|
||||
%patch105 -p1
|
||||
%patch107 -p1
|
||||
%patch108 -p1
|
||||
%patch109 -p1
|
||||
%patch110 -p1
|
||||
%patch111 -p1
|
||||
%patch112 -p1
|
||||
|
||||
## not needed...
|
||||
rm doc/{INSTALL,configure_doc}
|
||||
%autosetup -Sgit
|
||||
|
||||
|
||||
%build
|
||||
mkdir -p build
|
||||
cd build
|
||||
export CFLAGS="$RPM_OPT_FLAGS -Wno-uninitialized -Wno-unknown-pragmas"
|
||||
export CXXFLAGS="$RPM_OPT_FLAGS"
|
||||
export LDFLAGS="-Wl,-as-needed"
|
||||
cmake .. \
|
||||
-D_lib:STRING=%_lib \
|
||||
-DMUST_BUILD_CURL_CLIENT:BOOL=ON \
|
||||
-DMUST_BUILD_LIBWWW_CLIENT:BOOL=OFF \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=%_prefix \
|
||||
-DBUILD_SHARED_LIBS:BOOL=ON \
|
||||
-DENABLE_TOOLS:BOOL=ON
|
||||
make VERBOSE=1 %{?_smp_mflags}
|
||||
|
||||
%__cxx $RPM_OPT_FLAGS %SOURCE100 -o depsort
|
||||
%configure
|
||||
%make_build CFLAGS="%{optflags} -std=gnu17"
|
||||
%make_build CFLAGS="%{optflags} -std=gnu17" -C tools
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
cd build
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
chmod +x $RPM_BUILD_ROOT%_libdir/*.so
|
||||
|
||||
%SOURCE101 "$RPM_BUILD_ROOT" "%_libdir" 'libxmlrpc' $RPM_BUILD_ROOT%_libdir/libxmlrpc*.so.[0-9]
|
||||
%make_install
|
||||
%make_install -C tools
|
||||
|
||||
|
||||
%check
|
||||
unset PKG_CONFIG_PATH
|
||||
export PKG_CONFIG_LIBDIR=$RPM_BUILD_ROOT%_libdir/pkgconfig:%_libdir/pkgconfig:%_datadir/pkgconfig
|
||||
PATH=$RPM_BUILD_ROOT%_bindir:$PATH
|
||||
|
||||
_e() {
|
||||
echo "\$ $@"
|
||||
"$@"
|
||||
}
|
||||
|
||||
set +x
|
||||
_e xmlrpc-c-config --help
|
||||
for comp in c++ cgi-server server-util abyss-server client libwww-client; do
|
||||
for opt in '--version' '--libs' 'c++2 --libs' 'c++ --libs --static'; do
|
||||
_e xmlrpc-c-config "$comp" $opt
|
||||
done
|
||||
done
|
||||
set -x
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%post client -p /sbin/ldconfig
|
||||
%postun client -p /sbin/ldconfig
|
||||
|
||||
%post c++ -p /sbin/ldconfig
|
||||
%postun c++ -p /sbin/ldconfig
|
||||
|
||||
%post client++ -p /sbin/ldconfig
|
||||
%postun client++ -p /sbin/ldconfig
|
||||
|
||||
#%%make_test
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc doc/*
|
||||
%_libdir/*.so.3*
|
||||
%exclude %_libdir/libxmlrpc_client.so*
|
||||
%license doc/COPYING lib/abyss/license.txt
|
||||
%doc doc/CREDITS doc/HISTORY
|
||||
%{_libdir}/libxmlrpc_xml*.so.*
|
||||
%{_libdir}/libxmlrpc.so.*
|
||||
%{_libdir}/libxmlrpc_openssl.so.*
|
||||
%{_libdir}/libxmlrpc_util.so.*
|
||||
%{_libdir}/libxmlrpc_abyss.so.*
|
||||
%{_libdir}/libxmlrpc_server.so.*
|
||||
%{_libdir}/libxmlrpc_server_abyss.so.*
|
||||
%{_libdir}/libxmlrpc_server_cgi.so.*
|
||||
%exclude %{_libdir}/libxmlrpc*.a
|
||||
|
||||
|
||||
%files client
|
||||
%defattr(-,root,root,-)
|
||||
%_libdir/libxmlrpc_client.so.*
|
||||
|
||||
%{_libdir}/libxmlrpc_client.so.*
|
||||
|
||||
%files c++
|
||||
%defattr(-,root,root,-)
|
||||
%_libdir/*.so.8*
|
||||
%exclude %_libdir/libxmlrpc_client++.so*
|
||||
|
||||
%{_libdir}/libxmlrpc_cpp.so.*
|
||||
%{_libdir}/libxmlrpc++.so.*
|
||||
%{_libdir}/libxmlrpc_util++.so.*
|
||||
%{_libdir}/libxmlrpc_abyss++.so.*
|
||||
%{_libdir}/libxmlrpc_server++.so.*
|
||||
%{_libdir}/libxmlrpc_server_abyss++.so.*
|
||||
%{_libdir}/libxmlrpc_server_cgi++.so.*
|
||||
%{_libdir}/libxmlrpc_packetsocket.so.*
|
||||
%{_libdir}/libxmlrpc_server_pstream++.so.*
|
||||
|
||||
%files client++
|
||||
%defattr(-,root,root,-)
|
||||
%_libdir/libxmlrpc_client++.so.*
|
||||
|
||||
%{_libdir}/libxmlrpc_client++.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%_bindir/xmlrpc-c-config
|
||||
%_includedir/xmlrpc-c
|
||||
%_includedir/*.h
|
||||
%_libdir/pkgconfig/*.pc
|
||||
%_libdir/*.so
|
||||
|
||||
%{_bindir}/xmlrpc-c-config
|
||||
%{_includedir}/xmlrpc-c/
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/pkgconfig/xmlrpc*.pc
|
||||
%{_libdir}/libxmlrpc*.so
|
||||
|
||||
%files apps
|
||||
%defattr(-,root,root,-)
|
||||
%doc tools/xmlrpc/xmlrpc.html
|
||||
%{_bindir}/xmlrpc_parsecall
|
||||
%{_bindir}/xmlrpc
|
||||
%{_bindir}/xmlrpc_transport
|
||||
%doc tools/xmlrpc_transport/xmlrpc_transport.html
|
||||
%_mandir/man1/*
|
||||
%_bindir/xmlrpc
|
||||
%_bindir/xmlrpc_transport
|
||||
%_bindir/xml-rpc-api2cpp
|
||||
%_bindir/xmlrpc_cpp_proxy
|
||||
%_bindir/xmlrpc_pstream
|
||||
%_bindir/xmlrpc_parsecall
|
||||
|
||||
%exclude %_bindir/xml-rpc-api2txt
|
||||
|
||||
%{_bindir}/xml-rpc-api2cpp
|
||||
%{_mandir}/man1/xml-rpc-api2cpp.1*
|
||||
%{_bindir}/xml-rpc-api2txt
|
||||
%{_mandir}/man1/xml-rpc-api2txt.1*
|
||||
%{_bindir}/xmlrpc_cpp_proxy
|
||||
%{_bindir}/xmlrpc_pstream
|
||||
%{_bindir}/xmlrpc_dumpserver
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.60.04-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jun 13 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1.60.04-6
|
||||
- Rebuilt for openssl 4.0
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.60.04-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.60.04-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Jan 23 2025 Jonathan Wright <jonathan@almalinux.org> - 1.60.04-3
|
||||
- fix ftbfs on gcc15 rhbz#2341577
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.60.04-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Jan 02 2025 Jonathan Wright <jonathan@almalinux.org> - 1.60.4-2
|
||||
- Use global macro to override make smp_flags
|
||||
|
||||
* Thu Jan 02 2025 Jonathan Wright <jonathan@almalinux.org> - 1.60.4-1
|
||||
- update to 1.60.4 rhbz#2334236
|
||||
- re-enable builds against libxml2, no more bundled libexpat
|
||||
- fixes rhbz#2310136
|
||||
- fixes rhbz#2310146
|
||||
- fixes rhbz#2310152
|
||||
|
||||
* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 1.59.03-3
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.59.03-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Tue Mar 26 2024 Jonathan Wright <jonathan@almalinux.org> - 1.59.03-1
|
||||
- update to 1.59.03 rhbz#2271506
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.59.02-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jan 03 2024 Jonathan Wright <jonathan@almalinux.org> - 1.59.02-1
|
||||
- Update to 1.59.02 rhbz#1694044
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.08-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.08-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Dec 06 2022 Jonathan Wright <jonathan@almalinux.org> - 1.51.08-1
|
||||
- update to 1.51.08
|
||||
- Remove meson build code, follow upstream build methods
|
||||
- rhbz#2009098
|
||||
- rhbz#2010890
|
||||
|
||||
* Tue Dec 06 2022 Jonathan Wright <jonathan@almalinux.org> - 1.51.0-17
|
||||
- Merge PR from yselkowitz to fix meson builds
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 1.51.0-14
|
||||
- Rebuilt with OpenSSL 3.0.0
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-8
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Apr 19 2018 Adam Williamson <awilliam@redhat.com> - 1.51.0-5
|
||||
- Backport upstream fix for console spam with debug messages (#1541868)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-3
|
||||
- Switch to %%ldconfig_scriptlets
|
||||
|
||||
* Wed Jan 17 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-2
|
||||
- BuildRequire openssl by pkgconfig()
|
||||
|
||||
* Mon Jan 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-1
|
||||
- Update to 1.51.0
|
||||
|
||||
* Sun Oct 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.49.02-2
|
||||
- Fix Requires.private in xmlrpc_server++.pc
|
||||
|
||||
* Fri Sep 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.49.02-1
|
||||
- Update to 1.49.02
|
||||
|
||||
* Fri Sep 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.48.0-8
|
||||
- Add xmlrpc_client++.pc
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Jun 30 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.48.0-5
|
||||
- Fix underlinking issue causing FTBFS
|
||||
|
||||
* Mon Mar 13 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.48.0-4
|
||||
- Build with openssl 1.1
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.48.0-2
|
||||
- Apply patches via git to preserve permissions
|
||||
|
||||
* Sun Dec 18 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.48.0-1
|
||||
- Update to 1.48.0
|
||||
|
||||
* Tue Feb 16 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.32.5-1909.svn2451
|
||||
- Add patch for conversion from int to usnigned char
|
||||
- Resolves: rhbz#1308254
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue