Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 127026 | Differences between
and this patch

Collapse All | Expand All

(-)xmlrpc-epi-0.51.orig/Makefile.am (-1 / +1 lines)
Lines 1-4 Link Here
1
SUBDIRS = expat src sample
1
SUBDIRS = src sample
2
2
3
CHANGE_LOG_GEN_BIN = scripts/cvs2cl.pl
3
CHANGE_LOG_GEN_BIN = scripts/cvs2cl.pl
4
CHANGE_LOG_GEN_FLAGS = -t -r -b --accum -I ChangeLog --gmt --prune
4
CHANGE_LOG_GEN_FLAGS = -t -r -b --accum -I ChangeLog --gmt --prune
(-)xmlrpc-epi-0.51.orig/configure.in (-4 / +3 lines)
Lines 15-26 Link Here
15
AC_PROG_MAKE_SET
15
AC_PROG_MAKE_SET
16
AC_PROG_LIBTOOL
16
AC_PROG_LIBTOOL
17
17
18
LIBS="-L/usr/local/lib"
18
LIBS="-lexpat"
19
19
20
dnl Checks for header files.
20
dnl Checks for header files.
21
AC_HEADER_STDC
21
AC_HEADER_STDC
22
AC_CHECK_HEADERS(fcntl.h malloc.h unistd.h)
22
AC_CHECK_HEADERS(fcntl.h malloc.h unistd.h expat.h)
23
24
23
25
dnl Checks for typedefs, structures, and compiler characteristics.
24
dnl Checks for typedefs, structures, and compiler characteristics.
26
AC_C_CONST
25
AC_C_CONST
Lines 36-42 Link Here
36
35
37
AC_CHECK_FUNCS(mktime strstr)
36
AC_CHECK_FUNCS(mktime strstr)
38
37
39
AC_OUTPUT(src/Makefile Makefile sample/Makefile expat/Makefile expat/xmltok/Makefile expat/xmlparse/Makefile)
38
AC_OUTPUT(src/Makefile Makefile sample/Makefile)
40
39
41
40
42
41
(-)xmlrpc-epi-0.51.orig/sample/Makefile.am (-1 / +1 lines)
Lines 1-4 Link Here
1
INCLUDES=-I../src -I../expat/xmltok -I../expat/xmlparse
1
INCLUDES=-I../src
2
2
3
bin_PROGRAMS = sample client server server_compliance_test memtest hello_client hello_server
3
bin_PROGRAMS = sample client server server_compliance_test memtest hello_client hello_server
4
4
(-)xmlrpc-epi-0.51.orig/src/Makefile.am (-2 / +2 lines)
Lines 1-8 Link Here
1
INCLUDES=-I../liblm -I../expat/xmltok -I../expat/xmlparse -I/usr/local/ssl/include 
1
INCLUDES=-I../liblm
2
2
3
lib_LTLIBRARIES = libxmlrpc.la
3
lib_LTLIBRARIES = libxmlrpc.la
4
4
5
libxmlrpc_la_LIBADD = ../expat/xmltok/libexpat_tok.la ../expat/xmlparse/libexpat_parse.la
5
libxmlrpc_la_LIBADD = 
6
6
7
libxmlrpc_la_SOURCES = \
7
libxmlrpc_la_SOURCES = \
8
	base64.c \
8
	base64.c \
(-)xmlrpc-epi-0.51.orig/src/xml_element.c (-1 / +1 lines)
Lines 91-97 Link Here
91
91
92
#include "xml_element.h"
92
#include "xml_element.h"
93
#include "queue.h"
93
#include "queue.h"
94
#include "xmlparse.h"
94
#include "expat.h"
95
#include "encodings.h"
95
#include "encodings.h"
96
96
97
#define my_free(thing)  if(thing) {free(thing); thing = 0;}
97
#define my_free(thing)  if(thing) {free(thing); thing = 0;}
(-)xmlrpc-epi-0.51.orig/src/xmlrpc.c (-1 / +1 lines)
Lines 120-126 Link Here
120
120
121
#include "queue.h"
121
#include "queue.h"
122
#include "xmlrpc.h"
122
#include "xmlrpc.h"
123
#include "xmlparse.h"
123
#include "expat.h"
124
#include "base64.h"
124
#include "base64.h"
125
125
126
#include "xml_to_xmlrpc.h"
126
#include "xml_to_xmlrpc.h"

Return to bug 127026