diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-27 17:39:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-09-27 17:39:35 +0000 |
commit | 4fc935a5d47d40aac5b1ecf51aa5beaab03e8f76 (patch) | |
tree | 9aef18fd9bff87d88ae58fb0d3eb93654cf9c83e /doc/src | |
parent | 2d8225eecc555552b89b66bc6d975760e4f1de4c (diff) | |
download | postgresql-4fc935a5d47d40aac5b1ecf51aa5beaab03e8f76.tar.gz postgresql-4fc935a5d47d40aac5b1ecf51aa5beaab03e8f76.zip |
Fix problems with PGXS builds against an installation tree that was
relocated after installation. We can't trust the installation paths
inserted into Makefile.global by configure, so instead we must get the
paths from pg_config. This requires extending pg_config to support all
the separately-configurable path names, but that was on TODO anyway.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_config-ref.sgml | 63 |
1 files changed, 60 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/pg_config-ref.sgml b/doc/src/sgml/ref/pg_config-ref.sgml index daf0496290c..4eef80a3ce0 100644 --- a/doc/src/sgml/ref/pg_config-ref.sgml +++ b/doc/src/sgml/ref/pg_config-ref.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/pg_config-ref.sgml,v 1.21 2005/08/09 22:47:03 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/pg_config-ref.sgml,v 1.22 2005/09/27 17:39:32 tgl Exp $ --> <refentry id="app-pgconfig"> <refmeta> @@ -54,6 +54,17 @@ </varlistentry> <varlistentry> + <term><option>--docdir</option></> + <listitem> + <para> + Print the location of documentation files. (This will be an empty + string if <literal>--without-docdir</> was specified when + <productname>PostgreSQL</> was built.) + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--includedir</option></> <listitem> <para> @@ -63,11 +74,19 @@ </varlistentry> <varlistentry> + <term><option>--pkgincludedir</option></> + <listitem> + <para> + Print the location of other C header files. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--includedir-server</option></> <listitem> <para> - Print the location of C header files for server - programming. + Print the location of C header files for server programming. </para> </listitem> </varlistentry> @@ -94,6 +113,44 @@ </varlistentry> <varlistentry> + <term><option>--localedir</option></> + <listitem> + <para> + Print the location of locale support files. (This will be an empty + string if locale support was not configured when + <productname>PostgreSQL</> was built.) + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--mandir</option></> + <listitem> + <para> + Print the location of manual pages. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--sharedir</option></> + <listitem> + <para> + Print the location of architecture-independent support files. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--sysconfdir</option></> + <listitem> + <para> + Print the location of system-wide configuration files. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--pgxs</option></> <listitem> <para> |