openbsd-ports/net/xmlrpc-epi/patches/patch-src_xml_element_c
todd 1253a1dc72 xmlrpc-epi 0.51
xmlrpc-epi is an implementation of the xmlrpc protocol
in C. It provides an easy to use API for developers to
serialize RPC requests to and from XML. It does *not*
include a transport layer, such as HTTP. The API is
primarily based upon proprietary code written for
internal usage at Epinions.com, and was later modified
to incorporate concepts from the xmlrpc protocol. It
passed the xmlrpc validation test suite in December 2000.
2007-02-08 03:23:35 +00:00

16 lines
475 B
Plaintext

$OpenBSD: patch-src_xml_element_c,v 1.1.1.1 2007/02/08 03:23:35 todd Exp $
--- src/xml_element.c.orig Wed Feb 7 18:44:03 2007
+++ src/xml_element.c Wed Feb 7 18:44:29 2007
@@ -88,10 +88,10 @@ static const char rcsid[] = "#(@) $Id: x
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
+#include <expat.h>
#include "xml_element.h"
#include "queue.h"
-#include "xmlparse.h"
#include "encodings.h"
#define my_free(thing) if(thing) {free(thing); thing = 0;}