os.h revision ad58873cf3518b53729ba00623a6ea692b8a8cbc
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh/* ====================================================================
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * The Apache Software License, Version 1.1
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * Copyright (c) 2000-2001 The Apache Software Foundation. All rights
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * reserved.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * Redistribution and use in source and binary forms, with or without
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * modification, are permitted provided that the following conditions
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * are met:
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * 1. Redistributions of source code must retain the above copyright
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * notice, this list of conditions and the following disclaimer.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * 2. Redistributions in binary form must reproduce the above copyright
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * notice, this list of conditions and the following disclaimer in
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * the documentation and/or other materials provided with the
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * distribution.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * 3. The end-user documentation included with the redistribution,
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * if any, must include the following acknowledgment:
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * "This product includes software developed by the
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * Apache Software Foundation (http://www.apache.org/)."
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * Alternately, this acknowledgment may appear in the software itself,
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * if and wherever such third-party acknowledgments normally appear.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * 4. The names "Apache" and "Apache Software Foundation" must
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * not be used to endorse or promote products derived from this
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * software without prior written permission. For written
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * permission, please contact apache@apache.org.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * 5. Products derived from this software may not be called "Apache",
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * nor may "Apache" appear in their name, without prior written
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * permission of the Apache Software Foundation.
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh *
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
0bd78d9347b913bd11f5f18c8d41a92ac6796cf8bjh * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4a13940dc2990df0a798718d3a3f9cf1566c2217bjh * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
#ifndef APACHE_OS_H
#define APACHE_OS_H
#define PLATFORM "OS/2"
#define HAVE_CANONICAL_FILENAME
#define HAVE_DRIVE_LETTERS
#define HAVE_UNC_PATHS
#include <apr.h>
#include <apr_pools.h>
/*
* This file in included in all Apache source code. It contains definitions
* of facilities available on _this_ operating system (HAVE_* macros),
* 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 */