From: Kurt Zeilenga Date: Sun, 20 Dec 1998 19:43:24 +0000 (+0000) Subject: Import latest doc changes from devel. X-Git-Tag: OPENLDAP_REL_ENG_1_1_1~25 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;ds=inline;h=99abb49d13ac6f5327d4eee9f07c6160d21d9cc3;p=openldap Import latest doc changes from devel. "predantic" typo in INSTALL and updates to hints --- diff --git a/INSTALL b/INSTALL index 33dd5ed5c3..1c5a5f1ec8 100644 --- a/INSTALL +++ b/INSTALL @@ -167,7 +167,7 @@ Supported Environmental Variables specified compiler. For example, to require strict ANSI C using the GNU C Compiler, use: - [env] CC="gcc -ansi -predantic" ./configure + [env] CC="gcc -ansi -pedantic" ./configure (you can use CFLAGS to specify compiler flags) diff --git a/doc/install/hints/Solaris b/doc/install/hints/Solaris index 7969df586d..4f22f6d276 100644 --- a/doc/install/hints/Solaris +++ b/doc/install/hints/Solaris @@ -8,25 +8,25 @@ Solaris 2.6, pthread_create() in -lc The Standard C library (-lc) contains pthread functions which are not compatible with 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 +autoconf system will detect this incompatibility but does not +attempts to resolve it. configure will exit using +out-of-the-box settings with the error: + checking if pthread_create() works... no + configure: error: pthread.h and pthread_create are not compatible To resolve this problem, the installer must specify the proper Pthreads libraries: - LIBS="-lpthread -lposix4" - ./configure + LIBS="-lpthread -lposix4" + ./configure OR use Solaris (LWP) Threads - ./configure --with-threads=lwp + ./configure --with-threads=lwp OR disable threads: - ./configure --without-threads + ./configure --without-threads NDBM on Solaris Solaris NDBM and OpenLDAP appears to be incompatible. Use -GDBM or Berkeley DB2. +Berkeley DB2 or GDBM.