diff options
| author | Xin LI <delphij@FreeBSD.org> | 2023-09-10 19:20:33 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2023-09-14 22:01:08 +0000 |
| commit | acdad1f1cb471aacbd7c372af9a79d6b3467ca93 (patch) | |
| tree | fd3ae7f3f954cb1a0b811367c3fd75e3e3d07421 /lib/libmagic | |
| parent | 361edbdc89bf031955c901ca5b317eeefbc0f633 (diff) | |
Diffstat (limited to 'lib/libmagic')
| -rw-r--r-- | lib/libmagic/Makefile | 1 | ||||
| -rw-r--r-- | lib/libmagic/config.h | 27 |
2 files changed, 25 insertions, 3 deletions
diff --git a/lib/libmagic/Makefile b/lib/libmagic/Makefile index 98fcc7168d79..5aff4c1a478d 100644 --- a/lib/libmagic/Makefile +++ b/lib/libmagic/Makefile @@ -16,6 +16,7 @@ MAN= libmagic.3 magic.5 SRCS= apprentice.c apptype.c ascmagic.c buffer.c cdf.c cdf_time.c \ compress.c der.c encoding.c fsmagic.c funcs.c is_json.c \ is_csv.c \ + is_simh.c \ is_tar.c magic.c print.c readcdf.c readelf.c seccomp.c softmagic.c INCS= magic.h diff --git a/lib/libmagic/config.h b/lib/libmagic/config.h index 220321c64af7..232d801a6512 100644 --- a/lib/libmagic/config.h +++ b/lib/libmagic/config.h @@ -90,6 +90,9 @@ /* Define to 1 if you have the `gnurx' library (-lgnurx). */ /* #undef HAVE_LIBGNURX */ +/* Define to 1 if you have the `lz' library (-llz). */ +/* #undef HAVE_LIBLZ */ + /* Define to 1 if you have the `lzma' library (-llzma). */ /* #undef HAVE_LIBLZMA */ @@ -99,9 +102,15 @@ /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 +/* Define to 1 if you have the `zstd' library (-lzstd). */ +/* #undef HAVE_LIBZSTD */ + /* Define to 1 if you have the `localtime_r' function. */ #define HAVE_LOCALTIME_R 1 +/* Define to 1 if you have the <lzlib.h> header file. */ +/* #undef HAVE_LZLIB_H */ + /* Define to 1 if you have the <lzma.h> header file. */ /* #undef HAVE_LZMA_H */ @@ -281,9 +290,18 @@ /* Define to 1 if you have the <zlib.h> header file. */ #define HAVE_ZLIB_H 1 +/* Define to 1 if you have the <zstd_errors.h> header file. */ +/* #undef HAVE_ZSTD_ERRORS_H */ + +/* Define to 1 if you have the <zstd.h> header file. */ +/* #undef HAVE_ZSTD_H */ + /* Define to the sub-directory where libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" +/* Enable lzlib compression support */ +/* #undef LZLIBSUPPORT */ + /* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>. */ /* #undef MAJOR_IN_MKDEV */ @@ -302,7 +320,7 @@ #define PACKAGE_NAME "file" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "file 5.43" +#define PACKAGE_STRING "file 5.45" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "file" @@ -311,7 +329,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "5.43" +#define PACKAGE_VERSION "5.45" /* Define to 1 if all of the C90 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for @@ -410,7 +428,7 @@ /* Version number of package */ -#define VERSION "5.43" +#define VERSION "5.45" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ @@ -430,6 +448,9 @@ /* Enable zlib compression support */ #define ZLIBSUPPORT 1 +/* Enable zstdlib compression support */ +/* #undef ZSTDLIBSUPPORT */ + /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ |
