⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
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
/
share
/
aclocal
/
View File Name :
ax_path_missing.m4
# =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_path_missing.html # =========================================================================== # # SYNOPSIS # # AX_PATH_MISSING(VARIABLE, PROG-TO-CHECK-FOR, WARNING-IF-NOT-FOUND, PATH) # # DESCRIPTION # # Check whether program PROG-TO-CHECK-FOR exists in path. If it is found, # set VARIABLE to the full path of PROG-TO-CHECK-FOR, otherwise warn using # the string WARNING-IF-NOT-FOUND and set VARIABLE to the full path of the # Automake missing script with PROG-TO-CHECK-FOR as the command to run. # # A typical use is the following: # # AX_PATH_MISSING([AUTOGEN],[autogen],[autogen seems missing ...]) # # This macro is the combination of AC_PATH_PROG and AX_MISSING_PROG. If # you do not want to run AC_PATH_PROG, simply use AX_MISSING_PROG or # AM_MISSING. # # LICENSE # # Copyright (c) 2008 Noah Slater <nslater@bytesexual.org> # Copyright (c) 2008 Francesco Salvestrini <salvestrini@sourceforge.net> # # 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 12 AC_DEFUN([AX_PATH_MISSING], [ AC_PATH_PROG([$1],[$2],[$4]) AS_IF([ test -z "${$1}" ],[ unset $1 AX_MISSING_PROG([$1],[$2],[$3]) ]) ])