diff options
author | jerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68> | 2002-08-19 06:33:10 +0000 |
---|---|---|
committer | jerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68> | 2002-08-19 06:33:10 +0000 |
commit | e51d7b636a6534c1e487af8d629501aebea9e771 (patch) | |
tree | 1f4d563ecd08163533d65db11d033db47964a751 /config.layout | |
parent | 244ee2fb52cc67e969ee948c469271023848223e (diff) | |
download | libapr-e51d7b636a6534c1e487af8d629501aebea9e771.tar.gz |
- Add parallel-apr layout which confines the 'parallel install' logic to a
layout rather than unchangeable values.
- Delay layout parsing until after we have setup the directory variables and
determined our APR version.
- Use ${libsuffix} instead of hardcoded -${APR_MAJOR_VERSION}.
- Parse libsuffix in config.layout.
- Add version info to rules.mk
- Add APR_MAJOR_VERSION to apr-config.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63816 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'config.layout')
-rw-r--r-- | config.layout | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.layout b/config.layout index 245da94eb..4e26e2227 100644 --- a/config.layout +++ b/config.layout @@ -25,6 +25,23 @@ localstatedir: ${prefix} </Layout> +# Classical apr path layout designed for parallel installs. +<Layout parallel-apr> + prefix: /usr/local/apr + exec_prefix: ${prefix} + bindir: ${exec_prefix}/bin + sbindir: ${exec_prefix}/bin + libdir: ${exec_prefix}/lib/apr-${APR_MAJOR_VERSION} + libexecdir: ${exec_prefix}/modules + mandir: ${prefix}/man + sysconfdir: ${prefix}/conf + datadir: ${prefix} + installbuilddir: ${datadir}/build + includedir: ${prefix}/include/apr-${APR_MAJOR_VERSION} + localstatedir: ${prefix} + libsuffix: -${APR_MAJOR_VERSION} +</Layout> + # GNU standards conforming path layout. # See FSF's GNU project `make-stds' document for details. <Layout GNU> |