]> git.sur5r.net Git - openldap/commitdiff
Import latest doc changes from devel.
authorKurt Zeilenga <kurt@openldap.org>
Sun, 20 Dec 1998 19:43:24 +0000 (19:43 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sun, 20 Dec 1998 19:43:24 +0000 (19:43 +0000)
"predantic" typo in INSTALL and updates to hints

INSTALL
doc/install/hints/Solaris

diff --git a/INSTALL b/INSTALL
index 33dd5ed5c3982a0f3930ba68ce59c1898d1fb39e..1c5a5f1ec814c8b30592d820b5029b9ad485daa3 100644 (file)
--- 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)
 
index 7969df586df36bd6acddaebfb811d58f7c6dd1c5..4f22f6d27642f0c6f1bbda55b373719fc061ccee 100644 (file)
@@ -8,25 +8,25 @@ 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
+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.