From 61652a29890817432e502c56b378cc75db6e8f56 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 19 Dec 2016 23:23:25 +0100 Subject: [PATCH] Remove unused PackSolarisSparc. --- src/conf.h | 2 +- src/p_unix.h | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) diff --git a/src/conf.h b/src/conf.h index 7c86aa9e..de01e1f5 100644 --- a/src/conf.h +++ b/src/conf.h @@ -419,7 +419,7 @@ private: #define UPX_F_DYLIB_PPC64LE 41 #define UPX_F_ATARI_TOS 129 -#define UPX_F_SOLARIS_SPARC 130 +#define UPX_F_SOLARIS_SPARC 130 // NOT IMPLEMENTED #define UPX_F_MACH_PPC32 131 #define UPX_F_LINUX_ELFPPC32 132 #define UPX_F_LINUX_ELF32_ARMEB 133 diff --git a/src/p_unix.h b/src/p_unix.h index c7542362..83b01da8 100644 --- a/src/p_unix.h +++ b/src/p_unix.h @@ -190,30 +190,6 @@ protected: }; -/************************************************************************* -// solaris/sparc -**************************************************************************/ - -#if 0 -class PackSolarisSparc : public PackUnixBe32 -{ - typedef PackUnixBe32 super; -public: - PackSolarisSparc(InputFile *f) : super(f) { } - virtual int getFormat() const { return UPX_F_SOLARIS_SPARC; } - virtual const char *getName() const { return "solaris/sparc"; } - - virtual bool canPack(); - -protected: - virtual upx_byte *getLoader() const; - virtual int getLoaderSize() const; - - virtual void patchLoader(); -}; -#endif /* #if 0 */ - - #endif /* already included */ /* vim:set ts=4 sw=4 et: */