mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 07:22:34 +00:00
configure.at is now C99 able
This commit is contained in:
parent
75922a9189
commit
783d688463
2 changed files with 7 additions and 1 deletions
4
CHANGES
4
CHANGES
|
@ -30,6 +30,10 @@ Coding:
|
|||
starting the data transfer loop. Useful, e.g., to accumulate multiple
|
||||
packets in a receiving datagram socket before starting to process them.
|
||||
|
||||
Porting:
|
||||
Small correction in configure.ac makes Socat C99 able.
|
||||
Thanks to Florian Weimer from Red Hat for provinding a patch.
|
||||
|
||||
Testing:
|
||||
Idea: EXEC,SYSTEM addresses can keep packet boundaries when option
|
||||
socktype=<val-of-SOCK_DGRAM>
|
||||
|
|
|
@ -582,7 +582,9 @@ if test -n "$WITH_OPENSSL" -a "$sc_cv_have_openssl_ssl_h" = 'yes'; then
|
|||
else
|
||||
LIBS="$LIBS -lssl -lcrypto"
|
||||
fi
|
||||
AC_TRY_LINK([#include <openssl/ssl.h>],
|
||||
AC_TRY_LINK([#include <openssl/ssl.h>
|
||||
#include <openssl/err.h>
|
||||
],
|
||||
[SSL_library_init();ERR_error_string()],
|
||||
[sc_cv_have_libssl='yes'],
|
||||
[ LIBS="$LIBS -lcrypto"
|
||||
|
|
Loading…
Reference in a new issue