summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-12-02 10:39:43 +0100
committerPeter Kokot <peterkokot@gmail.com>2018-12-10 08:11:44 +0100
commit7e445ef3b1a197dccbc92f35cb66988b66671841 (patch)
treed6126a6b81ef7ee521783cd0985d7c1088c8e958 /CONTRIBUTING.md
parenta680f4f2be2ae8f6bf40bf9fcb3fac93b60b0b33 (diff)
downloadphp-git-7e445ef3b1a197dccbc92f35cb66988b66671841.tar.gz
Set AC_CONFIG_AUX_DIR to build directory
The Autoconf macro AC_CONFIG_AUX_DIR can set the location of the auxiliary build tools such as config.guess, config.sub, and bundled libtool scripts and moves these bundled files from the root directory to the build subdirectory. Additionally some changes in this context or as a part of obsoletion: - The LT_TARGETS variable in build/build2.mk file was once used as a part of the Automake step. It's not used anymore and has been refactored to separate makedist script directly. - ltconfig is not used anymore since libtool 1.4+ cf8d1563c27a70fdd24055c1e80218ec7b5962d6 - phpize file locations for the config.guess, config.sub, and ltmain.sh has been refactored accordingly.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f48698ba9d..43a8e525e4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -96,7 +96,10 @@ locations.
└─ build/ # *nix build system files
├─ ax_check_compile_flag.m4 # https://github.com/autoconf-archive/autoconf-archive
├─ ax_gcc_func_attribute.m4 # https://github.com/autoconf-archive/autoconf-archive
+ ├─ config.guess # https://git.savannah.gnu.org/cgit/config.git
+ ├─ config.sub # https://git.savannah.gnu.org/cgit/config.git
├─ libtool.m4 # https://git.savannah.gnu.org/cgit/libtool.git
+ ├─ ltmain.sh # https://git.savannah.gnu.org/cgit/libtool.git
├─ shtool # https://www.gnu.org/software/shtool/
└─ ...
└─ ext/ # PHP core extensions
@@ -170,8 +173,5 @@ locations.
└─ win32/ # Windows build system files
├─ cp_enc_map.c # Generated by `win32/cp_enc_map_gen.exe`
└─ ...
- ├─ config.guess # https://git.savannah.gnu.org/cgit/config.git
- ├─ config.sub # https://git.savannah.gnu.org/cgit/config.git
- ├─ ltmain.sh # https://git.savannah.gnu.org/cgit/libtool.git
└─ ...
```