mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Support build srs-librtmp by VS2015. 2.0.267
This commit is contained in:
parent
fde11756c3
commit
316628632b
12 changed files with 79 additions and 43 deletions
|
@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
// current release version
|
||||
#define VERSION_MAJOR 2
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 266
|
||||
#define VERSION_REVISION 267
|
||||
|
||||
// generated by configure, only macros.
|
||||
#include <srs_auto_headers.hpp>
|
||||
|
@ -127,13 +127,16 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
className(const className&); \
|
||||
className& operator= (const className&)
|
||||
|
||||
/**
|
||||
* important check for st(state-threads),
|
||||
* only support the following cpus: i386/amd64/x86_64/arm
|
||||
* @reamrk to patch ST for arm, read https://github.com/ossrs/state-threads/issues/1
|
||||
*/
|
||||
#if !defined(__amd64__) && !defined(__x86_64__) && !defined(__i386__) && !defined(__arm__)
|
||||
#error "only support i386/amd64/x86_64/arm cpu"
|
||||
// For librtmp, it is pure c++ and supports all OS.
|
||||
#ifndef SRS_EXPORT_LIBRTMP
|
||||
/**
|
||||
* important check for st(state-threads),
|
||||
* only support the following cpus: i386/amd64/x86_64/arm
|
||||
* @reamrk to patch ST for arm, read https://github.com/ossrs/state-threads/issues/1
|
||||
*/
|
||||
#if !defined(__amd64__) && !defined(__x86_64__) && !defined(__i386__) && !defined(__arm__)
|
||||
#error "only support i386/amd64/x86_64/arm cpu"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue