From: Peter Eisentraut Date: Thu, 11 Jan 2001 23:32:03 +0000 (+0000) Subject: #ifdef out entire file for newer Cygwin versions. X-Git-Tag: REL7_1~859 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cd971183c0d34ff4e6acd5d8636a094a5c524e9;p=postgresql #ifdef out entire file for newer Cygwin versions. --- diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index 06fbdccc82..03c07d1521 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -1,3 +1,6 @@ +#include +#if CYGWIN_VERSION_DLL_MAJOR < 1001 + /* dllinit.c -- Portable DLL initialization. Copyright (C) 1998 Free Software Foundation, Inc. Contributed by Mumit Khan (khan@xraylith.wisc.edu). @@ -102,3 +105,5 @@ DllMain( } return TRUE; } + +#endif /* CYGWIN_VERSION_DLL_MAJOR < 1001 */