Fix for warnings in Apple systems
This commit is contained in:
parent
bdb3f880b7
commit
bf30519f6c
@ -2,6 +2,12 @@
|
|||||||
Version 1.8.0
|
Version 1.8.0
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
|
||||||
|
2010-09-18 Chandra Penke <chandrapenke(at)mcntech.com>
|
||||||
|
|
||||||
|
Fix for warnings Apple systems related to macros defined in list.h.
|
||||||
|
|
||||||
|
In list.h, in apple systems, undefine the macros prior to defining them.
|
||||||
|
|
||||||
2010-01-16 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
2010-01-16 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
|
|
||||||
Fix for UpnpFileInfo_get_LastModified() in http_MakeMessage().
|
Fix for UpnpFileInfo_get_LastModified() in http_MakeMessage().
|
||||||
|
@ -9,6 +9,14 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "poison.h"
|
#include "poison.h"
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
/* Apple systems define these macros in system headers, so we undef
|
||||||
|
* them prior to inclusion of this file */
|
||||||
|
#undef LIST_HEAD
|
||||||
|
#undef LIST_HEAD_INIT
|
||||||
|
#undef INIT_LIST_HEAD
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Simple doubly linked list implementation.
|
* Simple doubly linked list implementation.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user