From e77b5b7453c1e8ccd7ec0816890d98e2f392e465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Tue, 29 Sep 2015 11:33:01 +0200 Subject: cookies: Add support for Mozilla's Publix Suffix List Use libpsl to check the domain value of Set-Cookie headers (and cookie jar entries) for not being a Publix Suffix. The configure script checks for "libpsl" by default. Disable the check with --without-libpsl. Ref: https://publicsuffix.org/ Ref: https://github.com/publicsuffix/list Ref: https://github.com/rockdaboot/libpsl --- src/tool_help.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/tool_help.c') diff --git a/src/tool_help.c b/src/tool_help.c index 355fe7d7b..4f569cde6 100644 --- a/src/tool_help.c +++ b/src/tool_help.c @@ -316,6 +316,9 @@ void tool_version_info(void) } #ifdef USE_METALINK printf("Metalink "); +#endif +#ifdef USE_LIBPSL + printf("PSL "); #endif puts(""); /* newline */ } -- cgit v1.2.3