Im sorry, but I cannot compile dvbcut on macOS Ventura.
autoconf -> no errors
./configure -> not errors
make -> /opt/local/libexec/qt5/lib/QtCore.framework/Headers/qcompilerdetection.h:590:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
With macports I can install dvbcut without problems. Can you tell me, what I am doing wrong?
UPDATE: Ok, i figured out what went wrong: In the Makefile in the src directory I had to change the line:
CXX=g++
to
CXX=clang++ -std=c++14 -stdlib=libc++
After that, everything went fine and dvbcut is compiling. Can you change the way this Makefile is generated on macos? I am not a programmer, unfortunately.
Thanks for keeping dvbcut alive!!!!
Im sorry, but I cannot compile dvbcut on macOS Ventura.
autoconf -> no errors
./configure -> not errors
make -> /opt/local/libexec/qt5/lib/QtCore.framework/Headers/qcompilerdetection.h:590:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
With macports I can install dvbcut without problems. Can you tell me, what I am doing wrong?
UPDATE: Ok, i figured out what went wrong: In the Makefile in the src directory I had to change the line:
CXX=g++
to
CXX=clang++ -std=c++14 -stdlib=libc++
After that, everything went fine and dvbcut is compiling. Can you change the way this Makefile is generated on macos? I am not a programmer, unfortunately.
Thanks for keeping dvbcut alive!!!!