It works under Delphi/Windows. If that has any weight?
On Nov 26, 2004, at 15:13, Jonas Maebe wrote:
On 26 nov 2004, at 21:02, Paul Davidson wrote:
fpc 1.9.5 [2004/11/26] Darwin 10.3
And for the record: it's the same under Linux/x86, it's not Darwin or
Mac OS X specific. But I ha
OS X 10.3.6
This code makes a window area in center of screen, and prints in that area. The new window is filled with characters when DELLINE is used. Any hints?
program TestCRT;
uses
CRT;
var
f : text;
procedure win( s : string );
begin
Window( 1, 3, ScreenWidth, ScreenHeight - 2 );
OS X 10.3.6
This code makes a window area in center of screen, and prints in that area. The new window is filled with characters when DELLINE is used. Any hints?
program TestCRT;
uses
CRT;
var
f : text;
procedure win( s : string );
begin
Window( 1, 3, ScreenWidth, ScreenHeight - 2 );
Using XCode as well. It would be good idea to upgrade your compiler to
1.9.6. Go to directory containing fpc dir and:
cvs -z 3 -d :pserver:[EMAIL PROTECTED]:/FPC/CVS checkout -r
RELEASE_1_9_6
Build instructions are at
http://www.surtec.com/~rj/Xcode-FreePascal/#FPC/CVS-Quickstart
As far a
1) Is it possible to view strings in XCode (1.5). At present can only
see first char ( C style char)
2) Any testing of fpc on Tiger yet? May be getting developer version
next week
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
___
fpc-pasca
Remove $THREADING directive. It is now built in
On Feb 25, 2005, at 8:07, chromdildo wrote:
Hello,
Great! just picked it up few minutes before announced :)
now it throws warning (1.9.6 didn't)
Warning: Illegal compiler directive "$THREADING"
(I used {$THREADING ON} as described in the docs)
I foll
Any tests done on Tiger with FPC?
Anything pending?
(32 or 64 bit)
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is intended only for the use of the
individual or entity to which it is addressed. The message may contain
information that is privileged, con
Will the FreePascalForXcode1.1.dmg work with XCode 2?
On Apr 29, 2005, at 13:23, Jonas Maebe wrote:
On 29 apr 2005, at 19:14, Paul Davidson wrote:
Any tests done on Tiger with FPC?
Not by me.
Anything pending?
Not until I get it via ADC, which could easily take another month. But
I do not expect
Perhaps combinations of RESULT and EXIT may help?
if TimeToLeave then begin
Result := 5;
Exit;
end else
On May 25, 2005, at 12:33, Jonas Maebe wrote:
On 25 mei 2005, at 18:20, Tony Pelton wrote:
over and above any philisophical judgments on my programming
technique, I see Fr
Basically a way to enable a web version of tail -f for log files. There is a
java version but we don't want the dependencies associated with java there.
Please contact me directly if anyone is interested on doing this.
Regards,
Paul
__
Does cThreads require cMem in program uses clause?
i.e.
uses
cMem,
cThreads,
etc.
It appears that removing cMem causes memory corruption in Darwin.
Thanks
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
___
fpc-pascal maillist - fpc
Having problem with app. It is rule based, and operates with recursion.
Events, such as HTTP requests, timers etc, are processed in separate
threads such that rule engine can handle more than one request at a
time.
When a rule cascade recurses for 10th time, a thread dies. But only
first ti
How do you call a C library or .h file from FPC in linux? Any samples?
Thanks
Paul
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
fpc 2.1.1 (2005/07/24) Darwin
When compiling with -pg (generate profiling data)
linker complains with: /usr/bin/ld: unknown flag: -dynamic-linker=
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is intended only for the use of the individual or entity to
Trying to get fpGetRusage to work.
Using: function fpGetRUsage( who : cint; data : pRUsage ) : cint; cdecl; external 'c' name 'getrusage';
But this gives silly results. Any hints?
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is intended only for the
(Oops)
Trying to get fpGetRusage to work WITH DARWIN.
Using: function fpGetRUsage( who : cint; data : pRUsage ) : cint; cdecl; external 'c' name 'getrusage';
But this gives silly results. Any hints?
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is in
On Sep 7, 2005, at 13:45, Jonas Maebe wrote:
On 31 Aug 2005, at 15:52, Paul Davidson wrote:
Trying to get fpGetRusage to work WITH DARWIN.
Using: function fpGetRUsage( who : cint; data : pRUsage ) : cint; cdecl; external 'c' name 'getrusage';
But this gives silly resul
Darwin fails make all. Checked out revision 1075.
genmath.inc(1115,28) Fatal: Internal error 200507161
genmath.inc(1115,28) Fatal: Compilation aborted
make[7]: *** [system.ppu] Error 1
make[6]: *** [darwin_all] Error 2
make[5]: *** [rtl] Error 2
make[4]: *** [next] Error 2
make[3]: *** [ppc2] Err
RUsage is not declared anywhere in app o.0
RUsage is defined in ostypes.inc for BSD. fpGetRUsage is as well, but
does not resolve in Darwin.
On Sep 8, 2005, at 3:39, Jonas Maebe wrote:
On 7 sep 2005, at 20:21, Paul Davidson wrote:
Trying to get fpGetRusage to work WITH DARWIN.
Using
errors compiling module, stopping
h2pas.pas(2879,15) Fatal: Compilation aborted
make[3]: *** [h2pas] Error 1
make[2]: *** [h2pas_all] Error 2
make[1]: *** [utils_all] Error 2
make: *** [build-stamp.powerpc-darwin] Error 2
On Sep 13, 2005, at 16:55, Florian Klaempfl wrote:
Paul Davidson wrote
Trying to get SetSocketOptions for SO_RCVTIMEO and SO_SNDTIMEO to work
with Darwin (FreeBSD).
type
p : pointer;
t : TimeVal;
t.tv_sec := mSec div 1000;
t.tv_usec := ( mSec mod 1000 ) * 1000;
p := @t;
if SetSocketOptions( fSocket, SOL_SOCKET, SO_SNDTIMEO, p, SizeOf( t ) )
<> 0 etc
returns
Thanks, Marco, Anton. Select it is!
On Sep 14, 2005, at 9:08, Marco van de Voort wrote:
Trying to get SetSocketOptions for SO_RCVTIMEO and SO_SNDTIMEO to work
with Darwin (FreeBSD).
type
p : pointer;
t : TimeVal;
t.tv_sec := mSec div 1000;
t.tv_usec := ( mSec mod 1000 ) * 1000;
p := @t
Last couple update to fpc 2.1.1 for Darwin have been broken
Here are some symptom:
At times XCode debugger stops program/trace with SIGSEGV
TThread creation seems about 10 times faster.
Sleep( 1 ) does not sleep for one milli-second, more llike 0.
There may be inconsistent results with critical
Lets wait for debug to return before making any changes.
Will investigate further at that time
On Oct 11, 2005, at 7:46, Marco van de Voort wrote:
On 11 okt 2005, at 13:11, Paul Davidson wrote:
Don't know what changed here.
The sleep was changed from select to nanosleep. It seems
On Oct 11, 2005, at 7:18, Jonas Maebe wrote:
TThread creation seems about 10 times faster.
Don't know what changed here.
Looking at RTL, Threads are now using semaphores instead of pipes for
suspend/resume.
This may be reason for increased speed.
Jonas
Tested some sleep and nano sleep functions.
They seems to work well, given the limits of Darwin OS.
Now tracking possible suspend/resume issues.
On Oct 11, 2005, at 8:35, Jonas Maebe wrote:
On 11 okt 2005, at 14:25, Felipe Monteiro de Carvalho wrote:
The sleep was changed from select to nan
Tests where with app that monitors to at least mS intervals.
Results are consistent with past runs. Altering internal fixed delays
of +/- 1 mS reported acceptable results.
On Oct 11, 2005, at 8:44, Jonas Maebe wrote:
On 11 okt 2005, at 14:39, Paul Davidson wrote:
Tested some sleep and
Modified program by creating threads resumed (not suspended),
then using new loop to start each one.
Though new loop completes, and threads are created (31 inclucing
process),
they refuse to be terminated. It seems that RESUME, at least from
another thread, if faulty.
As well, CPU utilizatio
Latest 2005/10/15 trunk seems to miss MySQL4 unit from packages.
Source is in rtl, but not compiled and / or installed
P Davidson
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Cannot compile using latest 2.1.1 or 2.0.1
MySQL, MySQL4 and NetDB are not found
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is intended only for the use of the
individual or entity to which it is addressed. The message may contain
information that i
Cannot compile using latest 2.1.1 or 2.0.1
MySQL, MySQL4 and NetDB are not found
MySQL no longer exists, it's either MySQL4 or MySQL3, but they are
distributed.
NetDB should normally always be distributed.
What platform are you using ?
Michael.
___
UBF*
Sorry folks. All is well. Turned out to be fault of author of this
mail.
*UBF - User brain failure
On Oct 16, 2005, at 13:55, Paul Davidson wrote:
Cannot compile using latest 2.1.1 or 2.0.1
MySQL, MySQL4 and NetDB are not found
MySQL no longer exists, it's either MySQL4 or M
Would it be possible to add a property to TThreads to expose
DefaultStackSize in rtl/inc/threadh.inc
Or something similar.
Working on app that uses lots of complex recursion. Ran into problems
and ended rewriting this component. In order to meet stack size limit,
program runs much slower.
On Oct 28, 2005, at 9:12, Michael Van Canneyt wrote:
On Fri, 28 Oct 2005, Paul Davidson wrote:
Would it be possible to add a property to TThreads to expose
DefaultStackSize in rtl/inc/threadh.inc
Or something similar.
It should be possible, yes, however this will require that the stack
One must start X-Windows from terminal, then start Lazarus.
You could also try this site.
All are .dmg files, friendly to Macs
Try http://www.ca.freepascal.org/Lazarus/
On Oct 29, 2005, at 16:11, Éric DÉTREZ wrote:
Le 29 oct. 05 à 21:22, Florian Klaempfl a écrit :
When we asked, did you try
May be having case statement problem.
App has case statement with 146 sequential labels.
They are in order, from a defined type.
The assembler output is scanning each label, where it seems a jump
would be more efficient.
ppc 32, Darwin
/usr/local/bin/ppcppc cape80.pas -Ci -Co -g -gl -O1 -vr -a
On Nov 8, 2005, at 11:39, Eduardo wrote:
At 04:42 08/11/2005, you wrote:
May be having case statement problem.
App has case statement with 146 sequential labels.
They are in order, from a defined type.
The assembler output is scanning each label, where it seems a jump
would be more efficient
Jump by offset label number? I don't understand it.
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Sorry Eduardo, am not knowledgeable of compiler internals.
There is (?) an optimi
On Nov 8, 2005, at 12:11, Peter Vreman wrote:
# [735] case l3o3.FormType of
// Select 3o3 processor
lwz r2,160(r1)
cmplwi cr0,r2,0
beq cr0,L1051
cmplwi cr0,r2,1
beq cr0,L1052
cmplwi cr0,r2,2
beq cr0,L1053
cmplw
Thanks Adriaan, Marco.
All is well :)
On Nov 9, 2005, at 4:38, Marco van de Voort wrote:
-O1gr
P Davidson
Corax Networks Inc.
http://CoraxNetworks.com
IMPORTANT NOTICE: This message is intended only for the use of the
individual or entity to which it is addressed. The message may contain
i
The silly answer. Construct an HTTP message according to IETF/W3C
rules.
Better answer. Assuming you have a socket connection open, the
following should be included
in your message:
HTTP/1.0 200
Connection: Close
Content-length:
Content-type:
MIME-version:1.0
The above should be in singl
It does not work as is on Mac, but then, most people don't care. *cry*
On Nov 17, 2005, at 18:42, L505 wrote:
Question:
I would like to download a file via HTTP, how can I achieve that in a
Synapse is nice..
Note: It is not 100 percent platform independent.
(works on Linux and Windows poss
Nice rant :)
On Nov 18, 2005, at 15:48, L wrote:
It does not work as is on Mac, but then, most people don't care.
*cry*
I would consider a Mac if they didn't weld them shut like those iMacs.
Talk about
closed source hardware.
Of course for every complaint I make someone will come b
On 02/19/2014 03:06 PM, waldo kitty wrote:
...
any help is appreciated and thanks for reading this quite possibly
rambling post emanating from my scrambled brain cells...
FPC DOS is pretty easy for a console program, but it is 32-bit (whereas
DOS is 16-bit) so it isn't as simple as Turbo Pasc
On 02/20/2014 12:51 PM, waldo kitty wrote:
On 2/19/2014 8:30 PM, Paul Breneman wrote:
On 02/19/2014 03:06 PM, waldo kitty wrote:
...
any help is appreciated and thanks for reading this quite possibly
rambling post emanating from my scrambled brain cells...
FPC DOS is pretty easy for a
On 02/20/2014 01:43 PM, Sven Barth wrote:
On 20.02.2014 02:49, waldo kitty wrote:
even if you do, trunk with the plain 16-bit msdos support might still
do it
for you).
i've pulled DOS262 with the GO memory extender but have not yet
installed it on the system due to other questions not yet pose
http://turbocontrol.com/gnuroot.htm is a new (unpublished) web page.
Feedback appreciated!
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 03/15/2014 04:59 PM, Sandro Cumerlato wrote:
Really interesting!
Please fix typo: "chmod 755 ppcaarm" should be "chmod 755 ppcarm".
I hope to see a GUI Hello World soon.
Sandro
On 15 Mar 2014 19:47, "Paul Breneman" wrote:
http://turbocontrol.com/gnuroot.
On 03/15/2014 07:33 PM, Paul Breneman wrote:
...
>>> http://turbocontrol.com/gnuroot.htm is a new (unpublished) web page.
Feedback appreciated!
Thanks for the feedback.
My main specialty is communication software (
www.turbocontrol.com/APro.htm ), so right now that is what I'm
On 03/16/2014 03:45 AM, Mark Morgan Lloyd wrote:
Paul Breneman wrote:
My main specialty is communication software (
www.turbocontrol.com/APro.htm ), so right now that is what I'm working
on. I have a USB hub working with a keyboard on my Nexus 7 (via OTG),
but a FTDI USB-serial ad
On 03/16/2014 12:27 PM, Mark Morgan Lloyd wrote:
Paul Breneman wrote:
The USB-serial adapter works everywhere else so I think it is fine.
I'm guessing that GNURoot may prevent any communication? I need to do
more testing.
What I was trying to suggest was that the OS might not know abou
On 03/15/2014 07:33 PM, Paul Breneman wrote:
...
My main specialty is communication software (
www.turbocontrol.com/APro.htm ), so right now that is what I'm working
on. I have a USB hub working with a keyboard on my Nexus 7 (via OTG),
but a FTDI USB-serial adapter doesn't show up in
On 04/29/2014 04:59 AM, Michael Schnell wrote:
On 04/29/2014 10:34 AM, Mark Morgan Lloyd wrote:
Or possibly building the source for a dll/so on the fly.
A nice and funny idea combining the benefits of scripting and compiling.
A little bit similar to the "ahead of time" reatlime compiler in a J
k.art-ng1253q88944
http://codenewsfast.com/cnf/article/0/permalink.art-ng53q201750
Best regards,
Paul
www.TurboControl.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 03/24/2014 12:08 PM, Paul Breneman wrote:
On 03/15/2014 07:33 PM, Paul Breneman wrote:
...
My main specialty is communication software (
www.turbocontrol.com/APro.htm ), so right now that is what I'm working
on. I have a USB hub working with a keyboard on my Nexus 7 (via OTG),
but a
Peter,
I've been working with running Linux on an Android tablet (without
rooting the device) and one thing I've seen mentioned is that ping
requires higher priorities (I don't remember the details). You can read
more here:
http://turbocontrol.com/gnuroot.htm
Bes
to make starting with Free Vision easier!
Regards,
Paul
www.TurboControl.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
Below is code from a C program (that works).
From the ".h" files:
typedef uint32_t PICO_INFO;
typedef uint32_t PICO_STATUS;
PREF0 PREF1 PICO_STATUS PREF2 PREF3 (ps5000aGetUnitInfo)
(
int16_t handle,
int8_t* string,
int16_t stringLength,
int16_t *requiredSiz
On 07/01/2014 10:59 AM, Paul Breneman wrote:
Below is code from a C program (that works).
From the ".h" files:
typedef uint32_t PICO_INFO;
typedef uint32_t PICO_STATUS;
PREF0 PREF1 PICO_STATUS PREF2 PREF3 (ps5000aGetUnitInfo)
(
int16_t handle,
int8_t* string,
On 07/01/2014 11:53 AM, Jonas Maebe wrote:
On 01/07/14 17:27, Paul Breneman wrote:
Sorry, but after I sent the email above I realized that I was editing a
file in the wrong folder. Free Pascal doesn't work with "var" on the
line below:
var str : Pchar;
This is what wor
On 07/01/2014 01:28 PM, Jonas Maebe wrote:
On 01/07/14 19:06, Paul Breneman wrote:
Thanks Jonas for the help! This now works for me in FPC (MyReturnStr is
PChar):
Status := ps5000aGetUnitInfo( ps5000a_handle, @MyReturnStr[ 0],
StringLen, requiredSize, RInfo);
But in D7 using
On 07/01/2014 02:58 PM, Jonas Maebe wrote:
On 01/07/14 19:42, Paul Breneman wrote:
I'm doing the same thing in FPC and D7:
StringLen := 14;
MyReturnStr := 'test1234567890';
Status := ps5000aGetUnitInfo( ps5000a_handle, @MyReturnStr[ 0],
StringLen, requiredSiz
On 07/01/2014 04:24 PM, Paul Breneman wrote:
On 07/01/2014 02:58 PM, Jonas Maebe wrote:
On 01/07/14 19:42, Paul Breneman wrote:
I'm doing the same thing in FPC and D7:
StringLen := 14;
MyReturnStr := 'test1234567890';
Status := ps5000aGetUnitInfo(
On 07/02/2014 06:43 AM, Paul Breneman wrote:
On 07/01/2014 04:24 PM, Paul Breneman wrote:
On 07/01/2014 02:58 PM, Jonas Maebe wrote:
On 01/07/14 19:42, Paul Breneman wrote:
I'm doing the same thing in FPC and D7:
StringLen := 14;
MyReturnStr := 'test1234567890'
uot;on-the-bare-iron" programming tasks."
Interesting stuff to go back and read with things currently happening:
http://blogs.esa.int/rosetta/
On 05/05/2014 11:22 AM, Paul Breneman wrote:
On 05/05/2014 04:36 AM, Michael Schnell wrote:
...
Thanks to the maintainers of fpc and all other list
This was cross posted to the Lazarus forum and there are a few more
interesting links added there:
http://forum.lazarus.freepascal.org/index.php/topic,26419.0.html
On 11/10/2014 10:43 AM, Paul Breneman wrote:
On 26-Sep-2004 Kristofer Skaug wrote (links below to messages): "You
want mi
This Lazarus forum message has a bit more:
http://forum.lazarus.freepascal.org/index.php/topic,25412.msg154279.html#msg154279
On 11/12/2014 10:11 AM, Paul Breneman wrote:
This was cross posted to the Lazarus forum and there are a few more
interesting links added there:
http
On 03/16/2015 05:18 AM, Lukasz Sokol wrote:
On 14/03/15 12:25, Florian Klaempfl wrote:
Am 14.03.2015 um 12:45 schrieb Graeme Geldenhuys:
On 2015-03-14 11:38, Mark Morgan Lloyd wrote:
[Sigh] I feel like I'm being pushed onto git rather than Subversion.
Then don't resist it. As 99% of develope
On 03/18/2015 06:57 PM, Coyo Stormcaller wrote:
Despite documentation and manuals, I have not figured out how to use TCP
sockets in Object Pascal, since there doesn't seem to be a primitive for
it, or any easy way to instantiate sockets and manipulate incoming
connections.
There is source code
On 04/18/2015 12:48 PM, Juha Manninen wrote:
Thanks for everybody for testing.
I could finally install FPC trunk in my development machine, Mint
Linux 64-bit, using fpcup. I remember it failed also there earlier for
some reason.
I still don't know what caused the errors in the fresh XUbuntu and
o
On 08/04/2015 07:33 AM, Gour wrote:
Mark Morgan Lloyd
writes:
The first option would be a pure Pascal one, driving either a
graphical or a text-based (curses etc.) UI.
Here you mean fpGUI & MSEgui?
I tend to use the FPC+Lazarus combination on (Debian) Linux targeting
x86 (including -64), S
On 09/04/2015 02:41 PM, Fred van Stappen wrote:
That will be very convenient for setting up quick
development VM's per project or client.
Thanks Graeme :-)
Huh, you may use it as VM project but as iso-live cdrom/ usb too.
And you may also install it to device, like your main server ;-).
Che
On 09/05/2015 04:46 PM, Fred van Stappen wrote:
I've tried the *beta.0.1.iso several times on VMware 11 and it always
shows the pretty splash screen then fails to mount the root. Is there
anything you suggest I try?
Re-re hello.
After testing here...
Impossible to run a FreeBSD bootable-iso
Synapse example.
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
ly it does so you should research it more
before doing it!
Best Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
dback welcome):
http://www.controlpascal.com/tutorial.htm
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
t the above wiki page which is almost 5 years
old. I might want to make an example for this wiki page:
http://wiki.freepascal.org/Small_Virtual_Machines
Any suggestions or links?
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-p
pages doesn't sound very good but hopefully this will
improve. Thanks again! :)
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 12/24/2015 11:06 AM, Martin Schreiber wrote:
On Thursday 24 December 2015 15:24:29 Paul Breneman wrote:
Thanks for a simple IDE that a beginner can install. I've already
posted a few links on my pages.
At the bottom of this page:
http://www.controlpascal.com/tutorial.htm
it now
On 12/26/2015 02:08 AM, Martin Schreiber wrote:
On Thursday 24 December 2015 16:58:16 Paul Breneman wrote:
On 12/24/2015 11:06 AM, Martin Schreiber wrote:
Maybe you should list the original too? ;-)
Martin
Yes I should, but the original is not as simple for a beginner to
install
I would suggest checking this out:
http://castle-engine.sourceforge.net/engine.php
https://github.com/castle-engine/castle-engine/wiki/Build-Too
Lots of links here:
http://turbocontrol.com/devoptions.htm
___
fpc-pascal maillist - fpc-pascal@lists.fre
On 03/21/2016 10:41 PM, donald.ped...@optusnet.com.au wrote:
Hi Paul,
I would suggest checking this out:
http://castle-engine.sourceforge.net/engine.php
https://github.com/castle-engine/castle-engine/wiki/Build-Tool
My app isn't a game, so not sure that is of much help to me, but
t
with
something like {$i %FPCVERSION%} so that I don't need to remember to
edit the library when re-using it in other projects. Also is there a
better way to retrieve this information on Linux?
Thanks,
Paul
{$IFDEF WINDOWS}
DataFolder :=
Inc
27;ve probably considered Abbrevia:
http://wiki.lazarus.freepascal.org/FreePascalArchivePackage
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 05/25/2016 09:56 AM, Bo Berglund wrote:
On Wed, 25 May 2016 08:21:54 -0500, Paul Breneman
wrote:
You've probably considered Abbrevia:
http://wiki.lazarus.freepascal.org/FreePascalArchivePackage
Yes,
I got that as a suggestion over at the Embarcadero forum...
But when I download
h mil spacing pins for easy
breadboarding.
You can do *everything* via USB. :) I joked about this several years ago
but then went searching and found USB to ISA slot and USB to PCI slot
adapters. Folks use these to run expensive data acquisition cards.
Regards,
Paul
www.ControlPasca
it here in
the next day or two:
http://ctrlterm.com/custom.htm
Regards,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 10/03/2016 07:24 AM, Paul Breneman wrote:
On 10/03/2016 03:27 AM, Santiago A. wrote:
I've seen that "accept" functions with socket pairs are deprecated. And
fpsocketpair returns always -1.
How do you get the in and out streams when a server accepts a new
client connection? I
, without success. Any
suggestion ? Rebuilding all from sources is most probably out of my
capabilities, hélas.
Kindest regards, Ched'
I would suggest using fpcup:
http://wiki.freepascal.org/fpcup
See the bottom link (Small Virtual Machines) to see what I've done with it.
Reg
piled and run
for 5 systems (FreeBSD 64/32, Linux 64/32 and Windows 32 bit) is *very*
nice!
Regards,
Paul
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
I
understand) to give access to private/protected static elements.
--
Best regards,
Paul Ishenin.
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
,
Paul
www.ControlPascal.com
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 04/09/2017 11:32 AM, fredvs wrote:
For this, Xorg must be installed.
Huh, of course only for gui applications (fpGUI or MSEgui).
For no gui console application, compile your fpc java native library for the
same cpu than the one of Android.
For example RPi (but I am not sure it is the same c
this easier, assuming you have a compatible Android version,
since it provides the Linux file system space, term emulator and easy
access.
This was what I thought Paul was looking to do. FreeVision might work
depending on a number of variables... but I'm not familiar with it. Most
Android te
On 04/18/2017 01:27 PM, Jon Foster wrote:
On 04/18/2017 10:13 AM, Jon Foster wrote:
On 04/18/2017 04:38 AM, Paul Breneman wrote:
On 04/17/2017 08:42 PM, Jon Foster wrote:
...
You have to copy the app to "/data/tmp" as that is usually the only
place on Android with a Linux file syste
On 04/18/2017 07:38 AM, Paul Breneman wrote:
On 04/17/2017 08:42 PM, Jon Foster wrote:
...
You have to copy the app to "/data/tmp" as that is usually the only
place on Android with a Linux file system that all users have access to.
You can't look in there so you kind of ha
On 04/19/2017 09:48 PM, Jon Foster wrote:
On 04/19/2017 06:01 AM, Paul Breneman wrote:
On 04/18/2017 07:38 AM, Paul Breneman wrote:
On 04/17/2017 08:42 PM, Jon Foster wrote:
...
You have to copy the app to "/data/tmp" as that is usually the only
place on Android with a Linux file s
On 04/19/2017 10:49 PM, Paul Breneman wrote:
I'm using a Nexus 7 tablet with Android 6.0.1. GNURoot provides a
chroot with Debian? It has been *three* years since I did this before
and things worked then so I don't know what might have changed so ppcarm
doesn't even run now.
A
On 04/20/2017 08:17 AM, Paul Breneman wrote:
On 04/19/2017 10:49 PM, Paul Breneman wrote:
I'm using a Nexus 7 tablet with Android 6.0.1. GNURoot provides a
chroot with Debian? It has been *three* years since I did this before
and things worked then so I don't know what might have
On 05/04/2017 09:09 PM, John van der Linden wrote:
Hi,
When I download the Free Pascal I get a file called i386-win32-ppc386.zip which
contains 1 file called ppc386.exe which does not contain the Setup system for
the Free Pascal IDE that I was expecting.
I have gone right through the Web Site
301 - 400 of 442 matches
Mail list logo