Fix compilation error in ixml/inc/ixml.h when compiling with an
Objective-C compiler (when cross-compiling for iPhone devices). Patch submitted by Chandra (inactiveneurons). (cherry picked from commit b8e9628140e62436c401f10fd1e315350abbd9e7)
This commit is contained in:
parent
f97315f778
commit
4ebf890e92
@ -216,6 +216,12 @@ Version 1.8.0
|
|||||||
Version 1.6.7
|
Version 1.6.7
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
|
||||||
|
2010-09-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
|
Fix compilation error in ixml/inc/ixml.h when compiling with an
|
||||||
|
Objective-C compiler (when cross-compiling for iPhone devices).
|
||||||
|
|
||||||
|
Patch submitted by Chandra (inactiveneurons).
|
||||||
|
|
||||||
2010-08-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
2010-08-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
* Issue regarding the GENA notifications. A string termination indicator
|
* Issue regarding the GENA notifications. A string termination indicator
|
||||||
was added at the end of the notification ("\r\n") in
|
was added at the end of the notification ("\r\n") in
|
||||||
|
1
THANKS
1
THANKS
@ -13,6 +13,7 @@ exempt of errors.
|
|||||||
- Arno Willig
|
- Arno Willig
|
||||||
- Bob Ciora
|
- Bob Ciora
|
||||||
- Carlo Parata
|
- Carlo Parata
|
||||||
|
- Chandra (inactiveneurons)
|
||||||
- Chaos
|
- Chaos
|
||||||
- Charles Nepveu (cnepveu)
|
- Charles Nepveu (cnepveu)
|
||||||
- Chris Pickel
|
- Chris Pickel
|
||||||
|
@ -45,9 +45,13 @@
|
|||||||
|
|
||||||
#include "UpnpGlobal.h" /* For EXPORT_SPEC */
|
#include "UpnpGlobal.h" /* For EXPORT_SPEC */
|
||||||
|
|
||||||
|
/* Define BOOL. */
|
||||||
|
#ifndef __OBJC__
|
||||||
typedef int BOOL;
|
typedef int BOOL;
|
||||||
|
#else
|
||||||
|
/* For Objective C compilers, include objc.h which defines BOOL. */
|
||||||
|
#include <objc/objc.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief The type of DOM strings.
|
* \brief The type of DOM strings.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user