I wouldn't include libstdc++, libgcc and libc as they should be included as standard with the OS.Raziel wrote: libSDL-1.2.so
libvorbisfile.so
libvorbis.so
libogg.so
libFLAC.so
libpng15.so.15
libtheoradec.so
libfaad.so
libz.so
libstdc++.so
libgcc.so
libc.so
Search found 488 matches
- Sun Feb 12, 2012 8:29 pm
- Forum: General AmigaOS
- Topic: SObjs partly uploading
- Replies: 6
- Views: 3899
Re: SObjs partly uploading
- Sun Feb 12, 2012 8:21 pm
- Forum: General AmigaOS
- Topic: SObjs partly uploading
- Replies: 6
- Views: 3899
Re: SObjs partly uploading
If you do, people downloading your package some time in the future may end up installing older versions of libraries on top of newer, as especially .so files do not have any version inside. Apart from that, it is wasting space/bandwidth to include those in every package which uses them. If sobjs ar...
- Fri Jan 27, 2012 11:22 am
- Forum: General AmigaOS
- Topic: AHI - Unit 0
- Replies: 7
- Views: 3230
Re: AHI - Unit 0
ADoom sadly still broken, MIDI music never work under OS4 (and this is a well know issue) but for now i can't neither be able to active any other sound from its specific icon tooltype (DSI crash) aniway now i understand why .. Better use PrBoom . It has working music and you can disable the OpenGL ...
- Thu Jan 26, 2012 3:13 pm
- Forum: Platform: Pegasos II
- Topic: How do you Format JXFS Partitions?
- Replies: 3
- Views: 19378
Re: How do you Format JXFS Partitions?
@magnetic
Have you made sure in Media Toolbox that the blocksize of the partition is 512 bytes? For SFS and JXFS partitions this is the recommended value to use for blocksize (and IIRC only allowed value for JXFS).
Have you made sure in Media Toolbox that the blocksize of the partition is 512 bytes? For SFS and JXFS partitions this is the recommended value to use for blocksize (and IIRC only allowed value for JXFS).
- Fri Dec 23, 2011 5:59 pm
- Forum: SDK Support
- Topic: Size of executable files gets too large with SDK v53.20
- Replies: 20
- Views: 21686
Re: Size of executable files gets too large with SDK v53.20
It has nothing to do with the Sam440EP or AmigaOS for that matter. Thomas added it thinking it fixed an alignment issue on the 440ep. If this is not the case I suppose somebody should let him know... Thomas did add extra alignment for the Sam440 but this is not what is causing the large noticeable ...
- Fri Dec 23, 2011 8:28 am
- Forum: General AmigaOS
- Topic: Unable to download Update 4
- Replies: 18
- Views: 6550
Re: Unable to download Update 4
@mpiva
I didn't have any problems downloading it here (I have registered both Sam440 and AmigaOne versions of OS4.1).
The archive ("AmigaOS4.1Update4.lha") should be listed under "Root -> AmigaOS 4.x -> AmigaOS 4.1 Updates" in the Downloads section.
I didn't have any problems downloading it here (I have registered both Sam440 and AmigaOne versions of OS4.1).
The archive ("AmigaOS4.1Update4.lha") should be listed under "Root -> AmigaOS 4.x -> AmigaOS 4.1 Updates" in the Downloads section.
- Thu Dec 22, 2011 10:00 pm
- Forum: SDK Support
- Topic: Size of executable files gets too large with SDK v53.20
- Replies: 20
- Views: 21686
Re: Size of executable files gets too large with SDK v53.20
http://www.amigans.net/modules/xforum/viewtopic.php?post_id=42211#forumpost42211 It has nothing to do with the Sam440EP or AmigaOS for that matter. Newer binutils pad the segments in ELF files so that they are 64kb aligned so that they can be easily loaded with mmap() (since mmap() doesn't exist on ...
- Sat Dec 17, 2011 8:06 am
- Forum: SDK Support
- Topic: Something odd in requester.h
- Replies: 2
- Views: 4419
Re: Something odd in requester.h
Is the define for REQI_Mark a typo? It just seemed weird to me that it switches to REQS_Dummy in that line. Tom I was going to suggest that REQI_Mark likely an alias for REQS_Mark, but it turns out it has a different value so it's probably a copy paste error (programmer changed the '+7' to '+9' but...
- Thu Dec 01, 2011 6:16 pm
- Forum: General Developer Support
- Topic: "Bug" in Installer
- Replies: 2
- Views: 2879
Re: "Bug" in Installer
It's already reported and fixed:
http://forum.hyperion-entertainment.biz ... f=14&t=634
http://forum.hyperion-entertainment.biz ... f=14&t=634
- Thu Dec 01, 2011 3:52 pm
- Forum: General Developer Support
- Topic: char & UBYTE
- Replies: 11
- Views: 8639
Re: char & UBYTE
There are three distinct types of a char: "unsigned char", "signed char" and "char" and GCC will give you a warning in case you try to mix and match them. So if you need an 8-bit value in the range [0,255], use "unsigned char", if you need an 8-bit value in t...