[Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Eric Kom
Good day, after compiled fpc and lazarus from the trunk branch, when I run the command ./lazarus, the configure lazarus IDE appears with the above error: FPC sources Directory: /usr/share/fpcsrc/2.7.1/ Error: directory not found Please I need your help, Thanks -- Kind Regards Eric Kom

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread leledumbo
Isn't it clear enough? The dialog expects you to have FPC source directory and it defaults to that popped-up value, which you could override with your own. -- View this message in context:

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Mattias Gaertner
On Thu, 08 Nov 2012 11:39:47 +0200 Eric Kom eric...@metropolitancollege.co.za wrote: Good day, after compiled fpc and lazarus from the trunk branch, when I run the command ./lazarus, the configure lazarus IDE appears with the above error: FPC sources Directory:

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Eric Kom
On 08/11/2012 11:44, leledumbo wrote: Isn't it clear enough? The dialog expects you to have FPC source directory and it defaults to that popped-up value, which you could override with your own. After changed the path to /usr/local/lib/fpc/2.7.1/ I received a warning: Directory:

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Bernd
2012/11/8 Eric Kom eric...@metropolitancollege.co.za: After changed the path to /usr/local/lib/fpc/2.7.1/ This is not the source directory. Judging from your previous pots you have compiled fpc from svn and sucessfully installed it. make install will only install the binaries and compiled

[Lazarus] Wiki: cannot login due to cookies!??

2012-11-08 Thread Reinier Olislagers
Hi all, Tried to login to the Wiki using Firefox 16.0.2 as well as Internet Explorer 9 Can't seem to login anymore, got Login error Lazarus wiki uses cookies to log in users. You have cookies disabled. Please enable them and try again. Don't think I have changed anything in browser settings.

Re: [Lazarus] Wiki: cannot login due to cookies!??

2012-11-08 Thread Vincent Snijders
2012/11/8 Reinier Olislagers reinierolislag...@gmail.com Has something changed server side? As far as I know, nothing has changed. Vincent -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Wiki: cannot login due to cookies!??

2012-11-08 Thread Vincent Snijders
2012/11/8 Vincent Snijders vincent.snijd...@gmail.com 2012/11/8 Reinier Olislagers reinierolislag...@gmail.com Has something changed server side? As far as I know, nothing has changed. Root partition was full. Vincent -- ___ Lazarus mailing list

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Eric Kom
On 08/11/2012 13:39, Bernd wrote: 2012/11/8 Eric Komeric...@metropolitancollege.co.za: After changed the path to /usr/local/lib/fpc/2.7.1/ This is not the source directory. Judging from your previous pots you have compiled fpc from svn and sucessfully installed it. make install will only

Re: [Lazarus] Wiki: cannot login due to cookies!??

2012-11-08 Thread Reinier Olislagers
On 8-11-2012 13:02, Vincent Snijders wrote: 2012/11/8 Vincent Snijders vincent.snijd...@gmail.com mailto:vincent.snijd...@gmail.com 2012/11/8 Reinier Olislagers reinierolislag...@gmail.com mailto:reinierolislag...@gmail.com Has something changed server side? As far

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Mattias Gaertner
Eric Kom eric...@metropolitancollege.co.za hat am 8. November 2012 um 13:11 geschrieben: On 08/11/2012 13:39, Bernd wrote: 2012/11/8 Eric Komeric...@metropolitancollege.co.za: After changed the path to /usr/local/lib/fpc/2.7.1/ This is not the source directory. Judging from your

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Eric Kom
On 08/11/2012 14:30, Mattias Gaertner wrote: Eric Komeric...@metropolitancollege.co.za hat am 8. November 2012 um 13:11 geschrieben: On 08/11/2012 13:39, Bernd wrote: 2012/11/8 Eric Komeric...@metropolitancollege.co.za: After changed the path to /usr/local/lib/fpc/2.7.1/ This is not the

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Mark Morgan Lloyd
Mattias Gaertner wrote: I pointed directly to the fpc/rtl/ directory, still the warning rtl directory not fund. rtl is just one sub folder of fpc. Point it to the fpc directory. Any suggestions how to improve the error message to make this more clear? Something like The directory you have

[Lazarus] Suppressing OnChange

2012-11-08 Thread Timothy Groves
I have a program which allows you to edit records. This is done using a dynamic array of records, with three strings in each record. I have been using TEdits to allow the user to edit the records. The record is updated during TEdit.OnChange. Unfortunately, whenever I push the data *from* a

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Bernd
2012/11/8 Mark Morgan Lloyd markmll.laza...@telemetry.co.uk: Could ppcXXX return its build directory? This is not a good idea. For example rpm or deb packages would contain a compiler that was compiled in some arbitrary folder and then later the sources will be copied to somewhere else by the

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Sven Barth
Am 08.11.2012 14:14, schrieb Mark Morgan Lloyd: Mattias Gaertner wrote: I pointed directly to the fpc/rtl/ directory, still the warning rtl directory not fund. rtl is just one sub folder of fpc. Point it to the fpc directory. Any suggestions how to improve the error message to make this

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Bernd
2012/11/8 Bernd prof7...@gmail.com: 2012/11/8 Mark Morgan Lloyd markmll.laza...@telemetry.co.uk: Could ppcXXX return its build directory? This is not a good idea. For example rpm or deb packages would contain a compiler that was compiled in some arbitrary folder and then later the sources

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread leledumbo
Any suggestions how to improve the error message to make this more clear? It would be a bit long, but I hope much clearer: Lazarus cannot find the directory in which FPC source code is located (Lazarus assumes it is located in write the default value here). The directory should have at least

Re: [Lazarus] Suppressing OnChange

2012-11-08 Thread Antonio Fortuny
Le 08/11/2012 16:28, Timothy Groves a écrit : I have a program which allows you to edit records. This is done using a dynamic array of records, with three strings in each record. I have been using TEdits to allow the user to edit the records. The record is updated during TEdit.OnChange.

Re: [Lazarus] FPC Source Error: directory not found

2012-11-08 Thread Mark Morgan Lloyd
Sven Barth wrote: Could ppcXXX return its build directory? Then provided this existed and perhaps subject to other consistency checks the IDE could suggest it as the default. So if I would send you a ppcross68k compiled on my development machine and you would then ask it for it's build

Re: [Lazarus] Suppressing OnChange

2012-11-08 Thread bsquared
On 11/08/2012 07:28 AM, Timothy Groves wrote: I have a program which allows you to edit records. This is done using a dynamic array of records, with three strings in each record. I have been using TEdits to allow the user to edit the records. The record is updated during TEdit.OnChange.

[Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Howard Lee Harkness
I'm a relative n00b at Linux admin stuff, but I'd really like to be able to run Lazarus on the Debian system I've just inherited at my new contract. I have done a checkout of the Lazarus svn repository per the instructions in http://wiki.freepascal.org/Getting_Lazarus. But when I execute make in

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Chavoux Luyt
Hi Howard On 8 November 2012 21:26, Howard Lee Harkness howard.lee.harkn...@gmail.com wrote: I'm a relative n00b at Linux admin stuff, but I'd really like to be able to run Lazarus on the Debian system I've just inherited at my new contract. I have done a checkout of the Lazarus svn

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread bsquared
On 11/08/2012 11:26 AM, Howard Lee Harkness wrote: I'm a relative n00b at Linux admin stuff, but I'd really like to be able to run Lazarus on the Debian system I've just inherited at my new contract. I have done a checkout of the Lazarus svn repository per the instructions in

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Howard Lee Harkness
I was not able to find the deb files. How do you download them? When I did a search for lazarus install on debian, I got a list of installation instructions for everything except Debian -- and directions for doing a source checkout and build. BTW, I missed the part about needing to configure fpc

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Howard Lee Harkness
I tried that first. Didn't work. Some problem with deb http://www.hu.freepascal.org/lazarus/ lazarus-stable universe On Thu, Nov 8, 2012 at 1:49 PM, bsquared bwcod...@gmail.com wrote: Detailed instructions are here:

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Mattias Gaertner
On Thu, 8 Nov 2012 13:26:24 -0600 Howard Lee Harkness howard.lee.harkn...@gmail.com wrote: I'm a relative n00b at Linux admin stuff, but I'd really like to be able to run Lazarus on the Debian system I've just inherited at my new contract. I have done a checkout of the Lazarus svn repository

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Chavoux Luyt
Hi Howard On 8 November 2012 21:49, Howard Lee Harkness howard.lee.harkn...@gmail.com wrote: I was not able to find the deb files. How do you download them? When I did a search for lazarus install on debian, I got a list of installation instructions for everything except Debian -- and

Re: [Lazarus] How do you install Lazarus on Debian?

2012-11-08 Thread Mark Morgan Lloyd
Mattias Gaertner wrote: On Thu, 8 Nov 2012 13:26:24 -0600 Howard Lee Harkness howard.lee.harkn...@gmail.com wrote: I'm a relative n00b at Linux admin stuff, but I'd really like to be able to run Lazarus on the Debian system I've just inherited at my new contract. I have done a checkout of the