From 45fd48cd1effc1f2e66a2a0ccd51698d52f663bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 24 Mar 2006 10:09:05 +0000 Subject: [PATCH] Fixed the build under Haiku, ie. corrected the previous macro. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16869 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/make/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/make/config.h b/src/bin/make/config.h index 4f59a5a19b..21398bbb3c 100644 --- a/src/bin/make/config.h +++ b/src/bin/make/config.h @@ -144,8 +144,8 @@ /* Define if defines the SA_RESTART constant. */ /* #undef HAVE_SA_RESTART */ -#if HOST_PLATFORM != r5 -#define HAVE_SA_RESTART 1 +#ifdef HAIKU_TARGET_PLATFORM_HAIKU +# define HAVE_SA_RESTART 1 #endif /* Define to 1 if you have the `setegid' function. */