diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-03-05 10:08:15 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-03-05 10:08:15 +0900 |
commit | 24d4e855d95e02a5324c2f3d88cfd5cd19830c2c (patch) | |
tree | 371d954e80394a8e72ef95d6ee7d45312c3f87a9 /src/config.h.in | |
parent | 0b86d50828d05a27de3ff840d6a06407310393c2 (diff) | |
download | wget-24d4e855d95e02a5324c2f3d88cfd5cd19830c2c.tar.gz wget-24d4e855d95e02a5324c2f3d88cfd5cd19830c2c.tar.bz2 wget-24d4e855d95e02a5324c2f3d88cfd5cd19830c2c.zip |
Imported Upstream version 1.17upstream/1.17
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/config.h.in b/src/config.h.in index 3953a4d..60f73be 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -680,6 +680,9 @@ /* Define to 1 if you have the `gnutls_priority_set_direct' function. */ #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT +/* Define if GPGME is available. */ +#undef HAVE_GPGME + /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV @@ -826,6 +829,9 @@ /* Define to 1 if you have the `memrchr' function. */ #undef HAVE_MEMRCHR +/* Define if using metalink. */ +#undef HAVE_METALINK + /* Define to 1 if you have the `mkostemp' function. */ #undef HAVE_MKOSTEMP @@ -866,6 +872,9 @@ /* Define to 1 if libcrypto is used for SHA1. */ #undef HAVE_OPENSSL_SHA1 +/* Define to 1 if libcrypto is used for SHA256. */ +#undef HAVE_OPENSSL_SHA256 + /* Define to 1 if you have the `pathconf' function. */ #undef HAVE_PATHCONF @@ -2354,12 +2363,13 @@ # define _GL_EXTERN_INLINE static _GL_UNUSED #endif -/* In GCC, suppress bogus "no previous prototype for 'FOO'" +/* In GCC 4.6 (inclusive) to 5.1 (exclusive), + suppress bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>. */ -#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) +#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__ # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else |