From 5278dec375c9a2d991db4c533b60e09c6c80e6e3 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Mon, 7 Sep 2015 21:39:44 -0400 Subject: [PATCH 1/1] add support for apple os/x Reviewed-by: Richard Levitte --- apps/rehash.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/rehash.c b/apps/rehash.c index 04827f2cef..b235e1bf25 100644 --- a/apps/rehash.c +++ b/apps/rehash.c @@ -2,7 +2,6 @@ * C implementation based on the original Perl and shell versions * * Copyright (c) 2013-2014 Timo Teräs - * All rights reserved. */ /* ==================================================================== * Copyright (c) 2015 The OpenSSL Project. All rights reserved. @@ -60,7 +59,7 @@ #include "apps.h" -#ifdef unix +#if defined(unix) || defined(__APPLE__) # include # include # include @@ -480,4 +479,4 @@ int rehash_main(int argc, char **argv) return (1); } -#endif +#endif /* defined(unix) || defined(__APPLE__) */ -- 2.34.1