From 2cd4c2526775cff425f4e6b9af77c9646a9826d5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 2 Mar 2004 18:38:28 +0000 Subject: [PATCH] [ backpatch] Add missing checks for Borland C compiler. L J Bayuk --- src/port/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port/thread.c b/src/port/thread.c index 962181a20c..83ca75a0cd 100644 --- a/src/port/thread.c +++ b/src/port/thread.c @@ -16,7 +16,7 @@ #include #include -#if defined(WIN32) && defined(_MSC_VER) +#if defined(WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__)) #undef ERROR #else #include -- 2.39.5