32 lines
1.1 KiB
PkgConfig
32 lines
1.1 KiB
PkgConfig
## libcryptopp.pc.in - Autotools package configuration file for Crypto++.
|
|
## written and placed in public domain by Jeffrey Walton.
|
|
## based on Debian package configuration by László Böszörményi.
|
|
##
|
|
|
|
## libdir=@libdir@ is not working as expected for Fedora, Solaris,
|
|
## and other 64-bit OSes that use library directories like /lib64,
|
|
## /usr/lib64, /lib/amd64 and friends. Also see:
|
|
## * https://stackoverflow.com/q/47124066/608639
|
|
## * https://stackoverflow.com/q/46847939/608639 and
|
|
## * https://bugzilla.redhat.com/show_bug.cgi?id=1510073.
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
|
|
Name: @PACKAGE_NAME@
|
|
Description: free C++ class library of cryptographic schemes
|
|
Authors: originally written by Wei Dai
|
|
Maintainers: the Crypto++ community
|
|
URL: @PACKAGE_URL@
|
|
Version: @PACKAGE_VERSION@
|
|
Bug-Report: @PACKAGE_BUGREPORT@
|
|
Requires:
|
|
|
|
## These flags are mostly broken. We cannot record user choices,
|
|
## and then have user programs use the same flags later.
|
|
## https://lists.freedesktop.org/archives/pkg-config/2017-November/001087.html
|
|
Cflags: -I${includedir}
|
|
Libs: -L${libdir} -lcryptopp
|