From 02aa198c5ed57eeeb04c68a644b4e46d7aef6ef4 Mon Sep 17 00:00:00 2001 From: ru Date: Tue, 21 Mar 2006 11:00:54 +0000 Subject: [PATCH] Unbreak WITHOUT_LIBPHREAD/WITHOUT_LIBC_R option support, depending on platform. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03ef1ba..4dd5141 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,12 @@ SUBDIR= ${_ggatec} \ ${_ggated} \ ggatel -.if ${MK_LIBPTHREAD} != "no" +.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" +.if ${MK_LIBC_R} != "no" +_ggatec= ggatec +_ggated= ggated +.endif +.elif ${MK_LIBPTHREAD} != "no" _ggatec= ggatec _ggated= ggated .endif