From df6940ae2bb0aaa1895b37db85e5ffd50a98578b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 22 Jul 2003 19:13:12 +0000 Subject: [PATCH] only enable netbsd thread support if ENABLE_PTHREAD_SUPPORT is defined (so it can be disabled) git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12492 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/heim_threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/heim_threads.h b/lib/krb5/heim_threads.h index 705099c32..90393e197 100644 --- a/lib/krb5/heim_threads.h +++ b/lib/krb5/heim_threads.h @@ -48,7 +48,7 @@ /* assume headers already included */ -#if defined(__NetBSD__) && __NetBSD_Version__ >= 106120000 +#if defined(__NetBSD__) && __NetBSD_Version__ >= 106120000 && defined(ENABLE_PTHREAD_SUPPORT) /* * NetBSD have a thread lib that we can use that part of libc that