summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-04-23 11:12:06 +1000
committerDarren Tucker <dtucker@zip.com.au>2010-04-23 11:12:06 +1000
commit9f8703b5735f372e04d4ad550aed70508843e67f (patch)
tree0a5a7552f4c92e01efa23383e0ec9cb1efe03689
parente25a9bd740031a212a14f0ee82bfe0f4c5ac504c (diff)
- (dtucker) [configure.ac] Bug #1756: Check for the existence of a lib64 dir
in the openssl install directory (some newer openssl versions do this on at least some amd64 platforms).
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac10
2 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b345ecf2..6dbaa1647 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120100423
2 - (dtucker) [configure.ac] Bug #1756: Check for the existence of a lib64 dir
3 in the openssl install directory (some newer openssl versions do this on at
4 least some amd64 platforms).
5
120100418 620100418
2 - OpenBSD CVS Sync 7 - OpenBSD CVS Sync
3 - jmc@cvs.openbsd.org 2010/04/16 06:45:01 8 - jmc@cvs.openbsd.org 2010/04/16 06:45:01
diff --git a/configure.ac b/configure.ac
index 0a0e2ea15..c5da72edb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.449 2010/04/10 12:58:01 dtucker Exp $ 1# $Id: configure.ac,v 1.450 2010/04/23 01:12:06 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.449 $) 18AC_REVISION($Revision: 1.450 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -1906,6 +1906,12 @@ AC_ARG_WITH(ssl-dir,
1906 else 1906 else
1907 LDFLAGS="-L${withval}/lib ${LDFLAGS}" 1907 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1908 fi 1908 fi
1909 elif test -d "$withval/lib64"; then
1910 if test -n "${need_dash_r}"; then
1911 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
1912 else
1913 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
1914 fi
1909 else 1915 else
1910 if test -n "${need_dash_r}"; then 1916 if test -n "${need_dash_r}"; then
1911 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}" 1917 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"