physfs/INSTALL

60 lines
2.2 KiB
Plaintext
Raw Normal View History

2001-09-02 03:11:56 +02:00
Building is very easy.
2001-07-28 15:07:10 +02:00
2001-08-23 18:02:51 +02:00
ALL PLATFORMS:
2001-09-02 03:11:56 +02:00
2001-08-23 18:02:51 +02:00
Please understand your rights and mine: read the text file LICENSE in the root
of the source tree. If you can't abide by it, delete this source tree now.
The best documentation for the PhysicsFS API is physfs.h. It is VERY heavily
commented, and makes an excellent, in-depth reference to all the functions.
UNIX:
2001-09-02 03:11:56 +02:00
2001-07-28 15:07:10 +02:00
Edit "Makefile", and follow the instructions. The defaults are probably okay
2001-08-23 18:02:51 +02:00
for general purposes, but give it a once over to make sure. If you don't have
zLib on your system, you'll need to disable ZIP support.
2001-07-28 15:07:10 +02:00
run "make"
That's it. The library will be sitting in a new directory called "bin".
2001-08-07 04:56:50 +02:00
Run "make install" to install the library for use on your system.
2001-07-28 15:07:10 +02:00
2001-08-23 18:02:51 +02:00
WIN32:
2001-09-02 02:18:43 +02:00
Download http://icculus.org/physfs/downloads/physfs-win32-support.zip, and
2002-04-19 22:52:59 +02:00
unpack in the root of the source directory, preserving directory names. If
you did it correctly, there should be a directory named "zlib114" in the
same directory as "physfs.h". This archive has Visual C project files and
2001-09-02 02:18:43 +02:00
the code needed for zipfile support in PhysicsFS, since most Windows boxes
don't have zlib preinstalled.
2001-08-23 18:02:51 +02:00
2002-04-19 22:52:59 +02:00
After that, if building with CygWin, follow the Unix instructions, above.
If you're using Visual C, point the IDE at physfs.dsp, and build. If
you're using any other compiler, send me a patch when you get it working. :)
2001-07-28 15:07:10 +02:00
2001-09-02 03:11:56 +02:00
If someone is willing to maintain prebuilt PhysicsFS DLLs, I'd like to hear
from you; send an email to icculus@clutteredmind.org.
2001-08-23 18:02:51 +02:00
2002-04-06 16:16:47 +02:00
MACOS 8/9:
Download http://icculus.org/physfs/downloads/mac_classic_support.sit and
unpack it in the root of the physfs folder. It should produce a folder
called "Mac Classic Support" that has CodeWarrior 6 project files and a
copy of zlib for zipfile support.
If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
the Mac, I'd like to hear from you; send an email to icculus@clutteredmind.org.
OTHER PLATFORMS:
Many platforms might "just work" with the Unix Makefile (such as BeOS and
MacOS X), but have not been tested. To implement a new platform or
archiver, please read the heavily-commented physfs_internal.h and look
in the platform/ and archiver/ directories for examples.
--ryan. (icculus@clutteredmind.org)
2001-09-02 03:11:56 +02:00