From: dgaudet
Date: Tue, 22 Apr 1997 02:52:45 +0000 (+0000)
Subject: Marc's suggestion: doc the iovec problems under linux. Give two workarounds.
X-Git-Tag: APACHE_1_2b9~26
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71093b2d83a239b804f95034a844f4b55cfd702b;p=apache
Marc's suggestion: doc the iovec problems under linux. Give two workarounds.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77966 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html
index 62eb60f1ab..0682c27312 100644
--- a/docs/manual/misc/FAQ.html
+++ b/docs/manual/misc/FAQ.html
@@ -8,7 +8,7 @@
Apache Server Frequently Asked Questions
-$Revision: 1.34 $ ($Date: 1997/04/21 22:48:05 $)
+$Revision: 1.35 $ ($Date: 1997/04/22 02:52:45 $)
If you are reading a text-only version of this FAQ, you may find numbers
@@ -62,6 +62,8 @@ do not appear, and are not needed, for the hypertext version.
Where can I get Apache?
+ When compiling under Linux it complains
+ about redefinition of `struct iovec'.
Technical Questions
@@ -809,6 +811,20 @@ do not appear, and are not needed, for the hypertext version.
+
+ When compiling under Linux it complains about redefinition
+ of `struct iovec'.
+
+
+ This is a conflict between your C library includes and your kernel
+ includes. You need to make sure that the versions of both are matched
+ properly. There are two workarounds. One is to remove the definition
+ of struct iovec from your C library includes. Another is to add
+ -DNO_WRITEV
to the EXTRA_CFLAGS
line in
+ your Configuration
and reconfigure/rebuild.
+
+
+
Why does Apache send a cookie on every response?