artnaseef commented on PR #21: URL: https://github.com/apache/activemq-cpp/pull/21#issuecomment-2692377947
I am trying with the configure script - appears to be working. The `build.sh` script is confusing as the README.txt's instructions just say: > The easiest way to enable this is to edit the build.conf file before running build.sh, which will create an appropriate configure script and run it. Then, simply 'cd build' before running make or the tests. This is bringing back memories. Long lost memories ;-). Haven't had to deal with complicated instructions like this in a long time... Can we update the `configure.ac` like this? *OLD* ``` if test "$GCC" = "yes"; then PLAT_CXXFLAGS="-ansi -pedantic" fi ``` *NEW* ``` if test "$GCC" = "yes"; then PLAT_CXXFLAGS="-std=c++17" fi ``` My hope is we can get as close as possible to `./configure` then `make` just working out of the box. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact