summaryrefslogtreecommitdiff
path: root/travis
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-03-22 10:10:01 +0100
committerJoe Watkins <krakjoe@php.net>2019-03-23 07:34:54 +0100
commit161adfff3f437bf9370e037a9e2bf593c784ccff (patch)
tree1b5b7916a617ff2eeb04cb571e6b9de9eb4ba566 /travis
parent598175eff617794a13ff9f74bc6c807c36318b2c (diff)
downloadphp-git-161adfff3f437bf9370e037a9e2bf593c784ccff.tar.gz
For consistency with Windows, and because ZTS is not experimental or a "maintainer" feature, this commits renames --enable-maintainer-zts to --enable-zts in the autotools build, and related documentation
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/compile.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/travis/compile.sh b/travis/compile.sh
index b995c27e4e..cb8f0fbe2d 100755
--- a/travis/compile.sh
+++ b/travis/compile.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
- TS="--enable-maintainer-zts";
+if [[ "$ENABLE_ZTS" == 1 ]]; then
+ TS="--enable-zts";
else
TS="";
fi