Drop Symbian support

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/85/head
Michele Calgaro 9 months ago
parent ca120c61e6
commit 889e93b720
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -3827,9 +3827,6 @@ soap_accept(struct soap *soap)
#elif defined(PALM) #elif defined(PALM)
fcntl((SOAP_SOCKET)soap->master, F_SETFL, fcntl((SOAP_SOCKET)soap->master, F_GETFL,0)&~O_NONBLOCK); fcntl((SOAP_SOCKET)soap->master, F_SETFL, fcntl((SOAP_SOCKET)soap->master, F_GETFL,0)&~O_NONBLOCK);
fcntl((SOAP_SOCKET)soap->socket, F_SETFL, fcntl((SOAP_SOCKET)soap->socket, F_GETFL,0)&~O_NONBLOCK); fcntl((SOAP_SOCKET)soap->socket, F_SETFL, fcntl((SOAP_SOCKET)soap->socket, F_GETFL,0)&~O_NONBLOCK);
#elif defined(SYMBIAN)
long blocking = 0;
ioctl((SOAP_SOCKET)soap->master, 0/*FIONBIO*/, &blocking);
#else #else
fcntl((SOAP_SOCKET)soap->master, F_SETFL, fcntl((SOAP_SOCKET)soap->master, F_GETFL)&~O_NONBLOCK); fcntl((SOAP_SOCKET)soap->master, F_SETFL, fcntl((SOAP_SOCKET)soap->master, F_GETFL)&~O_NONBLOCK);
fcntl((SOAP_SOCKET)soap->socket, F_SETFL, fcntl((SOAP_SOCKET)soap->socket, F_GETFL)&~O_NONBLOCK); fcntl((SOAP_SOCKET)soap->socket, F_SETFL, fcntl((SOAP_SOCKET)soap->socket, F_GETFL)&~O_NONBLOCK);

@ -153,11 +153,6 @@ A commercial use license is available from Genivia, Inc., contact@genivia.com
# endif # endif
#endif #endif
#ifdef __SYMBIAN32__
# define SYMBIAN
# undef WIN32
#endif
#if defined(__palmos__) || defined(PALM_GCC) || defined(__PALMOS_TRAPS__) #if defined(__palmos__) || defined(PALM_GCC) || defined(__PALMOS_TRAPS__)
# ifndef PALM # ifndef PALM
# define PALM # define PALM
@ -333,12 +328,6 @@ A commercial use license is available from Genivia, Inc., contact@genivia.com
# define O_NONBLOCK FNONBIO # define O_NONBLOCK FNONBIO
# include <sys_socket.h> # include <sys_socket.h>
# include "palmFunctions.h" # include "palmFunctions.h"
# elif defined(SYMBIAN)
# define WITH_LEAN
# define WITH_NONAMESPACES
# define HAVE_STRTOD /* use STRTOD since sscanf doesn't seem to work */
# include <e32def.h>
# include <sys/ioctl.h>
# elif defined(VXWORKS) # elif defined(VXWORKS)
# define HAVE_STRRCHR # define HAVE_STRRCHR
# define HAVE_STRTOD # define HAVE_STRTOD
@ -445,10 +434,8 @@ A commercial use license is available from Genivia, Inc., contact@genivia.com
# include <sockLib.h> # include <sockLib.h>
# endif # endif
# ifndef VXWORKS # ifndef VXWORKS
# ifndef SYMBIAN
# include <strings.h> # include <strings.h>
# endif # endif
# endif
# ifdef SUN_OS # ifdef SUN_OS
# include <sys/stream.h> /* SUN */ # include <sys/stream.h> /* SUN */
# include <sys/socketvar.h> /* SUN < 2.8 (?) */ # include <sys/socketvar.h> /* SUN < 2.8 (?) */
@ -565,10 +552,7 @@ extern "C" {
#define SOAP_INVALID_SOCKET (-1) #define SOAP_INVALID_SOCKET (-1)
#define soap_valid_socket(n) ((n) != SOAP_INVALID_SOCKET) #define soap_valid_socket(n) ((n) != SOAP_INVALID_SOCKET)
#if defined(SYMBIAN) #if !defined(WIN32) || defined(__GLIBC__) || defined(__GNU__)
# define LONG64 long
# define ULONG64 unsigned LONG64
#elif !defined(WIN32) || defined(__GLIBC__) || defined(__GNU__)
# ifndef LONG64 # ifndef LONG64
# define LONG64 long long # define LONG64 long long
# define ULONG64 unsigned LONG64 # define ULONG64 unsigned LONG64
@ -583,8 +567,6 @@ extern "C" {
#if defined(WIN32) #if defined(WIN32)
# define soap_int32 __int32 # define soap_int32 __int32
#elif defined(SYMBIAN)
# define soap_int32 long
#elif defined(PALM) #elif defined(PALM)
# define soap_int32 Int32 # define soap_int32 Int32
#else #else
@ -601,14 +583,9 @@ extern "C" {
# define SOAP_ERANGE ERANGE # define SOAP_ERANGE ERANGE
# define SOAP_EINTR EINTR # define SOAP_EINTR EINTR
# define SOAP_EAGAIN EAGAIN # define SOAP_EAGAIN EAGAIN
# ifdef SYMBIAN
# define SOAP_EWOULDBLOCK 9898
# define SOAP_EINPROGRESS 9899
# else
# define SOAP_EWOULDBLOCK EWOULDBLOCK # define SOAP_EWOULDBLOCK EWOULDBLOCK
# define SOAP_EINPROGRESS EINPROGRESS # define SOAP_EINPROGRESS EINPROGRESS
#endif #endif
#endif
#ifdef WIN32 #ifdef WIN32
# ifdef UNDER_CE # ifdef UNDER_CE

Loading…
Cancel
Save