[PATCH] postgresql.conf.sample->postgresql.conf.sample.in

From: i(dot)taranov(at)postgrespro(dot)ru
To: pgsql-hackers(at)postgresql(dot)org
Subject: [PATCH] postgresql.conf.sample->postgresql.conf.sample.in
Date: 2020-03-28 09:00:08
Message-ID: 20cfca1440bb49b6af7f46234a01502d@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

A patch for converting postgresql.conf.sample to
postgresql.conf.sample.in . This feature allows you to manage the
contents of postgresql.conf.sample at the configure phase.

Usage example:

./configure --enable-foo

configure.in:

foo_params=$(cat <<-END
foo_param1 = on
foo_param2 = 16
END
)
AC_SUBST(foo_params)

postgresql.conf.sample.in:

@foo_params@

postgresql.conf.sample:

foo_param1 = on
foo_param2 = 16

--

Attachment Content-Type Size
0001-postgresql.conf.sample-postgresql.conf.sample.in.patch text/x-diff 1.1 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message movead.li@highgo.ca 2020-03-28 09:09:37 Re: A bug when use get_bit() function for a long bytea string
Previous Message movead.li@highgo.ca 2020-03-28 08:59:01 Re: A bug when use get_bit() function for a long bytea string