2016-07-15 Fred Gleason <fredg@paravelsystems.com>

* Fixed bugs in 'lib/lib.pro', 'lib/rdweb.cpp, 'lib/rdweb.h' and
	'rdlogedit/edit_logline.cpp' that broke the build under Windows.
This commit is contained in:
Fred Gleason
2016-07-15 14:16:32 -04:00
parent 26822841f5
commit 29927e7709
5 changed files with 21 additions and 3 deletions

View File

@@ -22,7 +22,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifndef WIN32
#include <sys/time.h>
#endif //WIN32
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@@ -34,11 +36,13 @@
#include <rduser.h>
#include <rddb.h>
#include <rdconf.h>
#ifndef WIN32
#include <rdwebresult.h>
#endif // WIN32
#include <rdweb.h>
#ifndef WIN32
/* RDReadPost(char *cBuffer,int dSize) */
/* This function reads POST data (such as that submitted by an HTML form) into
@@ -871,6 +875,8 @@ bool RDParsePost(std::map<QString,QString> *vars)
return true;
}
#endif // WIN32
QString RDXmlField(const QString &tag,const QString &value,const QString &attrs)
{