mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00

place. Expand paths in httpd-std.conf in a similar fashion as we do in our headers. Submitted by: Pier Fumagalli <pier@betaversion.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94431 13f79535-47bb-0310-9956-ffa450edef68
98 lines
4.4 KiB
C
98 lines
4.4 KiB
C
/* ====================================================================
|
|
* The Apache Software License, Version 1.1
|
|
*
|
|
* Copyright (c) 2002 The Apache Software Foundation. All rights
|
|
* reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* 3. The end-user documentation included with the redistribution,
|
|
* if any, must include the following acknowledgment:
|
|
* "This product includes software developed by the
|
|
* Apache Software Foundation (http://www.apache.org/)."
|
|
* Alternately, this acknowledgment may appear in the software itself,
|
|
* if and wherever such third-party acknowledgments normally appear.
|
|
*
|
|
* 4. The names "Apache" and "Apache Software Foundation" must
|
|
* not be used to endorse or promote products derived from this
|
|
* software without prior written permission. For written
|
|
* permission, please contact apache@apache.org.
|
|
*
|
|
* 5. Products derived from this software may not be called "Apache",
|
|
* nor may "Apache" appear in their name, without prior written
|
|
* permission of the Apache Software Foundation.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef AP_CONFIG_LAYOUT_H
|
|
#define AP_CONFIG_LAYOUT_H
|
|
|
|
/* Configured Apache directory layout */
|
|
#define DEFAULT_PREFIX "@prefix@"
|
|
#define DEFAULT_EXP_EXEC_PREFIX "@exp_exec_prefix@"
|
|
#define DEFAULT_REL_EXEC_PREFIX "@rel_exec_prefix@"
|
|
#define DEFAULT_EXP_BINDIR "@exp_bindir@"
|
|
#define DEFAULT_REL_BINDIR "@rel_bindir@"
|
|
#define DEFAULT_EXP_SBINDIR "@exp_sbindir@"
|
|
#define DEFAULT_REL_SBINDIR "@rel_sbindir@"
|
|
#define DEFAULT_EXP_LIBEXECDIR "@exp_libexecdir@"
|
|
#define DEFAULT_REL_LIBEXECDIR "@rel_libexecdir@"
|
|
#define DEFAULT_EXP_MANDIR "@exp_mandir@"
|
|
#define DEFAULT_REL_MANDIR "@rel_mandir@"
|
|
#define DEFAULT_EXP_SYSCONFDIR "@exp_sysconfdir@"
|
|
#define DEFAULT_REL_SYSCONFDIR "@rel_sysconfdir@"
|
|
#define DEFAULT_EXP_DATADIR "@exp_datadir@"
|
|
#define DEFAULT_REL_DATADIR "@rel_datadir@"
|
|
#define DEFAULT_EXP_INSTALLBUILDDIR "@exp_installbuilddir@"
|
|
#define DEFAULT_REL_INSTALLBUILDDIR "@rel_installbuilddir@"
|
|
#define DEFAULT_EXP_ERRORDIR "@exp_errordir@"
|
|
#define DEFAULT_REL_ERRORDIR "@rel_errordir@"
|
|
#define DEFAULT_EXP_ICONSDIR "@exp_iconsdir@"
|
|
#define DEFAULT_REL_ICONSDIR "@rel_iconsdir@"
|
|
#define DEFAULT_EXP_HTDOCSDIR "@exp_htdocsdir@"
|
|
#define DEFAULT_REL_HTDOCSDIR "@rel_htdocsdir@"
|
|
#define DEFAULT_EXP_MANUALDIR "@exp_manualdir@"
|
|
#define DEFAULT_REL_MANUALDIR "@rel_manualdir@"
|
|
#define DEFAULT_EXP_CGIDIR "@exp_cgidir@"
|
|
#define DEFAULT_REL_CGIDIR "@rel_cgidir@"
|
|
#define DEFAULT_EXP_INCLUDEDIR "@exp_includedir@"
|
|
#define DEFAULT_REL_INCLUDEDIR "@rel_includedir@"
|
|
#define DEFAULT_EXP_LOCALSTATEDIR "@exp_localstatedir@"
|
|
#define DEFAULT_REL_LOCALSTATEDIR "@rel_localstatedir@"
|
|
#define DEFAULT_EXP_RUNTIMEDIR "@exp_runtimedir@"
|
|
#define DEFAULT_REL_RUNTIMEDIR "@rel_runtimedir@"
|
|
#define DEFAULT_EXP_LOGFILEDIR "@exp_logfiledir@"
|
|
#define DEFAULT_REL_LOGFILEDIR "@rel_logfiledir@"
|
|
#define DEFAULT_EXP_PROXYCACHEDIR "@exp_proxycachedir@"
|
|
#define DEFAULT_REL_PROXYCACHEDIR "@rel_proxycachedir@"
|
|
|
|
#endif /* AP_CONFIG_LAYOUT_H */
|