]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR#372: EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed
authordgaudet <dgaudet@unknown>
Mon, 30 Jun 1997 21:42:28 +0000 (21:42 +0000)
committerdgaudet <dgaudet@unknown>
Mon, 30 Jun 1997 21:42:28 +0000 (21:42 +0000)
to LDFLAGS) to avoid complications with lex rules in make files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78476 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/install.html
docs/manual/install.html.en
docs/manual/misc/FAQ.html
docs/manual/mod/mod_proxy.html

index 52e84b0c54adb5233f07c499aacc4cef2b286d3c..7708168443be8d348d3186ac8199370c92d261a3 100644 (file)
@@ -72,7 +72,7 @@ directory of the Apache distribution. Change into this directory.
   an additional library required by an optional module) you might need
   to edit one or more of the following options in the
   <CODE>Configuration</CODE> file:
-    <CODE>EXTRA_CFLAGS, LIBS, LFLAGS, INCLUDES</CODE>.
+    <CODE>EXTRA_CFLAGS, LIBS, LDFLAGS, INCLUDES</CODE>.
   <P>
 
   Run the <CODE>Configure</CODE> script:
index 52e84b0c54adb5233f07c499aacc4cef2b286d3c..7708168443be8d348d3186ac8199370c92d261a3 100644 (file)
@@ -72,7 +72,7 @@ directory of the Apache distribution. Change into this directory.
   an additional library required by an optional module) you might need
   to edit one or more of the following options in the
   <CODE>Configuration</CODE> file:
-    <CODE>EXTRA_CFLAGS, LIBS, LFLAGS, INCLUDES</CODE>.
+    <CODE>EXTRA_CFLAGS, LIBS, LDFLAGS, INCLUDES</CODE>.
   <P>
 
   Run the <CODE>Configure</CODE> script:
index 2b18118ce1800294bf1e9d6febd479bc69bc1015..da1dfe6b301a68b18ec67d492e42b677e103d153 100644 (file)
@@ -15,7 +15,7 @@
   <!--#include virtual="header.html" -->
   <H1 ALIGN="CENTER">Apache Server Frequently Asked Questions</H1>
   <P>
-  $Revision: 1.76 $ ($Date: 1997/06/28 21:05:31 $)
+  $Revision: 1.77 $ ($Date: 1997/06/30 21:42:26 $)
   </P>
   <P>
   The latest version of this FAQ is always available from the main
   To resolve this, you can either make sure you use the include files
   and libraries that came with your system or make sure to use the
   new include files and libraries.  Adding <CODE>-lbind</CODE> to the
-  <CODE>EXTRA_LFLAGS</CODE> line in your <CODE>Configuration</CODE> 
+  <CODE>EXTRA_LDFLAGS</CODE> line in your <CODE>Configuration</CODE> 
   file, then re-running <CODE>Configure</CODE>, should resolve the
-  problem.
+  problem.  (Pre 1.3 Apache uses <CODE>EXTRA_LFLAGS</CODE> instead.)
   </P>
   <p><b>Note:</b> As of BIND 8.1.1, the bind libraries and files are
   installed under <code>/usr/local/bind</code> by default.  So you
   resolvers you'll have to add the following to the respective lines:
   <blockquote><pre>
   EXTRA_CFLAGS=-I/usr/local/bind/include
-  EXTRA_LFLAGS=-L/usr/local/bind/lib
+  EXTRA_LDFLAGS=-L/usr/local/bind/lib
   EXTRA_LIBS=-lbind
   </pre></blockquote>
   <HR>
index 30926d4da6a8f1af4e3f8eedf514fcd507cc942f..958e62f08773cd4f7ed10b8f08fad6eab72c85d0 100644 (file)
@@ -349,7 +349,7 @@ depending on the speed with which the hostname lookups occur.<p>
 Yes. Just build Apache with the rule <code>SOCKS4=yes</code> in your
 <i>Configuration</i> file, and follow the instructions there. SOCKS5 
 capability can be added in a similar way (there's no <code>SOCKS5</code>
-rule yet), so use the <code>EXTRA_LFLAGS</code> definition, or build Apache
+rule yet), so use the <code>EXTRA_LDFLAGS</code> definition, or build Apache
 normally and run it with the <i>runsocks</i> wrapper provided with SOCKS5,
 if your OS supports dynamically linked libraries.<p>