search for: have_openssl

Displaying 20 results from an estimated 27 matches for "have_openssl".

2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...AC_CHECK_HEADERS(stdint.h) AC_SUBST(HAVE_STDINT_H) AC_CHECK_HEADERS(inttypes.h) @@ -83,6 +83,8 @@ dnl check for getopt in standard library dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) AC_CHECK_FUNCS(getopt_long, [], []) +AX_CHECK_OPENSSL([AC_DEFINE([HAVE_OPENSSL], [1], [We have openSSL])]) + case "$host_cpu" in i*86) cpu_ia32=true diff --git a/m4/ax_check_openssl.m4 b/m4/ax_check_openssl.m4 new file mode 100644 index 0000000..a87c5a6 --- /dev/null +++ b/m4/ax_check_openssl.m4 @@ -0,0 +1,124 @@ +# ============================================...
2015 Mar 12
3
mysql replication - problems
....41-MariaDB-log, and the slave is MySQL (version 5.5.41-log). But there are two issues I'd like to resolve. One is that SSL appears to be disabled. If I look at both the master and the slave and do a 'show variables' command, I can see that it's recognizing the certs. But the 'have_openssl' and 'have_ssl' variables are showing as DISABLED. Watch, on the master: MariaDB [(none)]> show variables like '%ssl%'; +---------------+--------------------------------+ | Variable_name | Value | +---------------+--------------------------------+ |...
2015 Mar 12
2
mysql replication - problems
> > No: /etc/pki/CA should NOT be group writeable. Ditto for > /etc/pki/tls/cernts and private Ok, yeah I can understand that. I'll correct it. Still need a way to get SSL enabled however. Any suggestions there? Thanks Tim On Thu, Mar 12, 2015 at 11:40 AM, <m.roth at 5-cent.us> wrote: > Tim Dunphy wrote: > >> > >> The mysqld process runs as the mysql
1999 Dec 28
0
Patches to report rsaref build and to call pam_setcred
...n_session() call. Cheers, Nalin -------------- next part -------------- diff -uNr acconfig.h acconfig.h --- acconfig.h Sat Dec 25 18:21:48 1999 +++ acconfig.h Mon Dec 27 10:46:05 1999 @@ -24,6 +24,10 @@ /* Define if your ssl headers are included with #include <openssl/header.h> */ #undef HAVE_OPENSSL +/* Define if you are linking against RSAref. Used only to print the right + * message at run-time. */ +#undef RSAREF + /* Define is utmp.h has a ut_host field */ #undef HAVE_HOST_IN_UTMP diff -uNr config.h.in config.h.in --- config.h.in Sat Dec 25 22:25:22 1999 +++ config.h.in Mon Dec 27 10...
2011 Mar 24
4
try to compile dovecot 2.0.11 with ssl support
Hello, I try to compile dovecot in Version 2.0.11 with ssl support on a CentOS 4.5 system. Installed packages are openssl and openssl-devel. after "./configure --with-ssl=openssl" "make" "make install"the message is: (also tried with CPPFLAGS="-I/opt/openssl/include" LDFLAGS="-L/opt/openssl/lib -ldl") Install prefix . : /usr/local
2015 Mar 12
0
mysql replication - problems
...> MySQL (version 5.5.41-log). > > But there are two issues I'd like to resolve. One is that SSL appears to be > disabled. > > If I look at both the master and the slave and do a 'show variables' > command, I can see that it's recognizing the certs. But the 'have_openssl' > and 'have_ssl' variables are showing as DISABLED. > > Watch, on the master: > > MariaDB [(none)]> show variables like '%ssl%'; > +---------------+--------------------------------+ > | Variable_name | Value | > +-------------...
2020 Oct 07
2
[PATCH] add with-openssl option
...lude <openssl/ssl.h>], [void *a = SSL_new], > > [openssl_ok='yes']) > > + CFLAGS="$xt_save_CFLAGS" > > + LIBS="$xt_save_LIBS" > > +fi > > > > if test "$openssl_ok" = "yes"; then > > AC_DEFINE(HAVE_OPENSSL, 1, [Define if you have libopenssl.]) > > -- > > 2.26.2 > > > > _______________________________________________ > > Icecast-dev mailing list > > Icecast-dev at xiph.org > > http://lists.xiph.org/mailman/listinfo/icecast-dev
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...# *does not* test for RSA - that comes later. @@ -372,7 +381,13 @@ ac_cv_openssldir=$ssldir ]) -if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then +if test "x$ssldir" = "xFRAMEWORK" ; then + AC_DEFINE(HAVE_OPENSSL) + ssldir="(framework)" + LDFLAGS="$saved_LDFLAGS" + CFLAGS="$saved_CFLAGS" + LIBCRYPTO="-framework openssl" +elif test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)" ; then AC_DEFINE(HAVE_OPENSS...
2003 Jun 22
1
0.99.10-rc1
Home again. Fixed SSL checking for Redhat 9, I hope. Could someone test if it actually works now? Also fixed a few compiler warnings. If this thing works, I'll just update the NEWS file and call it 0.99.10. http://dovecot.procontrol.fi/rc/ Near future plans include rewriting parts of index handling. At least .tree file will go, I've a _much_ better idea how to replace it. .data file is
2000 Jan 18
0
More NetBSD patches
...AC_C_INLINE +dnl Check for OpenSSL/SSLeay directories. +AC_MSG_CHECKING([for OpenSSL/SSLeay directory]) +for ssldir in $prefix /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg ; do + if test -f "$ssldir/include/openssl/crypto.h"; then + AC_DEFINE(HAVE_OPENSSL) + GOT_SSL="yes" + break + fi + if test -f "$ssldir/include/ssl/crypto.h"; then + AC_DEFINE(HAVE_SSL) + GOT_SSL="yes" + break + fi +done +if test -z "$GOT_SSL" ; then + AC_MSG_ERROR([Could not find SSLeay / OpenSSL libraries, please install]) +fi +AC_SU...
2015 Mar 12
3
mysql replication - problems
...ook another look at the SSL variable, it's still showing that SSL is not enabled: MariaDB [(none)]> show variables like '%ssl%'; +---------------+--------------------------------+ | Variable_name | Value | +---------------+--------------------------------+ | have_openssl | DISABLED | | have_ssl | DISABLED | | ssl_ca | /etc/pki/CA/certs/ca.crt | | ssl_capath | | | ssl_cert | /etc/pki/tls/certs/mysql.crt | | ssl_cipher | | | ssl_ke...
2020 Oct 07
1
[PATCH] add with-openssl option
...gt;>> [openssl_ok='yes']) > >>> + CFLAGS="$xt_save_CFLAGS" > >>> + LIBS="$xt_save_LIBS" > >>> +fi > >>> > >>> if test "$openssl_ok" = "yes"; then > >>> AC_DEFINE(HAVE_OPENSSL, 1, [Define if you have libopenssl.]) > >>> -- > >>> 2.26.2 > >>> > >>> _______________________________________________ > >>> Icecast-dev mailing list > >>> Icecast-dev at xiph.org > >>> http://lists.xiph.org/mailma...
2020 Oct 05
0
[PATCH] add with-openssl option
...ot; + 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" +fi if test "$openssl_ok" = "yes"; then AC_DEFINE(HAVE_OPENSSL, 1, [Define if you have libopenssl.]) -- 2.26.2
2020 Oct 07
0
[PATCH] add with-openssl option
...h>], [void *a = SSL_new], >>> [openssl_ok='yes']) >>> + CFLAGS="$xt_save_CFLAGS" >>> + LIBS="$xt_save_LIBS" >>> +fi >>> >>> if test "$openssl_ok" = "yes"; then >>> AC_DEFINE(HAVE_OPENSSL, 1, [Define if you have libopenssl.]) >>> -- >>> 2.26.2 >>> >>> _______________________________________________ >>> Icecast-dev mailing list >>> Icecast-dev at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast-dev
2005 Aug 30
2
Very minor feature request
Hello, I'd suggest a way to get to know the "capabilities" of a compiled Dovecot. The background is that I've run the sequence ./configure --with-ldap && make && make install twice, all three commands tell me that all is fine (ldap is listed in the modules), but still dovecot told me that ldap is no Usedb module. A "make clean" before solved the
2000 Mar 17
2
Problem with 1.2.3pre4 and RSAref
The following code snippet will not compile support for RSAref on NetBSD even if it exists on the system (which breaks OpenSSL): for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS -lcrypto" else LIBS="$saved_LIBS -lcrypto -lRSAglue
2013 Jun 01
7
[Bug 2112] New: Android doesn't provide an implementation of crypt().
https://bugzilla.mindrot.org/show_bug.cgi?id=2112 Bug ID: 2112 Summary: Android doesn't provide an implementation of crypt(). Product: Portable OpenSSH Version: 6.2p1 Hardware: Other OS: Linux Status: NEW Severity: minor Priority: P5 Component: Build system Assignee:
2000 Feb 01
3
logging RSA key IDs
Hi. To compartmentalize things a bit (e.g., to help limit the damage should one of my machines be hacked and my private RSA keys stolen) I use different RSA key pairs on my different client machines. So it occurs to me that it would be nice if ssh could log which key was used when logging in to a particular account that has more than one entry in .ssh/authorized_keys. Right now it simply says
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...056,11 @@ AS_IF([test "x$want_libzstd" = "xyes"], AC_SUBST([LIBZSTD_CFLAGS]) AC_SUBST([LIBZSTD_LIBS]) +AC_CHECK_FUNCS(OPENSSL_init_crypto) +if test x"$ac_cv_func_OPENSSL_init_crypto" = x"no"; then + AC_CHECK_LIB(crypto, OPENSSL_init_crypto, [AC_DEFINE([HAVE_OPENSSL], [1], [Use OpenSSL])]) +fi + ################################################# # check for extended attribute support AC_MSG_CHECKING(whether to support extended attributes) diff --git a/lib/md32_common.h b/lib/md32_common.h new file mode 100644 index 0000000000000..edb61340a1138 --- /dev/null...
1999 Dec 21
0
Problem with UTMP recording
...OOL "/dev/urandom" /* Are we using the Entropy gathering daemon */ /* #undef HAVE_EGD */ /* Define if your ssl headers are included with #include <ssl/header.h> */ /* #undef HAVE_SSL */ /* Define if your ssl headers are included with #include <openssl/header.h> */ #define HAVE_OPENSSL 1 /* Define is utmp.h has a ut_host field */ #define HAVE_HOST_IN_UTMP 1 /* Define is utmpx.h has a ut_host field */ /* #undef HAVE_HOST_IN_UTMPX */ /* Define is libutil has login() function */ /* #undef HAVE_LIBUTIL_LOGIN */ /* Define if libc defines __progname */ #define HAVE___PROGNAME 1 /*...