From 0d38433b54e23ee511a0db2fe59e10dfac714a16 Mon Sep 17 00:00:00 2001 From: dgaudet Date: Mon, 30 Jun 1997 21:42:28 +0000 Subject: [PATCH] PR#372: EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed 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 | 2 +- docs/manual/install.html.en | 2 +- docs/manual/misc/FAQ.html | 8 ++++---- docs/manual/mod/mod_proxy.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/manual/install.html b/docs/manual/install.html index 52e84b0c54a..7708168443b 100644 --- a/docs/manual/install.html +++ b/docs/manual/install.html @@ -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 Configuration file: - EXTRA_CFLAGS, LIBS, LFLAGS, INCLUDES. + EXTRA_CFLAGS, LIBS, LDFLAGS, INCLUDES.

Run the Configure script: diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index 52e84b0c54a..7708168443b 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -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 Configuration file: - EXTRA_CFLAGS, LIBS, LFLAGS, INCLUDES. + EXTRA_CFLAGS, LIBS, LDFLAGS, INCLUDES.

Run the Configure script: diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 2b18118ce18..da1dfe6b301 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -15,7 +15,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.76 $ ($Date: 1997/06/28 21:05:31 $) + $Revision: 1.77 $ ($Date: 1997/06/30 21:42:26 $)

The latest version of this FAQ is always available from the main @@ -1481,9 +1481,9 @@ 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 -lbind to the - EXTRA_LFLAGS line in your Configuration + EXTRA_LDFLAGS line in your Configuration file, then re-running Configure, should resolve the - problem. + problem. (Pre 1.3 Apache uses EXTRA_LFLAGS instead.)

Note: As of BIND 8.1.1, the bind libraries and files are installed under /usr/local/bind by default. So you @@ -1491,7 +1491,7 @@ resolvers you'll have to add the following to the respective lines:

   EXTRA_CFLAGS=-I/usr/local/bind/include
-  EXTRA_LFLAGS=-L/usr/local/bind/lib
+  EXTRA_LDFLAGS=-L/usr/local/bind/lib
   EXTRA_LIBS=-lbind
   

diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 30926d4da6a..958e62f0877 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -349,7 +349,7 @@ depending on the speed with which the hostname lookups occur.

Yes. Just build Apache with the rule SOCKS4=yes in your Configuration file, and follow the instructions there. SOCKS5 capability can be added in a similar way (there's no SOCKS5 -rule yet), so use the EXTRA_LFLAGS definition, or build Apache +rule yet), so use the EXTRA_LDFLAGS definition, or build Apache normally and run it with the runsocks wrapper provided with SOCKS5, if your OS supports dynamically linked libraries.

-- 2.47.2