From: Nobuhiro Iwamatsu Date: Mon, 28 Apr 2025 09:03:33 +0000 (+0900) Subject: Add License variable to pkg-config file X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d224dc7457fb6a6267f801c59546b981d6552fb;p=thirdparty%2Fzstd.git Add License variable to pkg-config file The pkg-config file has License variable that allows you to set the license for the software. This sets 'BSD-3-Clause OR GPL-2.0-only' to License. Ref: https://github.com/pkgconf/pkgconf/blob/master/man/pc.5#L116 Signed-off-by: Nobuhiro Iwamatsu --- diff --git a/lib/libzstd.pc.in b/lib/libzstd.pc.in index d7b6c8582..2220a5797 100644 --- a/lib/libzstd.pc.in +++ b/lib/libzstd.pc.in @@ -14,3 +14,4 @@ Version: @VERSION@ Libs: -L${libdir} -lzstd @LIBS_MT@ Libs.private: @LIBS_PRIVATE@ Cflags: -I${includedir} @LIBS_MT@ +License: BSD-3-Clause OR GPL-2.0-only