Skip to content

Commit

Permalink
Turn on all the archivers by default.
Browse files Browse the repository at this point in the history
(Except for the lzma archiver, since it needs a bunch of external code.)

The difference in binary size, for Linux/amd64 compiled for size (-Os),
is 4 kilobytes. It's senseless to not just compile them all in.
  • Loading branch information
icculus committed Jul 8, 2017
1 parent d3237eb commit 59a0702
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/physfs_internal.h
Expand Up @@ -103,25 +103,25 @@ void __PHYSFS_smallFree(void *ptr);
#define PHYSFS_SUPPORTS_7Z 0
#endif
#ifndef PHYSFS_SUPPORTS_GRP
#define PHYSFS_SUPPORTS_GRP 0
#define PHYSFS_SUPPORTS_GRP 1
#endif
#ifndef PHYSFS_SUPPORTS_HOG
#define PHYSFS_SUPPORTS_HOG 0
#define PHYSFS_SUPPORTS_HOG 1
#endif
#ifndef PHYSFS_SUPPORTS_MVL
#define PHYSFS_SUPPORTS_MVL 0
#define PHYSFS_SUPPORTS_MVL 1
#endif
#ifndef PHYSFS_SUPPORTS_WAD
#define PHYSFS_SUPPORTS_WAD 0
#define PHYSFS_SUPPORTS_WAD 1
#endif
#ifndef PHYSFS_SUPPORTS_SLB
#define PHYSFS_SUPPORTS_SLB 0
#define PHYSFS_SUPPORTS_SLB 1
#endif
#ifndef PHYSFS_SUPPORTS_ISO9660
#define PHYSFS_SUPPORTS_ISO9660 0
#define PHYSFS_SUPPORTS_ISO9660 1
#endif
#ifndef PHYSFS_SUPPORTS_VDF
#define PHYSFS_SUPPORTS_VDF 0
#define PHYSFS_SUPPORTS_VDF 1
#endif

/* The latest supported PHYSFS_Io::version value. */
Expand Down

0 comments on commit 59a0702

Please sign in to comment.