aboutsummaryrefslogtreecommitdiff
path: root/libtls.pc.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Configure libtls and nc(1) to statically link to libcrypto/sslBrent Cook2020-10-041-2/+1
| | | | | | | | | | | | | | | An issue that Reyk Floeter noted while building a Debian package for LibreSSL is that installing libtls along with OpenSSL causes linker issues since it will often pick up the wrong libcrypto/libssl. This change makes libtls statically link the object files it needs rather than relying on the shared libraries, effectively making libtls self-contained and able to be packaged independently. This should make it possible for other projects that also use libtls to be able to package support without requiring the target OS to ship libcrypto / libssl from LibreSSL. https://salsa.debian.org/reyk-guest/libressl/-/commit/678278df55ce866f2f363998ca690442fa786c66
* pc: add platform-specific libs to Libs.privateMartin Herkt2016-05-311-1/+1
| | | | | | Fixes compilations including libressl static libraries in MinGW. Signed-off-by: Ricardo Constantino (:RiCON) <wiiaboo@gmail.com>
* update pc files to use the package version, not library ABI versionBrent Cook2015-08-191-1/+1
|
* Use the individual library versions in LibreSSL pc filesBrent Cook2014-12-141-1/+1
| | | | | | | | | | | | | | | | | Previously, they were all using the portable package version, rather than the individual library versions. openssl(1)'s pc file represents the LibreSSL-portable release however. $ pkg-config --modversion libtls 1:0:0 $ pkg-config --modversion openssl 2.1.2 $ pkg-config --modversion libssl 30:0:0 $ pkg-config --modversion libcrypto 30:3:0 ok beck@ deraadt@
* add support for building libtlsBrent Cook2014-12-061-0/+16
Use './configure --enable-libtls' to build the library and install the associated manpages. Note that the API and ABI of this library may change still, though feedback is welcome. ok deraadt@ jsing@ tedu@