* GSWeb.framework/GSWAssociation.m: Include limits.h and

float.h in favor of deprecated values.h to be more
	portable.
        * GSWeb.framework/GSWDefaultAdaptor.m: Do not include
        GNUstepBase/GSFileHandle.h unnecessarily.
        * GSWeb.framework/GSWDirectAction.h: Remove duplicate
	declaration of -existingSession.
        * GSWeb.framework/GSWProcFS.h: Remove commented
        NSTimeIntervalFromTimeVal declaration.
        * GSWeb.framework/GSWStatisticsStore.m: Do not include
	sys/time.h unnecessarily.
        * GSWeb.framework/GSWUtils.h: Include sys/time.h
	unconditionally.
        * GSWeb.framework/GSWeb.h: Do not include private


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@17953 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2003-10-22 16:22:51 +00:00
parent 32afcf5152
commit f4d9587f9d
8 changed files with 21 additions and 24 deletions

View file

@ -1,3 +1,19 @@
2003-10-22 David Ayers <d.ayers@inode.at>
* GSWeb.framework/GSWAssociation.m: Include limits.h and float.h
in favor of deprecated values.h to be more portable.
* GSWeb.framework/GSWDefaultAdaptor.m: Do not include
GNUstepBase/GSFileHandle.h unnecessarily.
* GSWeb.framework/GSWDirectAction.h: Remove duplicate declaration
of -existingSession.
* GSWeb.framework/GSWProcFS.h: Remove commented
NSTimeIntervalFromTimeVal declaration.
* GSWeb.framework/GSWStatisticsStore.m: Do not include sys/time.h
unnecessarily.
* GSWeb.framework/GSWUtils.h: Include sys/time.h unconditionally.
* GSWeb.framework/GSWeb.h: Do not include private
Foundation/NSConcreteNumber.h header.
2003-10-21 David Wetzel <dave@turbocat.de>
* Include changes for OS X as suggested by Philip Moetteli
GSWeb.framework/GSWAssociation.m

View file

@ -33,9 +33,10 @@ RCS_ID("$Id$")
#include "GSWeb.h"
#include <math.h>
#if !(__NetBSD__ || NeXT_Foundation_LIBRARY)
#include <values.h>
#endif
#include <limits.h>
#include <float.h>
#ifdef TCSDB
#include <TCSimpleDB/TCSimpleDB.h>
#endif

View file

@ -36,10 +36,6 @@ RCS_ID("$Id$")
#include "GSWeb.h"
#ifndef NeXT_Foundation_LIBRARY
#include <GNUstepBase/GSFileHandle.h>
#endif
#if HAVE_LIBWRAP
#include <tcpd.h>
#include <syslog.h>

View file

@ -49,7 +49,6 @@
-(GSWComponent*)pageWithName:(NSString*)pageName;
-(id <GSWActionResults>)performActionNamed:(NSString*)actionName;
-(id)defaultAction;
-(id)existingSession;
-(NSString*)sessionIDForRequest:(GSWRequest*)aRequest;
-(void)_initializeRequestSessionIDInContext:(GSWContext*)aContext;
@end

View file

@ -26,8 +26,6 @@
#ifndef _GSWProcFS_h__
#define _GSWProcFS_h__
//extern NSTimeInterval NSTimeIntervalFromTimeVal(struct timeval* tv);
typedef enum _GSWProcState
{
GSWProcState__Unknown =0,

View file

@ -33,14 +33,9 @@ RCS_ID("$Id$")
#include "GSWeb.h"
#ifdef NeXT_Foundation_LIBRARY
#include <sys/time.h>
#endif
#include <sys/resource.h>
#include <unistd.h>
//====================================================================
@implementation GSWStatisticsStore

View file

@ -1,4 +1,4 @@
/** GSWUtils.m - <title>GSWeb: Utilities</title>
/** GSWUtils.h - <title>GSWeb: Utilities</title>
Copyright (C) 1999-2003 Free Software Foundation, Inc.
@ -32,9 +32,7 @@
#ifndef _GSWebUtils_h__
#define _GSWebUtils_h__
#if defined(__FreeBSD__) || defined(__NetBSD__)
#include <sys/time.h>
#endif
#define CONST
#ifndef max

View file

@ -71,12 +71,6 @@
#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>