mirror of https://github.com/coturn/coturn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
#!/bin/sh
|
|
#
|
|
# This is a script for RFC 5769 STUN protocol check.
|
|
# It checks whether the main code was compiled correctly.
|
|
#
|
|
|
|
if [ -d examples ] ; then
|
|
cd examples
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/
|
|
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:/usr/local/lib/
|
|
|
|
PATH=examples/bin/:bin/:../bin:${PATH} turnutils_rfc5769check $@
|
|
|