mirror of
https://git.tukaani.org/xz.git
synced 2025-03-14 04:20:50 +00:00
It properly adds -DLZMA_API_STATIC when compiling code that will be linked against static liblzma. Having it there on systems other than Windows does no harm. See: https://www.msys2.org/docs/pkgconfig/ (cherry picked from commit 4083c8e9501a48934a5fb563d2c3ce2ae143cd27)
21 lines
444 B
PkgConfig
21 lines
444 B
PkgConfig
#
|
|
# Author: Lasse Collin
|
|
#
|
|
# This file has been put into the public domain.
|
|
# You can do whatever you want with this file.
|
|
#
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
|
|
Name: liblzma
|
|
Description: General purpose data compression library
|
|
URL: @PACKAGE_URL@
|
|
Version: @PACKAGE_VERSION@
|
|
Cflags: -I${includedir}
|
|
Cflags.private: -DLZMA_API_STATIC
|
|
Libs: -L${libdir} -llzma
|
|
Libs.private: @PTHREAD_CFLAGS@ @LIBS@
|