Hi, does anyone know how to install freepascal mysql component to kylix 3
open edition? Or is there any database component that can be use with
kylix 3 open edition?
Thx b4.
=
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
ht
Am Donnerstag, den 05.10.2006, 22:19 -0500 schrieb Jeff Pohlmeyer:
> > Errm, I actually forgot the obvious questions:
> > What's wrong here? How can I get around it?
>
>
> cat input.h | awk '{gsub(/\<__int64\>/," long long "); print}' > output.h
>
> - should work, at least on Linux x86
That h
Downloaded fpc 2.0.4 yesterday and I am trying to compile a legacy CW Pro 2 app
on Mac 10.4.8 with Xcode 2.4.
I am getting undefined symbols THREADVARLIST_FVCOMMON &
THREADVARLIST_MEMORY when trying to link, and I have no clue how to get past
this problem. I searched my hard drive and found them
Dear
is anybody there use visualserver from VisualSynapse
(http://visualsynapse.sourceforge.net/?id=8) and impleted it on Linux
has a console mode...??
Examples given is only on application interface ...
Problems:
1) When the application start, no web page are generated...
2) i would like t
Many thanks to the community
To reply to Graeme :
why not just use the /sbin/ifconfig output ?
Simply to be more dev compliance... using an external program is slower
and sometime ifconfig doesn't exist or is deleted on target computers.
To reply to Marco :
And the only "good" solution is a po
On Friday 06 October 2006 10:49, Adrian Maier wrote:
> I have a silly question : which is the best way to uninstall FPC ?
I don't know.
> Also, after compiling FPC with 'make build' , if i execute 'make
> install' will it
> copy everyting in /usr/local by default ? Is the destination
>
> > Better, but still Linux only. For a good solution,
> > a resolver unit that accesses libc should be
> > written that is portable (unlike the libc unit)
>
> If I understood correctly, the OP had two questions:
>
> 1. Retrieve a list of interface names on a *linux* system.
> 2. Return the IP ad
I have these two functions in my .bashrc file. You only need to run
"ii" for the cool output. Now back to the question - If it is for
linux only, why not just use the /sbin/ifconfig output. After all, it
is accurate and seem much easier than all those libc/library methods.
I pull the IPs and I
Пётр Косаревский schreef:
Then there is also synregexpr.pas:
http://svn.freepascal.org/svn/lazarus/trunk/components/synedit/synregexpr.pas
But that is not distrubuted with fpc. And I don't know, if the license is open
source. Is it looks likes a BSD derivative, but item 3, about income, doesn't
> Then there is also synregexpr.pas:
> http://svn.freepascal.org/svn/lazarus/trunk/components/synedit/synregexpr.pas
> But that is not distrubuted with fpc. And I don't know, if the license is
> open
> source. Is it looks likes a BSD derivative, but item 3, about income, doesn't
> seem
> to fit
Better, but still Linux only. For a good solution,
a resolver unit that accesses libc should be
written that is portable (unlike the libc unit)
If I understood correctly, the OP had two questions:
1. Retrieve a list of interface names on a *linux* system.
2. Return the IP address for a given *
Hello, I'd like to ask if someone has experiences with low level
disk operations in windows with FPC.
The program should be able to copy entire diskete to one single image file
and for example extract a single file from that image or view its contents.
For example how can I read one sect
> > Basic seems to be: |()?*+ (non-UNICODE) support (from wikipedia).
> | is not basic afaik. From re_format BSD Manpage:
> Obsolete (``basic'') regular expressions differ in several respects. `|'
> is an ordinary character and there is no equivalent for its functional-
> ity. `+'
Many Thanks for this way jeff...
/proc/net/dev is more compatible
Impressed it
for your information.
My program will run only on linux system...
Marco van de Voort a écrit :
I would parse /proc/net/dev instead
Better, but still Linux only. For a good solution, a resolver unit that
ac
> I would parse /proc/net/dev instead
Better, but still Linux only. For a good solution, a resolver unit that
accesses libc should be written that is portable (unlike the libc unit)
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://
how can i list wich interface loaded without
need to parse /etc/networks/...?
I would parse /proc/net/dev instead
program ifnames;
var
s:shortstring;
f:text;
p:LongInt;
begin
assign(f,'/proc/net/dev');
reset(f);
while not eof(f) do begin
readln(f,s);
p:=pos(':',s);
if ( p
Many thanks Vincent
the {$mode delphi} is a good way...
Vincent Snijders a écrit :
TOUZEAU DAVID schreef:
Dear
I would like to use some units developped from delphi/klyx with
Lazarus IDE On Linux.
It seems that there is some differences between delphi/freepascal
especially for longstring
Here is the backtrace. I removed all other Assert tests, so only the
one that causes the problem is executed.
What is strange though, is that I created a new test that only creates
the object and then tests the ObjectState. It it works, but all the
other actual tests don't. I hate such problems
> > Although fpc has a regexpr unit:
> > http://svn.freepascal.org/svn/fpc/trunk/packages/base/regexpr/regexpr.pp
> > It has many todos, such as adding support for | in the search expression.
> > So this
> > unit doesn't have enough functionality.
>
> While '|' support is to be considered basic
TOUZEAU DAVID schreef:
Dear
I would like to use some units developped from delphi/klyx with Lazarus
IDE On Linux.
It seems that there is some differences between delphi/freepascal
especially for longstring conversion.
Many times, i received this compilator error :
For example by using the
Dear
I would like to use some units developped from delphi/klyx with Lazarus
IDE On Linux.
It seems that there is some differences between delphi/freepascal
especially for longstring conversion.
Many times, i received this compilator error :
For example by using the LibTar.pas
(http://www
Graeme Geldenhuys schreef:
Oh, I forgot to mention. If the ObjectStates match, the test passes
fine, and doesn't give an access violation.
While creating the new AssertEquals method, I purposefully created a
failure with then gives the access violation, instead to the
comparison message I expec
Oh, I forgot to mention. If the ObjectStates match, the test passes
fine, and doesn't give an access violation.
While creating the new AssertEquals method, I purposefully created a
failure with then gives the access violation, instead to the
comparison message I expected:
"Failing on 1: Expecte
OK i understand that i using i386 no 64 bits
Marco van de Voort a écrit :
This function works perfectly without need to regex ifconfig... And i
use glibc
I develop only on linux system.
Note that it is linux/x86 only. No 64-bit, or other platforms.
--
David Touzeau --
Hi,
AssertEquals always gives an Access violation error for some reason.
First some background info is needed
I first write some of my tests using AssertTrue as follows:
AssertTrue('Failed on 2', posClean = lNode1.ObjectState);
This just raise the exception when they didn't match. I prefer
> This function works perfectly without need to regex ifconfig... And i
> use glibc
> I develop only on linux system.
Note that it is linux/x86 only. No 64-bit, or other platforms.
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lis
Many Thanks Jeff and Micha.
This function works perfectly without need to regex ifconfig... And i
use glibc
I develop only on linux system.
Great respects...
Just another question... (this because i came from Windows OS) how can i
list wich interface loaded without need to parse /etc/networks
> I have a silly question : which is the best way to uninstall FPC ? I
> have used
> the 2.0.4 tarball (Linux) and the install script included within. I
> chose to install
> it in /usr/local.
No automatic way. Maybe the script should keep a filelist of what it
installs somehow.
Everything sqld
Hello,
I have a silly question : which is the best way to uninstall FPC ? I
have used
the 2.0.4 tarball (Linux) and the install script included within. I
chose to install
it in /usr/local.
Now, I need to compile from sources (so debug some problems with sqldb)
and i want to make sure that the
29 matches
Mail list logo