PDA

View Full Version : OK Iam going to try to edit map.cpp



Toadman
06-15-2002, 05:15 AM
HI all, Been reading a bit and want to give a try at a few edits of the map.cpp (stop the blinking circles and drawing lines). I read the thread about what lines to change. I just want to make sure once Imake the edits I recompile correctly.

So if i make the changes CORRECTLY will:



[]# cd /seq/showeq
[]# make distclean
[]# export CC=gcc3
[]# export CXX=g++3
[]# export QTDIR=/usr/lib/qt-2.3.2
[]# make -f Makefile.dist
[]# ./configure
[]# make
[]# make install

Get me going with the changes (again assuming I edited the code correctly)

Mr. Suspicious
06-15-2002, 06:57 AM
Yes, it will.

If it gives you errors during the compile *because your C++ code is whacky* You can change/fix the code and resume the compile using a simple:

[]# make
[]# make install

Toadman
06-15-2002, 07:49 AM
Thank you!!!