Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
350f422b
Commit
350f422b
authored
Jan 07, 1999
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include installation instructions for WIN32 client-side libraries.
From Magnus Hagander <mha@sollentuna.net>.
parent
a1164a25
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
145 additions
and
2 deletions
+145
-2
doc/src/sgml/admin.sgml
doc/src/sgml/admin.sgml
+23
-1
doc/src/sgml/install-win32.sgml
doc/src/sgml/install-win32.sgml
+115
-0
doc/src/sgml/postgres.sgml
doc/src/sgml/postgres.sgml
+7
-1
No files found.
doc/src/sgml/admin.sgml
View file @
350f422b
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.
8 1998/10/31 09:36:31
thomas Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.
9 1999/01/07 02:59:45
thomas Exp $
Postgres Administrator's Guide.
Postgres Administrator's Guide.
Derived from postgres.sgml.
Derived from postgres.sgml.
- thomas 1998-10-27
- thomas 1998-10-27
$Log: admin.sgml,v $
$Log: admin.sgml,v $
Revision 1.9 1999/01/07 02:59:45 thomas
Include installation instructions for WIN32 client-side libraries.
From Magnus Hagander <mha@sollentuna.net>.
Revision 1.8 1998/10/31 09:36:31 thomas
Revision 1.8 1998/10/31 09:36:31 thomas
Cleanup for v6.4 release.
Cleanup for v6.4 release.
Make new file current.sgml to hold release info for the current release.
Make new file current.sgml to hold release info for the current release.
...
@@ -31,6 +35,7 @@ Bigger updates to the installation instructions (install and config).
...
@@ -31,6 +35,7 @@ Bigger updates to the installation instructions (install and config).
<!entity current SYSTEM "current.sgml">
<!entity current SYSTEM "current.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity install SYSTEM "install.sgml">
<!entity install SYSTEM "install.sgml">
<!entity installw SYSTEM "install-win32.sgml">
<!entity options SYSTEM "pg_options.sgml">
<!entity options SYSTEM "pg_options.sgml">
<!entity ports SYSTEM "ports.sgml">
<!entity ports SYSTEM "ports.sgml">
<!entity recovery SYSTEM "recovery.sgml">
<!entity recovery SYSTEM "recovery.sgml">
...
@@ -116,6 +121,7 @@ It provides SQL92/SQL3 language support,
...
@@ -116,6 +121,7 @@ It provides SQL92/SQL3 language support,
&ports;
&ports;
&config;
&config;
&install;
&install;
&installw;
&runtime;
&runtime;
&options;
&options;
&start-ag;
&start-ag;
...
@@ -134,3 +140,19 @@ Don't bother with an index until we get some index entries.
...
@@ -134,3 +140,19 @@ Don't bother with an index until we get some index entries.
</Book>
</Book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"./reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
sgml-local-ecat-files:nil
End:
-->
doc/src/sgml/install-win32.sgml
0 → 100644
View file @
350f422b
<Chapter Id="install-win32">
<Title>Installation on Win32</Title>
<Abstract>
<Para>
Build and installation instructions for <ProductName>Postgres</ProductName>
v6.4 client libraries on Win32.
</Para>
</Abstract>
<Sect1>
<Title>Building the libraries</Title>
<Para>
The makefiles included in <ProductName>Postgres</ProductName> are written
for <ProductName>Microsoft Visual C++</ProductName>, and will probably
not work with other systems. It should be possible to compile the libaries
manually in other cases.
</Para>
<Para>
To build the libraries, change directory into the <filename>src</filename>
directory, and type the command
<programlisting>
nmake /f win32.mak
</programlisting>
This assumes that you have <ProductName>Visual C++</ProductName> in your
path.
</Para>
<Para>
The following files will be built:
<ItemizedList Mark="bullet" Spacing="compact">
<ListItem>
<Para>
<filename>interfaces\libpq\Release\libpq.dll</filename>
- The dynamically linkable frontend library
</Para>
</ListItem>
<ListItem>
<Para>
<filename>interfaces\libpq\Release\libpqdll.lib</filename>
- Import library to link your program to libpq.dll
</Para>
</ListItem>
<ListItem>
<Para>
<filename>interfaces\libpq\Release\libpq.lib</filename> - Static library version of the frontend library
</Para>
</ListItem>
<ListItem>
<Para>
<filename>bin\psql\Release\psql.exe</filename> - The <ProductName>Postgresql</ProductName> interactive SQL monitor
</Para>
</ListItem>
</ItemizedList>
</Para>
</Sect1>
<Sect1>
<Title>Installing the libraries</Title>
<Para>
The only part of the library to really be installed is the
<filename>libpq.dll</filename> library. This file should in most cases
be placed in the <filename>WINNT\SYSTEM32</filename> directory (or in
<filename>WINDOWS\SYSTEM</filename> on a Windows 95/98 system). If this
file is installed using a setup program, it should be installed with
version checking using the VERSIONINFO resource included in the file,
to ensure that a newer version of the library is not overwritten.
</Para>
<Para>
If you plan to do development using libpq on this machine, you will have
to add the <filename>src\include</filename> and
<filename>src\interfaces\libpq</filename> directories to the include
path in your compilers settings.
</Para>
</Sect1>
<Sect1>
<Title>Using the libraries</Title>
<Para>
To use the libraries, you must add the <filename>libpqdll.lib</filename>
file to your project (in Visual C++, just right-click on the project and
chose to add it).
</Para>
<Para>
Once this is done, it should be possible to use the library just as you
would on a Unix platform.
</Para>
</Sect1>
</Chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"./reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
sgml-local-ecat-files:nil
End:
-->
doc/src/sgml/postgres.sgml
View file @
350f422b
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.1
5 1998/12/18 16:23:34
thomas Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.1
6 1999/01/07 02:59:45
thomas Exp $
Postgres integrated documentation.
Postgres integrated documentation.
Other subset docs should be copied and shrunk from here.
Other subset docs should be copied and shrunk from here.
thomas 1998-02-23
thomas 1998-02-23
$Log: postgres.sgml,v $
$Log: postgres.sgml,v $
Revision 1.16 1999/01/07 02:59:45 thomas
Include installation instructions for WIN32 client-side libraries.
From Magnus Hagander <mha@sollentuna.net>.
Revision 1.15 1998/12/18 16:23:34 thomas
Revision 1.15 1998/12/18 16:23:34 thomas
Fix typos in rules.sgml.
Fix typos in rules.sgml.
Add Emacs configuration block to postgres.sgml.
Add Emacs configuration block to postgres.sgml.
...
@@ -78,6 +82,7 @@ Move SQL reference pages up into the User's Guide.
...
@@ -78,6 +82,7 @@ Move SQL reference pages up into the User's Guide.
<!entity config SYSTEM "config.sgml">
<!entity config SYSTEM "config.sgml">
<!entity current SYSTEM "current.sgml">
<!entity current SYSTEM "current.sgml">
<!entity install SYSTEM "install.sgml">
<!entity install SYSTEM "install.sgml">
<!entity installw SYSTEM "install-win32.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity options SYSTEM "pg_options.sgml">
<!entity options SYSTEM "pg_options.sgml">
<!entity ports SYSTEM "ports.sgml">
<!entity ports SYSTEM "ports.sgml">
...
@@ -240,6 +245,7 @@ Installation and maintenance information.
...
@@ -240,6 +245,7 @@ Installation and maintenance information.
&ports;
&ports;
&config;
&config;
&install;
&install;
&installw;
&runtime;
&runtime;
&options;
&options;
&start-ag;
&start-ag;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment