From 59a07020a8b22241e414e15bd87cfa4651f9b031 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 8 Jul 2017 18:25:20 -0400 Subject: [PATCH] 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. --- src/physfs_internal.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/physfs_internal.h b/src/physfs_internal.h index 7d11e72..36a6bcb 100644 --- a/src/physfs_internal.h +++ b/src/physfs_internal.h @@ -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. */