postgresql/src/port
Peter Eisentraut 2dedf4d9a8 Integrate recovery.conf into postgresql.conf
recovery.conf settings are now set in postgresql.conf (or other GUC
sources).  Currently, all the affected settings are PGC_POSTMASTER;
this could be refined in the future case by case.

Recovery is now initiated by a file recovery.signal.  Standby mode is
initiated by a file standby.signal.  The standby_mode setting is
gone.  If a recovery.conf file is found, an error is issued.

The trigger_file setting has been renamed to promote_trigger_file as
part of the move.

The documentation chapter "Recovery Configuration" has been integrated
into "Server Configuration".

pg_basebackup -R now appends settings to postgresql.auto.conf and
creates a standby.signal file.

Author: Fujii Masao <masao.fujii@gmail.com>
Author: Simon Riggs <simon@2ndquadrant.com>
Author: Abhijit Menon-Sen <ams@2ndquadrant.com>
Author: Sergei Kornilov <sk@zsrv.org>
Discussion: https://www.postgresql.org/message-id/flat/607741529606767@web3g.yandex.ru/
2018-11-25 16:33:40 +01:00
..
.gitignore Build src/port files as a library with -fPIC, and use that in libpq. 2018-09-27 11:23:43 -04:00
chklocale.c
crypt.c
dirent.c
dirmod.c
dlopen.c Fix inconsistent argument naming. 2018-09-06 11:14:22 -04:00
erand48.c
fls.c
fseeko.c
getaddrinfo.c Clean up assorted misuses of snprintf()'s result value. 2018-08-15 16:29:31 -04:00
getopt_long.c
getopt.c
getpeereid.c
getrusage.c
gettimeofday.c
inet_aton.c
inet_net_ntop.c Fix file paths in comments 2018-05-14 18:59:43 +02:00
isinf.c
kill.c
Makefile Build src/common files as a library with -fPIC. 2018-09-28 14:28:19 -04:00
mkdtemp.c
noblock.c
open.c Enforce translation mode for Windows frontends to text with open/fopen 2018-09-20 08:54:37 +09:00
path.c
pg_crc32c_armv8_choose.c Further improve code for probing the availability of ARM CRC instructions. 2018-05-03 11:32:57 -04:00
pg_crc32c_armv8.c Preliminary work for pgindent run. 2018-04-26 14:45:04 -04:00
pg_crc32c_sb8.c
pg_crc32c_sse42_choose.c
pg_crc32c_sse42.c
pg_strong_random.c Guard against rare RAND_bytes() failures in pg_strong_random(). 2018-07-20 08:55:44 +01:00
pgcheckdir.c
pgmkdirp.c
pgsleep.c
pgstrcasecmp.c
pqsignal.c
pread.c Provide pg_pread() and pg_pwrite() for random I/O. 2018-11-07 09:50:01 +13:00
pthread-win32.h
pwrite.c Provide pg_pread() and pg_pwrite() for random I/O. 2018-11-07 09:50:01 +13:00
qsort_arg.c
qsort.c
quotes.c Integrate recovery.conf into postgresql.conf 2018-11-25 16:33:40 +01:00
random.c
README Always use our own versions of *printf(). 2018-09-26 13:13:57 -04:00
rint.c Rethink how to get float.h in old Windows API for isnan/isinf 2018-07-11 09:11:48 -04:00
snprintf.c Disable MSVC warning caused by recent snprintf.c changes 2018-11-10 20:20:54 -05:00
sprompt.c Fix simple_prompt() to disable echo on Windows when stdin != terminal. 2018-05-23 19:04:34 -04:00
srandom.c
strerror.c Incorporate strerror_r() into src/port/snprintf.c, too. 2018-09-26 12:35:57 -04:00
strlcat.c
strlcpy.c
strnlen.c
system.c
tar.c
thread.c Incorporate strerror_r() into src/port/snprintf.c, too. 2018-09-26 12:35:57 -04:00
unsetenv.c
win32.ico
win32env.c
win32error.c
win32security.c
win32setlocale.c Apply unconstify() in more places 2018-10-25 01:02:46 +01:00
win32ver.rc Stamp HEAD as 12devel 2018-06-30 12:47:59 -04:00

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.