mirror of
https://github.com/postgres/postgres.git
synced 2026-06-29 20:38:41 -04:00
#ifdef out entire file for newer Cygwin versions.
This commit is contained in:
parent
9b19224666
commit
7cd971183c
1 changed files with 5 additions and 0 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue