Turn on all the archivers by default.
(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.
This commit is contained in:
parent
d3237eba1f
commit
59a07020a8
|
@ -103,25 +103,25 @@ void __PHYSFS_smallFree(void *ptr);
|
||||||
#define PHYSFS_SUPPORTS_7Z 0
|
#define PHYSFS_SUPPORTS_7Z 0
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_GRP
|
#ifndef PHYSFS_SUPPORTS_GRP
|
||||||
#define PHYSFS_SUPPORTS_GRP 0
|
#define PHYSFS_SUPPORTS_GRP 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_HOG
|
#ifndef PHYSFS_SUPPORTS_HOG
|
||||||
#define PHYSFS_SUPPORTS_HOG 0
|
#define PHYSFS_SUPPORTS_HOG 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_MVL
|
#ifndef PHYSFS_SUPPORTS_MVL
|
||||||
#define PHYSFS_SUPPORTS_MVL 0
|
#define PHYSFS_SUPPORTS_MVL 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_WAD
|
#ifndef PHYSFS_SUPPORTS_WAD
|
||||||
#define PHYSFS_SUPPORTS_WAD 0
|
#define PHYSFS_SUPPORTS_WAD 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_SLB
|
#ifndef PHYSFS_SUPPORTS_SLB
|
||||||
#define PHYSFS_SUPPORTS_SLB 0
|
#define PHYSFS_SUPPORTS_SLB 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_ISO9660
|
#ifndef PHYSFS_SUPPORTS_ISO9660
|
||||||
#define PHYSFS_SUPPORTS_ISO9660 0
|
#define PHYSFS_SUPPORTS_ISO9660 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_SUPPORTS_VDF
|
#ifndef PHYSFS_SUPPORTS_VDF
|
||||||
#define PHYSFS_SUPPORTS_VDF 0
|
#define PHYSFS_SUPPORTS_VDF 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The latest supported PHYSFS_Io::version value. */
|
/* The latest supported PHYSFS_Io::version value. */
|
||||||
|
|
Loading…
Reference in New Issue