Displaying 6 results from an estimated 6 matches for "openssl_lib".
Did you mean:
openssl_libs
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...===============
+#
+# SYNOPSIS
+#
+# AX_CHECK_OPENSSL([action-if-found[, action-if-not-found]])
+#
+# DESCRIPTION
+#
+# Look for OpenSSL in a number of default spots, or in a user-selected
+# spot (via --with-openssl). Sets
+#
+# OPENSSL_INCLUDES to the include directives required
+# OPENSSL_LIBS to the -l directives required
+# OPENSSL_LDFLAGS to the -L or -R flags required
+#
+# and calls ACTION-IF-FOUND or ACTION-IF-NOT-FOUND appropriately
+#
+# This macro sets OPENSSL_INCLUDES such that source files should use the
+# openssl/ directory in include directives:
+#
+# #includ...
2020 Oct 07
2
[PATCH] add with-openssl option
...4/xiph_openssl.m4
> > @@ -29,14 +29,16 @@ else
> > fi
> > fi
> >
> > -# Now try linking to openssl
> > -xt_save_CFLAGS="$CFLAGS"
> > -xt_save_LIBS="$LIBS"
> > -CFLAGS="$CFLAGS $OPENSSL_CFLAGS"
> > -LIBS="$OPENSSL_LIBS $LIBS"
> > -AC_TRY_LINK([#include <openssl/ssl.h>], [void *a = SSL_new],
> > [openssl_ok='yes'])
> > -CFLAGS="$xt_save_CFLAGS"
> > -LIBS="$xt_save_LIBS"
> > +if test "x$openssl_prefix" != "xno"; then
> >...
2020 Oct 07
1
[PATCH] add with-openssl option
...t;> fi
> >>> fi
> >>>
> >>> -# Now try linking to openssl
> >>> -xt_save_CFLAGS="$CFLAGS"
> >>> -xt_save_LIBS="$LIBS"
> >>> -CFLAGS="$CFLAGS $OPENSSL_CFLAGS"
> >>> -LIBS="$OPENSSL_LIBS $LIBS"
> >>> -AC_TRY_LINK([#include <openssl/ssl.h>], [void *a = SSL_new],
> >>> [openssl_ok='yes'])
> >>> -CFLAGS="$xt_save_CFLAGS"
> >>> -LIBS="$xt_save_LIBS"
> >>> +if test "x$openssl_prefix&...
2020 Oct 05
0
[PATCH] add with-openssl option
...l.m4 b/m4/xiph_openssl.m4
index f62a524..52308ec 100644
--- a/m4/xiph_openssl.m4
+++ b/m4/xiph_openssl.m4
@@ -29,14 +29,16 @@ else
fi
fi
-# Now try linking to openssl
-xt_save_CFLAGS="$CFLAGS"
-xt_save_LIBS="$LIBS"
-CFLAGS="$CFLAGS $OPENSSL_CFLAGS"
-LIBS="$OPENSSL_LIBS $LIBS"
-AC_TRY_LINK([#include <openssl/ssl.h>], [void *a = SSL_new], [openssl_ok='yes'])
-CFLAGS="$xt_save_CFLAGS"
-LIBS="$xt_save_LIBS"
+if test "x$openssl_prefix" != "xno"; then
+ # Now try linking to openssl
+ xt_save_CFLAGS="...
2020 Oct 07
0
[PATCH] add with-openssl option
...gt; @@ -29,14 +29,16 @@ else
>>> fi
>>> fi
>>>
>>> -# Now try linking to openssl
>>> -xt_save_CFLAGS="$CFLAGS"
>>> -xt_save_LIBS="$LIBS"
>>> -CFLAGS="$CFLAGS $OPENSSL_CFLAGS"
>>> -LIBS="$OPENSSL_LIBS $LIBS"
>>> -AC_TRY_LINK([#include <openssl/ssl.h>], [void *a = SSL_new],
>>> [openssl_ok='yes'])
>>> -CFLAGS="$xt_save_CFLAGS"
>>> -LIBS="$xt_save_LIBS"
>>> +if test "x$openssl_prefix" != "xno";...
2014 Dec 23
1
Problems linking asterisk against self-compiled openssl on CentOS 5
I am trying to enable full WebRTC support on asterisk-11.15 for installation on a CentOS 5 machine. Currently the distro cannot be upgraded to any later CentOS series. This CentOS series ships with openssl-0.9.8e, which lacks DTLS-SRTP support required for
WebRTC. So I decided to build a parallel install of openssl. I chose the Fedora 21 package, openssl-1.0.1j, and built it on CentOS 5. The