You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/port
Andrew Dunstan 7f284debaf Disable MSVC warning caused by recent snprintf.c changes 7 years ago
..
.gitignore Build src/port files as a library with -fPIC, and use that in libpq. 8 years ago
Makefile Build src/common files as a library with -fPIC. 8 years ago
README Always use our own versions of *printf(). 8 years ago
chklocale.c
crypt.c
dirent.c
dirmod.c
dlopen.c Fix inconsistent argument naming. 8 years ago
erand48.c
fls.c
fseeko.c
getaddrinfo.c Clean up assorted misuses of snprintf()'s result value. 8 years ago
getopt.c
getopt_long.c
getpeereid.c
getrusage.c
gettimeofday.c
inet_aton.c
inet_net_ntop.c Fix file paths in comments 8 years ago
isinf.c
kill.c
mkdtemp.c
noblock.c
open.c Enforce translation mode for Windows frontends to text with open/fopen 8 years ago
path.c
pg_crc32c_armv8.c Preliminary work for pgindent run. 8 years ago
pg_crc32c_armv8_choose.c Further improve code for probing the availability of ARM CRC instructions. 8 years ago
pg_crc32c_sb8.c
pg_crc32c_sse42.c
pg_crc32c_sse42_choose.c Use ARMv8 CRC instructions where available. 8 years ago
pg_strong_random.c Guard against rare RAND_bytes() failures in pg_strong_random(). 8 years ago
pgcheckdir.c
pgmkdirp.c
pgsleep.c
pgstrcasecmp.c
pqsignal.c
pread.c Provide pg_pread() and pg_pwrite() for random I/O. 7 years ago
pthread-win32.h
pwrite.c Provide pg_pread() and pg_pwrite() for random I/O. 7 years ago
qsort.c
qsort_arg.c
quotes.c
random.c
rint.c Rethink how to get float.h in old Windows API for isnan/isinf 8 years ago
snprintf.c Disable MSVC warning caused by recent snprintf.c changes 7 years ago
sprompt.c Fix simple_prompt() to disable echo on Windows when stdin != terminal. 8 years ago
srandom.c
strerror.c Incorporate strerror_r() into src/port/snprintf.c, too. 8 years ago
strlcat.c
strlcpy.c
strnlen.c
system.c
tar.c
thread.c Incorporate strerror_r() into src/port/snprintf.c, too. 8 years ago
unsetenv.c
win32.ico
win32env.c
win32error.c
win32security.c
win32setlocale.c Apply unconstify() in more places 7 years ago
win32ver.rc Stamp HEAD as 12devel 8 years ago

README

src/port/README

libpgport
=========

libpgport must have special behavior. It supplies functions to both
libraries and applications. However, there are two complexities:

1) Libraries need to use object files that are compiled with exactly
the same flags as the library. libpgport might not use the same flags,
so it is necessary to recompile the object files for individual
libraries. This is done by removing -lpgport from the link line:

# Need to recompile any libpgport object files
LIBS := $(filter-out -lpgport, $(LIBS))

and adding infrastructure to recompile the object files:

OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
connect.o misc.o path.o exec.o \
$(filter strlcat.o, $(LIBOBJS))

The problem is that there is no testing of which object files need to be
added, but missing functions usually show up when linking user
applications.

2) For applications, we use -lpgport before -lpq, so the static files
from libpgport are linked first. This avoids having applications
dependent on symbols that are _used_ by libpq, but not intended to be
exported by libpq. libpq's libpgport usage changes over time, so such a
dependency is a problem. Windows, Linux, and macOS use an export list to
control the symbols exported by libpq.