Having trouble compiling on Debian linux, armhf:
wx-config --cxx wx-config --cxxflags -O2 -c src/MeteoriteApp.cpp -o src/MeteoriteApp.o
wx-config --cxx wx-config --cxxflags -O2 -c src/MeteoriteGUI.cpp -o src/MeteoriteGUI.o
wx-config --cxx wx-config --cxxflags -O2 -c src/MeteoriteMain.cpp -o src/MeteoriteMain.o
wx-config --cxx wx-config --cxxflags -O2 -c src/meteorite.cpp -o src/meteorite.o
src/meteorite.cpp: In member function ‘char Meteorite::Clusterart()’:
src/meteorite.cpp:1681:4: warning: deprecated conversion from string constant to ‘char’ [-Wwrite-strings]
src/meteorite.cpp: In member function ‘uint32_t Meteorite::GetDefaultFrameDuration(subElement*, unsigned int)’:
src/meteorite.cpp:1803:2: error: ‘else’ without a previous ‘if’
make: *** [src/meteorite.o] Error 1
To fix: in src/meteorite.cpp remove } from line 1802 and put it on line 1806 (it should be after the else { } block)
Compiles after this.
Is there anyway to run meteorite from the command line without using x display?