diff options
Diffstat (limited to 'os/os2/os.h')
-rw-r--r-- | os/os2/os.h | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/os/os2/os.h b/os/os2/os.h index 64e0884a7f..ae2da225e8 100644 --- a/os/os2/os.h +++ b/os/os2/os.h @@ -60,12 +60,12 @@ #define APACHE_OS_H #define PLATFORM "OS/2" + +/* going away shortly... */ #define HAVE_CANONICAL_FILENAME #define HAVE_DRIVE_LETTERS #define HAVE_UNC_PATHS - -#include <apr.h> -#include <apr_pools.h> +#define CASE_BLIND_FILESYSTEM /* * This file in included in all Apache source code. It contains definitions @@ -73,24 +73,4 @@ * and prototypes of OS specific functions defined in os.c or os-inline.c */ -#if APR_HAS_INLINE -/* Compiler supports inline, so include the inlineable functions as - * part of the header - */ - -#include "os-inline.c" - -#else -/* Compiler does not support inline, so prototype the inlineable functions - * as normal - */ -extern int ap_os_is_path_absolute(const char *file); -#endif - -AP_DECLARE(char *)ap_os_canonical_filename(apr_pool_t *p, const char *file); -AP_DECLARE(char *)ap_os_case_canonical_filename(apr_pool_t *p, const char *szFile); - -/* OS/2 doesn't have symlinks so S_ISLNK is always false */ -#define S_ISLNK(m) 0 - #endif /* ! APACHE_OS_H */ |