diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-07-02 17:03:38 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-07-02 17:03:38 +0000 |
commit | d7f51b2c49d24462cbfa3f1618a7b51e4c4ff00c (patch) | |
tree | 4d055905d1861798818b2fd0b3160ca8e03dafba /src/backend/storage/file/Makefile | |
parent | 5976be32d2d80e0e4f5717a8c890bbcdf6580da1 (diff) | |
download | postgresql-d7f51b2c49d24462cbfa3f1618a7b51e4c4ff00c.tar.gz postgresql-d7f51b2c49d24462cbfa3f1618a7b51e4c4ff00c.zip |
Move copydir.c from src/port to src/backend/storage/file
The previous commit to make copydir() interruptible prevented
postgres.exe from linking on MinGW and Cygwin, because on those
platforms libpgport_srv.a can't freely reference symbols defined
by the backend. Since that code is already backend-specific anyway,
just move the whole file into the backend rather than adding further
kludges to deal with the symbols needed by CHECK_FOR_INTERRUPTS().
This probably needs some further cleanup, but this commit just moves
the file as-is, which should hopefully be enough to turn the
buildfarm green again.
Diffstat (limited to 'src/backend/storage/file/Makefile')
-rw-r--r-- | src/backend/storage/file/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/file/Makefile b/src/backend/storage/file/Makefile index c891f704eb7..c0dae9cc435 100644 --- a/src/backend/storage/file/Makefile +++ b/src/backend/storage/file/Makefile @@ -4,7 +4,7 @@ # Makefile for storage/file # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/storage/file/Makefile,v 1.13 2008/02/19 10:30:08 petere Exp $ +# $PostgreSQL: pgsql/src/backend/storage/file/Makefile,v 1.13.2.1 2010/07/02 17:03:38 rhaas Exp $ # #------------------------------------------------------------------------- @@ -12,6 +12,6 @@ subdir = src/backend/storage/file top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global -OBJS = fd.o buffile.o +OBJS = fd.o buffile.o copydir.o include $(top_srcdir)/src/backend/common.mk |