Skip to content

Commit

Permalink
Changed so that this builds a reasonable default with no command line…
Browse files Browse the repository at this point in the history
… #defines.

That is, it now builds .zip and native dir support, and that's it.
  • Loading branch information
icculus committed Mar 23, 2012
1 parent cd5362c commit 0584117
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 34 deletions.
4 changes: 2 additions & 2 deletions src/archiver_grp.c
Expand Up @@ -24,11 +24,11 @@
* This file written by Ryan C. Gordon.
*/

#if (defined PHYSFS_SUPPORTS_GRP)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_GRP

static UNPKentry *grpLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 fileCount)
{
PHYSFS_uint32 location = 16; /* sizeof sig. */
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_hog.c
Expand Up @@ -29,11 +29,11 @@
* Based on grp.c by Ryan C. Gordon.
*/

#if (defined PHYSFS_SUPPORTS_HOG)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_HOG

static UNPKentry *hogLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 *_entCount)
{
const PHYSFS_uint64 iolen = io->length(io);
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_iso9660.c
Expand Up @@ -24,11 +24,11 @@
* - Ambiguities in the standard
*/

#if (defined PHYSFS_SUPPORTS_ISO9660)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_ISO9660

#include <time.h>

/* cache files smaller than this completely in memory */
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_lzma.c
Expand Up @@ -7,11 +7,11 @@
* by Igor Pavlov.
*/

#if (defined PHYSFS_SUPPORTS_7Z)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_7Z

#include "lzma/C/7zCrc.h"
#include "lzma/C/Archive/7z/7zIn.h"
#include "lzma/C/Archive/7z/7zExtract.h"
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_mvl.c
Expand Up @@ -27,11 +27,11 @@
* Based on grp.c by Ryan C. Gordon.
*/

#if (defined PHYSFS_SUPPORTS_MVL)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_MVL

static UNPKentry *mvlLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 fileCount)
{
PHYSFS_uint32 location = 8; /* sizeof sig. */
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_qpak.c
Expand Up @@ -29,11 +29,11 @@
* This file written by Ryan C. Gordon.
*/

#if (defined PHYSFS_SUPPORTS_QPAK)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_QPAK

/* !!! FIXME: what is this here for? */
#if 1 /* Make this case insensitive? */
#define QPAK_strcmp(x, y) __PHYSFS_stricmpASCII(x, y)
Expand Down
4 changes: 2 additions & 2 deletions src/archiver_wad.c
Expand Up @@ -42,11 +42,11 @@
* Ryan C. Gordon.
*/

#if (defined PHYSFS_SUPPORTS_WAD)

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_WAD

static UNPKentry *wadLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 fileCount)
{
PHYSFS_uint32 directoryOffset;
Expand Down
8 changes: 4 additions & 4 deletions src/archiver_zip.c
Expand Up @@ -7,14 +7,14 @@
* by Gilles Vollant.
*/

#if (defined PHYSFS_SUPPORTS_ZIP)
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#if PHYSFS_SUPPORTS_ZIP

#include <errno.h>
#include <time.h>

#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"

#define USE_MINIZ 1
#if USE_MINIZ
#include "physfs_miniz.h"
Expand Down
32 changes: 16 additions & 16 deletions src/physfs.c
Expand Up @@ -68,57 +68,57 @@ extern const PHYSFS_Archiver __PHYSFS_Archiver_ISO9660;

static const PHYSFS_ArchiveInfo *supported_types[] =
{
#if (defined PHYSFS_SUPPORTS_ZIP)
#if PHYSFS_SUPPORTS_ZIP
&__PHYSFS_ArchiveInfo_ZIP,
#endif
#if (defined PHYSFS_SUPPORTS_7Z)
#if PHYSFS_SUPPORTS_7Z
&__PHYSFS_ArchiveInfo_LZMA,
#endif
#if (defined PHYSFS_SUPPORTS_GRP)
#if PHYSFS_SUPPORTS_GRP
&__PHYSFS_ArchiveInfo_GRP,
#endif
#if (defined PHYSFS_SUPPORTS_QPAK)
#if PHYSFS_SUPPORTS_QPAK
&__PHYSFS_ArchiveInfo_QPAK,
#endif
#if (defined PHYSFS_SUPPORTS_HOG)
#if PHYSFS_SUPPORTS_HOG
&__PHYSFS_ArchiveInfo_HOG,
#endif
#if (defined PHYSFS_SUPPORTS_MVL)
#if PHYSFS_SUPPORTS_MVL
&__PHYSFS_ArchiveInfo_MVL,
#endif
#if (defined PHYSFS_SUPPORTS_WAD)
#if PHYSFS_SUPPORTS_WAD
&__PHYSFS_ArchiveInfo_WAD,
#endif
#if (defined PHYSFS_SUPPORTS_ISO9660)
#if PHYSFS_SUPPORTS_ISO9660
&__PHYSFS_ArchiveInfo_ISO9660,
#endif
NULL
};

static const PHYSFS_Archiver *archivers[] =
{
#if (defined PHYSFS_SUPPORTS_ZIP)
#if PHYSFS_SUPPORTS_ZIP
&__PHYSFS_Archiver_ZIP,
#endif
#if (defined PHYSFS_SUPPORTS_7Z)
#if PHYSFS_SUPPORTS_7Z
&__PHYSFS_Archiver_LZMA,
#endif
#if (defined PHYSFS_SUPPORTS_GRP)
#if PHYSFS_SUPPORTS_GRP
&__PHYSFS_Archiver_GRP,
#endif
#if (defined PHYSFS_SUPPORTS_QPAK)
#if PHYSFS_SUPPORTS_QPAK
&__PHYSFS_Archiver_QPAK,
#endif
#if (defined PHYSFS_SUPPORTS_HOG)
#if PHYSFS_SUPPORTS_HOG
&__PHYSFS_Archiver_HOG,
#endif
#if (defined PHYSFS_SUPPORTS_MVL)
#if PHYSFS_SUPPORTS_MVL
&__PHYSFS_Archiver_MVL,
#endif
#if (defined PHYSFS_SUPPORTS_WAD)
#if PHYSFS_SUPPORTS_WAD
&__PHYSFS_Archiver_WAD,
#endif
#if (defined PHYSFS_SUPPORTS_ISO9660)
#if PHYSFS_SUPPORTS_ISO9660
&__PHYSFS_Archiver_ISO9660,
#endif
NULL
Expand Down
22 changes: 22 additions & 0 deletions src/physfs_internal.h
Expand Up @@ -96,6 +96,28 @@ void __PHYSFS_smallFree(void *ptr);
#define free(x) Do not use free() directly.
/* !!! FIXME: add alloca check here. */

#ifndef PHYSFS_SUPPORTS_ZIP
#define PHYSFS_SUPPORTS_ZIP 1
#endif
#ifndef PHYSFS_SUPPORTS_7Z
#define PHYSFS_SUPPORTS_7Z 0
#endif
#ifndef PHYSFS_SUPPORTS_GRP
#define PHYSFS_SUPPORTS_GRP 0
#endif
#ifndef PHYSFS_SUPPORTS_HOG
#define PHYSFS_SUPPORTS_HOG 0
#endif
#ifndef PHYSFS_SUPPORTS_MVL
#define PHYSFS_SUPPORTS_MVL 0
#endif
#ifndef PHYSFS_SUPPORTS_WAD
#define PHYSFS_SUPPORTS_WAD 0
#endif
#ifndef PHYSFS_SUPPORTS_ISO9660
#define PHYSFS_SUPPORTS_ISO9660 0
#endif

#define DIR_ARCHIVE_DESCRIPTION "Non-archive, direct filesystem I/O"
#define GRP_ARCHIVE_DESCRIPTION "Build engine Groupfile format"
#define HOG_ARCHIVE_DESCRIPTION "Descent I/II HOG file format"
Expand Down

0 comments on commit 0584117

Please sign in to comment.