File tree Expand file tree Collapse file tree 12 files changed +39
-35
lines changed Expand file tree Collapse file tree 12 files changed +39
-35
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ SUBDIRS = \
2828 oid2name \
2929 pageinspect \
3030 passwordcheck \
31- pg_archivecleanup \
3231 pg_buffercache \
3332 pg_freespacemap \
3433 pg_prewarm \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ pages.
202202 part of the core <productname>PostgreSQL</productname> distribution.
203203 </para>
204204
205- &pgarchivecleanup;
206205 &pgstandby;
207206 &pgtestfsync;
208207 &pgtesttiming;
Original file line number Diff line number Diff line change 126126<!ENTITY pageinspect SYSTEM "pageinspect.sgml">
127127<!ENTITY passwordcheck SYSTEM "passwordcheck.sgml">
128128<!ENTITY pgbench SYSTEM "pgbench.sgml">
129- <!ENTITY pgarchivecleanup SYSTEM "pgarchivecleanup.sgml">
130129<!ENTITY pgbuffercache SYSTEM "pgbuffercache.sgml">
131130<!ENTITY pgcrypto SYSTEM "pgcrypto.sgml">
132131<!ENTITY pgfreespacemap SYSTEM "pgfreespacemap.sgml">
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ Complete list of usable sgml source files in this directory.
179179<!ENTITY dropuser SYSTEM "dropuser.sgml">
180180<!ENTITY ecpgRef SYSTEM "ecpg-ref.sgml">
181181<!ENTITY initdb SYSTEM "initdb.sgml">
182+ <!ENTITY pgarchivecleanup SYSTEM "pgarchivecleanup.sgml">
182183<!ENTITY pgBasebackup SYSTEM "pg_basebackup.sgml">
183184<!ENTITY pgConfig SYSTEM "pg_config-ref.sgml">
184185<!ENTITY pgControldata SYSTEM "pg_controldata.sgml">
Original file line number Diff line number Diff line change 1- <!-- doc/src/sgml/pgarchivecleanup.sgml -->
1+ <!-- doc/src/sgml/ref/ pgarchivecleanup.sgml -->
22
33<refentry id="pgarchivecleanup">
44 <indexterm zone="pgarchivecleanup">
@@ -193,14 +193,6 @@ archive_cleanup_command = 'pg_archivecleanup -d /mnt/standby/archive %r 2>>clean
193193 </itemizedlist>
194194 </refsect1>
195195
196- <refsect1>
197- <title>Author</title>
198-
199- <para>
200- Simon Riggs <email>simon@2ndquadrant.com</email>
201- </para>
202- </refsect1>
203-
204196 <refsect1>
205197 <title>See Also</title>
206198
Original file line number Diff line number Diff line change 257257 </partintro>
258258
259259 &initdb;
260+ &pgarchivecleanup;
260261 &pgControldata;
261262 &pgCtl;
262263 &pgResetxlog;
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ include $(top_builddir)/src/Makefile.global
1515
1616SUBDIRS = \
1717 initdb \
18+ pg_archivecleanup \
1819 pg_basebackup \
1920 pg_config \
2021 pg_controldata \
File renamed without changes.
Original file line number Diff line number Diff line change 1+ # src/bin/pg_archivecleanup/Makefile
2+
3+ PGFILEDESC = "pg_archivecleanup - cleans archive when used with streaming replication"
4+ PGAPPICON = win32
5+
6+ subdir = src/bin/pg_archivecleanup
7+ top_builddir = ../../..
8+ include $(top_builddir ) /src/Makefile.global
9+
10+ OBJS = pg_archivecleanup.o $(WIN32RES )
11+
12+ all : pg_archivecleanup
13+
14+ pg_archivecleanup : $(OBJS ) | submake-libpgport
15+ $(CC ) $(CFLAGS ) $^ $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
16+
17+ install : all installdirs
18+ $(INSTALL_PROGRAM ) pg_archivecleanup$(X ) ' $(DESTDIR)$(bindir)/pg_archivecleanup$(X)'
19+
20+ installdirs :
21+ $(MKDIR_P ) ' $(DESTDIR)$(bindir)'
22+
23+ uninstall :
24+ rm -f ' $(DESTDIR)$(bindir)/pg_archivecleanup$(X)'
25+
26+ clean distclean maintainer-clean :
27+ rm -f pg_archivecleanup$(X ) $(OBJS )
You can’t perform that action at this time.
0 commit comments