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
Heikki Linnakangas fe0a0b5993 Replace PostmasterRandom() with a stronger source, second attempt. 9 years ago
..
.gitignore Convert cvsignore to gitignore, and add .gitignore for build targets. 16 years ago
Makefile Replace PostmasterRandom() with a stronger source, second attempt. 9 years ago
README Refer to OS X as "macOS", except for the port name which is still "darwin". 9 years ago
chklocale.c Remove invitation to report a bug about unknown encoding 9 years ago
crypt.c Suppress dead, unportable src/port/crypt.c code. 11 years ago
dirent.c Update copyright for 2016 10 years ago
dirmod.c pgwin32_is_junction's argument should be "const char *" not "char *". 9 years ago
erand48.c Replace PostmasterRandom() with a stronger source, second attempt. 9 years ago
fls.c Update copyright for 2016 10 years ago
fseeko.c Update copyright for 2016 10 years ago
getaddrinfo.c Update copyright for 2016 10 years ago
getopt.c pgindent run for 9.4 12 years ago
getopt_long.c Add support for optional_argument to our own getopt_long() implementation. 11 years ago
getpeereid.c Update copyright for 2016 10 years ago
getrusage.c Remove "sco" and "unixware" ports. 9 years ago
gettimeofday.c pgindent run for 9.5 11 years ago
inet_aton.c pgindent run for 9.4 12 years ago
inet_net_ntop.c Pgindent run before 9.1 beta2. 15 years ago
isinf.c Update copyright for 2016 10 years ago
kill.c Update copyright for 2016 10 years ago
mkdtemp.c Update copyright for 2016 10 years ago
noblock.c Update copyright for 2016 10 years ago
open.c Update copyright for 2016 10 years ago
path.c Suppress GCC 6 warning about self-comparison 10 years ago
pg_crc32c_choose.c Update copyright for 2016 10 years ago
pg_crc32c_sb8.c Update copyright for 2016 10 years ago
pg_crc32c_sse42.c Update copyright for 2016 10 years ago
pg_strong_random.c Replace PostmasterRandom() with a stronger source, second attempt. 9 years ago
pgcheckdir.c Update copyright for 2016 10 years ago
pgmkdirp.c Fix various typos and grammar errors in comments. 11 years ago
pgsleep.c Include <sys/select.h> where needed 9 years ago
pgstrcasecmp.c Update copyright for 2016 10 years ago
pqsignal.c Update copyright for 2016 10 years ago
pthread-win32.h Remove cvs keywords from all files. 16 years ago
qsort.c Fix a low-probability crash in our qsort implementation. 11 years ago
qsort_arg.c Fix a low-probability crash in our qsort implementation. 11 years ago
quotes.c Update copyright for 2016 10 years ago
random.c Update copyright for 2016 10 years ago
rint.c Upgrade src/port/rint.c to be POSIX-compliant. 11 years ago
snprintf.c Revert error-throwing wrappers for the printf family of functions. 11 years ago
sprompt.c Simplify correct use of simple_prompt(). 9 years ago
srandom.c Update copyright for 2016 10 years ago
strerror.c Remove cvs keywords from all files. 16 years ago
strlcat.c pgindent run for 9.4 12 years ago
strlcpy.c Update copyright for 2016 10 years ago
system.c Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. 10 years ago
tar.c Allow pg_basebackup to stream transaction log in tar mode 9 years ago
thread.c Update copyright for 2016 10 years ago
unsetenv.c Update copyright for 2016 10 years ago
win32.ico Revert binary change in copyright year adjustment. 14 years ago
win32env.c Make pgwin32_putenv() probe every known CRT, regardless of compiler. 9 years ago
win32error.c Update copyright for 2016 10 years ago
win32security.c Re-add translation markers that were lost 9 years ago
win32setlocale.c Update copyright for 2016 10 years ago
win32ver.rc Stamp HEAD as 10devel. 10 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 snprintf.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.