Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread waldo kitty
On 5/15/2013 14:50, Marco van de Voort wrote: In our previous episode, waldo kitty said: Makefile:2704: *** The only supported starting compiler version is 2.6.2. You are trying to build with 2.7.1. If you are absolutely sure that the current compiler is built from the exact same version/revisio

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread Jonas Maebe
On 15 May 2013, at 20:50, Marco van de Voort wrote: > In our previous episode, waldo kitty said: >>> Makefile:2704: *** The only supported starting compiler version is 2.6.2. >>> You >>> are trying to build with 2.7.1. If you are absolutely sure that the current >>> compiler is built from the ex

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread Marco van de Voort
In our previous episode, waldo kitty said: > > Makefile:2704: *** The only supported starting compiler version is 2.6.2. > > You > > are trying to build with 2.7.1. If you are absolutely sure that the current > > compiler is built from the exact same version/revision, you can try to use > > OVERRI

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread waldo kitty
On 5/15/2013 12:18, silvioprog wrote: But I dont added it, please see: Makefile:2704: *** The only supported starting compiler version is 2.6.2. You are trying to build with 2.7.1. If you are absolutely sure that the current compiler is built from the exact same version/revision, you can try to

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread Jonas Maebe
On 15 May 2013, at 18:18, silvioprog wrote: > 2013/5/15 Jonas Maebe > >> >> On 15 May 2013, at 17:47, silvioprog wrote: >> >>> Yes, I'm trying with 2.7.1. :( >> >> Use the top level FPC Makefile, remove OVERRIDEVERSIONCHECK=1 from your >> make invocation if you are using it (and never add it

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread silvioprog
2013/5/15 Jonas Maebe > > On 15 May 2013, at 17:47, silvioprog wrote: > > > 2013/5/15 Ewald > > > >> Are you building with 2.7.1? > >> > >> If so, try building with 2.6.2. (don't ask me why, but it worked for me) > > > > Yes, I'm trying with 2.7.1. :( > > Use the top level FPC Makefile, remove O

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread Jonas Maebe
On 15 May 2013, at 17:47, silvioprog wrote: > 2013/5/15 Ewald > >> Are you building with 2.7.1? >> >> If so, try building with 2.6.2. (don't ask me why, but it worked for me) > > Yes, I'm trying with 2.7.1. :( Use the top level FPC Makefile, remove OVERRIDEVERSIONCHECK=1 from your make invo

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread silvioprog
2013/5/15 Ewald > Are you building with 2.7.1? > > If so, try building with 2.6.2. (don't ask me why, but it worked for me) > Yes, I'm trying with 2.7.1. :( -- Silvio Clécio My public projects - github.com/silvioprog ___ fpc-pascal maillist - fpc-p

[fpc-pascal] Re: Overloading doubt: bug or feature

2013-05-15 Thread leledumbo
Done: http://bugs.freepascal.org/view.php?id=24434 -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/Overloading-doubt-bug-or-feature-tp5714798p5714802.html Sent from the Free Pascal - General mailing list archive at Nabble.com. __

Re: [fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread Ewald
Are you building with 2.7.1? If so, try building with 2.6.2. (don't ask me why, but it worked for me) On 15 May 2013, at 17:01, silvioprog wrote: > Hello, > > Today I updated my GIT copy of FPC, and after I try to make it and install, I > got this error: > > http://pastebin.com/90fhy34Y > >

[fpc-pascal] Error: Duplicate identifier "FarPointer"

2013-05-15 Thread silvioprog
Hello, Today I updated my GIT copy of FPC, and after I try to make it and install, I got this error: http://pastebin.com/90fhy34Y Until last week everything was normal. Thank you! -- Silvio Clécio My public projects - github.com/silvioprog ___ fpc-p

Re: [fpc-pascal] Overloading doubt: bug or feature

2013-05-15 Thread Jonas Maebe
On 15 May 2013, at 10:59, leledumbo wrote: Is the following a bug or undocumented "feature"? function f(s: string): string; begin f := + s + ; end; function f(s: string): integer; begin Val(s,f); end; var i: Integer; begin // i := f('123'); // Error: Incompatible types: got "Sho

[fpc-pascal] Overloading doubt: bug or feature

2013-05-15 Thread leledumbo
Is the following a bug or undocumented "feature"? function f(s: string): string; begin f := + s + ; end; function f(s: string): integer; begin Val(s,f); end; var i: Integer; begin // i := f('123'); // Error: Incompatible types: got "ShortString" expected "SmallInt" WriteLn(f('