Re: [fpc-pascal] Re: fpc-pascal Digest, Vol 60, Issue 47

2009-07-07 Thread Graeme Geldenhuys
Richard Jasmin wrote: If anyone knows how to do a line without assembler or BGI, as I'm using ... Please stop quoting 245+ lines of text and then your actual message is only 3 lines out of the 245!! Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal htt

Re: [fpc-pascal] Error attempting to build FPC from svn

2009-07-07 Thread Alan Krause
Thanks much, Jonas. Just updated and everything built fine - even my code! Alan On Tue, Jul 7, 2009 at 2:16 PM, Jonas Maebe wrote: > > On 07 Jul 2009, at 18:25, Alan Krause wrote: > > I am attempting to build FPC from svn (trunk) and receive the following >> error message while attempting to bui

[fpc-pascal] Re: JUNK: fpc-pascal Digest, Vol 61, Issue 9

2009-07-07 Thread Richard Jasmin
e : double; cdecl; begin Result :=3D dRound( 2, 0.529 ) ; end; begin end. And the command I use to compile it is: fpc -Sd -Cg -O3 proj.pas Anyone else having similar issues? Alan -- next part -- An HTML attachment was scrubbed... URL: http://lists.freepascal

[fpc-pascal] Re: JUNK: fpc-pascal Digest, Vol 60, Issue 12

2009-07-07 Thread Richard Jasmin
I have similar issue, at least with TP7(which is hard to find, I actually, HAD a legit copy back then) You can't write/read a record, you have to store strings into arrays then put those into records, link list them, use them, then RE-store the data into strings and write out the file.If any

[fpc-pascal] Re: JUNK: fpc-pascal Digest, Vol 60, Issue 11

2009-07-07 Thread Richard Jasmin
How about instead of TPicture, 'Objective images'? I have everything but PNG support in a image unit, for FPOS. (don't have zlib suport yet...) The FCL/RTL kind of layout really hides a lot of useful routines as you have to dig for them.I find the TP layout works best.This for Linux distro of F

[fpc-pascal] Re: fpc-pascal Digest, Vol 60, Issue 47

2009-07-07 Thread Richard Jasmin
If anyone knows how to do a line without assembler or BGI, as I'm using VESA, I'm all ears.I can't find the source that is non 32 bit assembler, even for TP. fpc-pascal-requ...@lists.freepascal.org wrote: Send fpc-pascal mailing list submissions to fpc-pascal@lists.freepascal.org To s

Re: [fpc-pascal] Error attempting to build FPC from svn

2009-07-07 Thread Jonas Maebe
On 07 Jul 2009, at 18:25, Alan Krause wrote: I am attempting to build FPC from svn (trunk) and receive the following error message while attempting to build the gtk2 package: pangoincludes.inc(14,2) Fatal: Can't open include file "pango-glyph-item.inc" It appears as if perhaps a file is mis

[fpc-pascal] ifdef'ing FreeBSD by os version number

2009-07-07 Thread Marc Santhoff
Hi, are there flags defined in the fpc sources for discriminating different os versions? While translating some structures from the systems USB headers I found changes, some fields added and the like. This needs to be reflected in the translation. Version in question are FreeBSD4, 6 and 7 curre

[fpc-pascal] Error attempting to build FPC from svn

2009-07-07 Thread Alan Krause
I am attempting to build FPC from svn (trunk) and receive the following error message while attempting to build the gtk2 package: pangoincludes.inc(14,2) Fatal: Can't open include file "pango-glyph-item.inc" It appears as if perhaps a file is missing from the repository? Alan ___

[fpc-pascal] Re: Linking issue in Ubuntu 9.04 (32 bit)

2009-07-07 Thread Alan Krause
Just a quick update on this issue. I finally decided to submit a bug report via Ubuntu's Launchpad, as I didn't see any other similar bugs in their database. ( Bug report is here: https://bugs.launchpad.net/bugs/392197 ) It looks as if the issue has now been resolved and the fix is available for t

Re: [fpc-pascal] advanced macros?

2009-07-07 Thread Marco van de Voort
In our previous episode, Roland Schaefer said: > i.e., passing strings macros for in-macro insertion. Is this true? If > yes, are there any plans to include such capabilities in the > preprocessor? It would be very useful in places. On the other hand, the > mighty preprocessor is one of the primary

Re: [fpc-pascal] advanced macros?

2009-07-07 Thread Jonas Maebe
On 07 Jul 2009, at 13:57, Roland Schaefer wrote: reading the Programmer's Manual, I get the impression that C-style macros with {$MACRO ON} cannot do things like C #define MY_MACRO(param1,param2...) code_with ( param1 && param 2 ); i.e., passing strings macros for in-macro insertion. Is th

[fpc-pascal] advanced macros?

2009-07-07 Thread Roland Schaefer
Hi, reading the Programmer's Manual, I get the impression that C-style macros with {$MACRO ON} cannot do things like C #define MY_MACRO(param1,param2...) code_with ( param1 && param 2 ); i.e., passing strings macros for in-macro insertion. Is this true? If yes, are there any plans to include