You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postgres/doc/FAQ_Solaris

51 lines
1.5 KiB

25 years ago
============================================================
Frequently Asked Questions (FAQ) for PostgreSQL V7.1
Sun Solaris specific
to be read in conjunction with the installation instructions
============================================================
last updated: $Date: 2001/03/13 20:42:11 $
27 years ago
current maintainer: Marc Liyanage (liyanage@access.ch)
original author: Marc Liyanage (liyanage@access.ch)
Contents:
25 years ago
1) What tools do I need to build and install PostgreSQL on Solaris?
2) Why do I get problems when building with OpenSSL support?
25 years ago
1) What tools do I need to build and install PostgreSQL on Solaris?
27 years ago
You will need
25 years ago
- GNU zip (for installing the documentation)
27 years ago
- GNU make
25 years ago
- GNU readline library (optional)
27 years ago
25 years ago
Both GCC and the Sun compiler suite work.
27 years ago
If you like Solaris packages, you can find these tools here:
http://www.sunfreeware.com
If you prefer sources, look here:
http://www.gnu.org/order/ftp.html
25 years ago
2) Why do I get problems when building with OpenSSL support?
27 years ago
25 years ago
When you build PostgreSQL with OpenSSL support you will probably get
compilation errors in the following files:
27 years ago
25 years ago
src/backend/libpq/crypt.c
src/backend/libpq/password.c
src/interfaces/libpq/fe-auth.c
src/interfaces/libpq/fe-connect.c
27 years ago
25 years ago
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.
27 years ago
25 years ago
The problem can be worked around by removing the inclusion of
<crypt.h> in these four files.