Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-23 Thread Harald Lapp
2008/6/22 Jonas Maebe [EMAIL PROTECTED]: On 22 Jun 2008, at 12:21, Harald Lapp wrote: after reading every bit of freepascal + mysql5 i could find on the net, i have still some problems getting this to run on OSX. i've installed mysql-5.0.45 and as i'm developing mainly with PHP and i

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-23 Thread Jonas Maebe
On 23 Jun 2008, at 08:47, Harald Lapp wrote: 2008/6/22 Jonas Maebe [EMAIL PROTECTED]: Add the following to your program: {$linklib mysql50} The reason that this is not necessary on other platforms, is that they implicitly add that based on the external declarations. This was

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-23 Thread Joost van der Sluis
Op zondag 22-06-2008 om 20:41 uur [tijdzone +0200], schreef Jonas Maebe: On 22 Jun 2008, at 20:31, Florian Klaempfl wrote: Jonas Maebe schrieb: Add the following to your program: {$linklib mysql50} The reason that this is not necessary on other platforms, is that they implicitly add

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-23 Thread Jonas Maebe
On 23 Jun 2008, at 11:28, Joost van der Sluis wrote: In the case of Firebird there are two possible names of the library, and both are tried. Can I safely add the {$linklib ...} statements for both libraries, even if one of them doesn't exist on the system? No. But you don't need

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-23 Thread Joost van der Sluis
Op maandag 23-06-2008 om 11:33 uur [tijdzone +0200], schreef Jonas Maebe: On 23 Jun 2008, at 11:28, Joost van der Sluis wrote: In the case of Firebird there are two possible names of the library, and both are tried. Can I safely add the {$linklib ...} statements for both

[fpc-pascal] freepascal + mysql5 + osx

2008-06-22 Thread Harald Lapp
hello, after reading every bit of freepascal + mysql5 i could find on the net, i have still some problems getting this to run on OSX. i've installed mysql-5.0.45 and as i'm developing mainly with PHP and i compiled PHP with mysql support on my own, everything regarding mysql needed for developing

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-22 Thread Jonas Maebe
On 22 Jun 2008, at 12:21, Harald Lapp wrote: after reading every bit of freepascal + mysql5 i could find on the net, i have still some problems getting this to run on OSX. i've installed mysql-5.0.45 and as i'm developing mainly with PHP and i compiled PHP with mysql support on my own,

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-22 Thread Florian Klaempfl
Jonas Maebe schrieb: On 22 Jun 2008, at 12:21, Harald Lapp wrote: after reading every bit of freepascal + mysql5 i could find on the net, i have still some problems getting this to run on OSX. i've installed mysql-5.0.45 and as i'm developing mainly with PHP and i compiled PHP with mysql

Re: [fpc-pascal] freepascal + mysql5 + osx

2008-06-22 Thread Jonas Maebe
On 22 Jun 2008, at 20:31, Florian Klaempfl wrote: Jonas Maebe schrieb: Add the following to your program: {$linklib mysql50} The reason that this is not necessary on other platforms, is that they implicitly add that based on the external declarations. This was disabled for Darwin when