Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
a0d82817
Commit
a0d82817
authored
24 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
1b87e24c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/FAQ_Solaris
+24
-55
24 additions, 55 deletions
doc/FAQ_Solaris
with
24 additions
and
55 deletions
doc/FAQ_Solaris
+
24
−
55
View file @
a0d82817
=======================================================
=======================================================
=====
Frequently Asked Questions (FAQ) for PostgreSQL V
6.5
Frequently Asked Questions (FAQ) for PostgreSQL V
7.1
Sun Solaris
S
pecific
Sun Solaris
s
pecific
TO BE READ IN CONJUNCTION WITH THE NORMAL FAQ
to be read in conjunction with the installation instructions
=======================================================
=======================================================
=====
last updated: $Date: 200
0/10/19 03:18:56
$
last updated: $Date: 200
1/03/13 20:42:11
$
current maintainer: Marc Liyanage (liyanage@access.ch)
current maintainer: Marc Liyanage (liyanage@access.ch)
original author: Marc Liyanage (liyanage@access.ch)
original author: Marc Liyanage (liyanage@access.ch)
...
@@ -11,36 +11,19 @@ original author: Marc Liyanage (liyanage@access.ch)
...
@@ -11,36 +11,19 @@ original author: Marc Liyanage (liyanage@access.ch)
Contents:
Contents:
1.
1) What tools do I need to build and install PostgreSQL on Solaris?
1) What tools do I need to build and install PostgreSQL on Solaris?
1.
2) Wh
at else do I have to do before building PostgreSQL?
2) Wh
y do I get problems when building with OpenSSL support?
Notes:
1) What tools do I need to build and install PostgreSQL on Solaris?
- The commands given here are for the bash shell. If you use
a different shell, you'll have to change the commands accordingly,
especially these regarding environment variables.
- These instructions are written for Solaris 2.6
----------------------------------------------------------------------
Section 1: Building and Installing PostgreSQL
----------------------------------------------------------------------
1.1) What tools do I need to build and install PostgreSQL on Solaris?
You will need
You will need
- GNU flex 2.5.4 or better (the lex included in Solaris 2.6 won't work)
- GNU zip (for installing the documentation)
- GNU bison (the yacc included in Solaris 2.6 won't work)
- GNU zip (gzip and especially gunzip for installing the docs)
- GNU make
- GNU make
- GNU readline library
- GNU readline library
(optional)
We also used
Both GCC and the Sun compiler suite work.
- GNU cc (gcc 2.8.1)
If you like Solaris packages, you can find these tools here:
If you like Solaris packages, you can find these tools here:
http://www.sunfreeware.com
http://www.sunfreeware.com
...
@@ -49,33 +32,19 @@ If you prefer sources, look here:
...
@@ -49,33 +32,19 @@ If you prefer sources, look here:
http://www.gnu.org/order/ftp.html
http://www.gnu.org/order/ftp.html
2) Why do I get problems when building with OpenSSL support?
1.2) What else do I have to do before building PostgreSQL?
When you build PostgreSQL with OpenSSL support you will probably get
compilation errors in the following files:
Shared libraries
----------------
The default installation procedure puts the shared libraries
into "/usr/local/pgsql/lib", but the dynamic loader won't
find them there at runtime unless you use some hack like
symlinking the libraries in /usr/lib or setting LD_LIBRARY_PATH
for every user that will use the DB system.
The first time you'll encounter this problem is usually when
running "initdb". It will fail with something like
ld.so.1: pg_id: fatal: libpq.so: open failed: No such file or directory
We recommend that you store the path of the directory containing
the libraries in the environment variable LD_RUN_PATH *before*
starting the build. This will cause the linker to store this
path in the binaries.
Do this:
# export LD_RUN_PATH=/usr/local/pgsql/lib
src/backend/libpq/crypt.c
src/backend/libpq/password.c
src/interfaces/libpq/fe-auth.c
src/interfaces/libpq/fe-connect.c
(or wherever you choose to put the libraries)
This is because of a namespace conflict between the standard
/usr/include/crypt.h header and the header files provided by OpenSSL.
We believe that this should be fixed by OpenSSL.
The
re is some good information about this here:
The
problem can be worked around by removing the inclusion of
http://www.visi.com/~barr/ldpath.html
<crypt.h> in these four files.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment