Ansersion / myRtspClient

A RTSP client based on jrtplib
Apache License 2.0
160 stars 91 forks source link

please avoid unnecessary complications #22

Open h1uke opened 5 years ago

h1uke commented 5 years ago

Current build configuration file for linux suggests that the C++11 compiler is required in order to build:

config.linux: COMPILE_OPTS = $(INCLUDES) -I. -O2 -std=c++11 -fPIC

but, in reality, only one single line of code cannot be compiled by an older gcc v4.8 that we're only allowed to use in our research, and which doesn't understand C++11.

rtspClient.cpp:110 RtspClient::RtspClient(string uri): RtspClient()

The above is a minor problem which can be fixed in no time.

Author: if you do not mind, please remove the C++11 dialect requirement. Thanks.

Ansersion commented 5 years ago

You are right. It's a little inconvenience for some compiler. I've modified it just now.