mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* 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:
parent
32afcf5152
commit
f4d9587f9d
8 changed files with 21 additions and 24 deletions
16
ChangeLog
16
ChangeLog
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
#ifndef _GSWProcFS_h__
|
||||
#define _GSWProcFS_h__
|
||||
|
||||
//extern NSTimeInterval NSTimeIntervalFromTimeVal(struct timeval* tv);
|
||||
|
||||
typedef enum _GSWProcState
|
||||
{
|
||||
GSWProcState__Unknown =0,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue