diff options
author | Tom Lane | 2004-07-19 02:47:16 +0000 |
---|---|---|
committer | Tom Lane | 2004-07-19 02:47:16 +0000 |
commit | 66ec2db72840e4e400d879578744420c969ed7bf (patch) | |
tree | 44aa43c732dabe83405bc3a456f5f8c43845bf7c /src/backend/postmaster/Makefile | |
parent | d0c1bbdcc61a4ac7cf005451af507ea8d0c64f54 (diff) |
XLOG file archiving and point-in-time recovery. There are still some
loose ends and a glaring lack of documentation, but it basically works.
Simon Riggs with some editorialization by Tom Lane.
Diffstat (limited to 'src/backend/postmaster/Makefile')
-rw-r--r-- | src/backend/postmaster/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile index 489c6d92112..10d7cfcb8ef 100644 --- a/src/backend/postmaster/Makefile +++ b/src/backend/postmaster/Makefile @@ -4,7 +4,7 @@ # Makefile for src/backend/postmaster # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/postmaster/Makefile,v 1.15 2004/05/29 22:48:19 tgl Exp $ +# $PostgreSQL: pgsql/src/backend/postmaster/Makefile,v 1.16 2004/07/19 02:47:08 tgl Exp $ # #------------------------------------------------------------------------- @@ -12,7 +12,7 @@ subdir = src/backend/postmaster top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -OBJS = postmaster.o bgwriter.o pgstat.o +OBJS = postmaster.o bgwriter.o pgstat.o pgarch.o all: SUBSYS.o |