diff options
author | Thomas Munro | 2021-01-13 22:10:24 +0000 |
---|---|---|
committer | Thomas Munro | 2021-01-13 22:16:59 +0000 |
commit | 0d56acfbaa799553c0c6ea350fd6e68d81025994 (patch) | |
tree | bff95bba3a6ba07ae52d2ce559dde0755e82a3eb /src/port/Makefile | |
parent | 5a6f9bce8dabd371bdb4e3db5dda436f7f0a680f (diff) |
Move our p{read,write}v replacements into their own files.
macOS's ranlib issued a warning about an empty pread.o file with the
previous arrangement, on systems new enough to require no replacement
functions. Let's go back to using configure's AC_REPLACE_FUNCS system
to build and include each .o in the library only if it's needed, which
requires moving the *v() functions to their own files.
Also move the _with_retry() wrapper to a more permanent home.
Reported-by: Tom Lane <[email protected]>
Discussion: https://postgr.es/m/1283127.1610554395%40sss.pgh.pa.us
Diffstat (limited to 'src/port/Makefile')
-rw-r--r-- | src/port/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/port/Makefile b/src/port/Makefile index bc4923ce840..e41b005c4f1 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -53,8 +53,6 @@ OBJS = \ pgstrcasecmp.o \ pgstrsignal.o \ pqsignal.o \ - pread.o \ - pwrite.o \ qsort.o \ qsort_arg.o \ quotes.o \ |