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 b8e9628140
)
This commit is contained in:
parent
f97315f778
commit
4ebf890e92
@ -216,6 +216,12 @@ Version 1.8.0
|
||||
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>
|
||||
* Issue regarding the GENA notifications. A string termination indicator
|
||||
was added at the end of the notification ("\r\n") in
|
||||
|
1
THANKS
1
THANKS
@ -13,6 +13,7 @@ exempt of errors.
|
||||
- Arno Willig
|
||||
- Bob Ciora
|
||||
- Carlo Parata
|
||||
- Chandra (inactiveneurons)
|
||||
- Chaos
|
||||
- Charles Nepveu (cnepveu)
|
||||
- Chris Pickel
|
||||
|
@ -45,9 +45,13 @@
|
||||
|
||||
#include "UpnpGlobal.h" /* For EXPORT_SPEC */
|
||||
|
||||
|
||||
typedef int BOOL;
|
||||
|
||||
/* Define BOOL. */
|
||||
#ifndef __OBJC__
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user