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

add kafka producer

This commit is contained in:
winlin 2015-09-22 17:40:05 +08:00
parent b5ccc35340
commit abb5c5ad31
12 changed files with 185 additions and 2 deletions

View file

@ -94,6 +94,12 @@ else
echo "#undef SRS_AUTO_STREAM_CASTER" >> $SRS_AUTO_HEADERS_H
fi
if [ $SRS_KAFKA = YES ]; then
echo "#define SRS_AUTO_KAFKA" >> $SRS_AUTO_HEADERS_H
else
echo "#undef SRS_AUTO_KAFKA" >> $SRS_AUTO_HEADERS_H
fi
if [ $SRS_HTTP_API = YES ]; then
echo "#define SRS_AUTO_HTTP_API" >> $SRS_AUTO_HEADERS_H
else