diff options
| author | Xin LI <delphij@FreeBSD.org> | 2019-11-10 17:00:23 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2019-11-10 17:00:23 +0000 |
| commit | 48c779cdecb5f803e5fe5d761987e976ca9609db (patch) | |
| tree | 9d12625166ea19fa38cc92d556f2dfbd527ca97d /lib/libmagic | |
| parent | e5d9d0794881cb6cef879304c35b6d00b499b444 (diff) | |
| parent | 4ef4bf0189e5e736a37f9ead9beaaa8e1cd1f9fb (diff) | |
Notes
Diffstat (limited to 'lib/libmagic')
| -rw-r--r-- | lib/libmagic/Makefile | 2 | ||||
| -rw-r--r-- | lib/libmagic/config.h | 36 |
2 files changed, 13 insertions, 25 deletions
diff --git a/lib/libmagic/Makefile b/lib/libmagic/Makefile index a3036d7f3f58..b9a0e8676768 100644 --- a/lib/libmagic/Makefile +++ b/lib/libmagic/Makefile @@ -14,7 +14,7 @@ LIBADD= z 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 \ + compress.c der.c encoding.c fsmagic.c funcs.c is_json.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 91b7088129c6..ce5810043428 100644 --- a/lib/libmagic/config.h +++ b/lib/libmagic/config.h @@ -90,15 +90,12 @@ /* Define to 1 if you have the `gnurx' library (-lgnurx). */ /* #undef HAVE_LIBGNURX */ +/* Define to 1 if you have the `seccomp' library (-lseccomp). */ +/* #undef HAVE_LIBSECCOMP */ + /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 -/* Define to 1 if you have the <limits.h> header file. */ -#define HAVE_LIMITS_H 1 - -/* Define to 1 if you have the <locale.h> header file. */ -#define HAVE_LOCALE_H 1 - /* Define to 1 if you have the `localtime_r' function. */ #define HAVE_LOCALTIME_R 1 @@ -108,6 +105,9 @@ /* Define to 1 if <wchar.h> declares mbstate_t. */ #define HAVE_MBSTATE_T 1 +/* Define to 1 if you have the `memmem' function. */ +#define HAVE_MEMMEM 1 + /* Define to 1 if you have the <memory.h> header file. */ #define HAVE_MEMORY_H 1 @@ -128,18 +128,9 @@ /* Define to 1 if you have the `pread' function. */ #define HAVE_PREAD 1 -/* Define to 1 if you have the `setlocale' function. */ -#define HAVE_SETLOCALE 1 - -/* Define to 1 if you have the <signal.h> header file. */ -#define HAVE_SIGNAL_H 1 - /* Have sig_t type */ #define HAVE_SIG_T 1 -/* Define to 1 if you have the <stddef.h> header file. */ -#define HAVE_STDDEF_H 1 - /* Define to 1 if you have the <stdint.h> header file. */ #define HAVE_STDINT_H 1 @@ -149,9 +140,6 @@ /* Define to 1 if you have the `strcasestr' function. */ #define HAVE_STRCASESTR 1 -/* Define to 1 if you have the `strerror' function. */ -#define HAVE_STRERROR 1 - /* Define to 1 if you have the <strings.h> header file. */ #define HAVE_STRINGS_H 1 @@ -170,9 +158,6 @@ /* Define to 1 if you have the `strtof' function. */ #define HAVE_STRTOF 1 -/* Define to 1 if you have the `strtoul' function. */ -#define HAVE_STRTOUL 1 - /* HAVE_STRUCT_OPTION */ #define HAVE_STRUCT_OPTION 1 @@ -194,6 +179,9 @@ /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H 1 +/* Define to 1 if you have the <sys/sysmacros.h> header file. */ +/* #undef HAVE_SYS_SYSMACROS_H */ + /* Define to 1 if you have the <sys/time.h> header file. */ #define HAVE_SYS_TIME_H 1 @@ -293,7 +281,7 @@ #define PACKAGE_NAME "file" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "file 5.32" +#define PACKAGE_STRING "file 5.37" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "file" @@ -302,7 +290,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "5.32" +#define PACKAGE_VERSION "5.37" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 @@ -333,7 +321,7 @@ /* Version number of package */ -#define VERSION "5.32" +#define VERSION "5.37" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ |
