]> granicus.if.org Git - postgresql/blob - src/port/README
Fix incorrect error message reported for non-existent users
[postgresql] / src / port / README
1 src/port/README
2
3 libpgport
4 =========
5
6 libpgport must have special behavior.  It supplies functions to both
7 libraries and applications.  However, there are two complexities:
8
9 1)  Libraries need to use object files that are compiled with exactly
10 the same flags as the library.  libpgport might not use the same flags,
11 so it is necessary to recompile the object files for individual
12 libraries.  This is done by removing -lpgport from the link line:
13
14         # Need to recompile any libpgport object files
15         LIBS := $(filter-out -lpgport, $(LIBS))
16
17 and adding infrastructure to recompile the object files:
18
19         OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
20                 connect.o misc.o path.o exec.o \
21                 $(filter snprintf.o, $(LIBOBJS))
22
23 The problem is that there is no testing of which object files need to be
24 added, but missing functions usually show up when linking user
25 applications.
26
27 2) For applications, we use -lpgport before -lpq, so the static files
28 from libpgport are linked first.  This avoids having applications
29 dependent on symbols that are _used_ by libpq, but not intended to be
30 exported by libpq.  libpq's libpgport usage changes over time, so such a
31 dependency is a problem.  Win32, Linux, and Darwin use an export list to
32 control the symbols exported by libpq.