Fixes for libxml2 (FreeBSD).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8447 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-12-26 23:03:42 +00:00
parent 0fac86242e
commit 852d140e39
9 changed files with 106 additions and 59 deletions

View file

@ -26,10 +26,19 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#include <config.h>
#ifdef LIBXML2
#include <libxml2/parser.h>
#include <libxml2/parserInternals.h>
#include <libxml2/SAX.h>
#include <libxml2/HTMLparser.h>
#else
#include <libxml/parser.h>
#include <libxml/parserInternals.h>
#include <libxml/SAX.h>
#include <libxml/HTMLparser.h>
#endif
#include <Foundation/GSXML.h>
#include <Foundation/NSData.h>