diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2008-02-17 16:36:43 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2008-02-17 16:36:43 +0000 |
commit | b120382353a938a342d3149031f40f42dc6e2720 (patch) | |
tree | 847d1d175c3878eedc47fe64e1990433dfbddea6 /doc/src | |
parent | 8b63aa1ffcae5aae9dd5a6d00a7b509308bef6f4 (diff) |
Upgrade to Autoconf 2.61:
- Change configure.in to use Autoconf 2.61 and update generated files.
- Update build system and documentation to support now directory variables
offered by Autoconf 2.61.
- Replace usages of PGAC_CHECK_ALIGNOF by AC_CHECK_ALIGNOF, now available
in Autoconf 2.61.
- Drop our patched version of AC_C_INLINE, as Autoconf now has the change.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/installation.sgml | 83 |
1 files changed, 57 insertions, 26 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index 72f7960bf87..2856da82e69 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.301 2008/02/16 21:51:04 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.302 2008/02/17 16:36:43 petere Exp $ --> <chapter id="installation"> <title><![%standalone-include[<productname>PostgreSQL</>]]> @@ -590,22 +590,10 @@ su - postgres </varlistentry> <varlistentry> - <term><option>--datadir=<replaceable>DIRECTORY</></option></term> - <listitem> - <para> - Sets the directory for read-only data files used by the - installed programs. The default is - <filename><replaceable>PREFIX</>/share</>. Note that this has - nothing to do with where your database files will be placed. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>--sysconfdir=<replaceable>DIRECTORY</></option></term> <listitem> <para> - The directory for various configuration files, + Sets the directory for various configuration files, <filename><replaceable>PREFIX</>/etc</> by default. </para> </listitem> @@ -615,7 +603,7 @@ su - postgres <term><option>--libdir=<replaceable>DIRECTORY</></option></term> <listitem> <para> - The location to install libraries and dynamically loadable + Sets the location to install libraries and dynamically loadable modules. The default is <filename><replaceable>EXEC-PREFIX</>/lib</>. </para> @@ -626,36 +614,79 @@ su - postgres <term><option>--includedir=<replaceable>DIRECTORY</></option></term> <listitem> <para> - The directory for installing C and C++ header files. The + Sets the directory for installing C and C++ header files. The default is <filename><replaceable>PREFIX</>/include</>. </para> </listitem> </varlistentry> <varlistentry> + <term><option>--datarootdir=<replaceable>DIRECTORY</></option></term> + <listitem> + <para> + Sets the root directory for various types of read-only data + files. This only sets the default for some of the following + options. The default is + <filename><replaceable>PREFIX</>/share</>. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--datadir=<replaceable>DIRECTORY</></option></term> + <listitem> + <para> + Sets the directory for read-only data files used by the + installed programs. The default is + <filename><replaceable>DATAROOTDIR</></>. Note that this has + nothing to do with where your database files will be placed. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--localedir=<replaceable>DIRECTORY</></option></term> + <listitem> + <para> + Sets the directory for installing locale data, in particular + message translation catalog files. The default is + <filename><replaceable>DATAROOTDIR</>/locale</>. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--mandir=<replaceable>DIRECTORY</></option></term> <listitem> <para> The man pages that come with <productname>PostgreSQL</> will be installed under this directory, in their respective <filename>man<replaceable>x</></> subdirectories. - The default is <filename><replaceable>PREFIX</>/man</>. + The default is <filename><replaceable>DATAROOTDIR</>/man</>. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--docdir=<replaceable>DIRECTORY</></option></term> + <listitem> + <para> + Sets the root directory for installing documentation files, + except <quote>man</> pages. This only sets the default for + the following options. The default value for this option is + <filename><replaceable>DATAROOTDIR</>/doc/postgresql</>. </para> </listitem> </varlistentry> <varlistentry> - <term><option>--with-docdir=<replaceable>DIRECTORY</></option></term> - <term><option>--without-docdir</option></term> + <term><option>--htmldir=<replaceable>DIRECTORY</></option></term> <listitem> <para> - Documentation files, except <quote>man</> pages, will be - installed into this directory. The default is - <filename><replaceable>PREFIX</>/doc</>. If the option - <option>--without-docdir</option> is specified, the - documentation will not be installed by <command>make - install</command>. This is intended for packaging scripts - that have special methods for installing documentation. + The HTML-formatted documentation for + <productname>PostgreSQL</productname> will be installed under + this directory. The default is + <filename><replaceable>DATAROOTDIR</></>. </para> </listitem> </varlistentry> |