head	1.6;
access;
symbols
	REL9_0_0:1.6
	REL9_1_ALPHA1:1.6
	REL9_0_RC1:1.6
	REL9_0_BETA4:1.6
	REL9_0_STABLE:1.6.0.2
	REL9_0_BETA3:1.6
	REL9_0_BETA2:1.6
	REL8_3_11:1.4
	REL8_4_4:1.4
	REL9_0_BETA1:1.5
	REL9_0_ALPHA5_BRANCH:1.5.0.10
	REL9_0_ALPHA5:1.5
	REL8_3_10:1.4
	REL8_4_3:1.4
	REL9_0_ALPHA4:1.5
	REL9_0_ALPHA4_BRANCH:1.5.0.8
	REL8_5_ALPHA3:1.5
	REL8_5_ALPHA3_BRANCH:1.5.0.6
	REL8_3_9:1.4
	REL8_4_2:1.4
	REL8_5_ALPHA2:1.5
	REL8_5_ALPHA2_BRANCH:1.5.0.4
	REL8_3_8:1.4
	REL8_4_1:1.4
	REL8_5_ALPHA1:1.5
	REL8_5_ALPHA1_BRANCH:1.5.0.2
	REL8_4_STABLE:1.4.0.4
	REL8_4_0:1.4
	REL8_4_RC2:1.4
	REL8_4_RC1:1.4
	REL8_4_BETA2:1.4
	REL8_4_BETA1:1.4
	REL8_3_7:1.4
	REL8_3_6:1.4
	REL8_3_5:1.4
	REL8_3_4:1.4
	REL8_3_3:1.4
	REL8_3_2:1.4
	REL8_3_1:1.4
	REL8_3_STABLE:1.4.0.2
	REL8_3_0:1.4
	REL8_3_RC2:1.4
	REL8_3_RC1:1.4
	REL8_3_BETA4:1.4
	REL8_3_BETA3:1.4
	REL8_3_BETA2:1.3
	REL8_3_BETA1:1.3;
locks; strict;
comment	@# @;


1.6
date	2010.05.12.11.33.07;	author momjian;	state Exp;
branches;
next	1.5;

1.5
date	2009.07.16.09.59.46;	author heikki;	state Exp;
branches;
next	1.4;

1.4
date	2007.11.10.23.59.51;	author momjian;	state Exp;
branches;
next	1.3;

1.3
date	2007.06.26.22.05.02;	author tgl;	state Exp;
branches;
next	1.2;

1.2
date	2007.02.09.17.04.00;	author petere;	state Exp;
branches;
next	1.1;

1.1
date	2007.02.08.15.16.19;	author momjian;	state Exp;
branches;
next	;


desc
@@


1.6
log
@Add PGFILEDESC description to Makefiles for all /contrib executables.

Add PGAPPICON to all executable makefiles.
@
text
@# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.5 2009/07/16 09:59:46 heikki Exp $

PGFILEDESC = "pg_standby - supports creation of a warm standby"
PGAPPICON=win32

PROGRAM = pg_standby
OBJS	= pg_standby.o

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/pg_standby
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
@


1.5
log
@pg_standby doesn't need to be linked with libpq. Fujii Masao.
@
text
@d1 4
a4 1
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.4 2007/11/10 23:59:51 momjian Exp $
@


1.4
log
@Remove references to READMEs from /contrib Makefiles.
@
text
@d1 1
a1 1
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.3 2007/06/26 22:05:02 tgl Exp $
a5 3
PG_CPPFLAGS = -I$(libpq_srcdir)
PG_LIBS = $(libpq_pgport)

@


1.3
log
@Fix PGXS conventions so that extensions can be built against Postgres
installations whose pg_config program does not appear first in the PATH.
Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho
and others.
@
text
@d1 1
a1 1
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.2 2007/02/09 17:04:00 petere Exp $
a8 2
DOCS = README.pg_standby

@


1.2
log
@Add $PostgreSQL$ marker to contrib makefiles.
@
text
@d1 1
a1 1
# $PostgreSQL$
d12 2
a13 1
PGXS := $(shell pg_config --pgxs)
@


1.1
log
@Add /contrib/pg_standby:

  pg_standby is a production-ready program that can be used to
  create a Warm Standby server. Other configuration is required
  as well, all of which is described in the main server manual.

Simon Riggs
@
text
@d1 1
@

