1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements.  See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License.  You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/**
18 * @file  ap_config_layout.h
19 * @brief Apache Config Layout
20 */
21
22#ifndef AP_CONFIG_LAYOUT_H
23#define AP_CONFIG_LAYOUT_H
24
25/* Configured Apache directory layout */
26#define DEFAULT_PREFIX "@prefix@"
27#define DEFAULT_EXP_EXEC_PREFIX "@exp_exec_prefix@"
28#define DEFAULT_REL_EXEC_PREFIX "@rel_exec_prefix@"
29#define DEFAULT_EXP_BINDIR "@exp_bindir@"
30#define DEFAULT_REL_BINDIR "@rel_bindir@"
31#define DEFAULT_EXP_SBINDIR "@exp_sbindir@"
32#define DEFAULT_REL_SBINDIR "@rel_sbindir@"
33#define DEFAULT_EXP_LIBEXECDIR "@exp_libexecdir@"
34#define DEFAULT_REL_LIBEXECDIR "@rel_libexecdir@"
35#define DEFAULT_EXP_MANDIR "@exp_mandir@"
36#define DEFAULT_REL_MANDIR "@rel_mandir@"
37#define DEFAULT_EXP_SYSCONFDIR "@exp_sysconfdir@"
38#define DEFAULT_REL_SYSCONFDIR "@rel_sysconfdir@"
39#define DEFAULT_EXP_DATADIR "@exp_datadir@"
40#define DEFAULT_REL_DATADIR "@rel_datadir@"
41#define DEFAULT_EXP_INSTALLBUILDDIR "@exp_installbuilddir@"
42#define DEFAULT_REL_INSTALLBUILDDIR "@rel_installbuilddir@"
43#define DEFAULT_EXP_ERRORDIR "@exp_errordir@"
44#define DEFAULT_REL_ERRORDIR "@rel_errordir@"
45#define DEFAULT_EXP_ICONSDIR "@exp_iconsdir@"
46#define DEFAULT_REL_ICONSDIR "@rel_iconsdir@"
47#define DEFAULT_EXP_HTDOCSDIR "@exp_htdocsdir@"
48#define DEFAULT_REL_HTDOCSDIR "@rel_htdocsdir@"
49#define DEFAULT_EXP_MANUALDIR "@exp_manualdir@"
50#define DEFAULT_REL_MANUALDIR "@rel_manualdir@"
51#define DEFAULT_EXP_CGIDIR "@exp_cgidir@"
52#define DEFAULT_REL_CGIDIR "@rel_cgidir@"
53#define DEFAULT_EXP_INCLUDEDIR "@exp_includedir@"
54#define DEFAULT_REL_INCLUDEDIR "@rel_includedir@"
55#define DEFAULT_EXP_LOCALSTATEDIR "@exp_localstatedir@"
56#define DEFAULT_REL_LOCALSTATEDIR "@rel_localstatedir@"
57#define DEFAULT_EXP_RUNTIMEDIR "@exp_runtimedir@"
58#define DEFAULT_REL_RUNTIMEDIR "@rel_runtimedir@"
59#define DEFAULT_EXP_LOGFILEDIR "@exp_logfiledir@"
60#define DEFAULT_REL_LOGFILEDIR "@rel_logfiledir@"
61#define DEFAULT_EXP_PROXYCACHEDIR "@exp_proxycachedir@"
62#define DEFAULT_REL_PROXYCACHEDIR "@rel_proxycachedir@"
63
64#endif /* AP_CONFIG_LAYOUT_H */
65