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/configure.in.orig (-3 / +3 lines)
Lines 19-26 Link Here
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 35-42 Link Here
35
AC_FUNC_STRFTIME
34
AC_FUNC_STRFTIME
36
35
37
AC_CHECK_FUNCS(mktime strstr)
36
AC_CHECK_FUNCS(mktime strstr)
37
AC_CHECK_LIB(expat, XML_Parse, , [AC_MSG_ERROR(libexpat not found)])
38
38
39
AC_OUTPUT(src/Makefile Makefile sample/Makefile expat/Makefile expat/xmltok/Makefile expat/xmlparse/Makefile)
39
AC_OUTPUT(src/Makefile Makefile sample/Makefile)
40
40
41
41
42
42
(-)xmlrpc-epi-0.51/Makefile.am.orig (-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/src/Makefile.am.orig (-4 lines)
Lines 1-9 Link Here
1
INCLUDES=-I../liblm -I../expat/xmltok -I../expat/xmlparse -I/usr/local/ssl/include 
2
3
lib_LTLIBRARIES = libxmlrpc.la
1
lib_LTLIBRARIES = libxmlrpc.la
4
2
5
libxmlrpc_la_LIBADD = ../expat/xmltok/libexpat_tok.la ../expat/xmlparse/libexpat_parse.la
6
7
libxmlrpc_la_SOURCES = \
3
libxmlrpc_la_SOURCES = \
8
	base64.c \
4
	base64.c \
9
	encodings.c \
5
	encodings.c \
(-)xmlrpc-epi-0.51/src/xml_element.c.orig (-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/src/xmlrpc.c.orig (-1 / +1 lines)
Lines 121-127 Link Here
121
121
122
#include "queue.h"
122
#include "queue.h"
123
#include "xmlrpc.h"
123
#include "xmlrpc.h"
124
#include "xmlparse.h"
124
#include "expat.h"
125
#include "base64.h"
125
#include "base64.h"
126
126
127
#include "xml_to_xmlrpc.h"
127
#include "xml_to_xmlrpc.h"

Return to bug 127026