From 28311d4355e38376dc7ebcf1d2d7957718f55359 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sat, 14 Feb 2015 18:51:44 -0600 Subject: conditionally build certhash into openssl(1) For now, look for openat and symlink. We may switch to just needing symlink later. --- apps/certhash_disabled.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 apps/certhash_disabled.c (limited to 'apps/certhash_disabled.c') diff --git a/apps/certhash_disabled.c b/apps/certhash_disabled.c new file mode 100644 index 0000000..8238ff7 --- /dev/null +++ b/apps/certhash_disabled.c @@ -0,0 +1,13 @@ +/* + * Public domain + * certhash dummy implementation for platforms without symlinks + */ + +#include "apps.h" + +int +certhash_main(int argc, char **argv) +{ + fprintf(stderr, "certhash is not enabled on this platform\n"); + return (1); +} -- cgit v1.2.3-55-g6feb