1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Thanks to Vince Vielhaber <vev@michvhf.com>

Here is an os2 psql client, with libpq.a library
This commit is contained in:
Marc G. Fournier
1998-10-31 04:10:53 +00:00
parent 585442154a
commit 4f4edb8307
7 changed files with 998 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#ifndef TCPIPV4
# define TCPIPV4
#endif
#ifndef MAXSOCKETS
#define MAXSOCKETS 2048
#endif
/*
* DEF_PGPORT is the TCP port number on which the Postmaster listens by
* default. This can be overriden by command options, environment variables,
* and the postconfig hook. (set by build script)
*/
#define DEF_PGPORT "5432"
#define HAVE_TERMIOS_H
#define HAVE_ENDIAN_H
#define SOCKET_SIZE_TYPE size_t
#define strcasecmp(s1, s2) stricmp(s1, s2)