Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Juha Manninen
On Sat, Aug 17, 2013 at 3:40 AM, waldo kitty wkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know where the old files resided... performing make

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Jonas Maebe
On 17 Aug 2013, at 10:44, Juha Manninen wrote: On Sat, Aug 17, 2013 at 3:40 AM, waldo kitty wkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread waldo kitty
On 8/17/2013 04:44, Juha Manninen wrote: On Sat, Aug 17, 2013 at 3:40 AM, waldo kittywkitt...@windstream.net wrote: FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know where the

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-17 Thread Juha Manninen
On Sat, Aug 17, 2013 at 1:25 PM, Jonas Maebe jonas.ma...@elis.ugent.be wrote: make clean is not about the source files. Waldo is right: you should always make clean (or even better: make distclean) before updating from svn, because files may move around and then make clean will only clean

[fpc-pascal] Compilation Error At revision 25270.

2013-08-16 Thread Eric Kom
svn up make clean export PP=/usr/local/lib/fpc/2.7.1/ppc386 make OVERRIDEVERSIONCHECK=1 NOGDB=1 OPT='-O- -gl -Xs-' all pp.pas(248) Warning: Implicit uses of Variants unit pp.pas(247,1) Fatal: There were 1 errors compiling module, stopping Fatal: Compilation

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-16 Thread Sven Barth
Am 16.08.2013 16:53 schrieb Eric Kom eric...@metropolitancollege.co.za: svn up make clean export PP=/usr/local/lib/fpc/2.7.1/ppc386 make OVERRIDEVERSIONCHECK=1 NOGDB=1 OPT='-O- -gl -Xs-' all To say it more directly than leledumbo: do *not* ask for support when you use OVERRIDEVERSIONCHECK.

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-16 Thread Mark Morgan Lloyd
Eric Kom wrote: svn up make clean export PP=/usr/local/lib/fpc/2.7.1/ppc386 make OVERRIDEVERSIONCHECK=1 NOGDB=1 OPT='-O- -gl -Xs-' all pp.pas(248) Warning: Implicit uses of Variants unit pp.pas(247,1) Fatal: There were 1 errors compiling module, stopping Fatal:

Re: [fpc-pascal] Compilation Error At revision 25270.

2013-08-16 Thread waldo kitty
On 8/16/2013 10:52, Eric Kom wrote: svn up make clean [trim] FWIW: i learned a while back (from the lazarus list i think) to perform make clean before svn up because the make files may have changed and the new ones may not know where the old files resided... performing make clean first