⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
libmemcached-1.0.18
/
m4
/
View File Name :
ax_sasl.m4
# =========================================================================== # http://www.tangent.org/ # =========================================================================== # # SYNOPSIS # # AX_SASL # AX_SASL_CHECK # # DESCRIPTION # # Check to see if libsasl is requested and available. # # LICENSE # # Copyright (c) 2012 Brian Aker <brian@tangent.org> # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 3 AC_DEFUN([AX_SASL_OPTION], [AC_REQUIRE([AX_SASL_CHECK]) AC_ARG_ENABLE([sasl], [AS_HELP_STRING([--disable-sasl], [Build with sasl support @<:@default=on@:>@])], [ac_enable_sasl="$enableval"], [ac_enable_sasl=yes]) AS_IF([test "x${ac_enable_sasl}" = xyes],[ AC_MSG_CHECKING([checking to see if enabling sasl]) AS_IF([test "x${ax_sasl_check}" = xyes],[ ax_sasl_option=yes],[ AC_MSG_WARN([request to add sasl support failed, please see config.log]) ac_enable_sasl=no ax_sasl_option=no]) AC_MSG_RESULT(["$ax_sasl_option"])],[ ax_sasl_option=no]) AM_CONDITIONAL([HAVE_SASL],[test "x${ax_sasl_option}" = xyes]) ]) AC_DEFUN([AX_SASL_CHECK],[ AX_CHECK_LIBRARY([LIBSASL],[sasl/sasl.h],[sasl2],[ ax_sasl_check=yes AC_SUBST([SASL_LIB],[[-lsasl2]])],[ ax_sasl_check=no]) AC_MSG_CHECKING([checking to see if sasl works]) AC_MSG_RESULT(["$ax_sasl_check"]) ])