Add hint files for Solaris and SunOS.

This commit is contained in:
Kurt Zeilenga 1998-11-25 23:47:14 +00:00
parent 4e9f9af375
commit e9c9e54703
2 changed files with 29 additions and 0 deletions

24
doc/install/hints/Solaris Normal file
View file

@ -0,0 +1,24 @@
Sun Solaris Hints
** This file covers Solaris 2 and later releases. **
** Solaris 1.X is covered in the SunOS hints file. **
Solaris 2.6, pthread_create() in -lc
The Standard C library (-lc) contains pthread functions which
are not compatible with <pthread.h> and are not useable. The
autoconf system does not detect this incompatibility nor
attempts to resolve it. Consequently, slapd/slurpd will not
work correctly using out-of-the-box settings. Slapd will
report an error such as:
listener pthread_create failed
To resolve this problem, the installer must specify the
proper Pthreads libraries:
LIBS="-lpthread -lposix4"
./configure
to use OR disable threads:
./configure --without-threads

5
doc/install/hints/SunOS Normal file
View file

@ -0,0 +1,5 @@
Sun SunOS Hints
** This file covers SunOS 4.X and eariler releases. **
** SunOS 5.X is covered in the Solaris hints file. **