xcrypt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +106 -0
- data/ext/libxcrypt/AUTHORS +38 -0
- data/ext/libxcrypt/COPYING.LIB +502 -0
- data/ext/libxcrypt/ChangeLog +239 -0
- data/ext/libxcrypt/INSTALL +380 -0
- data/ext/libxcrypt/LICENSING +152 -0
- data/ext/libxcrypt/Makefile.am +704 -0
- data/ext/libxcrypt/Makefile.in +4110 -0
- data/ext/libxcrypt/NEWS +630 -0
- data/ext/libxcrypt/README +1 -0
- data/ext/libxcrypt/README.md +179 -0
- data/ext/libxcrypt/THANKS +13 -0
- data/ext/libxcrypt/TODO +1 -0
- data/ext/libxcrypt/TODO.md +100 -0
- data/ext/libxcrypt/aclocal.m4 +2617 -0
- data/ext/libxcrypt/autogen.sh +33 -0
- data/ext/libxcrypt/autom4te.cache/output.0 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.1 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.2 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.3 +19885 -0
- data/ext/libxcrypt/autom4te.cache/requests +714 -0
- data/ext/libxcrypt/autom4te.cache/traces.0 +4088 -0
- data/ext/libxcrypt/autom4te.cache/traces.1 +1060 -0
- data/ext/libxcrypt/autom4te.cache/traces.2 +4088 -0
- data/ext/libxcrypt/autom4te.cache/traces.3 +1060 -0
- data/ext/libxcrypt/build-aux/ci/ci-log-dependency-versions +79 -0
- data/ext/libxcrypt/build-aux/ci/ci-log-logfiles +22 -0
- data/ext/libxcrypt/build-aux/ci/clang-gcov-wrapper +2 -0
- data/ext/libxcrypt/build-aux/ci/configure-wrapper +10 -0
- data/ext/libxcrypt/build-aux/ci/summarize-coverage +24 -0
- data/ext/libxcrypt/build-aux/m4/ax_append_compile_flags.m4 +46 -0
- data/ext/libxcrypt/build-aux/m4/ax_append_flag.m4 +50 -0
- data/ext/libxcrypt/build-aux/m4/ax_check_compile_flag.m4 +53 -0
- data/ext/libxcrypt/build-aux/m4/ax_check_vscript.m4 +142 -0
- data/ext/libxcrypt/build-aux/m4/ax_gcc_func_attribute.m4 +246 -0
- data/ext/libxcrypt/build-aux/m4/ax_require_defined.m4 +37 -0
- data/ext/libxcrypt/build-aux/m4/ax_valgrind_check.m4 +239 -0
- data/ext/libxcrypt/build-aux/m4/libtool.m4 +8488 -0
- data/ext/libxcrypt/build-aux/m4/ltoptions.m4 +467 -0
- data/ext/libxcrypt/build-aux/m4/ltsugar.m4 +124 -0
- data/ext/libxcrypt/build-aux/m4/ltversion.m4 +24 -0
- data/ext/libxcrypt/build-aux/m4/lt~obsolete.m4 +99 -0
- data/ext/libxcrypt/build-aux/m4/pkg_compat.m4 +88 -0
- data/ext/libxcrypt/build-aux/m4/zw_alignment.m4 +90 -0
- data/ext/libxcrypt/build-aux/m4/zw_automodern.m4 +307 -0
- data/ext/libxcrypt/build-aux/m4/zw_detect_asan.m4 +24 -0
- data/ext/libxcrypt/build-aux/m4/zw_endianness.m4 +152 -0
- data/ext/libxcrypt/build-aux/m4/zw_ld_wrap.m4 +47 -0
- data/ext/libxcrypt/build-aux/m4/zw_prog_perl.m4 +40 -0
- data/ext/libxcrypt/build-aux/m4/zw_simple_warnings.m4 +150 -0
- data/ext/libxcrypt/build-aux/m4/zw_static_assert.m4 +68 -0
- data/ext/libxcrypt/build-aux/m4-autogen/compile +364 -0
- data/ext/libxcrypt/build-aux/m4-autogen/config.guess +1815 -0
- data/ext/libxcrypt/build-aux/m4-autogen/config.sub +2354 -0
- data/ext/libxcrypt/build-aux/m4-autogen/depcomp +792 -0
- data/ext/libxcrypt/build-aux/m4-autogen/install-sh +541 -0
- data/ext/libxcrypt/build-aux/m4-autogen/ltmain.sh +11524 -0
- data/ext/libxcrypt/build-aux/m4-autogen/missing +236 -0
- data/ext/libxcrypt/build-aux/m4-autogen/test-driver +160 -0
- data/ext/libxcrypt/build-aux/scripts/BuildCommon.pm +712 -0
- data/ext/libxcrypt/build-aux/scripts/check-perlcritic-config +76 -0
- data/ext/libxcrypt/build-aux/scripts/compute-symver-floor +116 -0
- data/ext/libxcrypt/build-aux/scripts/expand-selected-hashes +80 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-h +131 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-hashes-h +141 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-symbol-vers-h +150 -0
- data/ext/libxcrypt/build-aux/scripts/gen-libcrypt-map +67 -0
- data/ext/libxcrypt/build-aux/scripts/move-if-change +84 -0
- data/ext/libxcrypt/build-aux/scripts/skip-if-exec-format-error +78 -0
- data/ext/libxcrypt/codecov.yml +4 -0
- data/ext/libxcrypt/config.h.in +303 -0
- data/ext/libxcrypt/configure +19885 -0
- data/ext/libxcrypt/configure.ac +549 -0
- data/ext/libxcrypt/doc/crypt.3 +512 -0
- data/ext/libxcrypt/doc/crypt.5 +343 -0
- data/ext/libxcrypt/doc/crypt_checksalt.3 +106 -0
- data/ext/libxcrypt/doc/crypt_gensalt.3 +285 -0
- data/ext/libxcrypt/doc/crypt_gensalt_ra.3 +1 -0
- data/ext/libxcrypt/doc/crypt_gensalt_rn.3 +1 -0
- data/ext/libxcrypt/doc/crypt_preferred_method.3 +68 -0
- data/ext/libxcrypt/doc/crypt_r.3 +1 -0
- data/ext/libxcrypt/doc/crypt_ra.3 +1 -0
- data/ext/libxcrypt/doc/crypt_rn.3 +1 -0
- data/ext/libxcrypt/lib/alg-des-tables.c +3858 -0
- data/ext/libxcrypt/lib/alg-des.c +269 -0
- data/ext/libxcrypt/lib/alg-des.h +74 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-const.h +313 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-core.c +238 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-core.h +51 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.c +78 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.h +46 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-precalc.h +1426 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-ref.h +67 -0
- data/ext/libxcrypt/lib/alg-hmac-sha1.c +140 -0
- data/ext/libxcrypt/lib/alg-hmac-sha1.h +35 -0
- data/ext/libxcrypt/lib/alg-md4.c +270 -0
- data/ext/libxcrypt/lib/alg-md4.h +43 -0
- data/ext/libxcrypt/lib/alg-md5.c +291 -0
- data/ext/libxcrypt/lib/alg-md5.h +43 -0
- data/ext/libxcrypt/lib/alg-sha1.c +288 -0
- data/ext/libxcrypt/lib/alg-sha1.h +34 -0
- data/ext/libxcrypt/lib/alg-sha256.c +630 -0
- data/ext/libxcrypt/lib/alg-sha256.h +123 -0
- data/ext/libxcrypt/lib/alg-sha512.c +311 -0
- data/ext/libxcrypt/lib/alg-sha512.h +81 -0
- data/ext/libxcrypt/lib/alg-sm3-hmac.c +113 -0
- data/ext/libxcrypt/lib/alg-sm3-hmac.h +42 -0
- data/ext/libxcrypt/lib/alg-sm3.c +449 -0
- data/ext/libxcrypt/lib/alg-sm3.h +63 -0
- data/ext/libxcrypt/lib/alg-yescrypt-common.c +713 -0
- data/ext/libxcrypt/lib/alg-yescrypt-opt.c +1568 -0
- data/ext/libxcrypt/lib/alg-yescrypt-platform.c +106 -0
- data/ext/libxcrypt/lib/alg-yescrypt.h +360 -0
- data/ext/libxcrypt/lib/byteorder.h +164 -0
- data/ext/libxcrypt/lib/crypt-bcrypt.c +1061 -0
- data/ext/libxcrypt/lib/crypt-des-obsolete.c +215 -0
- data/ext/libxcrypt/lib/crypt-des.c +491 -0
- data/ext/libxcrypt/lib/crypt-gensalt-static.c +40 -0
- data/ext/libxcrypt/lib/crypt-gost-yescrypt.c +182 -0
- data/ext/libxcrypt/lib/crypt-md5.c +232 -0
- data/ext/libxcrypt/lib/crypt-nthash.c +134 -0
- data/ext/libxcrypt/lib/crypt-obsolete.h +40 -0
- data/ext/libxcrypt/lib/crypt-pbkdf1-sha1.c +260 -0
- data/ext/libxcrypt/lib/crypt-port.h +514 -0
- data/ext/libxcrypt/lib/crypt-scrypt.c +247 -0
- data/ext/libxcrypt/lib/crypt-sha256.c +308 -0
- data/ext/libxcrypt/lib/crypt-sha512.c +323 -0
- data/ext/libxcrypt/lib/crypt-sm3-yescrypt.c +189 -0
- data/ext/libxcrypt/lib/crypt-sm3.c +308 -0
- data/ext/libxcrypt/lib/crypt-static.c +44 -0
- data/ext/libxcrypt/lib/crypt-sunmd5.c +314 -0
- data/ext/libxcrypt/lib/crypt-yescrypt.c +177 -0
- data/ext/libxcrypt/lib/crypt.c +421 -0
- data/ext/libxcrypt/lib/crypt.h.in +249 -0
- data/ext/libxcrypt/lib/gen-des-tables.c +363 -0
- data/ext/libxcrypt/lib/hashes.conf +59 -0
- data/ext/libxcrypt/lib/libcrypt.map.in +48 -0
- data/ext/libxcrypt/lib/libcrypt.minver +97 -0
- data/ext/libxcrypt/lib/libxcrypt.pc.in +15 -0
- data/ext/libxcrypt/lib/util-base64.c +26 -0
- data/ext/libxcrypt/lib/util-gensalt-sha.c +88 -0
- data/ext/libxcrypt/lib/util-get-random-bytes.c +154 -0
- data/ext/libxcrypt/lib/util-make-failure-token.c +48 -0
- data/ext/libxcrypt/lib/util-xbzero.c +43 -0
- data/ext/libxcrypt/lib/util-xstrcpy.c +42 -0
- data/ext/libxcrypt/lib/xcrypt.h.in +58 -0
- data/ext/libxcrypt/libxcrypt.spec.rpkg +481 -0
- data/ext/libxcrypt/rpkg.conf +2 -0
- data/ext/libxcrypt/rpkg.macros +86 -0
- data/ext/libxcrypt/test/TestCommon.pm +326 -0
- data/ext/libxcrypt/test/alg-des.c +80 -0
- data/ext/libxcrypt/test/alg-gost3411-2012-hmac.c +90 -0
- data/ext/libxcrypt/test/alg-gost3411-2012.c +191 -0
- data/ext/libxcrypt/test/alg-hmac-sha1.c +187 -0
- data/ext/libxcrypt/test/alg-md4.c +111 -0
- data/ext/libxcrypt/test/alg-md5.c +134 -0
- data/ext/libxcrypt/test/alg-pbkdf-hmac-sha256.c +269 -0
- data/ext/libxcrypt/test/alg-sha1.c +111 -0
- data/ext/libxcrypt/test/alg-sha256.c +141 -0
- data/ext/libxcrypt/test/alg-sha512.c +170 -0
- data/ext/libxcrypt/test/alg-sm3-hmac.c +149 -0
- data/ext/libxcrypt/test/alg-sm3.c +168 -0
- data/ext/libxcrypt/test/alg-yescrypt.c +466 -0
- data/ext/libxcrypt/test/badsalt.c +726 -0
- data/ext/libxcrypt/test/badsetting.c +350 -0
- data/ext/libxcrypt/test/byteorder.c +254 -0
- data/ext/libxcrypt/test/checksalt.c +265 -0
- data/ext/libxcrypt/test/compile-strong-alias.c +43 -0
- data/ext/libxcrypt/test/crypt-badargs.c +392 -0
- data/ext/libxcrypt/test/crypt-gost-yescrypt.c +149 -0
- data/ext/libxcrypt/test/crypt-nested-call.c +180 -0
- data/ext/libxcrypt/test/crypt-sm3-yescrypt.c +149 -0
- data/ext/libxcrypt/test/crypt-too-long-phrase.c +157 -0
- data/ext/libxcrypt/test/des-cases.h +196 -0
- data/ext/libxcrypt/test/des-obsolete.c +206 -0
- data/ext/libxcrypt/test/des-obsolete_r.c +207 -0
- data/ext/libxcrypt/test/explicit-bzero.c +334 -0
- data/ext/libxcrypt/test/gensalt-bcrypt_x.c +54 -0
- data/ext/libxcrypt/test/gensalt-extradata.c +246 -0
- data/ext/libxcrypt/test/gensalt-nested-call.c +126 -0
- data/ext/libxcrypt/test/gensalt-nthash.c +65 -0
- data/ext/libxcrypt/test/gensalt.c +599 -0
- data/ext/libxcrypt/test/getrandom-fallbacks.c +295 -0
- data/ext/libxcrypt/test/getrandom-interface.c +211 -0
- data/ext/libxcrypt/test/ka-table-gen.py +945 -0
- data/ext/libxcrypt/test/ka-table.inc +5849 -0
- data/ext/libxcrypt/test/ka-tester.c +240 -0
- data/ext/libxcrypt/test/preferred-method.c +133 -0
- data/ext/libxcrypt/test/short-outbuf.c +119 -0
- data/ext/libxcrypt/test/special-char-salt.c +1160 -0
- data/ext/libxcrypt/test/symbols-compat.pl +137 -0
- data/ext/libxcrypt/test/symbols-renames.pl +107 -0
- data/ext/libxcrypt/test/symbols-static.pl +87 -0
- data/ext/xcrypt/xcrypt.c +9 -0
- data/lib/xcrypt/ffi.rb +76 -0
- data/lib/xcrypt/version.rb +5 -0
- data/lib/xcrypt.rb +89 -0
- metadata +267 -0
|
@@ -0,0 +1,714 @@
|
|
|
1
|
+
# This file was generated by Autom4te 2.72.
|
|
2
|
+
# It contains the lists of macros which have been traced.
|
|
3
|
+
# It can be safely removed.
|
|
4
|
+
|
|
5
|
+
@request = (
|
|
6
|
+
bless( [
|
|
7
|
+
'0',
|
|
8
|
+
1,
|
|
9
|
+
[
|
|
10
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf'
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf/autoconf/autoconf.m4f',
|
|
14
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/internal/ac-config-macro-dirs.m4',
|
|
15
|
+
'/opt/homebrew/share/aclocal/libtool.m4',
|
|
16
|
+
'/opt/homebrew/share/aclocal/ltargz.m4',
|
|
17
|
+
'/opt/homebrew/share/aclocal/ltdl.m4',
|
|
18
|
+
'/opt/homebrew/share/aclocal/ltoptions.m4',
|
|
19
|
+
'/opt/homebrew/share/aclocal/ltsugar.m4',
|
|
20
|
+
'/opt/homebrew/share/aclocal/ltversion.m4',
|
|
21
|
+
'/opt/homebrew/share/aclocal/lt~obsolete.m4',
|
|
22
|
+
'/opt/homebrew/share/aclocal/pkg.m4',
|
|
23
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/amversion.m4',
|
|
24
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/auxdir.m4',
|
|
25
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/cond.m4',
|
|
26
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depend.m4',
|
|
27
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depout.m4',
|
|
28
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/extra-recurs.m4',
|
|
29
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/init.m4',
|
|
30
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/install-sh.m4',
|
|
31
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/lead-dot.m4',
|
|
32
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/make.m4',
|
|
33
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/missing.m4',
|
|
34
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4',
|
|
35
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/prog-cc-c-o.m4',
|
|
36
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/rmf.m4',
|
|
37
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/runlog.m4',
|
|
38
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/sanity.m4',
|
|
39
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/silent.m4',
|
|
40
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/strip.m4',
|
|
41
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/substnot.m4',
|
|
42
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/tar.m4',
|
|
43
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/xargsn.m4',
|
|
44
|
+
'build-aux/m4/ax_append_compile_flags.m4',
|
|
45
|
+
'build-aux/m4/ax_append_flag.m4',
|
|
46
|
+
'build-aux/m4/ax_check_compile_flag.m4',
|
|
47
|
+
'build-aux/m4/ax_check_vscript.m4',
|
|
48
|
+
'build-aux/m4/ax_gcc_func_attribute.m4',
|
|
49
|
+
'build-aux/m4/ax_require_defined.m4',
|
|
50
|
+
'build-aux/m4/ax_valgrind_check.m4',
|
|
51
|
+
'build-aux/m4/pkg_compat.m4',
|
|
52
|
+
'build-aux/m4/zw_alignment.m4',
|
|
53
|
+
'build-aux/m4/zw_detect_asan.m4',
|
|
54
|
+
'build-aux/m4/zw_endianness.m4',
|
|
55
|
+
'build-aux/m4/zw_ld_wrap.m4',
|
|
56
|
+
'build-aux/m4/zw_prog_perl.m4',
|
|
57
|
+
'build-aux/m4/zw_simple_warnings.m4',
|
|
58
|
+
'build-aux/m4/zw_static_assert.m4',
|
|
59
|
+
'configure.ac'
|
|
60
|
+
],
|
|
61
|
+
{
|
|
62
|
+
'AC_CHECK_LIBM' => 1,
|
|
63
|
+
'AC_CONFIG_MACRO_DIR' => 1,
|
|
64
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
65
|
+
'AC_DEFUN' => 1,
|
|
66
|
+
'AC_DEFUN_ONCE' => 1,
|
|
67
|
+
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
68
|
+
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
69
|
+
'AC_DISABLE_SHARED' => 1,
|
|
70
|
+
'AC_DISABLE_STATIC' => 1,
|
|
71
|
+
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
72
|
+
'AC_ENABLE_SHARED' => 1,
|
|
73
|
+
'AC_ENABLE_STATIC' => 1,
|
|
74
|
+
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
75
|
+
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
76
|
+
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
77
|
+
'AC_LIBTOOL_CONFIG' => 1,
|
|
78
|
+
'AC_LIBTOOL_CXX' => 1,
|
|
79
|
+
'AC_LIBTOOL_DLOPEN' => 1,
|
|
80
|
+
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
81
|
+
'AC_LIBTOOL_F77' => 1,
|
|
82
|
+
'AC_LIBTOOL_FC' => 1,
|
|
83
|
+
'AC_LIBTOOL_GCJ' => 1,
|
|
84
|
+
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
85
|
+
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
86
|
+
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
87
|
+
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
88
|
+
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
89
|
+
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
90
|
+
'AC_LIBTOOL_OBJDIR' => 1,
|
|
91
|
+
'AC_LIBTOOL_PICMODE' => 1,
|
|
92
|
+
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
93
|
+
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
94
|
+
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
95
|
+
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
96
|
+
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
97
|
+
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
98
|
+
'AC_LIBTOOL_RC' => 1,
|
|
99
|
+
'AC_LIBTOOL_SETUP' => 1,
|
|
100
|
+
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
101
|
+
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
102
|
+
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
103
|
+
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
104
|
+
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
105
|
+
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
106
|
+
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
107
|
+
'AC_LIB_LTDL' => 1,
|
|
108
|
+
'AC_LTDL_DLLIB' => 1,
|
|
109
|
+
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
110
|
+
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
111
|
+
'AC_LTDL_OBJDIR' => 1,
|
|
112
|
+
'AC_LTDL_PREOPEN' => 1,
|
|
113
|
+
'AC_LTDL_SHLIBEXT' => 1,
|
|
114
|
+
'AC_LTDL_SHLIBPATH' => 1,
|
|
115
|
+
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
116
|
+
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
117
|
+
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
118
|
+
'AC_PATH_MAGIC' => 1,
|
|
119
|
+
'AC_PATH_TOOL_PREFIX' => 1,
|
|
120
|
+
'AC_PROG_EGREP' => 1,
|
|
121
|
+
'AC_PROG_LD' => 1,
|
|
122
|
+
'AC_PROG_LD_GNU' => 1,
|
|
123
|
+
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
124
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
125
|
+
'AC_PROG_NM' => 1,
|
|
126
|
+
'AC_WITH_LTDL' => 1,
|
|
127
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
128
|
+
'AM_AUX_DIR_EXPAND' => 1,
|
|
129
|
+
'AM_CONDITIONAL' => 1,
|
|
130
|
+
'AM_DEP_TRACK' => 1,
|
|
131
|
+
'AM_DISABLE_SHARED' => 1,
|
|
132
|
+
'AM_DISABLE_STATIC' => 1,
|
|
133
|
+
'AM_ENABLE_SHARED' => 1,
|
|
134
|
+
'AM_ENABLE_STATIC' => 1,
|
|
135
|
+
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
136
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
137
|
+
'AM_MAKE_INCLUDE' => 1,
|
|
138
|
+
'AM_MISSING_HAS_RUN' => 1,
|
|
139
|
+
'AM_MISSING_PROG' => 1,
|
|
140
|
+
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
141
|
+
'AM_PROG_CC_C_O' => 1,
|
|
142
|
+
'AM_PROG_INSTALL_SH' => 1,
|
|
143
|
+
'AM_PROG_INSTALL_STRIP' => 1,
|
|
144
|
+
'AM_PROG_LD' => 1,
|
|
145
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
146
|
+
'AM_PROG_NM' => 1,
|
|
147
|
+
'AM_RUN_LOG' => 1,
|
|
148
|
+
'AM_SANITY_CHECK' => 1,
|
|
149
|
+
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
150
|
+
'AM_SET_DEPDIR' => 1,
|
|
151
|
+
'AM_SET_LEADING_DOT' => 1,
|
|
152
|
+
'AM_SILENT_RULES' => 1,
|
|
153
|
+
'AM_SUBST_NOTMAKE' => 1,
|
|
154
|
+
'AU_DEFUN' => 1,
|
|
155
|
+
'AX_APPEND_COMPILE_FLAGS' => 1,
|
|
156
|
+
'AX_APPEND_FLAG' => 1,
|
|
157
|
+
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
158
|
+
'AX_CHECK_VSCRIPT' => 1,
|
|
159
|
+
'AX_GCC_FUNC_ATTRIBUTE' => 1,
|
|
160
|
+
'AX_REQUIRE_DEFINED' => 1,
|
|
161
|
+
'AX_VALGRIND_CHECK' => 1,
|
|
162
|
+
'AX_VALGRIND_DFLT' => 1,
|
|
163
|
+
'LTDL_CONVENIENCE' => 1,
|
|
164
|
+
'LTDL_INIT' => 1,
|
|
165
|
+
'LTDL_INSTALLABLE' => 1,
|
|
166
|
+
'LTOBSOLETE_VERSION' => 1,
|
|
167
|
+
'LTOPTIONS_VERSION' => 1,
|
|
168
|
+
'LTSUGAR_VERSION' => 1,
|
|
169
|
+
'LTVERSION_VERSION' => 1,
|
|
170
|
+
'LT_AC_PROG_EGREP' => 1,
|
|
171
|
+
'LT_AC_PROG_GCJ' => 1,
|
|
172
|
+
'LT_AC_PROG_RC' => 1,
|
|
173
|
+
'LT_AC_PROG_SED' => 1,
|
|
174
|
+
'LT_CMD_MAX_LEN' => 1,
|
|
175
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
176
|
+
'LT_FUNC_ARGZ' => 1,
|
|
177
|
+
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
178
|
+
'LT_INIT' => 1,
|
|
179
|
+
'LT_LANG' => 1,
|
|
180
|
+
'LT_LIB_DLLOAD' => 1,
|
|
181
|
+
'LT_LIB_M' => 1,
|
|
182
|
+
'LT_OUTPUT' => 1,
|
|
183
|
+
'LT_PATH_LD' => 1,
|
|
184
|
+
'LT_PATH_NM' => 1,
|
|
185
|
+
'LT_PROG_GCJ' => 1,
|
|
186
|
+
'LT_PROG_GO' => 1,
|
|
187
|
+
'LT_PROG_RC' => 1,
|
|
188
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
189
|
+
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
190
|
+
'LT_SYS_DLOPEN_SELF' => 1,
|
|
191
|
+
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
192
|
+
'LT_SYS_MODULE_EXT' => 1,
|
|
193
|
+
'LT_SYS_MODULE_PATH' => 1,
|
|
194
|
+
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
195
|
+
'LT_WITH_LTDL' => 1,
|
|
196
|
+
'PKG_CHECK_EXISTS' => 1,
|
|
197
|
+
'PKG_CHECK_MODULES' => 1,
|
|
198
|
+
'PKG_CHECK_MODULES_STATIC' => 1,
|
|
199
|
+
'PKG_CHECK_VAR' => 1,
|
|
200
|
+
'PKG_HAVE_DEFINE_WITH_MODULES' => 1,
|
|
201
|
+
'PKG_HAVE_WITH_MODULES' => 1,
|
|
202
|
+
'PKG_INSTALLDIR' => 1,
|
|
203
|
+
'PKG_INSTALLDIR_COMPAT' => 1,
|
|
204
|
+
'PKG_NOARCH_INSTALLDIR' => 1,
|
|
205
|
+
'PKG_PROG_PKG_CONFIG' => 1,
|
|
206
|
+
'PKG_PROG_PKG_CONFIG_COMPAT' => 1,
|
|
207
|
+
'PKG_WITH_MODULES' => 1,
|
|
208
|
+
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
209
|
+
'_AC_INCLUDES_DEFAULT_REQUIREMENTS' => 1,
|
|
210
|
+
'_AC_PROG_CC_C11' => 1,
|
|
211
|
+
'_AC_PROG_LIBTOOL' => 1,
|
|
212
|
+
'_AM_AUTOCONF_VERSION' => 1,
|
|
213
|
+
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
214
|
+
'_AM_DEPENDENCIES' => 1,
|
|
215
|
+
'_AM_FILESYSTEM_TIMESTAMP_RESOLUTION' => 1,
|
|
216
|
+
'_AM_IF_OPTION' => 1,
|
|
217
|
+
'_AM_MANGLE_OPTION' => 1,
|
|
218
|
+
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
219
|
+
'_AM_PROG_CC_C_O' => 1,
|
|
220
|
+
'_AM_PROG_RM_F' => 1,
|
|
221
|
+
'_AM_PROG_TAR' => 1,
|
|
222
|
+
'_AM_PROG_XARGS_N' => 1,
|
|
223
|
+
'_AM_SET_OPTION' => 1,
|
|
224
|
+
'_AM_SET_OPTIONS' => 1,
|
|
225
|
+
'_AM_SILENT_RULES' => 1,
|
|
226
|
+
'_AM_SLEEP_FRACTIONAL_SECONDS' => 1,
|
|
227
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
228
|
+
'_AX_CHECK_VSCRIPT' => 1,
|
|
229
|
+
'_LTDL_SETUP' => 1,
|
|
230
|
+
'_LT_AC_CHECK_DLFCN' => 1,
|
|
231
|
+
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
232
|
+
'_LT_AC_LANG_CXX' => 1,
|
|
233
|
+
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
|
234
|
+
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
235
|
+
'_LT_AC_LANG_F77' => 1,
|
|
236
|
+
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
237
|
+
'_LT_AC_LANG_GCJ' => 1,
|
|
238
|
+
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
239
|
+
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
240
|
+
'_LT_AC_LOCK' => 1,
|
|
241
|
+
'_LT_AC_PROG_CXXCPP' => 1,
|
|
242
|
+
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
243
|
+
'_LT_AC_SHELL_INIT' => 1,
|
|
244
|
+
'_LT_AC_SYS_COMPILER' => 1,
|
|
245
|
+
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
246
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
247
|
+
'_LT_AC_TAGVAR' => 1,
|
|
248
|
+
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
249
|
+
'_LT_CC_BASENAME' => 1,
|
|
250
|
+
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
251
|
+
'_LT_COMPILER_OPTION' => 1,
|
|
252
|
+
'_LT_DLL_DEF_P' => 1,
|
|
253
|
+
'_LT_LIBOBJ' => 1,
|
|
254
|
+
'_LT_LINKER_BOILERPLATE' => 1,
|
|
255
|
+
'_LT_LINKER_OPTION' => 1,
|
|
256
|
+
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
257
|
+
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
258
|
+
'_LT_PROG_CXX' => 1,
|
|
259
|
+
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
260
|
+
'_LT_PROG_F77' => 1,
|
|
261
|
+
'_LT_PROG_FC' => 1,
|
|
262
|
+
'_LT_PROG_LTMAIN' => 1,
|
|
263
|
+
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
264
|
+
'_LT_WITH_SYSROOT' => 1,
|
|
265
|
+
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
266
|
+
'_m4_warn' => 1,
|
|
267
|
+
'include' => 1,
|
|
268
|
+
'm4_include' => 1,
|
|
269
|
+
'm4_pattern_allow' => 1,
|
|
270
|
+
'm4_pattern_forbid' => 1,
|
|
271
|
+
'zw_ASAN_IFELSE' => 1,
|
|
272
|
+
'zw_C_ALIGNAS' => 1,
|
|
273
|
+
'zw_C_ALIGNOF' => 1,
|
|
274
|
+
'zw_C_ENDIANNESS' => 1,
|
|
275
|
+
'zw_C_MAX_ALIGN_T' => 1,
|
|
276
|
+
'zw_C_STATIC_ASSERT' => 1,
|
|
277
|
+
'zw_PROG_LD_WRAP' => 1,
|
|
278
|
+
'zw_PROG_PERL' => 1,
|
|
279
|
+
'zw_SIMPLE_ENABLE_WARNINGS' => 1
|
|
280
|
+
}
|
|
281
|
+
], 'Autom4te::Request' ),
|
|
282
|
+
bless( [
|
|
283
|
+
'1',
|
|
284
|
+
1,
|
|
285
|
+
[
|
|
286
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf'
|
|
287
|
+
],
|
|
288
|
+
[
|
|
289
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf/autoconf/autoconf.m4f',
|
|
290
|
+
'aclocal.m4',
|
|
291
|
+
'configure.ac'
|
|
292
|
+
],
|
|
293
|
+
{
|
|
294
|
+
'AC_CANONICAL_BUILD' => 1,
|
|
295
|
+
'AC_CANONICAL_HOST' => 1,
|
|
296
|
+
'AC_CANONICAL_SYSTEM' => 1,
|
|
297
|
+
'AC_CANONICAL_TARGET' => 1,
|
|
298
|
+
'AC_CONFIG_AUX_DIR' => 1,
|
|
299
|
+
'AC_CONFIG_FILES' => 1,
|
|
300
|
+
'AC_CONFIG_HEADERS' => 1,
|
|
301
|
+
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
|
302
|
+
'AC_CONFIG_LINKS' => 1,
|
|
303
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
304
|
+
'AC_CONFIG_SUBDIRS' => 1,
|
|
305
|
+
'AC_DEFINE_TRACE_LITERAL' => 1,
|
|
306
|
+
'AC_FC_FREEFORM' => 1,
|
|
307
|
+
'AC_FC_PP_DEFINE' => 1,
|
|
308
|
+
'AC_FC_PP_SRCEXT' => 1,
|
|
309
|
+
'AC_FC_SRCEXT' => 1,
|
|
310
|
+
'AC_INIT' => 1,
|
|
311
|
+
'AC_LIBSOURCE' => 1,
|
|
312
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
313
|
+
'AC_REQUIRE_AUX_FILE' => 1,
|
|
314
|
+
'AC_SUBST' => 1,
|
|
315
|
+
'AC_SUBST_TRACE' => 1,
|
|
316
|
+
'AH_OUTPUT' => 1,
|
|
317
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
318
|
+
'AM_CONDITIONAL' => 1,
|
|
319
|
+
'AM_ENABLE_MULTILIB' => 1,
|
|
320
|
+
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
321
|
+
'AM_GNU_GETTEXT' => 1,
|
|
322
|
+
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
|
323
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
324
|
+
'AM_MAINTAINER_MODE' => 1,
|
|
325
|
+
'AM_MAKEFILE_INCLUDE' => 1,
|
|
326
|
+
'AM_NLS' => 1,
|
|
327
|
+
'AM_PATH_GUILE' => 1,
|
|
328
|
+
'AM_POT_TOOLS' => 1,
|
|
329
|
+
'AM_PROG_AR' => 1,
|
|
330
|
+
'AM_PROG_CC_C_O' => 1,
|
|
331
|
+
'AM_PROG_CXX_C_O' => 1,
|
|
332
|
+
'AM_PROG_F77_C_O' => 1,
|
|
333
|
+
'AM_PROG_FC_C_O' => 1,
|
|
334
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
335
|
+
'AM_PROG_MKDIR_P' => 1,
|
|
336
|
+
'AM_PROG_MOC' => 1,
|
|
337
|
+
'AM_SILENT_RULES' => 1,
|
|
338
|
+
'AM_XGETTEXT_OPTION' => 1,
|
|
339
|
+
'GTK_DOC_CHECK' => 1,
|
|
340
|
+
'IT_PROG_INTLTOOL' => 1,
|
|
341
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
342
|
+
'LT_INIT' => 1,
|
|
343
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
344
|
+
'_AM_COND_ELSE' => 1,
|
|
345
|
+
'_AM_COND_ENDIF' => 1,
|
|
346
|
+
'_AM_COND_IF' => 1,
|
|
347
|
+
'_AM_MAKEFILE_INCLUDE' => 1,
|
|
348
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
349
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
350
|
+
'_m4_warn' => 1,
|
|
351
|
+
'include' => 1,
|
|
352
|
+
'm4_include' => 1,
|
|
353
|
+
'm4_pattern_allow' => 1,
|
|
354
|
+
'm4_pattern_forbid' => 1,
|
|
355
|
+
'm4_sinclude' => 1,
|
|
356
|
+
'sinclude' => 1
|
|
357
|
+
}
|
|
358
|
+
], 'Autom4te::Request' ),
|
|
359
|
+
bless( [
|
|
360
|
+
'2',
|
|
361
|
+
1,
|
|
362
|
+
[
|
|
363
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf'
|
|
364
|
+
],
|
|
365
|
+
[
|
|
366
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf/autoconf/autoconf.m4f',
|
|
367
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/internal/ac-config-macro-dirs.m4',
|
|
368
|
+
'/opt/homebrew/share/aclocal/ltargz.m4',
|
|
369
|
+
'/opt/homebrew/share/aclocal/ltdl.m4',
|
|
370
|
+
'/opt/homebrew/share/aclocal/pkg.m4',
|
|
371
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/amversion.m4',
|
|
372
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/auxdir.m4',
|
|
373
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/cond.m4',
|
|
374
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depend.m4',
|
|
375
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depout.m4',
|
|
376
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/extra-recurs.m4',
|
|
377
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/init.m4',
|
|
378
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/install-sh.m4',
|
|
379
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/lead-dot.m4',
|
|
380
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/make.m4',
|
|
381
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/missing.m4',
|
|
382
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4',
|
|
383
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/prog-cc-c-o.m4',
|
|
384
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/rmf.m4',
|
|
385
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/runlog.m4',
|
|
386
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/sanity.m4',
|
|
387
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/silent.m4',
|
|
388
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/strip.m4',
|
|
389
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/substnot.m4',
|
|
390
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/tar.m4',
|
|
391
|
+
'/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/xargsn.m4',
|
|
392
|
+
'build-aux/m4/ax_append_compile_flags.m4',
|
|
393
|
+
'build-aux/m4/ax_append_flag.m4',
|
|
394
|
+
'build-aux/m4/ax_check_compile_flag.m4',
|
|
395
|
+
'build-aux/m4/ax_check_vscript.m4',
|
|
396
|
+
'build-aux/m4/ax_gcc_func_attribute.m4',
|
|
397
|
+
'build-aux/m4/ax_require_defined.m4',
|
|
398
|
+
'build-aux/m4/ax_valgrind_check.m4',
|
|
399
|
+
'build-aux/m4/libtool.m4',
|
|
400
|
+
'build-aux/m4/ltoptions.m4',
|
|
401
|
+
'build-aux/m4/ltsugar.m4',
|
|
402
|
+
'build-aux/m4/ltversion.m4',
|
|
403
|
+
'build-aux/m4/lt~obsolete.m4',
|
|
404
|
+
'build-aux/m4/pkg_compat.m4',
|
|
405
|
+
'build-aux/m4/zw_alignment.m4',
|
|
406
|
+
'build-aux/m4/zw_detect_asan.m4',
|
|
407
|
+
'build-aux/m4/zw_endianness.m4',
|
|
408
|
+
'build-aux/m4/zw_ld_wrap.m4',
|
|
409
|
+
'build-aux/m4/zw_prog_perl.m4',
|
|
410
|
+
'build-aux/m4/zw_simple_warnings.m4',
|
|
411
|
+
'build-aux/m4/zw_static_assert.m4',
|
|
412
|
+
'configure.ac'
|
|
413
|
+
],
|
|
414
|
+
{
|
|
415
|
+
'AC_CHECK_LIBM' => 1,
|
|
416
|
+
'AC_CONFIG_MACRO_DIR' => 1,
|
|
417
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
418
|
+
'AC_DEFUN' => 1,
|
|
419
|
+
'AC_DEFUN_ONCE' => 1,
|
|
420
|
+
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
421
|
+
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
422
|
+
'AC_DISABLE_SHARED' => 1,
|
|
423
|
+
'AC_DISABLE_STATIC' => 1,
|
|
424
|
+
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
425
|
+
'AC_ENABLE_SHARED' => 1,
|
|
426
|
+
'AC_ENABLE_STATIC' => 1,
|
|
427
|
+
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
428
|
+
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
429
|
+
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
430
|
+
'AC_LIBTOOL_CONFIG' => 1,
|
|
431
|
+
'AC_LIBTOOL_CXX' => 1,
|
|
432
|
+
'AC_LIBTOOL_DLOPEN' => 1,
|
|
433
|
+
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
434
|
+
'AC_LIBTOOL_F77' => 1,
|
|
435
|
+
'AC_LIBTOOL_FC' => 1,
|
|
436
|
+
'AC_LIBTOOL_GCJ' => 1,
|
|
437
|
+
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
438
|
+
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
439
|
+
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
440
|
+
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
441
|
+
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
442
|
+
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
443
|
+
'AC_LIBTOOL_OBJDIR' => 1,
|
|
444
|
+
'AC_LIBTOOL_PICMODE' => 1,
|
|
445
|
+
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
446
|
+
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
447
|
+
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
448
|
+
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
449
|
+
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
450
|
+
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
451
|
+
'AC_LIBTOOL_RC' => 1,
|
|
452
|
+
'AC_LIBTOOL_SETUP' => 1,
|
|
453
|
+
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
454
|
+
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
455
|
+
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
456
|
+
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
457
|
+
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
458
|
+
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
459
|
+
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
460
|
+
'AC_LIB_LTDL' => 1,
|
|
461
|
+
'AC_LTDL_DLLIB' => 1,
|
|
462
|
+
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
463
|
+
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
464
|
+
'AC_LTDL_OBJDIR' => 1,
|
|
465
|
+
'AC_LTDL_PREOPEN' => 1,
|
|
466
|
+
'AC_LTDL_SHLIBEXT' => 1,
|
|
467
|
+
'AC_LTDL_SHLIBPATH' => 1,
|
|
468
|
+
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
469
|
+
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
470
|
+
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
471
|
+
'AC_PATH_MAGIC' => 1,
|
|
472
|
+
'AC_PATH_TOOL_PREFIX' => 1,
|
|
473
|
+
'AC_PROG_EGREP' => 1,
|
|
474
|
+
'AC_PROG_LD' => 1,
|
|
475
|
+
'AC_PROG_LD_GNU' => 1,
|
|
476
|
+
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
477
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
478
|
+
'AC_PROG_NM' => 1,
|
|
479
|
+
'AC_WITH_LTDL' => 1,
|
|
480
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
481
|
+
'AM_AUX_DIR_EXPAND' => 1,
|
|
482
|
+
'AM_CONDITIONAL' => 1,
|
|
483
|
+
'AM_DEP_TRACK' => 1,
|
|
484
|
+
'AM_DISABLE_SHARED' => 1,
|
|
485
|
+
'AM_DISABLE_STATIC' => 1,
|
|
486
|
+
'AM_ENABLE_SHARED' => 1,
|
|
487
|
+
'AM_ENABLE_STATIC' => 1,
|
|
488
|
+
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
489
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
490
|
+
'AM_MAKE_INCLUDE' => 1,
|
|
491
|
+
'AM_MISSING_HAS_RUN' => 1,
|
|
492
|
+
'AM_MISSING_PROG' => 1,
|
|
493
|
+
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
494
|
+
'AM_PROG_CC_C_O' => 1,
|
|
495
|
+
'AM_PROG_INSTALL_SH' => 1,
|
|
496
|
+
'AM_PROG_INSTALL_STRIP' => 1,
|
|
497
|
+
'AM_PROG_LD' => 1,
|
|
498
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
499
|
+
'AM_PROG_NM' => 1,
|
|
500
|
+
'AM_RUN_LOG' => 1,
|
|
501
|
+
'AM_SANITY_CHECK' => 1,
|
|
502
|
+
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
503
|
+
'AM_SET_DEPDIR' => 1,
|
|
504
|
+
'AM_SET_LEADING_DOT' => 1,
|
|
505
|
+
'AM_SILENT_RULES' => 1,
|
|
506
|
+
'AM_SUBST_NOTMAKE' => 1,
|
|
507
|
+
'AU_DEFUN' => 1,
|
|
508
|
+
'AX_APPEND_COMPILE_FLAGS' => 1,
|
|
509
|
+
'AX_APPEND_FLAG' => 1,
|
|
510
|
+
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
511
|
+
'AX_CHECK_VSCRIPT' => 1,
|
|
512
|
+
'AX_GCC_FUNC_ATTRIBUTE' => 1,
|
|
513
|
+
'AX_REQUIRE_DEFINED' => 1,
|
|
514
|
+
'AX_VALGRIND_CHECK' => 1,
|
|
515
|
+
'AX_VALGRIND_DFLT' => 1,
|
|
516
|
+
'LTDL_CONVENIENCE' => 1,
|
|
517
|
+
'LTDL_INIT' => 1,
|
|
518
|
+
'LTDL_INSTALLABLE' => 1,
|
|
519
|
+
'LTOBSOLETE_VERSION' => 1,
|
|
520
|
+
'LTOPTIONS_VERSION' => 1,
|
|
521
|
+
'LTSUGAR_VERSION' => 1,
|
|
522
|
+
'LTVERSION_VERSION' => 1,
|
|
523
|
+
'LT_AC_PROG_EGREP' => 1,
|
|
524
|
+
'LT_AC_PROG_GCJ' => 1,
|
|
525
|
+
'LT_AC_PROG_RC' => 1,
|
|
526
|
+
'LT_AC_PROG_SED' => 1,
|
|
527
|
+
'LT_CMD_MAX_LEN' => 1,
|
|
528
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
529
|
+
'LT_FUNC_ARGZ' => 1,
|
|
530
|
+
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
531
|
+
'LT_INIT' => 1,
|
|
532
|
+
'LT_LANG' => 1,
|
|
533
|
+
'LT_LIB_DLLOAD' => 1,
|
|
534
|
+
'LT_LIB_M' => 1,
|
|
535
|
+
'LT_OUTPUT' => 1,
|
|
536
|
+
'LT_PATH_LD' => 1,
|
|
537
|
+
'LT_PATH_NM' => 1,
|
|
538
|
+
'LT_PROG_GCJ' => 1,
|
|
539
|
+
'LT_PROG_GO' => 1,
|
|
540
|
+
'LT_PROG_RC' => 1,
|
|
541
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
542
|
+
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
543
|
+
'LT_SYS_DLOPEN_SELF' => 1,
|
|
544
|
+
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
545
|
+
'LT_SYS_MODULE_EXT' => 1,
|
|
546
|
+
'LT_SYS_MODULE_PATH' => 1,
|
|
547
|
+
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
548
|
+
'LT_WITH_LTDL' => 1,
|
|
549
|
+
'PKG_CHECK_EXISTS' => 1,
|
|
550
|
+
'PKG_CHECK_MODULES' => 1,
|
|
551
|
+
'PKG_CHECK_MODULES_STATIC' => 1,
|
|
552
|
+
'PKG_CHECK_VAR' => 1,
|
|
553
|
+
'PKG_HAVE_DEFINE_WITH_MODULES' => 1,
|
|
554
|
+
'PKG_HAVE_WITH_MODULES' => 1,
|
|
555
|
+
'PKG_INSTALLDIR' => 1,
|
|
556
|
+
'PKG_INSTALLDIR_COMPAT' => 1,
|
|
557
|
+
'PKG_NOARCH_INSTALLDIR' => 1,
|
|
558
|
+
'PKG_PROG_PKG_CONFIG' => 1,
|
|
559
|
+
'PKG_PROG_PKG_CONFIG_COMPAT' => 1,
|
|
560
|
+
'PKG_WITH_MODULES' => 1,
|
|
561
|
+
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
562
|
+
'_AC_INCLUDES_DEFAULT_REQUIREMENTS' => 1,
|
|
563
|
+
'_AC_PROG_CC_C11' => 1,
|
|
564
|
+
'_AC_PROG_LIBTOOL' => 1,
|
|
565
|
+
'_AM_AUTOCONF_VERSION' => 1,
|
|
566
|
+
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
567
|
+
'_AM_DEPENDENCIES' => 1,
|
|
568
|
+
'_AM_FILESYSTEM_TIMESTAMP_RESOLUTION' => 1,
|
|
569
|
+
'_AM_IF_OPTION' => 1,
|
|
570
|
+
'_AM_MANGLE_OPTION' => 1,
|
|
571
|
+
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
572
|
+
'_AM_PROG_CC_C_O' => 1,
|
|
573
|
+
'_AM_PROG_RM_F' => 1,
|
|
574
|
+
'_AM_PROG_TAR' => 1,
|
|
575
|
+
'_AM_PROG_XARGS_N' => 1,
|
|
576
|
+
'_AM_SET_OPTION' => 1,
|
|
577
|
+
'_AM_SET_OPTIONS' => 1,
|
|
578
|
+
'_AM_SILENT_RULES' => 1,
|
|
579
|
+
'_AM_SLEEP_FRACTIONAL_SECONDS' => 1,
|
|
580
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
581
|
+
'_AX_CHECK_VSCRIPT' => 1,
|
|
582
|
+
'_LTDL_SETUP' => 1,
|
|
583
|
+
'_LT_AC_CHECK_DLFCN' => 1,
|
|
584
|
+
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
585
|
+
'_LT_AC_LANG_CXX' => 1,
|
|
586
|
+
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
|
587
|
+
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
588
|
+
'_LT_AC_LANG_F77' => 1,
|
|
589
|
+
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
590
|
+
'_LT_AC_LANG_GCJ' => 1,
|
|
591
|
+
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
592
|
+
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
593
|
+
'_LT_AC_LOCK' => 1,
|
|
594
|
+
'_LT_AC_PROG_CXXCPP' => 1,
|
|
595
|
+
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
596
|
+
'_LT_AC_SHELL_INIT' => 1,
|
|
597
|
+
'_LT_AC_SYS_COMPILER' => 1,
|
|
598
|
+
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
599
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
600
|
+
'_LT_AC_TAGVAR' => 1,
|
|
601
|
+
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
602
|
+
'_LT_CC_BASENAME' => 1,
|
|
603
|
+
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
604
|
+
'_LT_COMPILER_OPTION' => 1,
|
|
605
|
+
'_LT_DLL_DEF_P' => 1,
|
|
606
|
+
'_LT_LIBOBJ' => 1,
|
|
607
|
+
'_LT_LINKER_BOILERPLATE' => 1,
|
|
608
|
+
'_LT_LINKER_OPTION' => 1,
|
|
609
|
+
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
610
|
+
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
611
|
+
'_LT_PROG_CXX' => 1,
|
|
612
|
+
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
613
|
+
'_LT_PROG_F77' => 1,
|
|
614
|
+
'_LT_PROG_FC' => 1,
|
|
615
|
+
'_LT_PROG_LTMAIN' => 1,
|
|
616
|
+
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
617
|
+
'_LT_WITH_SYSROOT' => 1,
|
|
618
|
+
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
619
|
+
'_m4_warn' => 1,
|
|
620
|
+
'include' => 1,
|
|
621
|
+
'm4_include' => 1,
|
|
622
|
+
'm4_pattern_allow' => 1,
|
|
623
|
+
'm4_pattern_forbid' => 1,
|
|
624
|
+
'zw_ASAN_IFELSE' => 1,
|
|
625
|
+
'zw_C_ALIGNAS' => 1,
|
|
626
|
+
'zw_C_ALIGNOF' => 1,
|
|
627
|
+
'zw_C_ENDIANNESS' => 1,
|
|
628
|
+
'zw_C_MAX_ALIGN_T' => 1,
|
|
629
|
+
'zw_C_STATIC_ASSERT' => 1,
|
|
630
|
+
'zw_PROG_LD_WRAP' => 1,
|
|
631
|
+
'zw_PROG_PERL' => 1,
|
|
632
|
+
'zw_SIMPLE_ENABLE_WARNINGS' => 1
|
|
633
|
+
}
|
|
634
|
+
], 'Autom4te::Request' ),
|
|
635
|
+
bless( [
|
|
636
|
+
'3',
|
|
637
|
+
1,
|
|
638
|
+
[
|
|
639
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf'
|
|
640
|
+
],
|
|
641
|
+
[
|
|
642
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf/autoconf/autoconf.m4f',
|
|
643
|
+
'aclocal.m4',
|
|
644
|
+
'/opt/homebrew/Cellar/autoconf/2.72/share/autoconf/autoconf/trailer.m4',
|
|
645
|
+
'configure.ac'
|
|
646
|
+
],
|
|
647
|
+
{
|
|
648
|
+
'AC_CANONICAL_BUILD' => 1,
|
|
649
|
+
'AC_CANONICAL_HOST' => 1,
|
|
650
|
+
'AC_CANONICAL_SYSTEM' => 1,
|
|
651
|
+
'AC_CANONICAL_TARGET' => 1,
|
|
652
|
+
'AC_CONFIG_AUX_DIR' => 1,
|
|
653
|
+
'AC_CONFIG_FILES' => 1,
|
|
654
|
+
'AC_CONFIG_HEADERS' => 1,
|
|
655
|
+
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
|
656
|
+
'AC_CONFIG_LINKS' => 1,
|
|
657
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
658
|
+
'AC_CONFIG_SUBDIRS' => 1,
|
|
659
|
+
'AC_DEFINE_TRACE_LITERAL' => 1,
|
|
660
|
+
'AC_FC_FREEFORM' => 1,
|
|
661
|
+
'AC_FC_PP_DEFINE' => 1,
|
|
662
|
+
'AC_FC_PP_SRCEXT' => 1,
|
|
663
|
+
'AC_FC_SRCEXT' => 1,
|
|
664
|
+
'AC_INIT' => 1,
|
|
665
|
+
'AC_LIBSOURCE' => 1,
|
|
666
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
667
|
+
'AC_REQUIRE_AUX_FILE' => 1,
|
|
668
|
+
'AC_SUBST' => 1,
|
|
669
|
+
'AC_SUBST_TRACE' => 1,
|
|
670
|
+
'AH_OUTPUT' => 1,
|
|
671
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
672
|
+
'AM_CONDITIONAL' => 1,
|
|
673
|
+
'AM_ENABLE_MULTILIB' => 1,
|
|
674
|
+
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
675
|
+
'AM_GNU_GETTEXT' => 1,
|
|
676
|
+
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
|
677
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
678
|
+
'AM_MAINTAINER_MODE' => 1,
|
|
679
|
+
'AM_MAKEFILE_INCLUDE' => 1,
|
|
680
|
+
'AM_NLS' => 1,
|
|
681
|
+
'AM_PATH_GUILE' => 1,
|
|
682
|
+
'AM_POT_TOOLS' => 1,
|
|
683
|
+
'AM_PROG_AR' => 1,
|
|
684
|
+
'AM_PROG_CC_C_O' => 1,
|
|
685
|
+
'AM_PROG_CXX_C_O' => 1,
|
|
686
|
+
'AM_PROG_F77_C_O' => 1,
|
|
687
|
+
'AM_PROG_FC_C_O' => 1,
|
|
688
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
689
|
+
'AM_PROG_MKDIR_P' => 1,
|
|
690
|
+
'AM_PROG_MOC' => 1,
|
|
691
|
+
'AM_SILENT_RULES' => 1,
|
|
692
|
+
'AM_XGETTEXT_OPTION' => 1,
|
|
693
|
+
'GTK_DOC_CHECK' => 1,
|
|
694
|
+
'IT_PROG_INTLTOOL' => 1,
|
|
695
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
696
|
+
'LT_INIT' => 1,
|
|
697
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
698
|
+
'_AM_COND_ELSE' => 1,
|
|
699
|
+
'_AM_COND_ENDIF' => 1,
|
|
700
|
+
'_AM_COND_IF' => 1,
|
|
701
|
+
'_AM_MAKEFILE_INCLUDE' => 1,
|
|
702
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
703
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
704
|
+
'_m4_warn' => 1,
|
|
705
|
+
'include' => 1,
|
|
706
|
+
'm4_include' => 1,
|
|
707
|
+
'm4_pattern_allow' => 1,
|
|
708
|
+
'm4_pattern_forbid' => 1,
|
|
709
|
+
'm4_sinclude' => 1,
|
|
710
|
+
'sinclude' => 1
|
|
711
|
+
}
|
|
712
|
+
], 'Autom4te::Request' )
|
|
713
|
+
);
|
|
714
|
+
|