Re: [fpc-pascal] Compile errors

2025-01-25 Thread Frank McCormick via fpc-pascal
ABI has _nc_ prefixes $ nm -CD /usr/lib64/libtinfo.so.6 | grep stdscr ff20 T _nc_stdscr I am in the process of changing the source on my system. We'll see what happens. Frank McCormick ___ fpc-pascal maillist - fpc-p

Re: [fpc-pascal] Compile errors

2025-01-23 Thread Frank McCormick via fpc-pascal
On 2025-01-21 10:15, Michael Van Canneyt via fpc-pascal wrote: On Tue, 21 Jan 2025, Frank McCormick via fpc-pascal wrote: On 2025-01-21 09:00, Michael Van Canneyt via fpc-pascal wrote: On Mon, 20 Jan 2025, Frank McCormick via fpc-pascal wrote: I have been trying out a CRT

Re: [fpc-pascal] Compile errors

2025-01-21 Thread Frank McCormick via fpc-pascal
On 2025-01-21 11:05, Christo Crause via fpc-pascal wrote: On Tue, Jan 21, 2025 at 2:34 PM Frank McCormick via fpc-pascal pas...@lists.freepascal.org <mailto:fpc-pascal@lists.freepascal.org>> wrote: Free Pascal Compiler version 3.2.2 [2025/01/10] for x86_64 Copyright (c) 199

Re: [fpc-pascal] Compile errors

2025-01-21 Thread Frank McCormick via fpc-pascal
On 2025-01-21 09:00, Michael Van Canneyt via fpc-pascal wrote: On Mon, 20 Jan 2025, Frank McCormick via fpc-pascal wrote: I have been trying out a CRT replacement called NCRT and OCRT and am getting link errors which I can't track down. Originally I was getting compile errors but I s

[fpc-pascal] Compile errors

2025-01-21 Thread Frank McCormick via fpc-pascal
urses.o: in function `NCURSES_$$_COLOR_SET$SMALLINT$POINTER$$LONGINT': ncurses.pp:(.text.n_ncurses_$$_color_set$smallint$pointer$$longint+0xe): undefined reference to `stdscr' /usr/bin/ld: Can someone help ? Thanks Frank McCormick ___

[fpc-pascal] Compile errors

2025-01-21 Thread Frank McCormick via fpc-pascal
) Error: Illegal type conversion: "Text" to "TextRec" ncrt.inc(975,4) Error: Illegal type conversion: "Text" to "TextRec" ncrt.pp(39) Fatal: There were 9 errors compiling module, stopping Fatal: Compilation aborted Error: /usr/bin/ppcx64 returned an error exitcod

Re: [fpc-pascal] Linker problems FPC 2.6.4

2014-11-25 Thread Frank McCormick
On 11/25/2014 11:10 AM, Frank McCormick wrote: On 11/25/2014 03:42 AM, Jonas Maebe wrote: On 25/11/14 04:17, Frank McCormick wrote: I am just getting back into Pascal after a number of years -- I installed 2.6.4 from the tarball. To try it out I copied the browser demo (browserall.pp) into my

Re: [fpc-pascal] Linker problems FPC 2.6.4

2014-11-25 Thread Frank McCormick
On 11/25/2014 03:42 AM, Jonas Maebe wrote: On 25/11/14 04:17, Frank McCormick wrote: I am just getting back into Pascal after a number of years -- I installed 2.6.4 from the tarball. To try it out I copied the browser demo (browserall.pp) into my home directory and tried to compile. The linker

[fpc-pascal] Linker problems FPC 2.6.4

2014-11-24 Thread Frank McCormick
I am just getting back into Pascal after a number of years -- I installed 2.6.4 from the tarball. To try it out I copied the browser demo (browserall.pp) into my home directory and tried to compile. The linker complied it could not find -lform. Am I doing something wrong ? Thanks

Re: [fpc-pascal] Sysutils

2008-03-20 Thread Frank McCormick
should be StrToInt, not StrInt Good grief! I looked at it 100 times and didn't see it. Thanks! -- Frank McCormick ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Sysutils

2008-03-20 Thread Frank McCormick
used Units. Any idea what could be wrong ? --- Frank McCormick ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] serial.pp - I can't talk to modem

2008-01-02 Thread Frank McCormick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 02 Jan 2008 15:49:47 +0200 Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: > On 02/01/2008, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > > begin > > > serialhandle := SerOpen('/dev/ttyS0'); // COM1 under Linux > > > // SerSetParams(seri

Re: [fpc-pascal] Keyboard unit under Linux

2007-10-17 Thread Frank McCormick
On Thu, 18 Oct 2007 01:20:31 +0200 Michalis Kamburelis <[EMAIL PROTECTED]> wrote: > Frank McCormick wrote: > > Resending because of some changes in my results. > > > > > > I am having a tough time using the keyboard unit under Linux. Please tell me > > wha

[fpc-pascal] Keyboard unit under Linux

2007-10-17 Thread Frank McCormick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am having a tough time using the keyboard unit under Linux. Please tell me whats wrong with this code: ( var section cut out) Begin InitKeyBoard; Repeat K:=pollKeyEvent; if k <>0 then begin k:=getkeyevent;

[fpc-pascal] Keyboard unit under Linux

2007-10-17 Thread Frank McCormick
Resending because of some changes in my results. I am having a tough time using the keyboard unit under Linux. Please tell me whats wrong with this code: ( var section cut out) Begin InitKeyBoard; Repeat K:=pollKeyEvent; if k <>0 then begin k:=getkeyevent;

Re: [fpc-pascal] IDE fonts and codepage

2007-10-07 Thread Frank McCormick
On Sat, 06 Oct 2007 18:27:42 +0200 (CEST) Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > > > > > > I followed the suggestion made sometime ago about loading cp850-8x16 > > > > font to get the line drawing characters when in the IDE on the console, > > > > but noticed then I don't have certai

Re: [fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Frank McCormick
On Sat, 06 Oct 2007 17:41:42 +0200 (CEST) Daniël Mantione <[EMAIL PROTECTED]> wrote: > > > > I followed the suggestion made sometime ago about loading cp850-8x16 > > font to get the line drawing characters when in the IDE on the console, > > but noticed then I don't have certain characters availa

[fpc-pascal] IDE fonts and codepage

2007-10-06 Thread Frank McCormick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I followed the suggestion made sometime ago about loading cp850-8x16 font to get the line drawing characters when in the IDE on the console, but noticed then I don't have certain characters available on the keyboard, such as '/' etc. Whats the solutio