File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ include $(top_builddir)/src/Makefile.global
2323
2424OBJS = dynloader.o pg_sema.o pg_shmem.o pg_latch.o $(TAS )
2525
26+ ifneq (,$(filter $(PORTNAME ) ,cygwin win32) )
27+ OBJS += pipe.o
28+ endif
29+
2630ifeq ($(PORTNAME ) , darwin)
2731SUBDIRS += darwin
2832endif
Original file line number Diff line number Diff line change 1010 * must be replaced with recv/send.
1111 *
1212 * IDENTIFICATION
13- * src/port/pipe.c
13+ * src/backend/ port/pipe.c
1414 *
1515 *-------------------------------------------------------------------------
1616 */
1717
18- #ifndef FRONTEND
1918#include "postgres.h"
20- #else
21- #include "postgres_fe.h"
22- #endif
2319
2420#ifdef WIN32
2521int
Original file line number Diff line number Diff line change @@ -34,10 +34,6 @@ OBJS = $(LIBOBJS) chklocale.o dirmod.o exec.o inet_net_ntop.o noblock.o \
3434 path.o pgcheckdir.o pgmkdirp.o pgsleep.o pgstrcasecmp.o \
3535 qsort.o qsort_arg.o sprompt.o thread.o
3636
37- ifneq (,$(filter $(PORTNAME ) ,cygwin win32) )
38- OBJS += pipe.o
39- endif
40-
4137# foo_srv.o and foo.o are both built from foo.c, but only foo.o has -DFRONTEND
4238OBJS_SRV = $(OBJS:%.o=%_srv.o )
4339
You can’t perform that action at this time.
0 commit comments