diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 4258c7b9aca..02ba1b74d4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Mar 8 17:01:34 2005 Steve Huston <shuston@riverace.com> + + * configure.ac: Correct the variable checked for whether or not to + do the SSL/TLS check from ace_user_with_ssl to ace_user_enable_ssl. + Matches the change from --with-ssl to --enable-ssl. See also: + Sat Jan 29 00:39:37 2005 J.T. Conklin <jtc@acorntoolworks.com> + Tue Mar 8 15:26:29 2005 Steve Huston <shuston@riverace.com> * ace/Asynch_Acceptor.cpp (handle_accept): Don't restart an accept diff --git a/configure.ac b/configure.ac index d4c9a196b91..43c1085fc7c 100644 --- a/configure.ac +++ b/configure.ac @@ -403,7 +403,7 @@ dnl Check for asynchronous IO calls (perform check *after* thread check!) ACE_CHECK_ASYNCH_IO dnl Check for TLS/SSL support. -if test "$ace_user_with_ssl" = yes; then +if test "$ace_user_enable_ssl" = yes; then ACE_CHECK_TLS fi |