diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | INSTALL | 17 |
2 files changed, 11 insertions, 7 deletions
@@ -2,6 +2,7 @@ | |||
2 | - Fixed configure not passing LDFLAGS to Solaris. Report from David G. | 2 | - Fixed configure not passing LDFLAGS to Solaris. Report from David G. |
3 | Hesprich <dghespri@sprintparanet.com> | 3 | Hesprich <dghespri@sprintparanet.com> |
4 | - Propogate LD through to Makefile | 4 | - Propogate LD through to Makefile |
5 | - Doc cleanups | ||
5 | 6 | ||
6 | 20000315 | 7 | 20000315 |
7 | - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list | 8 | - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list |
@@ -67,12 +67,12 @@ make install | |||
67 | This will install the binaries in /opt/{bin,lib,sbin}, but will place the | 67 | This will install the binaries in /opt/{bin,lib,sbin}, but will place the |
68 | configuration files in /etc/ssh. | 68 | configuration files in /etc/ssh. |
69 | 69 | ||
70 | If you are using PAM, you will need to manually install a PAM control | 70 | If you are using PAM, you will need to manually install a PAM |
71 | file as "/etc/pam.d/sshd" (or wherever your system prefers to keep | 71 | control file as "/etc/pam.d/sshd" (or wherever your system |
72 | them). A generic PAM configuration is included as "sshd.pam.generic", | 72 | prefers to keep them). A generic PAM configuration is included as |
73 | you may need to edit it before using it on your system. If you are | 73 | "contrib/sshd.pam.generic", you may need to edit it before using it on |
74 | using a recent version of Redhat Linux, the config file in | 74 | your system. If you are using a recent version of Redhat Linux, the |
75 | packages/redhat/sshd.pam should be more useful. | 75 | config file in contrib/redhat/sshd.pam should be more useful. |
76 | 76 | ||
77 | There are a few other options to the configure script: | 77 | There are a few other options to the configure script: |
78 | 78 | ||
@@ -148,11 +148,14 @@ connect to IPv6 addresses using the command line option '-6'. | |||
148 | --with-ssl-dir=DIR allows you to specify where your OpenSSL libraries | 148 | --with-ssl-dir=DIR allows you to specify where your OpenSSL libraries |
149 | are installed. | 149 | are installed. |
150 | 150 | ||
151 | --with-4in6 Check for IPv4 in IPv6 mapped addresses and convert them to | ||
152 | real (AF_INET) IPv4 addresses. Works around some quirks on Linux. | ||
153 | |||
151 | If you need to pass special options to the compiler or linker, you | 154 | If you need to pass special options to the compiler or linker, you |
152 | can specify these as enviornment variables before running ./configure. | 155 | can specify these as enviornment variables before running ./configure. |
153 | For example: | 156 | For example: |
154 | 157 | ||
155 | CFLAGS="-O -m486" LFLAGS="-s" ./configure | 158 | CFLAGS="-O -m486" LFLAGS="-s" LIBS="-lrubbish" LD="/usr/foo/ld" ./configure |
156 | 159 | ||
157 | 3. Configuration | 160 | 3. Configuration |
158 | ---------------- | 161 | ---------------- |