]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] Bug #854: prepend pwd to relative --with-ssl-dir
authordtucker <dtucker>
Wed, 9 Feb 2005 11:12:30 +0000 (11:12 +0000)
committerdtucker <dtucker>
Wed, 9 Feb 2005 11:12:30 +0000 (11:12 +0000)
   paths.  ok djm@

ChangeLog
configure.ac

index e5eaee31eed53c84de97e3eb19f257c6c2676252..86b56d2b3b82d01f99b5349789e25118286d3e30 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,8 +21,8 @@
  - (dtucker) [auth-passwd.c openbsd-compat/port-aix.c] Don't call
    disable_forwarding() from compat library. Prevent linker errrors trying
    to resolve it for binaries other than sshd.  ok djm@
-
-   when 
+ - (dtucker) [configure.ac] Bug #854: prepend pwd to relative --with-ssl-dir
+   paths.  ok djm@
 
 20050208
  - (dtucker) [regress/test-exec.sh] Bug #912: Set _POSIX2_VERSION for the
index 136e6aec6df3623344bcf17fda883529efb974f8..63e439ba87fa56edec2a55f6d1f12c1d31d06667 100644 (file)
@@ -1226,6 +1226,10 @@ AC_ARG_WITH(ssl-dir,
        [  --with-ssl-dir=PATH     Specify path to OpenSSL installation ],
        [
                if test "x$withval" != "xno" ; then
+                       case "$withval" in
+                               # Relative paths
+                               ./*|../*)       withval="`pwd`/$withval"
+                       esac
                        if test -d "$withval/lib"; then
                                if test -n "${need_dash_r}"; then
                                        LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
This page took 0.08398 seconds and 5 git commands to generate.