Open h1uke opened 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.
You are right. It's a little inconvenience for some compiler. I've modified it just now.
Current build configuration file for linux suggests that the C++11 compiler is required in order to build:
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.
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.