Disable PackLinuxI386sep for now. Compressed binaries really should

be completely self contained. Also, I'm afraid that an external
decompressor will require too much work for maintaining unlimited
backward compatibility.

If we really want to enable this again at some future point more
work must go into it - at least I think that there should be a
*single* external program that handles all algorithms and versions.

committer: mfx <mfx> 973827819 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2000-11-10 03:43:39 +00:00
parent 89284ea0b3
commit 46e2e40736

View File

@ -161,10 +161,13 @@ static Packer* try_packers(InputFile *f, try_function func)
return p;
if ((p = func(new PackTos(f),f)) != NULL)
return p;
if (opt->script_name) {
#if 0
if (opt->unix.script_name)
{
if ((p = func(new PackLinuxI386sep(f),f)) != NULL)
return p;
}
#endif
if ((p = func(new PackLinuxI386elf(f),f)) != NULL)
return p;
if ((p = func(new PackLinuxI386sh(f),f)) != NULL)