summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--INSTALL2
-rw-r--r--UPGRADING6
-rw-r--r--configure.in17
4 files changed, 29 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c073da23..13dbdd01d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120000317
2 - Clarified --with-default-path option.
3 - Added -blibpath handling for AIX to work around stupid runtime linking.
4 Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
5 <jmknoble@pobox.com>
6
120000316 720000316
2 - Fixed configure not passing LDFLAGS to Solaris. Report from David G. 8 - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
3 Hesprich <dghespri@sprintparanet.com> 9 Hesprich <dghespri@sprintparanet.com>
diff --git a/INSTALL b/INSTALL
index 5a7c41890..576fca085 100644
--- a/INSTALL
+++ b/INSTALL
@@ -132,7 +132,7 @@ some platforms.
132$DISPLAY environment variable. Some broken systems need this. 132$DISPLAY environment variable. Some broken systems need this.
133 133
134--with-default-path=PATH allows you to specify a default $PATH for sessions 134--with-default-path=PATH allows you to specify a default $PATH for sessions
135started by sshd. 135started by sshd. This replaces the standard path entirely.
136 136
137--with-pid-dir=PATH specifies the directory in which the ssh.pid file is 137--with-pid-dir=PATH specifies the directory in which the ssh.pid file is
138created. 138created.
diff --git a/UPGRADING b/UPGRADING
index aacc9ab2b..df3a23e17 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -124,5 +124,9 @@ either internally or through RSAref.
124 124
125scp must be in the default PATH on both the client and the server. You may 125scp must be in the default PATH on both the client and the server. You may
126need to use the --with-default-path option to specify a custom path to 126need to use the --with-default-path option to specify a custom path to
127search on the server. 127search on the server. This option replaces the default path, so you need
128to specify all the current directories on your path as well as where you
129have installed scp. For example:
130
131./configure --with-default-path=/bin:/usr/bin:/usr/local/bin:/path/to/scp
128 132
diff --git a/configure.in b/configure.in
index 81265f1e8..0eeda65ef 100644
--- a/configure.in
+++ b/configure.in
@@ -29,6 +29,9 @@ case "$host" in
29 AFS_LIBS="-lld" 29 AFS_LIBS="-lld"
30 CFLAGS="$CFLAGS -I/usr/local/include" 30 CFLAGS="$CFLAGS -I/usr/local/include"
31 LDFLAGS="$LDFLAGS -L/usr/local/lib" 31 LDFLAGS="$LDFLAGS -L/usr/local/lib"
32 if test "$LD" != "gcc" -a -z "$blibpath"; then
33 blibpath="/usr/lib:/lib:/usr/local/lib"
34 fi
32 AC_DEFINE(BROKEN_GETADDRINFO) 35 AC_DEFINE(BROKEN_GETADDRINFO)
33 ;; 36 ;;
34*-*-hpux10*) 37*-*-hpux10*)
@@ -239,6 +242,9 @@ else
239 if test ! -z "$need_dash_r" ; then 242 if test ! -z "$need_dash_r" ; then
240 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir" 243 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
241 fi 244 fi
245 if test ! -z "$blibpath" ; then
246 blibpath="$blibpath:$ssldir:$ssldir/lib"
247 fi
242fi 248fi
243if test -z "$WANTS_RSAREF" ; then 249if test -z "$WANTS_RSAREF" ; then
244 LIBS="$saved_LIBS -lcrypto" 250 LIBS="$saved_LIBS -lcrypto"
@@ -646,6 +652,12 @@ AC_ARG_WITH(kerberos4,
646 if test "x$withval" != "$xyes" ; then 652 if test "x$withval" != "$xyes" ; then
647 CFLAGS="$CFLAGS -I${withval}/include" 653 CFLAGS="$CFLAGS -I${withval}/include"
648 LDFLAGS="$LDFLAGS -L${withval}/lib" 654 LDFLAGS="$LDFLAGS -L${withval}/lib"
655 if test ! -z "$need_dash_r" ; then
656 LDFLAGS="$LDFLAGS -R${withval}/lib"
657 fi
658 if test ! -z "$blibpath" ; then
659 blibpath="$blibpath:${withval}/lib"
660 fi
649 else 661 else
650 if test -d /usr/include/kerberosIV ; then 662 if test -d /usr/include/kerberosIV ; then
651 CFLAGS="$CFLAGS -I/usr/include/kerberosIV" 663 CFLAGS="$CFLAGS -I/usr/include/kerberosIV"
@@ -826,4 +838,9 @@ AC_ARG_WITH(pid-dir,
826AC_DEFINE_UNQUOTED(PIDDIR, "$piddir") 838AC_DEFINE_UNQUOTED(PIDDIR, "$piddir")
827AC_SUBST(piddir) 839AC_SUBST(piddir)
828 840
841if test ! -z "$blibpath" ; then
842 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
843 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
844fi
845
829AC_OUTPUT(Makefile) 846AC_OUTPUT(Makefile)