mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
Include changes for OS X as suggested by Philip Moetteli
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@17947 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
24ea0c06a6
commit
f1221c5363
5 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2003-10-21 David Wetzel <dave@turbocat.de>
|
||||
* Include changes for OS X as suggested by Philip Moetteli
|
||||
GSWeb.framework/GSWAssociation.m
|
||||
GSWeb.framework/GSWDefaultAdaptor.m
|
||||
GSWeb.framework/GSWStatisticsStore.m
|
||||
GSWeb.framework/GSWeb.h
|
||||
|
||||
2003-08-25 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* *.h/m: Updated to new header layout.
|
||||
|
|
|
@ -33,7 +33,7 @@ RCS_ID("$Id$")
|
|||
|
||||
#include "GSWeb.h"
|
||||
#include <math.h>
|
||||
#if !defined(__NetBSD__)
|
||||
#if !(__NetBSD__ || NeXT_Foundation_LIBRARY)
|
||||
#include <values.h>
|
||||
#endif
|
||||
#ifdef TCSDB
|
||||
|
|
|
@ -35,7 +35,10 @@
|
|||
RCS_ID("$Id$")
|
||||
|
||||
#include "GSWeb.h"
|
||||
|
||||
#ifndef NeXT_Foundation_LIBRARY
|
||||
#include <GNUstepBase/GSFileHandle.h>
|
||||
#endif
|
||||
|
||||
#if HAVE_LIBWRAP
|
||||
#include <tcpd.h>
|
||||
|
|
|
@ -32,6 +32,11 @@
|
|||
RCS_ID("$Id$")
|
||||
|
||||
#include "GSWeb.h"
|
||||
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <sys/resource.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
|
@ -71,7 +71,12 @@
|
|||
#include <Foundation/NSURLHandle.h>
|
||||
#include <Foundation/NSURL.h>
|
||||
#include <Foundation/NSThread.h>
|
||||
|
||||
//FIXME is that correct? NSConcreteNumber is a private class! dave@turbocat.de
|
||||
#ifndef NeXT_Foundation_LIBRARY
|
||||
#include <Foundation/NSConcreteNumber.h>
|
||||
#endif
|
||||
|
||||
#include <Foundation/NSFormatter.h>
|
||||
#include <GNUstepBase/GSXML.h>
|
||||
#include <GNUstepBase/GSCategories.h>
|
||||
|
|
Loading…
Reference in a new issue