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
Tom Lane 8c49454caa Be more careful about extracting encoding from locale strings on Windows. 6 years ago
..
.gitignore Build src/port files as a library with -fPIC, and use that in libpq. 7 years ago
Makefile Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
README Always use our own versions of *printf(). 7 years ago
chklocale.c Be more careful about extracting encoding from locale strings on Windows. 6 years ago
dirent.c Update copyrights for 2020 6 years ago
dirmod.c Update copyrights for 2020 6 years ago
dlopen.c Update copyrights for 2020 6 years ago
erand48.c Update copyrights for 2020 6 years ago
explicit_bzero.c Update copyrights for 2020 6 years ago
fls.c Update copyrights for 2020 6 years ago
getaddrinfo.c Cleanup more code related to ws2_32.dll loading in src/port/getaddrinfo.c 6 years ago
getopt.c Use our own getopt() on OpenBSD. 7 years ago
getopt_long.c Fix our getopt_long's behavior for a command line argument of just "-". 6 years ago
getpeereid.c Update copyrights for 2020 6 years ago
getrusage.c Update copyrights for 2020 6 years ago
gettimeofday.c Clean up newlines following left parentheses 6 years ago
inet_aton.c Correct include file name in inet_aton fallback. 8 years ago
inet_net_ntop.c Avoid conflicts with library versions of inet_net_ntop() and friends. 6 years ago
kill.c Update copyrights for 2020 6 years ago
link.c Move pg_upgrade's Windows link() implementation to AC_REPLACE_FUNCS 6 years ago
mkdtemp.c Update copyrights for 2020 6 years ago
noblock.c Update copyrights for 2020 6 years ago
open.c Update copyrights for 2020 6 years ago
path.c Update copyrights for 2020 6 years ago
pg_bitutils.c Update copyrights for 2020 6 years ago
pg_crc32c_armv8.c Update copyrights for 2020 6 years ago
pg_crc32c_armv8_choose.c Update copyrights for 2020 6 years ago
pg_crc32c_sb8.c Update copyrights for 2020 6 years ago
pg_crc32c_sse42.c Update copyrights for 2020 6 years ago
pg_crc32c_sse42_choose.c Update copyrights for 2020 6 years ago
pg_strong_random.c Update copyrights for 2020 6 years ago
pgcheckdir.c Update copyrights for 2020 6 years ago
pgmkdirp.c Fix various typos and grammar errors in comments. 11 years ago
pgsleep.c Update copyrights for 2020 6 years ago
pgstrcasecmp.c Update copyrights for 2020 6 years ago
pgstrsignal.c Update copyrights for 2020 6 years ago
pqsignal.c Update copyrights for 2020 6 years ago
pread.c Update copyrights for 2020 6 years ago
pthread-win32.h Remove cvs keywords from all files. 15 years ago
pwrite.c Update copyrights for 2020 6 years ago
qsort.c Phase 2 pgindent run for v12. 6 years ago
qsort_arg.c Phase 2 pgindent run for v12. 6 years ago
quotes.c Update copyrights for 2020 6 years ago
random.c Update copyrights for 2020 6 years ago
snprintf.c Update copyrights for 2020 6 years ago
sprompt.c Update copyrights for 2020 6 years ago
srandom.c Update copyrights for 2020 6 years ago
strerror.c Update copyrights for 2020 6 years ago
strlcat.c pgindent run for 9.4 12 years ago
strlcpy.c Update copyrights for 2020 6 years ago
strnlen.c Update copyrights for 2020 6 years ago
strtof.c Update copyrights for 2020 6 years ago
system.c Update copyrights for 2020 6 years ago
tar.c Make the order of the header file includes consistent in non-backend modules. 6 years ago
thread.c Update copyrights for 2020 6 years ago
unsetenv.c Update copyrights for 2020 6 years ago
win32.ico Revert binary change in copyright year adjustment. 14 years ago
win32env.c Update copyrights for 2020 6 years ago
win32error.c Update copyrights for 2020 6 years ago
win32security.c Update copyrights for 2020 6 years ago
win32setlocale.c Update copyrights for 2020 6 years ago
win32ver.rc Remove win32ver.rc from version_stamp.pl 6 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.