too. This is the default for 32-bit x86
Windows builds. Unless the compiler
supports __attribute__((__constructor__)),
- the `win95' threading is incompatible with
+ the 'win95' threading is incompatible with
--enable-small.
vista Use Windows Vista compatible threads. The
resulting binaries won't run on Windows XP
or older. This is the default for Windows
excluding 32-bit x86 builds (that is, on
- x86-64 the default is `vista').
+ x86-64 the default is 'vista').
no Disable threading support. This is the
same as using --disable-threads.
the options --files or --files0 weren't used. This is a
common use case, for example, (de)compressing .tar.xz
files via GNU tar. The sandbox is also used for
- single-file `xz --test' or `xz --list'.
+ single-file 'xz --test' or 'xz --list'.
Supported METHODs:
// large files on 32-bit systems (POSIX versions fseeko() and
// ftello() can support large files).
if (fseek(infile, 0, SEEK_END)) {
- fprintf(stderr, "Error seeking the file `%s': %s\n",
+ fprintf(stderr, "Error seeking the file '%s': %s\n",
filename, strerror(errno));
return false;
}
if (ferror(infile)) {
fprintf(stderr,
- "Error reading from `%s': %s\n",
+ "Error reading from '%s': %s\n",
filename, strerror(errno));
return false;
}
// switch fseeko() or lseek().
if (fseek(infile, (long)(strm->seek_pos), SEEK_SET)) {
fprintf(stderr, "Error seeking the "
- "file `%s': %s\n",
+ "file '%s': %s\n",
filename, strerror(errno));
return false;
}
case LZMA_FORMAT_ERROR:
// .xz magic bytes weren't found.
- fprintf(stderr, "The file `%s' is not "
+ fprintf(stderr, "The file '%s' is not "
"in the .xz format\n", filename);
return false;
case LZMA_OPTIONS_ERROR:
- fprintf(stderr, "The file `%s' has .xz headers that "
+ fprintf(stderr, "The file '%s' has .xz headers that "
"are not supported by this liblzma "
"version\n", filename);
return false;
case LZMA_DATA_ERROR:
- fprintf(stderr, "The file `%s' is corrupt\n",
+ fprintf(stderr, "The file '%s' is corrupt\n",
filename);
return false;
case LZMA_MEM_ERROR:
fprintf(stderr, "Memory allocation failed when "
- "decoding the file `%s'\n", filename);
+ "decoding the file '%s'\n", filename);
return false;
// LZMA_MEMLIMIT_ERROR shouldn't happen because we used
FILE *infile = fopen(argv[i], "rb");
if (infile == NULL) {
- fprintf(stderr, "Cannot open the file `%s': %s\n",
+ fprintf(stderr, "Cannot open the file '%s': %s\n",
argv[i], strerror(errno));
success = false;
}