1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for #155, debug srs on xcode.

This commit is contained in:
winlin 2015-03-10 13:13:31 +08:00
parent db7ddfd510
commit 0ff49fd299
5 changed files with 42 additions and 12 deletions

View file

@ -349,6 +349,7 @@ if [ $OS_IS_OSX = YES ]; then
echo "OSX detected, must specifies the --osx"
exit 1
fi
# TODO: FIXME: support following features.
if [ $SRS_HTTP_API = YES ]; then
echo "OSX does not support http-api, use --without-http-api"
exit 1
@ -357,6 +358,14 @@ if [ $OS_IS_OSX = YES ]; then
echo "OSX does not support stat, use --without-stat"
exit 1
fi
if [ $SRS_FFMPEG_TOOL = YES ]; then
echo "OSX does not support ffmpeg, use --without-ffmpeg"
exit 1
fi
if [ $SRS_NGINX = YES ]; then
echo "OSX does not support nginx, use --without-nginx"
exit 1
fi
fi
#####################################################################################
@ -723,3 +732,4 @@ fi
# generated the test script
#####################################################################################
rm -rf ${SRS_OBJS}/srs.test && ln -sf `pwd`/scripts/srs.test objs/srs.test