mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-11 17:10:13 +00:00
It's used by bpftool and the kernel build. Let's add a feature test so that perf can decide what to do based on the availability. Signed-off-by: Namhyung Kim <namhyung@kernel.org>
8 lines
103 B
C
8 lines
103 B
C
#include <openssl/ssl.h>
|
|
#include <openssl/opensslv.h>
|
|
|
|
int main(void)
|
|
{
|
|
return SSL_library_init();
|
|
}
|