⚝
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_xsdcxx.m4
# =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_xsdcxx.html # =========================================================================== # # SYNOPSIS # # AX_XSDCXX # # DESCRIPTION # # This macro tries to find the CodeSynthesis XSD executable and the # corresponding headers. # # Supported options: # # --with-xsdcxx # use CodeSynthesis XSD from given prefix (ARG=path); # check PATH (ARG=yes); disable (ARG=no) # # --with-xsdcxx-inc # path to CodeSynthesis XSD headers (ARG=path); use standard prefix # (ARG=yes); disable (ARG=no) # # Output variables: # # XSDCXX # XSDCXX_CPPFLAGS # # LICENSE # # Copyright (c) 2013 Laszlo Kajan <lkajan@rostlab.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_XSDCXX], [ AC_ARG_WITH([xsdcxx], [AS_HELP_STRING([--with-xsdcxx=@<:@ARG@:>@], [use CodeSynthesis XSD from given prefix (ARG=path); check PATH (ARG=yes); disable (ARG=no)])], [], [with_xsdcxx=yes]) AS_IF([test "x$with_xsdcxx" != xno], [if test "$with_xsdcxx" = "yes"; then with_xsdcxx=xsdcxx; fi AC_CHECK_PROG([XSDCXX], [$with_xsdcxx], [$with_xsdcxx]) if test "x$XSDCXX" = x; then AC_CHECK_PROG([XSDCXX], [xsdcxx], [xsdcxx]) if test "x$XSDCXX" = x; then AC_CHECK_PROG([XSDCXX], [xsd], [xsd]) fi fi]) AC_ARG_WITH([xsdcxx-inc], AS_HELP_STRING([--with-xsdcxx-inc=@<:@DIR@:>@], [path to CodeSynthesis XSD headers (ARG=path); use standard prefix (ARG=); disable (ARG=no)] ), [xsdcxx_include_dir="$withval"], [xsdcxx_include_dir=] ) XSDCXX_CPPFLAGS="" if test "x$xsdcxx_include_dir" != "xno" -a "x$xsdcxx_include_dir" != "x"; then AC_SUBST([XSDCXX_CPPFLAGS],[-I$xsdcxx_include_dir]) fi ]) # vim:et: