]> granicus.if.org Git - postgresql/commit
Move code shared between libpq and backend from backend/libpq/ to common/.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 2 Sep 2016 10:49:59 +0000 (13:49 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 2 Sep 2016 10:49:59 +0000 (13:49 +0300)
commitec136d19b21791c845b1deeff43df137add0639e
treeda3e71960dccc380627390bc211e31455c2f1223
parent9cca11c915e458323d0e746c68203f2c11da0302
Move code shared between libpq and backend from backend/libpq/ to common/.

When building libpq, ip.c and md5.c were symlinked or copied from
src/backend/libpq into src/interfaces/libpq, but now that we have a
directory specifically for routines that are shared between the server and
client binaries, src/common/, move them there.

Some routines in ip.c were only used in the backend. Keep those in
src/backend/libpq, but rename to ifaddr.c to avoid confusion with the file
that's now in common.

Fix the comment in src/common/Makefile to reflect how libpq actually links
those files.

There are two more files that libpq symlinks directly from src/backend:
encnames.c and wchar.c. I don't feel compelled to move those right now,
though.

Patch by Michael Paquier, with some changes by me.

Discussion: <69938195-9c76-8523-0af8-eb718ea5b36e@iki.fi>
25 files changed:
contrib/passwordcheck/passwordcheck.c
src/backend/commands/user.c
src/backend/libpq/Makefile
src/backend/libpq/auth.c
src/backend/libpq/crypt.c
src/backend/libpq/hba.c
src/backend/libpq/ifaddr.c [moved from src/backend/libpq/ip.c with 72% similarity]
src/backend/libpq/pqcomm.c
src/backend/postmaster/pgstat.c
src/backend/postmaster/postmaster.c
src/backend/utils/adt/network.c
src/backend/utils/adt/pgstatfuncs.c
src/backend/utils/adt/varlena.c
src/common/Makefile
src/common/ip.c [new file with mode: 0644]
src/common/md5.c [moved from src/backend/libpq/md5.c with 98% similarity]
src/include/common/ip.h [moved from src/include/libpq/ip.h with 65% similarity]
src/include/common/md5.h [moved from src/include/libpq/md5.h with 96% similarity]
src/include/libpq/ifaddr.h [new file with mode: 0644]
src/interfaces/libpq/Makefile
src/interfaces/libpq/fe-auth.c
src/interfaces/libpq/fe-connect.c
src/tools/ifaddrs/Makefile
src/tools/ifaddrs/test_ifaddrs.c
src/tools/msvc/Mkvcbuild.pm