diff options
author | Brent Cook <bcook@openbsd.org> | 2014-12-04 22:37:22 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-06 09:13:56 -0600 |
commit | b3270494f043104b7d63d5b30f47464b5bf253db (patch) | |
tree | 92ce7ca11ef5f583bb5524e524e5febab08865e3 /libtls.pc.in | |
parent | fc5e43c32b886510660c17ebfb7d78b450ceb2a3 (diff) | |
download | portable-b3270494f043104b7d63d5b30f47464b5bf253db.tar.gz portable-b3270494f043104b7d63d5b30f47464b5bf253db.tar.bz2 portable-b3270494f043104b7d63d5b30f47464b5bf253db.zip |
add support for building libtls
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@
Diffstat (limited to 'libtls.pc.in')
-rw-r--r-- | libtls.pc.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libtls.pc.in b/libtls.pc.in new file mode 100644 index 0000000..19e6b32 --- /dev/null +++ b/libtls.pc.in | |||
@@ -0,0 +1,16 @@ | |||
1 | #libtls pkg-config source file | ||
2 | |||
3 | prefix=@prefix@ | ||
4 | exec_prefix=@exec_prefix@ | ||
5 | libdir=@libdir@ | ||
6 | includedir=@includedir@ | ||
7 | |||
8 | Name: LibreSSL-libtls | ||
9 | Description: Secure communications using the TLS socket protocol. | ||
10 | Version: @VERSION@ | ||
11 | Requires: | ||
12 | Requires.private: libcrypto libssl | ||
13 | Conflicts: | ||
14 | Libs: -L${libdir} -ltls | ||
15 | Libs.private: @LIBS@ -lcrypto -lssl | ||
16 | Cflags: -I${includedir} | ||