FS-2746 --resolve large xmlrpc update thanks garmt

This commit is contained in:
Jeff Lenk
2012-10-13 11:37:25 -05:00
parent 37ecad9903
commit 6b6c83a718
397 changed files with 41822 additions and 33841 deletions

View File

@@ -1 +0,0 @@
xml-rpc-api2cpp

View File

@@ -10,23 +10,24 @@ default: all
include $(BLDDIR)/config.mk
PROGS := xml-rpc-api2cpp
PROGRAMS_TO_INSTALL := $(PROGS)
MAN_FILES_TO_INSTALL := xml-rpc-api2cpp.1
all: $(PROGS)
include $(SRCDIR)/tools/common.mk
INCLUDES = -I$(BLDDIR) -I$(BLDDIR)/include -I$(SRCDIR)/include
# <sstream.h> in Glibc 2.2 has a bug that results in inlining failure,
# so we disable warnings for that:
CFLAGS_LOCAL = -Wno-inline
CXXFLAGS = $(INCLUDES) $(CXXFLAGS_COMMON) $(CFLAGS_PERSONAL) $(CADD)
INCLUDES = -I$(BLDDIR) -I$(BLDDIR)/include -Isrcdir/include
LDFLAGS = $(LADD)
LDLIBS = -L$(BLDDIR)/src/cpp -lxmlrpc_cpp -lxmlrpc_server $(CLIENT_LDLIBS)
PROGS :=
ifeq ($(MUST_BUILD_CLIENT),yes)
PROGS += xml-rpc-api2cpp
endif
all: $(PROGS)
LDLIBS = -L$(BLDDIR)/src/cpp -lxmlrpc_cpp -L$(BLDDIR)/src -lxmlrpc_server \
$(CLIENT_LDLIBS)
OBJECTS = \
xml-rpc-api2cpp.o \
@@ -46,14 +47,14 @@ xml-rpc-api2cpp: \
$(CXXLD) -o $@ $(LDFLAGS) $(OBJECTS) $(LDLIBS)
%.o:%.cpp
$(CXX) -c $(CXXFLAGS) $<
$(CXX) -c $(CXXFLAGS_ALL) $<
# This common.mk dependency makes sure the symlinks get built before
# this make file is used for anything.
$(SRCDIR)/common.mk: srcdir blddir
$(SRCDIR)/tools/common.mk: srcdir blddir
include Makefile.depend
include depend.mk
.PHONY: clean
clean: clean-common

View File

@@ -1,6 +0,0 @@
This program generates C++ wrapper classes for XML-RPC servers. It talks
to xmlrpc-c and XML-RPC.NET servers without any problems, but tends to
choke when talking to mod_php-based servers. It looks like there is some
kind of pipelining problem.
This code is an ongoing project. Please send feedback!