summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac25
2 files changed, 27 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 493eddd33..3035eca05 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120070304
2 - (djm) [configure.ac] add a --without-openssl-header-check option to
3 configure, as some platforms (OS X) ship OpenSSL headers whose version
4 does not match that of the shipping library. ok dtucker@
5
120070303 620070303
2 - (dtucker) [regress/agent-ptrace.sh] Make ttrace gdb error a little more 7 - (dtucker) [regress/agent-ptrace.sh] Make ttrace gdb error a little more
3 general to cover newer gdb versions on HP-UX. 8 general to cover newer gdb versions on HP-UX.
@@ -2794,4 +2799,4 @@
2794 OpenServer 6 and add osr5bigcrypt support so when someone migrates 2799 OpenServer 6 and add osr5bigcrypt support so when someone migrates
2795 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 2800 passwords between UnixWare and OpenServer they will still work. OK dtucker@
2796 2801
2797$Id: ChangeLog,v 1.4629 2007/03/02 22:42:23 dtucker Exp $ 2802$Id: ChangeLog,v 1.4630 2007/03/05 00:51:27 djm Exp $
diff --git a/configure.ac b/configure.ac
index b6a25c9e0..a2b236355 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.371 2007/03/02 06:50:04 dtucker Exp $ 1# $Id: configure.ac,v 1.372 2007/03/05 00:51:27 djm 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.371 $) 18AC_REVISION($Revision: 1.372 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -1857,6 +1857,14 @@ int main(void) {
1857 ] 1857 ]
1858) 1858)
1859 1859
1860AC_ARG_WITH(openssl-header-check,
1861 [ --without-openssl-header-check Disable OpenSSL version consistency check],
1862 [ if test "x$withval" = "xno" ; then
1863 openssl_check_nonfatal=1
1864 fi
1865 ]
1866)
1867
1860# Sanity check OpenSSL headers 1868# Sanity check OpenSSL headers
1861AC_MSG_CHECKING([whether OpenSSL's headers match the library]) 1869AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1862AC_RUN_IFELSE( 1870AC_RUN_IFELSE(
@@ -1870,9 +1878,18 @@ int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
1870 ], 1878 ],
1871 [ 1879 [
1872 AC_MSG_RESULT(no) 1880 AC_MSG_RESULT(no)
1873 AC_MSG_ERROR([Your OpenSSL headers do not match your library. 1881 if test "x$openssl_check_nonfatal" = "x"; then
1874Check config.log for details. 1882 AC_MSG_ERROR([Your OpenSSL headers do not match your
1883library. Check config.log for details.
1884If you are sure your installation is consistent, you can disable the check
1885by running "./configure --without-openssl-header-check".
1886Also see contrib/findssl.sh for help identifying header/library mismatches.
1887])
1888 else
1889 AC_MSG_WARN([Your OpenSSL headers do not match your
1890library. Check config.log for details.
1875Also see contrib/findssl.sh for help identifying header/library mismatches.]) 1891Also see contrib/findssl.sh for help identifying header/library mismatches.])
1892 fi
1876 ], 1893 ],
1877 [ 1894 [
1878 AC_MSG_WARN([cross compiling: not checking]) 1895 AC_MSG_WARN([cross compiling: not checking])