mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Fix for #25026 I hope
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27227 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
928f6d762d
commit
a14130e423
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSXML.m:
|
||||||
|
Hack to avoid issues on systems where the xml headers use the reserved
|
||||||
|
word 'id'.
|
||||||
|
|
||||||
2008-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
2008-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/Additions/GSCategories.m: ([+launchPathForTool:])
|
* Source/Additions/GSCategories.m: ([+launchPathForTool:])
|
||||||
|
|
|
@ -54,6 +54,10 @@
|
||||||
#include "GNUstepBase/GSXML.h"
|
#include "GNUstepBase/GSXML.h"
|
||||||
#include <Foundation/Foundation.h>
|
#include <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
/* Avoid problems on systems where the xml headers use 'id'
|
||||||
|
*/
|
||||||
|
#define id GSXMLID
|
||||||
|
|
||||||
/* libxml headers */
|
/* libxml headers */
|
||||||
#include <libxml/tree.h>
|
#include <libxml/tree.h>
|
||||||
#include <libxml/entities.h>
|
#include <libxml/entities.h>
|
||||||
|
@ -79,6 +83,9 @@
|
||||||
#include <libxslt/xsltutils.h>
|
#include <libxslt/xsltutils.h>
|
||||||
#endif /* HAVE_LIBXSLT */
|
#endif /* HAVE_LIBXSLT */
|
||||||
|
|
||||||
|
#undef id
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* optimization
|
* optimization
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue