1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-08 16:17:20 +00:00
docker-php-extension-installer/scripts/tests/event
2021-09-28 12:27:17 +02:00

20 lines
549 B
Bash
Executable file

#!/bin/sh
. "$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)/_bootstrap.sh"
rc=0
if php --ri sockets >/dev/null 2>/dev/null; then
if test -z "$(php --ri event | grep 'Sockets support => enabled')"; then
echo 'event has not been compiled with sockets support' >&2
rc=1
else
echo 'event has been compiled with sockets support'
fi
fi
if test -z "$(php --ri event | grep 'OpenSSL support => enabled')"; then
echo 'event has not been compiled with OpenSSL support' >&2
rc=1
else
echo 'event has been compiled with OpenSSL support'
fi
exit $rc