Amiga.org

Operating System Specific Discussions => Amiga OS => Amiga OS -- Development => Topic started by: Gulliver on February 15, 2011, 10:29:52 PM

Title: Need help from the developers out there for PFS3
Post by: Gulliver on February 15, 2011, 10:29:52 PM
Hi I just received an email from the author of PFS3 and he is having some issues. Could someone please help, so that I send him a good answer

Thanks in advance
____________________________________________________________________________
Re: PFS3
Tuesday, February 15, 2011 7:08 PM
From:
"Michiel Pelt"
Add sender to Contacts
To:
"Ignacio"
Hi Ignacio,

So finally I got it rolling again. I do have a problem someone in the community may be able to help me with. When compiling with SAS C 6.58 I get the link error that
@LibFreePooled
@LibAllocPooled
@LibCreatePool
and
@LibDeletePool

are undefined. These functions are supposed to be in the amiga.lib. Perhaps I got the wrong version. What I have is amiga.lib 40.14, 11-8-93. Should be ok, but isn't. Does anyone have something newer?

Michiel
Title: Re: Need help from the developers out there for PFS3
Post by: NovaCoder on February 15, 2011, 11:03:40 PM
Quote from: Gulliver;615798
Hi I just received an email from the author of PFS3 and he is having some issues. Could someone please help, so that I send him a good answer

Thanks in advance
____________________________________________________________________________
Re: PFS3
Tuesday, February 15, 2011 7:08 PM
From:
"Michiel Pelt"
Add sender to Contacts
To:
"Ignacio"
Hi Ignacio,

So finally I got it rolling again. I do have a problem someone in the community may be able to help me with. When compiling with SAS C 6.58 I get the link error that
@LibFreePooled
@LibAllocPooled
@LibCreatePool
and
@LibDeletePool

are undefined. These functions are supposed to be in the amiga.lib. Perhaps I got the wrong version. What I have is amiga.lib 40.14, 11-8-93. Should be ok, but isn't. Does anyone have something newer?

Michiel


Not sure, sorry.  You could try asking on UtilityBase, more coders seem to hang out there.
Title: Re: Need help from the developers out there for PFS3
Post by: Piru on February 15, 2011, 11:04:48 PM
http://www.haage-partner.de/download/AmigaOS/NDK39.lha

ndk_3.9/include/linker_libs/amiga.lib

$ strings ndk_3.9/include/linker_libs/amiga.lib | grep \$VER:
$VER: amiga_lib 45.3 (17.12.2001)
Title: Re: Need help from the developers out there for PFS3
Post by: Gulliver on February 16, 2011, 12:04:07 AM
Thank you NovaCoder.

Thank you Piru, I will pass him the message :)
Title: Re: Need help from the developers out there for PFS3
Post by: VingtTrois on February 16, 2011, 12:23:24 AM
...so perhaps PFS3 for all very very soon!!!!
Title: Re: Need help from the developers out there for PFS3
Post by: Gulliver on February 16, 2011, 12:27:45 AM
@VingTrois

I know the same as you do. So maybe you are right...
Lets keep our fingers crossed ;)
Title: Re: Need help from the developers out there for PFS3
Post by: nicholas on February 16, 2011, 12:33:31 AM
Quote from: VingtTrois;615834
...so perhaps PFS3 for all very very soon!!!!

I got tired of waiting and bought Amiga Future 85 last week.

@Gulliver

Have you asked him whether he would be willing to donate the source code to AROS?
Title: Re: Need help from the developers out there for PFS3
Post by: HenryCase on February 16, 2011, 01:16:24 AM
Quote from: nicholas;615838
@Gulliver

Have you asked him whether he would be willing to donate the source code to AROS?


I thought the idea was to release the code in the public domain. AROS coders would be as free as anyone else to use the code. See here:
http://eab.abime.net/showthread.php?t=52234
"About your request. Yes, I think it is about time to make PFS3
available in the Public Domain. However I must think about the license
to use."
Title: Re: Need help from the developers out there for PFS3
Post by: Gulliver on February 16, 2011, 02:03:16 AM
Yes, the entire point is to have PFS3 free and open source.
Title: Re: Need help from the developers out there for PFS3
Post by: Gulliver on February 17, 2011, 04:41:05 PM
Follow up email from Michiel Pelt
____________________________________________________________________________

Re: PFS3 - amiga.lib
Thursday, February 17, 2011 9:39 AM
From:
"Michiel Pelt"
Add sender to Contacts
To:
"Ignacio"

The compiler didn't like the includefiles of the NDK39. I did find the problem: PFS uses register arguments and apparently it expected the same of the amiga.lib calls. Adding the __stdargs keyword to the prototype definition did the trick. Of course it is not very nice to change the include file. It is better to switch to AsmAllocPooled and define that in the pfs headers. Better for performance too!
____________________________________________________________________________