[fpc-pascal] Test

2022-11-05 Thread Dimitrios Chr. Ioannidis via fpc-pascal
Test, please ignore . regards, -- Dimitrios Chr. Ioannidis ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Test Free Pascal program not compiling

2022-09-13 Thread Tomas Hajny via fpc-pascal
On 2022-09-12 21:12, Terry A. Haimann via fpc-pascal wrote: Hello Terry, I personally think it can't find the assembler. I did test this on my desktop and it compiled w/o error. No, but the installed assembler doesn't know the "softvfp" FPU type apparently specified in the compilation opti

Re: [fpc-pascal] Test Free Pascal program not compiling

2022-09-13 Thread Terry A. Haimann via fpc-pascal
I personally think it can't find the assembler. I did test this on my desktop and it compiled w/o error. Below you will see the output of the compile as you suggested. Sorry it is so long. Terry H. terry@libre-computer:~/Documents/fpc/Silly$ fpc -va Sqrt.pas [0.000] Macro defined: LINUX [0.000

Re: [fpc-pascal] Test Free Pascal program not compiling

2022-09-11 Thread Christo Crause via fpc-pascal
On Mon, 12 Sep 2022, 02:59 Terry A. Haimann via fpc-pascal, < fpc-pascal@lists.freepascal.org> wrote: > Trying to compile a small test pascal program on a arm cpu. I beleive > it is an a53. Libre Le Potato > > I am getting the following error: > > Error: Error while assembling exitcode 1 > > Tha

[fpc-pascal] Test Free Pascal program not compiling

2022-09-11 Thread Terry A. Haimann via fpc-pascal
Trying to compile a small test pascal program on a arm cpu. I beleive it is an a53. Libre Le Potato I am getting the following error: Error: Error while assembling exitcode 1 Thanks in advance, Terry H. ___ fpc-pascal maillist - fpc-pascal@lists

[fpc-pascal] test plz ignore

2020-02-04 Thread Dimitrios Chr. Ioannidis via fpc-pascal
test plz ignore ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Test file mode question

2016-10-25 Thread Bart
On 10/25/16, Rolf Grunsky wrote: > If (SFile.Mode = fmClosed) Then Rewrite(SFile); Maybe cast SFile to TextRec(SFile)? Bart ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[fpc-pascal] Test file mode question

2016-10-25 Thread Rolf Grunsky
I am trying to put together a short program to build a script file. I declare the file as: Uses sysutils; {$H+I-} Var SFile : Text; I then assign a name to the file : Assign(SFile, SName); Now, I only want to create the file if some conditions are met. Since this is in a loop I thought I cou

[fpc-pascal] test plz ignore

2016-10-06 Thread d . ioannidis
plz ignore -- Dimitrios Chr Ioannidis ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Koenraad Lelong
Op 28-07-16 om 10:38 schreef Christo: The in_addr IP address type is a packed record of byte, so if an IP address part larger than 255 is encountered in a string it will be truncated when copied to the byte record using StrToHostAddr. This probably means you have to use some other means of dete

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Rainer Stratmann
Am Donnerstag, 28. Juli 2016, 10:26:32 schrieb Jonas Maebe: > On 28/07/16 10:14, Koenraad Lelong wrote: > > I need a way to test if an string containing an ipv4-address is really > > an ipv4-address. > > I tried > > tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr)); > > writeln(tmpAddress); >

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Christo
On Thu, 2016-07-28 at 10:14 +0200, Koenraad Lelong wrote: > When I enter 192.168.185.297 (i.e. not a valid ipv4 address) in > IPAddressStr I get > 192.168.185.41 > not the expected error-message. > > According to the rtl-manual : > > function StrToHostAddr(IP: AnsiString) : in_addr > Description

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Mattias Gaertner
On Thu, 28 Jul 2016 10:26:32 +0200 Jonas Maebe wrote: > On 28/07/16 10:14, Koenraad Lelong wrote: > > I need a way to test if an string containing an ipv4-address is really > > an ipv4-address. > > I tried > > tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr)); > > writeln(tmpAddress); > > i

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Rainer Stratmann
The IP-Adress is a dword, but you can change, that it fits for you. function str_getval( str : shortstring ) : longint; var cod : longint; begin val( str , result , cod ); end; function ip_from_string( ipstr : shortstring ; out error : boolean ) : dword; var c : char; ipn , pointanz : longint

Re: [fpc-pascal] Test for valid ip address

2016-07-28 Thread Jonas Maebe
On 28/07/16 10:14, Koenraad Lelong wrote: I need a way to test if an string containing an ipv4-address is really an ipv4-address. I tried tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr)); writeln(tmpAddress); if (tmpAddress='0.0.0.0') then begin writeln('Error in IP-address'); IPAd

[fpc-pascal] Test for valid ip address

2016-07-28 Thread Koenraad Lelong
Hi, I need a way to test if an string containing an ipv4-address is really an ipv4-address. I tried tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr)); writeln(tmpAddress); if (tmpAddress='0.0.0.0') then begin writeln('Error in IP-address'); IPAddressStr:=tmpAddress; end; When I

[fpc-pascal] test - ignore

2016-05-05 Thread Jerry
test - ignore ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[fpc-pascal] Test, please ignore

2014-01-25 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[fpc-pascal] test

2013-03-16 Thread patspiper
pls ignore ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test

2012-02-19 Thread Florian Klämpfl
Please, ignore. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test, please ignore

2011-04-07 Thread Florian Klämpfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] test

2011-01-04 Thread patspiper
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test

2010-07-08 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] test

2009-05-22 Thread Dians
just test, ignore it ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] test suite, TEST_REMOTEOPT

2009-01-19 Thread Bernd Mueller
Hello, I could not pass the test suite option TEST_REMOTEOPT to the makefile. I tried TEST_REMOTEOPT=xxx and "TEST_REMOTEOPT=xxx" both did not work on Win32. I changed the makefile a bit and it works now for me. Don't know, if this is a proper patch: Index: tests/Makefile ===

[fpc-pascal] Test, please ignore

2008-10-18 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] test - please ignore

2006-04-23 Thread Adrian Maier
test ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test

2006-03-03 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Test, please ignore

2005-12-17 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test, please ignore

2005-12-17 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test please ignore

2005-09-22 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test, please ignore

2005-09-02 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Test, please ignore

2005-09-02 Thread Florian Klaempfl
___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] test please ignore

2005-01-14 Thread Luiz Américo
test ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]Test Mac OS X installer

2004-05-03 Thread Olle Raab
04-05-03 13.48, skrev Jonas Maebe följande: > > On 3 mei 2004, at 13:43, Olle Raab wrote: > >> But this means you need to have the MacOS X development tools >> installed to >> install fpc ? > > Yes, otherwise make and the gnu assembler are not available. > >> Can you use fpc from within any of

Re: [fpc-pascal]Test Mac OS X installer

2004-05-03 Thread Jonas Maebe
On 3 mei 2004, at 13:43, Olle Raab wrote: But this means you need to have the MacOS X development tools installed to install fpc ? Yes, otherwise make and the gnu assembler are not available. Can you use fpc from within any of Apples development tools, e g from ProjectBuilder If someone writes a

Re: [fpc-pascal]Test Mac OS X installer

2004-05-03 Thread Olle Raab
04-05-03 09.51, skrev Jonas Maebe följande: > > On 3 mei 2004, at 02:03, Olle Raab wrote: > >>> I've created an install package for the Mac OS X version of FPC (of >>> basically a snapshot of today, but it includes the docs). >> >> There is documentation ? If so where is it installed ? > > /De

Re: [fpc-pascal]Test Mac OS X installer

2004-05-03 Thread Jonas Maebe
On 3 mei 2004, at 02:03, Olle Raab wrote: I've created an install package for the Mac OS X version of FPC (of basically a snapshot of today, but it includes the docs). There is documentation ? If so where is it installed ? /Developer/Documentation/Free Pascal Compiler Jonas _

Re: [fpc-pascal]Test Mac OS X installer

2004-05-02 Thread Olle Raab
04-05-01 22.09, skrev Jonas Maebe följande: > Hello, > > I've created an install package for the Mac OS X version of FPC (of > basically a snapshot of today, but it includes the docs). There is documentation ? If so where is it installed ? > You can find > it on the ftp site in the directory /

[fpc-pascal]Test Mac OS X installer

2004-05-01 Thread Jonas Maebe
Hello, I've created an install package for the Mac OS X version of FPC (of basically a snapshot of today, but it includes the docs). You can find it on the ftp site in the directory /fpc/beta/macosx-powerpc-1.9.3 (and tomorrow on the mirrors as well). I would like to ask people using Mac OS X

[fpc-pascal]test, don't worry, don't reply, remove

2003-02-12 Thread Iván Montes
sorry list just a test ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]Test (please ignore)

2003-01-24 Thread Aitor Santamaría Merino
Apologies for this little test (I got no mails from the 14th) ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal