]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Update install docs from -devel.
authorKurt Zeilenga <kurt@openldap.org>
Sun, 29 Nov 1998 22:12:09 +0000 (22:12 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sun, 29 Nov 1998 22:12:09 +0000 (22:12 +0000)
doc/install/hints/Solaris [new file with mode: 0644]
doc/install/hints/SunOS [new file with mode: 0644]

diff --git a/doc/install/hints/Solaris b/doc/install/hints/Solaris
new file mode 100644 (file)
index 0000000..3bb53a4
--- /dev/null
@@ -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
+
diff --git a/doc/install/hints/SunOS b/doc/install/hints/SunOS
new file mode 100644 (file)
index 0000000..64dd097
--- /dev/null
@@ -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.  **
+