mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
#ifdef out entire file for newer Cygwin versions.
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
#include <cygwin/version.h>
|
||||
#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 */
|
||||
|
Reference in New Issue
Block a user