
* Introduce a connection abstraction layer for all socket operations and integrate it across the code base. * Provide an optional TLS connections implementation based on OpenSSL. * Pull a newer version of hiredis with TLS support. * Tests, redis-cli updates for TLS support.
13 lines
306 B
PkgConfig
13 lines
306 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/lib
|
|
includedir=${prefix}/include
|
|
pkgincludedir=${includedir}/hiredis
|
|
|
|
Name: hiredis_ssl
|
|
Description: SSL Support for hiredis.
|
|
Version: @PROJECT_VERSION@
|
|
Requires: hiredis
|
|
Libs: -L${libdir} -lhiredis_ssl
|
|
Libs.private: -lssl -lcrypto
|