1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

Fix build with gcc42

This commit is contained in:
Tilman Keskinoz 2007-08-12 11:38:40 +00:00
parent ec80a6c8ec
commit 1a813ce73c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=197515
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- src/wsdlparser/WsdlInvoker.h.orig 2007-08-12 13:34:25.000000000 +0200
+++ src/wsdlparser/WsdlInvoker.h 2007-08-12 13:34:42.000000000 +0200
@@ -204,7 +204,7 @@
// set credentials for the service
void setCredentials(const std::string & user, const std::string & pass);
//ouput the soap message without invoking the service
- std::string WsdlInvoker::getSoapMessage();
+ std::string getSoapMessage();
void setProxy(const std::string & host,int port=80);
//enable logging

View File

@ -0,0 +1,11 @@
--- src/xmlpull/XmlPullParser.h.orig 2007-08-12 13:31:16.000000000 +0200
+++ src/xmlpull/XmlPullParser.h 2007-08-12 13:32:11.000000000 +0200
@@ -110,7 +110,7 @@
int next ();
int nextToken ();
int nextTag ();
- void XmlPullParser::prevTag();
+ void prevTag();
//----------------------------------------------------------------------
// utility methods to make XML parsing easier ...