We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c6fca commit fe2f3c1Copy full SHA for fe2f3c1
ci/route.sh
@@ -3,6 +3,10 @@ __CURRENT__=`pwd`
3
__DIR__=$(cd "$(dirname "$0")";pwd)
4
5
export DOCKER_COMPOSE_VERSION="1.21.0"
6
+
7
+export PHP_VERSION=${1:-"8.4"}
8
+export CI_BRANCH=${2:-"master"}
9
10
[ -z "${CI_BRANCH}" ] && export CI_BRANCH="master"
11
[ -z "${CI_BUILD_DIR}" ] && export CI_BUILD_DIR=$(cd "$(dirname "$0")";cd ../;pwd)
12
if [ "${CI_BRANCH}" = "alpine" ]; then
config.m4
@@ -324,7 +324,8 @@ AC_COMPILE_IFELSE([
324
)
325
AC_MSG_RESULT([$CLANG])
326
327
-AC_PROG_CC_C99
+AC_PROG_CC
328
+CFLAGS="$CFLAGS -std=c99"
329
330
AC_CANONICAL_HOST
331
0 commit comments