2021-07-15 07:47:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-09-28 10:27:17 +00:00
|
|
|
. "$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)/_bootstrap.sh"
|
2021-07-15 07:47:39 +00:00
|
|
|
|
|
|
|
rc=0
|
|
|
|
if test -z "$(php --ri stomp | grep 'SSL Support => enabled')"; then
|
|
|
|
echo 'stomp has not been compiled with SSL support' >&2
|
|
|
|
rc=1
|
|
|
|
else
|
|
|
|
echo 'stomp has been compiled with SSL support'
|
|
|
|
fi
|
|
|
|
exit $rc
|