diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 2a9177170c7..59d59a5e6f0 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.265 2004/05/26 18:51:43 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.266 2004/06/10 22:26:17 momjian Exp $ --> <Chapter Id="runtime"> @@ -2617,8 +2617,9 @@ SET ENABLE_SEQSCAN TO OFF; </para> <para> - The value for <varname>dynamic_library_path</varname> has to be a colon-separated - list of absolute directory names. If a directory name starts + The value for <varname>dynamic_library_path</varname> has to be a + list of absolute directory names separated by colon or, in windows + environments with semi-colon. If a directory name starts with the special value <literal>$libdir</literal>, the compiled-in <productname>PostgreSQL</productname> package library directory is substituted. This where the modules @@ -2629,6 +2630,10 @@ SET ENABLE_SEQSCAN TO OFF; <programlisting> dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir' </programlisting> + or, in a windows environment: +<programlisting> +dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' +</programlisting> </para> <para> |