mirror of
https://github.com/simtactics/niotso.git
synced 2025-07-27 01:34:52 -04:00
work in progress, cleaned up the directories and split them up into folder which make more sense, Still need to compile libvitaboy and all the tools
This commit is contained in:
parent
66ce473514
commit
948bd8474c
1786 changed files with 571812 additions and 15332 deletions
5
deps/libpq/include/port/aix.h
vendored
Normal file
5
deps/libpq/include/port/aix.h
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
/*
|
||||
* src/include/port/aix.h
|
||||
*/
|
||||
#define CLASS_CONFLICT
|
||||
#define DISABLE_XOPEN_NLS
|
3
deps/libpq/include/port/bsdi.h
vendored
Normal file
3
deps/libpq/include/port/bsdi.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*
|
||||
* src/include/port/bsdi.h
|
||||
*/
|
22
deps/libpq/include/port/cygwin.h
vendored
Normal file
22
deps/libpq/include/port/cygwin.h
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* src/include/port/cygwin.h */
|
||||
|
||||
#include <cygwin/version.h>
|
||||
|
||||
/*
|
||||
* Check for b20.1 and disable AF_UNIX family socket support.
|
||||
*/
|
||||
#if CYGWIN_VERSION_DLL_MAJOR < 1001
|
||||
#undef HAVE_UNIX_SOCKETS
|
||||
#endif
|
||||
|
||||
#if __GNUC__ && ! defined (__declspec)
|
||||
#error You need egcs 1.1 or newer for compiling!
|
||||
#endif
|
||||
|
||||
#ifdef BUILDING_DLL
|
||||
#define PGDLLIMPORT __declspec (dllexport)
|
||||
#else
|
||||
#define PGDLLIMPORT __declspec (dllimport)
|
||||
#endif
|
||||
|
||||
#define PGDLLEXPORT
|
8
deps/libpq/include/port/darwin.h
vendored
Normal file
8
deps/libpq/include/port/darwin.h
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
/* src/include/port/darwin.h */
|
||||
|
||||
#define __darwin__ 1
|
||||
|
||||
#if HAVE_DECL_F_FULLFSYNC /* not present before OS X 10.3 */
|
||||
#define HAVE_FSYNC_WRITETHROUGH
|
||||
|
||||
#endif
|
3
deps/libpq/include/port/dgux.h
vendored
Normal file
3
deps/libpq/include/port/dgux.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* src/include/port/dgux.h */
|
||||
|
||||
/* nothing needed */
|
1
deps/libpq/include/port/freebsd.h
vendored
Normal file
1
deps/libpq/include/port/freebsd.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/freebsd.h */
|
3
deps/libpq/include/port/hpux.h
vendored
Normal file
3
deps/libpq/include/port/hpux.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* src/include/port/hpux.h */
|
||||
|
||||
/* nothing needed */
|
7
deps/libpq/include/port/irix.h
vendored
Normal file
7
deps/libpq/include/port/irix.h
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
/* src/include/port/irix.h */
|
||||
|
||||
/*
|
||||
* IRIX 6.5.26f and 6.5.22f (at least) have a strtod() that accepts
|
||||
* "infinity", but leaves endptr pointing to "inity".
|
||||
*/
|
||||
#define HAVE_BUGGY_IRIX_STRTOD
|
22
deps/libpq/include/port/linux.h
vendored
Normal file
22
deps/libpq/include/port/linux.h
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* src/include/port/linux.h */
|
||||
|
||||
/*
|
||||
* As of July 2007, all known versions of the Linux kernel will sometimes
|
||||
* return EIDRM for a shmctl() operation when EINVAL is correct (it happens
|
||||
* when the low-order 15 bits of the supplied shm ID match the slot number
|
||||
* assigned to a newer shmem segment). We deal with this by assuming that
|
||||
* EIDRM means EINVAL in PGSharedMemoryIsInUse(). This is reasonably safe
|
||||
* since in fact Linux has no excuse for ever returning EIDRM; it doesn't
|
||||
* track removed segments in a way that would allow distinguishing them from
|
||||
* private ones. But someday that code might get upgraded, and we'd have
|
||||
* to have a kernel version test here.
|
||||
*/
|
||||
#define HAVE_LINUX_EIDRM_BUG
|
||||
|
||||
/*
|
||||
* Set the default wal_sync_method to fdatasync. With recent Linux versions,
|
||||
* xlogdefs.h's normal rules will prefer open_datasync, which (a) doesn't
|
||||
* perform better and (b) causes outright failures on ext4 data=journal
|
||||
* filesystems, because those don't support O_DIRECT.
|
||||
*/
|
||||
#define PLATFORM_DEFAULT_SYNC_METHOD SYNC_METHOD_FDATASYNC
|
1
deps/libpq/include/port/netbsd.h
vendored
Normal file
1
deps/libpq/include/port/netbsd.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/netbsd.h */
|
19
deps/libpq/include/port/nextstep.h
vendored
Normal file
19
deps/libpq/include/port/nextstep.h
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
/* src/include/port/nextstep.h */
|
||||
|
||||
#include "libc.h"
|
||||
#include <sys/ioctl.h>
|
||||
#if defined(__STRICT_ANSI__)
|
||||
#define isascii(c) ((unsigned)(c)<=0177)
|
||||
#endif
|
||||
extern char *strdup(const char *string);
|
||||
|
||||
#ifndef _POSIX_SOURCE
|
||||
typedef unsigned short mode_t;
|
||||
typedef int sigset_t;
|
||||
|
||||
#define SIG_BLOCK 00
|
||||
#define SIG_UNBLOCK 01
|
||||
#define SIG_SETMASK 02
|
||||
#endif
|
||||
|
||||
#define NO_WAITPID
|
1
deps/libpq/include/port/openbsd.h
vendored
Normal file
1
deps/libpq/include/port/openbsd.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/openbsd.h */
|
4
deps/libpq/include/port/osf.h
vendored
Normal file
4
deps/libpq/include/port/osf.h
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* src/include/port/osf.h */
|
||||
|
||||
#define NOFIXADE
|
||||
#define DISABLE_XOPEN_NLS
|
7
deps/libpq/include/port/sco.h
vendored
Normal file
7
deps/libpq/include/port/sco.h
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
* src/include/port/sco.h
|
||||
*
|
||||
* see src/backend/libpq/pqcomm.c */
|
||||
#define SCO_ACCEPT_BUG
|
||||
|
||||
#define USE_UNIVEL_CC
|
38
deps/libpq/include/port/solaris.h
vendored
Normal file
38
deps/libpq/include/port/solaris.h
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
/* src/include/port/solaris.h */
|
||||
|
||||
/*
|
||||
* Sort this out for all operating systems some time. The __xxx
|
||||
* symbols are defined on both GCC and Solaris CC, although GCC
|
||||
* doesn't document them. The __xxx__ symbols are only on GCC.
|
||||
*/
|
||||
#if defined(__i386) && !defined(__i386__)
|
||||
#define __i386__
|
||||
#endif
|
||||
|
||||
#if defined(__amd64) && !defined(__amd64__)
|
||||
#define __amd64__
|
||||
#endif
|
||||
|
||||
#if defined(__x86_64) && !defined(__x86_64__)
|
||||
#define __x86_64__
|
||||
#endif
|
||||
|
||||
#if defined(__sparc) && !defined(__sparc__)
|
||||
#define __sparc__
|
||||
#endif
|
||||
|
||||
#if defined(__i386__)
|
||||
#include <sys/isa_defs.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Many versions of Solaris have broken strtod() --- see bug #4751182.
|
||||
* This has been fixed in current versions of Solaris:
|
||||
*
|
||||
* http://sunsolve.sun.com/search/document.do?assetkey=1-21-108993-62-1&searchclause=108993-62
|
||||
* http://sunsolve.sun.com/search/document.do?assetkey=1-21-112874-34-1&searchclause=112874-34
|
||||
*
|
||||
* However, many people might not have patched versions, so
|
||||
* still use our own fix for the buggy version.
|
||||
*/
|
||||
#define HAVE_BUGGY_SOLARIS_STRTOD
|
7
deps/libpq/include/port/sunos4.h
vendored
Normal file
7
deps/libpq/include/port/sunos4.h
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
* src/include/port/sunos4.h
|
||||
*
|
||||
* sprintf() returns char *, not int, on SunOS 4.1.x */
|
||||
#define SPRINTF_CHAR
|
||||
|
||||
#include <unistd.h>
|
3
deps/libpq/include/port/svr4.h
vendored
Normal file
3
deps/libpq/include/port/svr4.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* src/include/port/svr4.h */
|
||||
|
||||
/* nothing needed */
|
57
deps/libpq/include/port/ultrix4.h
vendored
Normal file
57
deps/libpq/include/port/ultrix4.h
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* src/include/port/ultrix4.h
|
||||
*/
|
||||
#define NOFIXADE
|
||||
#define NEED_STRDUP
|
||||
|
||||
/*
|
||||
* Except for those system calls and library functions that are either
|
||||
* - covered by the C standard library and Posix.1
|
||||
* - or need a declaration to declare parameter or return types,
|
||||
* most Ultrix 4 calls are not declared in the system header files.
|
||||
* The rest of this header is used to remedy this for PostgreSQL to give a
|
||||
* warning-free compilation.
|
||||
*/
|
||||
|
||||
#include <sys/types.h> /* Declare various types, e.g. size_t, fd_set */
|
||||
|
||||
extern int fp_class_d(double);
|
||||
extern long random(void);
|
||||
|
||||
struct rusage;
|
||||
extern int getrusage(int, struct rusage *);
|
||||
|
||||
extern int ioctl(int, unsigned long,...);
|
||||
|
||||
extern int socket(int, int, int);
|
||||
struct sockaddr;
|
||||
extern int connect(int, const struct sockaddr *, int);
|
||||
typedef int ssize_t;
|
||||
extern ssize_t send(int, const void *, size_t, int);
|
||||
extern ssize_t recv(int, void *, size_t, int);
|
||||
extern int setsockopt(int, int, int, const void *, int);
|
||||
extern int bind(int, const struct sockaddr *, int);
|
||||
extern int listen(int, int);
|
||||
extern int accept(int, struct sockaddr *, int *);
|
||||
extern int getsockname(int, struct sockaddr *, int *);
|
||||
extern ssize_t recvfrom(int, void *, size_t, int, struct sockaddr *, int *);
|
||||
extern ssize_t sendto(int, const void *, size_t, int, const struct sockaddr *, int);
|
||||
struct timeval;
|
||||
extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
||||
|
||||
extern int gethostname(char *, int);
|
||||
|
||||
extern int getopt(int, char *const *, const char *);
|
||||
extern int putenv(const char *);
|
||||
|
||||
struct itimerval;
|
||||
extern int setitimer(int, const struct itimerval *, struct itimerval *);
|
||||
struct timezone;
|
||||
extern int gettimeofday(struct timeval *, struct timezone *);
|
||||
|
||||
extern int fsync(int);
|
||||
extern int ftruncate(int, off_t);
|
||||
|
||||
extern char *crypt(char *, char *);
|
||||
|
||||
/* End of ultrix4.h */
|
8
deps/libpq/include/port/univel.h
vendored
Normal file
8
deps/libpq/include/port/univel.h
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
/*
|
||||
* src/include/port/univel.h
|
||||
*
|
||||
***************************************
|
||||
* Define this if you are compiling with
|
||||
* the native UNIXWARE C compiler.
|
||||
***************************************/
|
||||
#define USE_UNIVEL_CC
|
11
deps/libpq/include/port/unixware.h
vendored
Normal file
11
deps/libpq/include/port/unixware.h
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* src/include/port/unixware.h
|
||||
*
|
||||
* see src/backend/libpq/pqcomm.c */
|
||||
#define SCO_ACCEPT_BUG
|
||||
|
||||
/***************************************
|
||||
* Define this if you are compiling with
|
||||
* the native UNIXWARE C compiler.
|
||||
***************************************/
|
||||
#define USE_UNIVEL_CC
|
427
deps/libpq/include/port/win32.h
vendored
Normal file
427
deps/libpq/include/port/win32.h
vendored
Normal file
|
@ -0,0 +1,427 @@
|
|||
/* src/include/port/win32.h */
|
||||
|
||||
#if defined(_MSC_VER) || defined(__BORLANDC__)
|
||||
#define WIN32_ONLY_COMPILER
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Make sure _WIN32_WINNT has the minumum required value.
|
||||
* Leave a higher value in place.
|
||||
*/
|
||||
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0501
|
||||
#undef _WIN32_WINNT
|
||||
#endif
|
||||
#ifndef _WIN32_WINNT
|
||||
#define _WIN32_WINNT 0x0501
|
||||
#endif
|
||||
/*
|
||||
* Always build with SSPI support. Keep it as a #define in case
|
||||
* we want a switch to disable it sometime in the future.
|
||||
*/
|
||||
#ifndef __BORLANDC__
|
||||
#define ENABLE_SSPI 1
|
||||
#endif
|
||||
|
||||
/* undefine and redefine after #include */
|
||||
#undef mkdir
|
||||
|
||||
#undef ERROR
|
||||
|
||||
/*
|
||||
* The Mingw64 headers choke if this is already defined - they
|
||||
* define it themselves.
|
||||
*/
|
||||
#if !defined(WIN64) || defined(WIN32_ONLY_COMPILER)
|
||||
#define _WINSOCKAPI_
|
||||
#endif
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <windows.h>
|
||||
#undef small
|
||||
#include <process.h>
|
||||
#include <signal.h>
|
||||
#include <errno.h>
|
||||
#include <direct.h>
|
||||
#ifndef __BORLANDC__
|
||||
#include <sys/utime.h> /* for non-unicode version */
|
||||
#endif
|
||||
#undef near
|
||||
|
||||
/* Must be here to avoid conflicting with prototype in windows.h */
|
||||
#define mkdir(a,b) mkdir(a)
|
||||
|
||||
#define ftruncate(a,b) chsize(a,b)
|
||||
|
||||
/* Windows doesn't have fsync() as such, use _commit() */
|
||||
#define fsync(fd) _commit(fd)
|
||||
|
||||
/*
|
||||
* For historical reasons, we allow setting wal_sync_method to
|
||||
* fsync_writethrough on Windows, even though it's really identical to fsync
|
||||
* (both code paths wind up at _commit()).
|
||||
*/
|
||||
#define HAVE_FSYNC_WRITETHROUGH
|
||||
#define FSYNC_WRITETHROUGH_IS_FSYNC
|
||||
|
||||
#define USES_WINSOCK
|
||||
|
||||
/* defines for dynamic linking on Win32 platform */
|
||||
#if defined(WIN32) || defined(__CYGWIN__)
|
||||
|
||||
#if __GNUC__ && ! defined (__declspec)
|
||||
#error You need egcs 1.1 or newer for compiling!
|
||||
#endif
|
||||
|
||||
#ifdef BUILDING_DLL
|
||||
#define PGDLLIMPORT __declspec (dllexport)
|
||||
#else /* not BUILDING_DLL */
|
||||
#define PGDLLIMPORT __declspec (dllimport)
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define PGDLLEXPORT __declspec (dllexport)
|
||||
#else
|
||||
#define PGDLLEXPORT
|
||||
#endif
|
||||
#else /* not CYGWIN, not MSVC, not MingW */
|
||||
#define PGDLLIMPORT
|
||||
#define PGDLLEXPORT
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
* IPC defines
|
||||
*/
|
||||
#undef HAVE_UNION_SEMUN
|
||||
#define HAVE_UNION_SEMUN 1
|
||||
|
||||
#define IPC_RMID 256
|
||||
#define IPC_CREAT 512
|
||||
#define IPC_EXCL 1024
|
||||
#define IPC_PRIVATE 234564
|
||||
#define IPC_NOWAIT 2048
|
||||
#define IPC_STAT 4096
|
||||
|
||||
#define EACCESS 2048
|
||||
#define EIDRM 4096
|
||||
|
||||
#define SETALL 8192
|
||||
#define GETNCNT 16384
|
||||
#define GETVAL 65536
|
||||
#define SETVAL 131072
|
||||
#define GETPID 262144
|
||||
|
||||
|
||||
/*
|
||||
* Signal stuff
|
||||
*
|
||||
* For WIN32, there is no wait() call so there are no wait() macros
|
||||
* to interpret the return value of system(). Instead, system()
|
||||
* return values < 0x100 are used for exit() termination, and higher
|
||||
* values are used to indicated non-exit() termination, which is
|
||||
* similar to a unix-style signal exit (think SIGSEGV ==
|
||||
* STATUS_ACCESS_VIOLATION). Return values are broken up into groups:
|
||||
*
|
||||
* http://msdn2.microsoft.com/en-gb/library/aa489609.aspx
|
||||
*
|
||||
* NT_SUCCESS 0 - 0x3FFFFFFF
|
||||
* NT_INFORMATION 0x40000000 - 0x7FFFFFFF
|
||||
* NT_WARNING 0x80000000 - 0xBFFFFFFF
|
||||
* NT_ERROR 0xC0000000 - 0xFFFFFFFF
|
||||
*
|
||||
* Effectively, we don't care on the severity of the return value from
|
||||
* system(), we just need to know if it was because of exit() or generated
|
||||
* by the system, and it seems values >= 0x100 are system-generated.
|
||||
* See this URL for a list of WIN32 STATUS_* values:
|
||||
*
|
||||
* Wine (URL used in our error messages) -
|
||||
* http://source.winehq.org/source/include/ntstatus.h
|
||||
* Descriptions - http://www.comp.nus.edu.sg/~wuyongzh/my_doc/ntstatus.txt
|
||||
* MS SDK - http://www.nologs.com/ntstatus.html
|
||||
*
|
||||
* It seems the exception lists are in both ntstatus.h and winnt.h, but
|
||||
* ntstatus.h has a more comprehensive list, and it only contains
|
||||
* exception values, rather than winnt, which contains lots of other
|
||||
* things:
|
||||
*
|
||||
* http://www.microsoft.com/msj/0197/exception/exception.aspx
|
||||
*
|
||||
* The ExceptionCode parameter is the number that the operating system
|
||||
* assigned to the exception. You can see a list of various exception codes
|
||||
* in WINNT.H by searching for #defines that start with "STATUS_". For
|
||||
* example, the code for the all-too-familiar STATUS_ACCESS_VIOLATION is
|
||||
* 0xC0000005. A more complete set of exception codes can be found in
|
||||
* NTSTATUS.H from the Windows NT DDK.
|
||||
*
|
||||
* Some day we might want to print descriptions for the most common
|
||||
* exceptions, rather than printing an include file name. We could use
|
||||
* RtlNtStatusToDosError() and pass to FormatMessage(), which can print
|
||||
* the text of error values, but MinGW does not support
|
||||
* RtlNtStatusToDosError().
|
||||
*/
|
||||
#define WIFEXITED(w) (((w) & 0XFFFFFF00) == 0)
|
||||
#define WIFSIGNALED(w) (!WIFEXITED(w))
|
||||
#define WEXITSTATUS(w) (w)
|
||||
#define WTERMSIG(w) (w)
|
||||
|
||||
#define sigmask(sig) ( 1 << ((sig)-1) )
|
||||
|
||||
/* Signal function return values */
|
||||
#undef SIG_DFL
|
||||
#undef SIG_ERR
|
||||
#undef SIG_IGN
|
||||
#define SIG_DFL ((pqsigfunc)0)
|
||||
#define SIG_ERR ((pqsigfunc)-1)
|
||||
#define SIG_IGN ((pqsigfunc)1)
|
||||
|
||||
/* Some extra signals */
|
||||
#define SIGHUP 1
|
||||
#define SIGQUIT 3
|
||||
#define SIGTRAP 5
|
||||
#define SIGABRT 22 /* Set to match W32 value -- not UNIX value */
|
||||
#define SIGKILL 9
|
||||
#define SIGPIPE 13
|
||||
#define SIGALRM 14
|
||||
#define SIGSTOP 17
|
||||
#define SIGTSTP 18
|
||||
#define SIGCONT 19
|
||||
#define SIGCHLD 20
|
||||
#define SIGTTIN 21
|
||||
#define SIGTTOU 22 /* Same as SIGABRT -- no problem, I hope */
|
||||
#define SIGWINCH 28
|
||||
#ifndef __BORLANDC__
|
||||
#define SIGUSR1 30
|
||||
#define SIGUSR2 31
|
||||
#endif
|
||||
|
||||
/*
|
||||
* New versions of mingw have gettimeofday() and also declare
|
||||
* struct timezone to support it.
|
||||
*/
|
||||
#ifndef HAVE_GETTIMEOFDAY
|
||||
struct timezone
|
||||
{
|
||||
int tz_minuteswest; /* Minutes west of GMT. */
|
||||
int tz_dsttime; /* Nonzero if DST is ever in effect. */
|
||||
};
|
||||
#endif
|
||||
|
||||
/* for setitimer in backend/port/win32/timer.c */
|
||||
#define ITIMER_REAL 0
|
||||
struct itimerval
|
||||
{
|
||||
struct timeval it_interval;
|
||||
struct timeval it_value;
|
||||
};
|
||||
|
||||
int setitimer(int which, const struct itimerval * value, struct itimerval * ovalue);
|
||||
|
||||
/*
|
||||
* WIN32 does not provide 64-bit off_t, but does provide the functions operating
|
||||
* with 64-bit offsets.
|
||||
*/
|
||||
#define pgoff_t __int64
|
||||
#ifdef WIN32_ONLY_COMPILER
|
||||
#define fseeko(stream, offset, origin) _fseeki64(stream, offset, origin)
|
||||
#define ftello(stream) _ftelli64(stream)
|
||||
#else
|
||||
#define fseeko(stream, offset, origin) fseeko64(stream, offset, origin)
|
||||
#define ftello(stream) ftello64(stream)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Supplement to <sys/types.h>.
|
||||
*
|
||||
* Perl already has typedefs for uid_t and gid_t.
|
||||
*/
|
||||
#ifndef PLPERL_HAVE_UID_GID
|
||||
typedef int uid_t;
|
||||
typedef int gid_t;
|
||||
#endif
|
||||
typedef long key_t;
|
||||
|
||||
#ifdef WIN32_ONLY_COMPILER
|
||||
typedef int pid_t;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Supplement to <sys/stat.h>.
|
||||
*/
|
||||
#define lstat(path, sb) stat((path), (sb))
|
||||
|
||||
/*
|
||||
* Supplement to <fcntl.h>.
|
||||
* This is the same value as _O_NOINHERIT in the MS header file. This is
|
||||
* to ensure that we don't collide with a future definition. It means
|
||||
* we cannot use _O_NOINHERIT ourselves.
|
||||
*/
|
||||
#define O_DSYNC 0x0080
|
||||
|
||||
/*
|
||||
* Supplement to <errno.h>.
|
||||
*/
|
||||
#undef EAGAIN
|
||||
#undef EINTR
|
||||
#define EINTR WSAEINTR
|
||||
#define EAGAIN WSAEWOULDBLOCK
|
||||
#define EMSGSIZE WSAEMSGSIZE
|
||||
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
||||
#define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
#define ECONNRESET WSAECONNRESET
|
||||
#define EINPROGRESS WSAEINPROGRESS
|
||||
#define ENOBUFS WSAENOBUFS
|
||||
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
|
||||
#define ECONNREFUSED WSAECONNREFUSED
|
||||
#define EBADFD WSAENOTSOCK
|
||||
#define EOPNOTSUPP WSAEOPNOTSUPP
|
||||
|
||||
/*
|
||||
* Extended locale functions with gratuitous underscore prefixes.
|
||||
* (These APIs are nevertheless fully documented by Microsoft.)
|
||||
*/
|
||||
#define locale_t _locale_t
|
||||
#define tolower_l _tolower_l
|
||||
#define toupper_l _toupper_l
|
||||
#define towlower_l _towlower_l
|
||||
#define towupper_l _towupper_l
|
||||
#define isdigit_l _isdigit_l
|
||||
#define iswdigit_l _iswdigit_l
|
||||
#define isalpha_l _isalpha_l
|
||||
#define iswalpha_l _iswalpha_l
|
||||
#define isalnum_l _isalnum_l
|
||||
#define iswalnum_l _iswalnum_l
|
||||
#define isupper_l _isupper_l
|
||||
#define iswupper_l _iswupper_l
|
||||
#define islower_l _islower_l
|
||||
#define iswlower_l _iswlower_l
|
||||
#define isgraph_l _isgraph_l
|
||||
#define iswgraph_l _iswgraph_l
|
||||
#define isprint_l _isprint_l
|
||||
#define iswprint_l _iswprint_l
|
||||
#define ispunct_l _ispunct_l
|
||||
#define iswpunct_l _iswpunct_l
|
||||
#define isspace_l _isspace_l
|
||||
#define iswspace_l _iswspace_l
|
||||
#define strcoll_l _strcoll_l
|
||||
#define wcscoll_l _wcscoll_l
|
||||
#define wcstombs_l _wcstombs_l
|
||||
#define mbstowcs_l _mbstowcs_l
|
||||
|
||||
|
||||
/* In backend/port/win32/signal.c */
|
||||
extern PGDLLIMPORT volatile int pg_signal_queue;
|
||||
extern PGDLLIMPORT int pg_signal_mask;
|
||||
extern HANDLE pgwin32_signal_event;
|
||||
extern HANDLE pgwin32_initial_signal_pipe;
|
||||
|
||||
#define UNBLOCKED_SIGNAL_QUEUE() (pg_signal_queue & ~pg_signal_mask)
|
||||
|
||||
|
||||
void pgwin32_signal_initialize(void);
|
||||
HANDLE pgwin32_create_signal_listener(pid_t pid);
|
||||
void pgwin32_dispatch_queued_signals(void);
|
||||
void pg_queue_signal(int signum);
|
||||
|
||||
/* In backend/port/win32/socket.c */
|
||||
#ifndef FRONTEND
|
||||
#define socket(af, type, protocol) pgwin32_socket(af, type, protocol)
|
||||
#define accept(s, addr, addrlen) pgwin32_accept(s, addr, addrlen)
|
||||
#define connect(s, name, namelen) pgwin32_connect(s, name, namelen)
|
||||
#define select(n, r, w, e, timeout) pgwin32_select(n, r, w, e, timeout)
|
||||
#define recv(s, buf, len, flags) pgwin32_recv(s, buf, len, flags)
|
||||
#define send(s, buf, len, flags) pgwin32_send(s, buf, len, flags)
|
||||
|
||||
SOCKET pgwin32_socket(int af, int type, int protocol);
|
||||
SOCKET pgwin32_accept(SOCKET s, struct sockaddr * addr, int *addrlen);
|
||||
int pgwin32_connect(SOCKET s, const struct sockaddr * name, int namelen);
|
||||
int pgwin32_select(int nfds, fd_set *readfs, fd_set *writefds, fd_set *exceptfds, const struct timeval * timeout);
|
||||
int pgwin32_recv(SOCKET s, char *buf, int len, int flags);
|
||||
int pgwin32_send(SOCKET s, const void *buf, int len, int flags);
|
||||
|
||||
const char *pgwin32_socket_strerror(int err);
|
||||
int pgwin32_waitforsinglesocket(SOCKET s, int what, int timeout);
|
||||
|
||||
extern int pgwin32_noblock;
|
||||
|
||||
/* in backend/port/win32/security.c */
|
||||
extern int pgwin32_is_admin(void);
|
||||
extern int pgwin32_is_service(void);
|
||||
#endif
|
||||
|
||||
/* in backend/port/win32_shmem.c */
|
||||
extern int pgwin32_ReserveSharedMemoryRegion(HANDLE);
|
||||
|
||||
/* in backend/port/win32/crashdump.c */
|
||||
extern void pgwin32_install_crashdump_handler(void);
|
||||
|
||||
/* in port/win32error.c */
|
||||
extern void _dosmaperr(unsigned long);
|
||||
|
||||
/* in port/win32env.c */
|
||||
extern int pgwin32_putenv(const char *);
|
||||
extern void pgwin32_unsetenv(const char *);
|
||||
|
||||
#define putenv(x) pgwin32_putenv(x)
|
||||
#define unsetenv(x) pgwin32_unsetenv(x)
|
||||
|
||||
/* Things that exist in MingW headers, but need to be added to MSVC & BCC */
|
||||
#ifdef WIN32_ONLY_COMPILER
|
||||
|
||||
#ifndef _WIN64
|
||||
typedef long ssize_t;
|
||||
#else
|
||||
typedef __int64 ssize_t;
|
||||
#endif
|
||||
|
||||
#ifndef __BORLANDC__
|
||||
typedef unsigned short mode_t;
|
||||
|
||||
#define S_IRUSR _S_IREAD
|
||||
#define S_IWUSR _S_IWRITE
|
||||
#define S_IXUSR _S_IEXEC
|
||||
#define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
|
||||
/* see also S_IRGRP etc below */
|
||||
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
||||
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
||||
#endif /* __BORLANDC__ */
|
||||
|
||||
#define F_OK 0
|
||||
#define W_OK 2
|
||||
#define R_OK 4
|
||||
|
||||
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) || (_fpclass(x) == _FPCLASS_NINF))
|
||||
#define isnan(x) _isnan(x)
|
||||
|
||||
/* Pulled from Makefile.port in mingw */
|
||||
#define DLSUFFIX ".dll"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
|
||||
/* for port/dirent.c */
|
||||
#ifndef INVALID_FILE_ATTRIBUTES
|
||||
#define INVALID_FILE_ATTRIBUTES ((DWORD) -1)
|
||||
#endif
|
||||
|
||||
/* for port/open.c */
|
||||
#ifndef O_RANDOM
|
||||
#define O_RANDOM 0x0010 /* File access is primarily random */
|
||||
#define O_SEQUENTIAL 0x0020 /* File access is primarily sequential */
|
||||
#define O_TEMPORARY 0x0040 /* Temporary file bit */
|
||||
#define O_SHORT_LIVED 0x1000 /* Temporary storage file, try not to flush */
|
||||
#define _O_SHORT_LIVED O_SHORT_LIVED
|
||||
#endif /* ifndef O_RANDOM */
|
||||
#endif /* __BORLANDC__ */
|
||||
#endif /* WIN32_ONLY_COMPILER */
|
||||
|
||||
/* These aren't provided by either MingW or MSVC */
|
||||
#ifndef __BORLANDC__
|
||||
#define S_IRGRP 0
|
||||
#define S_IWGRP 0
|
||||
#define S_IXGRP 0
|
||||
#define S_IRWXG 0
|
||||
#define S_IROTH 0
|
||||
#define S_IWOTH 0
|
||||
#define S_IXOTH 0
|
||||
#define S_IRWXO 0
|
||||
|
||||
#endif /* __BORLANDC__ */
|
3
deps/libpq/include/port/win32/arpa/inet.h
vendored
Normal file
3
deps/libpq/include/port/win32/arpa/inet.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* src/include/port/win32/arpa/inet.h */
|
||||
|
||||
#include <sys/socket.h>
|
1
deps/libpq/include/port/win32/dlfcn.h
vendored
Normal file
1
deps/libpq/include/port/win32/dlfcn.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32/dlfcn.h */
|
1
deps/libpq/include/port/win32/grp.h
vendored
Normal file
1
deps/libpq/include/port/win32/grp.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32/grp.h */
|
1
deps/libpq/include/port/win32/netdb.h
vendored
Normal file
1
deps/libpq/include/port/win32/netdb.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32/netdb.h */
|
3
deps/libpq/include/port/win32/netinet/in.h
vendored
Normal file
3
deps/libpq/include/port/win32/netinet/in.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* src/include/port/win32/netinet/in.h */
|
||||
|
||||
#include <sys/socket.h>
|
3
deps/libpq/include/port/win32/pwd.h
vendored
Normal file
3
deps/libpq/include/port/win32/pwd.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*
|
||||
* src/include/port/win32/pwd.h
|
||||
*/
|
33
deps/libpq/include/port/win32/sys/socket.h
vendored
Normal file
33
deps/libpq/include/port/win32/sys/socket.h
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* src/include/port/win32/sys/socket.h
|
||||
*/
|
||||
#ifndef WIN32_SYS_SOCKET_H
|
||||
#define WIN32_SYS_SOCKET_H
|
||||
|
||||
/*
|
||||
* Unfortunately, <wingdi.h> of VC++ also defines ERROR.
|
||||
* To avoid the conflict, we include <windows.h> here and undefine ERROR
|
||||
* immediately.
|
||||
*
|
||||
* Note: Don't include <wingdi.h> directly. It causes compile errors.
|
||||
*/
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <windows.h>
|
||||
|
||||
#undef ERROR
|
||||
#undef small
|
||||
|
||||
/* Restore old ERROR value */
|
||||
#ifdef PGERROR
|
||||
#define ERROR PGERROR
|
||||
#endif
|
||||
|
||||
/*
|
||||
* we can't use the windows gai_strerror{AW} functions because
|
||||
* they are defined inline in the MS header files. So we'll use our
|
||||
* own
|
||||
*/
|
||||
#undef gai_strerror
|
||||
|
||||
#endif /* WIN32_SYS_SOCKET_H */
|
3
deps/libpq/include/port/win32/sys/wait.h
vendored
Normal file
3
deps/libpq/include/port/win32/sys/wait.h
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*
|
||||
* src/include/port/win32/sys/wait.h
|
||||
*/
|
23
deps/libpq/include/port/win32_msvc/dirent.h
vendored
Normal file
23
deps/libpq/include/port/win32_msvc/dirent.h
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Headers for port/dirent.c, win32 native implementation of dirent functions
|
||||
*
|
||||
* src/include/port/win32_msvc/dirent.h
|
||||
*/
|
||||
|
||||
#ifndef _WIN32VC_DIRENT_H
|
||||
#define _WIN32VC_DIRENT_H
|
||||
struct dirent
|
||||
{
|
||||
long d_ino;
|
||||
unsigned short d_reclen;
|
||||
unsigned short d_namlen;
|
||||
char d_name[MAX_PATH];
|
||||
};
|
||||
|
||||
typedef struct DIR DIR;
|
||||
|
||||
DIR *opendir(const char *);
|
||||
struct dirent *readdir(DIR *);
|
||||
int closedir(DIR *);
|
||||
|
||||
#endif
|
1
deps/libpq/include/port/win32_msvc/sys/file.h
vendored
Normal file
1
deps/libpq/include/port/win32_msvc/sys/file.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32_msvc/sys/file.h */
|
1
deps/libpq/include/port/win32_msvc/sys/param.h
vendored
Normal file
1
deps/libpq/include/port/win32_msvc/sys/param.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32_msvc/sys/param.h */
|
1
deps/libpq/include/port/win32_msvc/sys/time.h
vendored
Normal file
1
deps/libpq/include/port/win32_msvc/sys/time.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32_msvc/sys/time.h */
|
1
deps/libpq/include/port/win32_msvc/unistd.h
vendored
Normal file
1
deps/libpq/include/port/win32_msvc/unistd.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32_msvc/unistd.h */
|
1
deps/libpq/include/port/win32_msvc/utime.h
vendored
Normal file
1
deps/libpq/include/port/win32_msvc/utime.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/* src/include/port/win32_msvc/utime.h */
|
Loading…
Add table
Add a link
Reference in a new issue