xcrypt 0.1.0 → 0.1.2

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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/lib/xcrypt/version.rb +1 -1
  3. data/lib/xcrypt.rb +160 -0
  4. metadata +17 -39
  5. data/ext/libxcrypt/INSTALL +0 -380
  6. data/ext/libxcrypt/Makefile.in +0 -4110
  7. data/ext/libxcrypt/TODO +0 -1
  8. data/ext/libxcrypt/TODO.md +0 -100
  9. data/ext/libxcrypt/aclocal.m4 +0 -2617
  10. data/ext/libxcrypt/autom4te.cache/output.0 +0 -19884
  11. data/ext/libxcrypt/autom4te.cache/output.1 +0 -19884
  12. data/ext/libxcrypt/autom4te.cache/output.2 +0 -19884
  13. data/ext/libxcrypt/autom4te.cache/output.3 +0 -19885
  14. data/ext/libxcrypt/autom4te.cache/requests +0 -714
  15. data/ext/libxcrypt/autom4te.cache/traces.0 +0 -4088
  16. data/ext/libxcrypt/autom4te.cache/traces.1 +0 -1060
  17. data/ext/libxcrypt/autom4te.cache/traces.2 +0 -4088
  18. data/ext/libxcrypt/autom4te.cache/traces.3 +0 -1060
  19. data/ext/libxcrypt/build-aux/ci/ci-log-dependency-versions +0 -79
  20. data/ext/libxcrypt/build-aux/ci/ci-log-logfiles +0 -22
  21. data/ext/libxcrypt/build-aux/ci/clang-gcov-wrapper +0 -2
  22. data/ext/libxcrypt/build-aux/ci/configure-wrapper +0 -10
  23. data/ext/libxcrypt/build-aux/ci/summarize-coverage +0 -24
  24. data/ext/libxcrypt/build-aux/m4/libtool.m4 +0 -8488
  25. data/ext/libxcrypt/build-aux/m4/ltoptions.m4 +0 -467
  26. data/ext/libxcrypt/build-aux/m4/ltsugar.m4 +0 -124
  27. data/ext/libxcrypt/build-aux/m4/ltversion.m4 +0 -24
  28. data/ext/libxcrypt/build-aux/m4/lt~obsolete.m4 +0 -99
  29. data/ext/libxcrypt/build-aux/m4-autogen/compile +0 -364
  30. data/ext/libxcrypt/build-aux/m4-autogen/config.guess +0 -1815
  31. data/ext/libxcrypt/build-aux/m4-autogen/config.sub +0 -2354
  32. data/ext/libxcrypt/build-aux/m4-autogen/depcomp +0 -792
  33. data/ext/libxcrypt/build-aux/m4-autogen/install-sh +0 -541
  34. data/ext/libxcrypt/build-aux/m4-autogen/ltmain.sh +0 -11524
  35. data/ext/libxcrypt/build-aux/m4-autogen/missing +0 -236
  36. data/ext/libxcrypt/build-aux/m4-autogen/test-driver +0 -160
  37. data/ext/libxcrypt/codecov.yml +0 -4
  38. data/ext/libxcrypt/config.h.in +0 -303
  39. data/ext/libxcrypt/configure +0 -19885
  40. data/ext/libxcrypt/libxcrypt.spec.rpkg +0 -481
  41. data/ext/libxcrypt/rpkg.conf +0 -2
  42. data/ext/libxcrypt/rpkg.macros +0 -86
@@ -1,236 +0,0 @@
1
- #! /bin/sh
2
- # Common wrapper for a few potentially missing GNU and other programs.
3
-
4
- scriptversion=2024-12-03.03; # UTC
5
-
6
- # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells
7
-
8
- # Copyright (C) 1996-2025 Free Software Foundation, Inc.
9
- # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
10
-
11
- # This program is free software; you can redistribute it and/or modify
12
- # it under the terms of the GNU General Public License as published by
13
- # the Free Software Foundation; either version 2, or (at your option)
14
- # any later version.
15
-
16
- # This program is distributed in the hope that it will be useful,
17
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- # GNU General Public License for more details.
20
-
21
- # You should have received a copy of the GNU General Public License
22
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
23
-
24
- # As a special exception to the GNU General Public License, if you
25
- # distribute this file as part of a program that contains a
26
- # configuration script generated by Autoconf, you may include it under
27
- # the same distribution terms that you use for the rest of that program.
28
-
29
- if test $# -eq 0; then
30
- echo 1>&2 "Try '$0 --help' for more information"
31
- exit 1
32
- fi
33
-
34
- case $1 in
35
-
36
- --is-lightweight)
37
- # Used by our autoconf macros to check whether the available missing
38
- # script is modern enough.
39
- exit 0
40
- ;;
41
-
42
- --run)
43
- # Back-compat with the calling convention used by older automake.
44
- shift
45
- ;;
46
-
47
- -h|--h|--he|--hel|--help)
48
- echo "\
49
- $0 [OPTION]... PROGRAM [ARGUMENT]...
50
-
51
- Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
52
- to PROGRAM being missing or too old.
53
-
54
- Options:
55
- -h, --help display this help and exit
56
- -v, --version output version information and exit
57
-
58
- Supported PROGRAM values:
59
- aclocal autoconf autogen autoheader autom4te automake autoreconf
60
- bison flex help2man lex makeinfo perl yacc
61
-
62
- Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
63
- 'g' are ignored when checking the name.
64
-
65
- Report bugs to <bug-automake@gnu.org>.
66
- GNU Automake home page: <https://www.gnu.org/software/automake/>.
67
- General help using GNU software: <https://www.gnu.org/gethelp/>."
68
- exit $?
69
- ;;
70
-
71
- -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
72
- echo "missing (GNU Automake) $scriptversion"
73
- exit $?
74
- ;;
75
-
76
- -*)
77
- echo 1>&2 "$0: unknown '$1' option"
78
- echo 1>&2 "Try '$0 --help' for more information"
79
- exit 1
80
- ;;
81
-
82
- esac
83
-
84
- # Run the given program, remember its exit status.
85
- "$@"; st=$?
86
-
87
- # If it succeeded, we are done.
88
- test $st -eq 0 && exit 0
89
-
90
- # Also exit now if we it failed (or wasn't found), and '--version' was
91
- # passed; such an option is passed most likely to detect whether the
92
- # program is present and works.
93
- case $2 in --version|--help) exit $st;; esac
94
-
95
- # Exit code 63 means version mismatch. This often happens when the user
96
- # tries to use an ancient version of a tool on a file that requires a
97
- # minimum version.
98
- if test $st -eq 63; then
99
- msg="probably too old"
100
- elif test $st -eq 127; then
101
- # Program was missing.
102
- msg="missing on your system"
103
- else
104
- # Program was found and executed, but failed. Give up.
105
- exit $st
106
- fi
107
-
108
- perl_URL=https://www.perl.org/
109
- flex_URL=https://github.com/westes/flex
110
- gnu_software_URL=https://www.gnu.org/software
111
-
112
- program_details ()
113
- {
114
- case $1 in
115
- aclocal|automake|autoreconf)
116
- echo "The '$1' program is part of the GNU Automake package:"
117
- echo "<$gnu_software_URL/automake>"
118
- echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
119
- echo "<$gnu_software_URL/autoconf>"
120
- echo "<$gnu_software_URL/m4/>"
121
- echo "<$perl_URL>"
122
- ;;
123
- autoconf|autom4te|autoheader)
124
- echo "The '$1' program is part of the GNU Autoconf package:"
125
- echo "<$gnu_software_URL/autoconf/>"
126
- echo "It also requires GNU m4 and Perl in order to run:"
127
- echo "<$gnu_software_URL/m4/>"
128
- echo "<$perl_URL>"
129
- ;;
130
- *)
131
- :
132
- ;;
133
- esac
134
- }
135
-
136
- give_advice ()
137
- {
138
- # Normalize program name to check for.
139
- normalized_program=`echo "$1" | sed '
140
- s/^gnu-//; t
141
- s/^gnu//; t
142
- s/^g//; t'`
143
-
144
- printf '%s\n' "'$1' is $msg."
145
-
146
- configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
147
- autoheader_deps="'acconfig.h'"
148
- automake_deps="'Makefile.am'"
149
- aclocal_deps="'acinclude.m4'"
150
- case $normalized_program in
151
- aclocal*)
152
- echo "You should only need it if you modified $aclocal_deps or"
153
- echo "$configure_deps."
154
- ;;
155
- autoconf*)
156
- echo "You should only need it if you modified $configure_deps."
157
- ;;
158
- autogen*)
159
- echo "You should only need it if you modified a '.def' or '.tpl' file."
160
- echo "You may want to install the GNU AutoGen package:"
161
- echo "<$gnu_software_URL/autogen/>"
162
- ;;
163
- autoheader*)
164
- echo "You should only need it if you modified $autoheader_deps or"
165
- echo "$configure_deps."
166
- ;;
167
- automake*)
168
- echo "You should only need it if you modified $automake_deps or"
169
- echo "$configure_deps."
170
- ;;
171
- autom4te*)
172
- echo "You might have modified some maintainer files that require"
173
- echo "the 'autom4te' program to be rebuilt."
174
- ;;
175
- autoreconf*)
176
- echo "You should only need it if you modified $aclocal_deps or"
177
- echo "$automake_deps or $autoheader_deps or $automake_deps or"
178
- echo "$configure_deps."
179
- ;;
180
- bison*|yacc*)
181
- echo "You should only need it if you modified a '.y' file."
182
- echo "You may want to install the GNU Bison package:"
183
- echo "<$gnu_software_URL/bison/>"
184
- ;;
185
- help2man*)
186
- echo "You should only need it if you modified a dependency" \
187
- "of a man page."
188
- echo "You may want to install the GNU Help2man package:"
189
- echo "<$gnu_software_URL/help2man/>"
190
- ;;
191
- lex*|flex*)
192
- echo "You should only need it if you modified a '.l' file."
193
- echo "You may want to install the Fast Lexical Analyzer package:"
194
- echo "<$flex_URL>"
195
- ;;
196
- makeinfo*)
197
- echo "You should only need it if you modified a '.texi' file, or"
198
- echo "any other file indirectly affecting the aspect of the manual."
199
- echo "You might want to install the Texinfo package:"
200
- echo "<$gnu_software_URL/texinfo/>"
201
- echo "The spurious makeinfo call might also be the consequence of"
202
- echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
203
- echo "want to install GNU make:"
204
- echo "<$gnu_software_URL/make/>"
205
- ;;
206
- perl*)
207
- echo "You should only need it to run GNU Autoconf, GNU Automake, "
208
- echo " assorted other tools, or if you modified a Perl source file."
209
- echo "You may want to install the Perl 5 language interpreter:"
210
- echo "<$perl_URL>"
211
- ;;
212
- *)
213
- echo "You might have modified some files without having the proper"
214
- echo "tools for further handling them. Check the 'README' file, it"
215
- echo "often tells you about the needed prerequisites for installing"
216
- echo "this package. You may also peek at any GNU archive site, in"
217
- echo "case some other package contains this missing '$1' program."
218
- ;;
219
- esac
220
- program_details "$normalized_program"
221
- }
222
-
223
- give_advice "$1" | sed -e '1s/^/WARNING: /' \
224
- -e '2,$s/^/ /' >&2
225
-
226
- # Propagate the correct exit status (expected to be 127 for a program
227
- # not found, 63 for a program that failed due to version mismatch).
228
- exit $st
229
-
230
- # Local variables:
231
- # eval: (add-hook 'before-save-hook 'time-stamp nil t)
232
- # time-stamp-start: "scriptversion="
233
- # time-stamp-format: "%:y-%02m-%02d.%02H"
234
- # time-stamp-time-zone: "UTC0"
235
- # time-stamp-end: "; # UTC"
236
- # End:
@@ -1,160 +0,0 @@
1
- #! /bin/sh
2
- # test-driver - basic testsuite driver script.
3
-
4
- scriptversion=2024-12-03.03; # UTC
5
-
6
- # Copyright (C) 2011-2025 Free Software Foundation, Inc.
7
- #
8
- # This program is free software; you can redistribute it and/or modify
9
- # it under the terms of the GNU General Public License as published by
10
- # the Free Software Foundation; either version 2, or (at your option)
11
- # any later version.
12
- #
13
- # This program is distributed in the hope that it will be useful,
14
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
- # GNU General Public License for more details.
17
- #
18
- # You should have received a copy of the GNU General Public License
19
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
20
-
21
- # As a special exception to the GNU General Public License, if you
22
- # distribute this file as part of a program that contains a
23
- # configuration script generated by Autoconf, you may include it under
24
- # the same distribution terms that you use for the rest of that program.
25
-
26
- # This file is maintained in Automake, please report
27
- # bugs to <bug-automake@gnu.org> or send patches to
28
- # <automake-patches@gnu.org>.
29
-
30
- # Make unconditional expansion of undefined variables an error. This
31
- # helps a lot in preventing typo-related bugs.
32
- set -u
33
-
34
- usage_error ()
35
- {
36
- echo "$0: $*" >&2
37
- print_usage >&2
38
- exit 2
39
- }
40
-
41
- print_usage ()
42
- {
43
- cat <<END
44
- Usage:
45
- test-driver --test-name NAME --log-file PATH --trs-file PATH
46
- [--expect-failure {yes|no}] [--color-tests {yes|no}]
47
- [--collect-skipped-logs {yes|no}]
48
- [--enable-hard-errors {yes|no}] [--]
49
- TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS]
50
-
51
- The '--test-name', '--log-file' and '--trs-file' options are mandatory.
52
- See the GNU Automake documentation for information.
53
-
54
- Report bugs to <bug-automake@gnu.org>.
55
- GNU Automake home page: <https://www.gnu.org/software/automake/>.
56
- General help using GNU software: <https://www.gnu.org/gethelp/>.
57
- END
58
- }
59
-
60
- test_name= # Used for reporting.
61
- log_file= # Where to save the output of the test script.
62
- trs_file= # Where to save the metadata of the test run.
63
- expect_failure=no
64
- color_tests=no
65
- collect_skipped_logs=yes
66
- enable_hard_errors=yes
67
- while test $# -gt 0; do
68
- case $1 in
69
- --help) print_usage; exit $?;;
70
- --version) echo "test-driver (GNU Automake) $scriptversion"; exit $?;;
71
- --test-name) test_name=$2; shift;;
72
- --log-file) log_file=$2; shift;;
73
- --trs-file) trs_file=$2; shift;;
74
- --color-tests) color_tests=$2; shift;;
75
- --collect-skipped-logs) collect_skipped_logs=$2; shift;;
76
- --expect-failure) expect_failure=$2; shift;;
77
- --enable-hard-errors) enable_hard_errors=$2; shift;;
78
- --) shift; break;;
79
- -*) usage_error "invalid option: '$1'";;
80
- *) break;;
81
- esac
82
- shift
83
- done
84
-
85
- missing_opts=
86
- test x"$test_name" = x && missing_opts="$missing_opts --test-name"
87
- test x"$log_file" = x && missing_opts="$missing_opts --log-file"
88
- test x"$trs_file" = x && missing_opts="$missing_opts --trs-file"
89
- if test x"$missing_opts" != x; then
90
- usage_error "the following mandatory options are missing:$missing_opts"
91
- fi
92
-
93
- if test $# -eq 0; then
94
- usage_error "missing argument"
95
- fi
96
-
97
- if test $color_tests = yes; then
98
- # Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
99
- red='' # Red.
100
- grn='' # Green.
101
- lgn='' # Light green.
102
- blu='' # Blue.
103
- mgn='' # Magenta.
104
- std='' # No color.
105
- else
106
- red= grn= lgn= blu= mgn= std=
107
- fi
108
-
109
- do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
110
- trap "st=129; $do_exit" 1
111
- trap "st=130; $do_exit" 2
112
- trap "st=141; $do_exit" 13
113
- trap "st=143; $do_exit" 15
114
-
115
- # Test script is run here. We create the file first, then append to it,
116
- # to ameliorate tests themselves also writing to the log file. Our tests
117
- # don't, but others can (automake bug#35762).
118
- : >"$log_file"
119
- "$@" >>"$log_file" 2>&1
120
- estatus=$?
121
-
122
- if test $enable_hard_errors = no && test $estatus -eq 99; then
123
- tweaked_estatus=1
124
- else
125
- tweaked_estatus=$estatus
126
- fi
127
-
128
- case $tweaked_estatus:$expect_failure in
129
- 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
130
- 0:*) col=$grn res=PASS recheck=no gcopy=no;;
131
- 77:*) col=$blu res=SKIP recheck=no gcopy=$collect_skipped_logs;;
132
- 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
133
- *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
134
- *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
135
- esac
136
-
137
- # Report the test outcome and exit status in the logs, so that one can
138
- # know whether the test passed or failed simply by looking at the '.log'
139
- # file, without the need of also peaking into the corresponding '.trs'
140
- # file (automake bug#11814).
141
- echo "$res $test_name (exit status: $estatus)" >>"$log_file"
142
-
143
- # Report outcome to console.
144
- echo "${col}${res}${std}: $test_name"
145
-
146
- # Register the test result, and other relevant metadata.
147
- echo ":test-result: $res" > $trs_file
148
- echo ":global-test-result: $res" >> $trs_file
149
- echo ":recheck: $recheck" >> $trs_file
150
- echo ":copy-in-global-log: $gcopy" >> $trs_file
151
-
152
- # Local Variables:
153
- # mode: shell-script
154
- # sh-indentation: 2
155
- # eval: (add-hook 'before-save-hook 'time-stamp nil t)
156
- # time-stamp-start: "scriptversion="
157
- # time-stamp-format: "%:y-%02m-%02d.%02H"
158
- # time-stamp-time-zone: "UTC0"
159
- # time-stamp-end: "; # UTC"
160
- # End:
@@ -1,4 +0,0 @@
1
- ignore:
2
- - "lib/gen-des-tables.c"
3
- - "test"
4
- - "/usr/**/*"
@@ -1,303 +0,0 @@
1
- /* config.h.in. Generated from configure.ac by autoheader. */
2
-
3
- #ifndef _CRYPT_CONFIG_H
4
- #define _CRYPT_CONFIG_H 1
5
-
6
- /* Define to 1 if crypt and crypt_r should return a "failure token" on
7
- failure, or 0 if they should return NULL. */
8
- #undef ENABLE_FAILURE_TOKENS
9
-
10
- /* Define as 1 if the obsolete APIs (fcrypt, encrypt, setkey) should be
11
- included, 0 otherwise. */
12
- #undef ENABLE_OBSOLETE_API
13
-
14
- /* Define to 1 if fcrypt, encrypt{,_r}, setkey{,_r} should set errno to
15
- ENOSYS, or 0 if they should perform real operations. */
16
- #undef ENABLE_OBSOLETE_API_ENOSYS
17
-
18
- /* Define as an #if expression that is true when compiling for a big-endian
19
- CPU. */
20
- #undef ENDIANNESS_IS_BIG
21
-
22
- /* Define as an #if expression that is true when compiling for a little-endian
23
- CPU. */
24
- #undef ENDIANNESS_IS_LITTLE
25
-
26
- /* Define as an #if expression that is true when compiling for a PDP-endian
27
- CPU. */
28
- #undef ENDIANNESS_IS_PDP
29
-
30
- /* Define to 1 if you have the 'arc4random_buf' function. */
31
- #undef HAVE_ARC4RANDOM_BUF
32
-
33
- /* Define to 1 if you have the <dlfcn.h> header file. */
34
- #undef HAVE_DLFCN_H
35
-
36
- /* Define to 1 if you have the <endian.h> header file. */
37
- #undef HAVE_ENDIAN_H
38
-
39
- /* Define to 1 if you have the 'explicit_bzero' function. */
40
- #undef HAVE_EXPLICIT_BZERO
41
-
42
- /* Define to 1 if you have the 'explicit_memset' function. */
43
- #undef HAVE_EXPLICIT_MEMSET
44
-
45
- /* Define to 1 if you have the <fcntl.h> header file. */
46
- #undef HAVE_FCNTL_H
47
-
48
- /* Define to 1 if the system has the `symver' function attribute */
49
- #undef HAVE_FUNC_ATTRIBUTE_SYMVER
50
-
51
- /* Define to 1 if you have the 'getentropy' function. */
52
- #undef HAVE_GETENTROPY
53
-
54
- /* Define to 1 if you have the 'getrandom' function. */
55
- #undef HAVE_GETRANDOM
56
-
57
- /* Define to 1 if you have the <inttypes.h> header file. */
58
- #undef HAVE_INTTYPES_H
59
-
60
- /* Define to 1 if -Wl,--wrap,SYMBOL can be used to intercept calls to SYMBOL
61
- at link time. */
62
- #undef HAVE_LD_WRAP
63
-
64
- /* Define if stddef.h provides max_align_t. */
65
- #undef HAVE_MAX_ALIGN_T
66
-
67
- /* Define to 1 if you have the 'memset_explicit' function. */
68
- #undef HAVE_MEMSET_EXPLICIT
69
-
70
- /* Define to 1 if you have the 'memset_s' function. */
71
- #undef HAVE_MEMSET_S
72
-
73
- /* Define to 1 if you have the <minix/config.h> header file. */
74
- #undef HAVE_MINIX_CONFIG_H
75
-
76
- /* Define to 1 if you have the 'open64' function. */
77
- #undef HAVE_OPEN64
78
-
79
- /* Define if <assert.h> defines static_assert. */
80
- #undef HAVE_STATIC_ASSERT_IN_ASSERT_H
81
-
82
- /* Define to 1 if you have the <stdbool.h> header file. */
83
- #undef HAVE_STDBOOL_H
84
-
85
- /* Define to 1 if you have the <stdint.h> header file. */
86
- #undef HAVE_STDINT_H
87
-
88
- /* Define to 1 if you have the <stdio.h> header file. */
89
- #undef HAVE_STDIO_H
90
-
91
- /* Define to 1 if you have the <stdlib.h> header file. */
92
- #undef HAVE_STDLIB_H
93
-
94
- /* Define to 1 if you have the <strings.h> header file. */
95
- #undef HAVE_STRINGS_H
96
-
97
- /* Define to 1 if you have the <string.h> header file. */
98
- #undef HAVE_STRING_H
99
-
100
- /* Define as 1 if symbol versioning is enabled and applied. */
101
- #undef HAVE_SYMVER
102
-
103
- /* Define to 1 if you have the 'syscall' function. */
104
- #undef HAVE_SYSCALL
105
-
106
- /* Define if <sys/cdefs.h> defines __BEGIN_DECLS and __END_DECLS. */
107
- #undef HAVE_SYS_CDEFS_BEGIN_END_DECLS
108
-
109
- /* Define to 1 if you have the <sys/cdefs.h> header file. */
110
- #undef HAVE_SYS_CDEFS_H
111
-
112
- /* Define if <sys/cdefs.h> defines __THROW. */
113
- #undef HAVE_SYS_CDEFS_THROW
114
-
115
- /* Define to 1 if you have the <sys/endian.h> header file. */
116
- #undef HAVE_SYS_ENDIAN_H
117
-
118
- /* Define to 1 if you have the <sys/param.h> header file. */
119
- #undef HAVE_SYS_PARAM_H
120
-
121
- /* Define to 1 if you have the <sys/random.h> header file. */
122
- #undef HAVE_SYS_RANDOM_H
123
-
124
- /* Define to 1 if you have the <sys/stat.h> header file. */
125
- #undef HAVE_SYS_STAT_H
126
-
127
- /* Define to 1 if you have the <sys/syscall.h> header file. */
128
- #undef HAVE_SYS_SYSCALL_H
129
-
130
- /* Define to 1 if you have the <sys/types.h> header file. */
131
- #undef HAVE_SYS_TYPES_H
132
-
133
- /* Define to 1 if you have the <ucontext.h> header file. */
134
- #undef HAVE_UCONTEXT_H
135
-
136
- /* Define to 1 if you have the <unistd.h> header file. */
137
- #undef HAVE_UNISTD_H
138
-
139
- /* Define to 1 if you have the <valgrind/valgrind.h> header file. */
140
- #undef HAVE_VALGRIND_VALGRIND_H
141
-
142
- /* Define to 1 if you have the <wchar.h> header file. */
143
- #undef HAVE_WCHAR_H
144
-
145
- /* Define if the compiler supports the _Static_assert intrinsic. */
146
- #undef HAVE__STATIC_ASSERT
147
-
148
- /* Define to the sub-directory where libtool stores uninstalled libraries. */
149
- #undef LT_OBJDIR
150
-
151
- /* Name of package */
152
- #undef PACKAGE
153
-
154
- /* Define to the address where bug reports for this package should be sent. */
155
- #undef PACKAGE_BUGREPORT
156
-
157
- /* Define to the full name of this package. */
158
- #undef PACKAGE_NAME
159
-
160
- /* Define to the full name and version of this package. */
161
- #undef PACKAGE_STRING
162
-
163
- /* Define to the one symbol short name of this package. */
164
- #undef PACKAGE_TARNAME
165
-
166
- /* Define to the home page for this package. */
167
- #undef PACKAGE_URL
168
-
169
- /* Define to the version of this package. */
170
- #undef PACKAGE_VERSION
171
-
172
- /* Define to 1 if all of the C89 standard headers exist (not just the ones
173
- required in a freestanding environment). This macro is provided for
174
- backward compatibility; new code need not use it. */
175
- #undef STDC_HEADERS
176
-
177
- /* Define as the lowest compatibility symbol version that is actually included
178
- in libcrypt.so. */
179
- #undef SYMVER_FLOOR
180
-
181
- /* Define to 1 if getcontext, setcontext, makecontext, and swapcontext are
182
- available from ucontext.h without deprecation warnings. */
183
- #undef USE_SWAPCONTEXT
184
-
185
- /* Enable extensions on AIX, Interix, z/OS. */
186
- #ifndef _ALL_SOURCE
187
- # undef _ALL_SOURCE
188
- #endif
189
- /* Enable general extensions on macOS. */
190
- #ifndef _DARWIN_C_SOURCE
191
- # undef _DARWIN_C_SOURCE
192
- #endif
193
- /* Enable general extensions on Solaris. */
194
- #ifndef __EXTENSIONS__
195
- # undef __EXTENSIONS__
196
- #endif
197
- /* Enable GNU extensions on systems that have them. */
198
- #ifndef _GNU_SOURCE
199
- # undef _GNU_SOURCE
200
- #endif
201
- /* Enable X/Open compliant socket functions that do not require linking
202
- with -lxnet on HP-UX 11.11. */
203
- #ifndef _HPUX_ALT_XOPEN_SOCKET_API
204
- # undef _HPUX_ALT_XOPEN_SOCKET_API
205
- #endif
206
- /* Identify the host operating system as Minix.
207
- This macro does not affect the system headers' behavior.
208
- A future release of Autoconf may stop defining this macro. */
209
- #ifndef _MINIX
210
- # undef _MINIX
211
- #endif
212
- /* Enable general extensions on NetBSD.
213
- Enable NetBSD compatibility extensions on Minix. */
214
- #ifndef _NETBSD_SOURCE
215
- # undef _NETBSD_SOURCE
216
- #endif
217
- /* Enable OpenBSD compatibility extensions on NetBSD.
218
- Oddly enough, this does nothing on OpenBSD. */
219
- #ifndef _OPENBSD_SOURCE
220
- # undef _OPENBSD_SOURCE
221
- #endif
222
- /* Define to 1 if needed for POSIX-compatible behavior. */
223
- #ifndef _POSIX_SOURCE
224
- # undef _POSIX_SOURCE
225
- #endif
226
- /* Define to 2 if needed for POSIX-compatible behavior. */
227
- #ifndef _POSIX_1_SOURCE
228
- # undef _POSIX_1_SOURCE
229
- #endif
230
- /* Enable POSIX-compatible threading on Solaris. */
231
- #ifndef _POSIX_PTHREAD_SEMANTICS
232
- # undef _POSIX_PTHREAD_SEMANTICS
233
- #endif
234
- /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
235
- #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
236
- # undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
237
- #endif
238
- /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
239
- #ifndef __STDC_WANT_IEC_60559_BFP_EXT__
240
- # undef __STDC_WANT_IEC_60559_BFP_EXT__
241
- #endif
242
- /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
243
- #ifndef __STDC_WANT_IEC_60559_DFP_EXT__
244
- # undef __STDC_WANT_IEC_60559_DFP_EXT__
245
- #endif
246
- /* Enable extensions specified by C23 Annex F. */
247
- #ifndef __STDC_WANT_IEC_60559_EXT__
248
- # undef __STDC_WANT_IEC_60559_EXT__
249
- #endif
250
- /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
251
- #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
252
- # undef __STDC_WANT_IEC_60559_FUNCS_EXT__
253
- #endif
254
- /* Enable extensions specified by C23 Annex H and ISO/IEC TS 18661-3:2015. */
255
- #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
256
- # undef __STDC_WANT_IEC_60559_TYPES_EXT__
257
- #endif
258
- /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
259
- #ifndef __STDC_WANT_LIB_EXT2__
260
- # undef __STDC_WANT_LIB_EXT2__
261
- #endif
262
- /* Enable extensions specified by ISO/IEC 24747:2009. */
263
- #ifndef __STDC_WANT_MATH_SPEC_FUNCS__
264
- # undef __STDC_WANT_MATH_SPEC_FUNCS__
265
- #endif
266
- /* Enable extensions on HP NonStop. */
267
- #ifndef _TANDEM_SOURCE
268
- # undef _TANDEM_SOURCE
269
- #endif
270
- /* Enable X/Open extensions. Define to 500 only if necessary
271
- to make mbstate_t available. */
272
- #ifndef _XOPEN_SOURCE
273
- # undef _XOPEN_SOURCE
274
- #endif
275
-
276
-
277
- /* Version number of package */
278
- #undef VERSION
279
-
280
- /* Define when compiling with ASan. Only affects tests. */
281
- #undef XCRYPT_USE_ASAN
282
-
283
- /* Number of bits in a file offset, on hosts where this is settable. */
284
- #undef _FILE_OFFSET_BITS
285
-
286
- /* Define to 1 on platforms where this makes off_t a 64-bit type. */
287
- #undef _LARGE_FILES
288
-
289
- /* Number of bits in time_t, on hosts where this is settable. */
290
- #undef _TIME_BITS
291
-
292
- /* Define to 1 on platforms where this makes time_t a 64-bit type. */
293
- #undef __MINGW_USE_VC2005_COMPAT
294
-
295
- /* Define as a type specifier which sets the alignment of a variable or type
296
- to N bytes. C11 alignas(TYPE) does not need to be supported. */
297
- #undef alignas
298
-
299
- /* Define as an expression which evaluates to the alignment of THING. Must be
300
- computed at compile time (an "integer constant expression"). */
301
- #undef alignof
302
-
303
- #endif /* config.h */