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,239 @@
|
|
|
1
|
+
2018-01-27 Zack Weinberg <zackw@panix.com>
|
|
2
|
+
|
|
3
|
+
* Version 4.0.0 released.
|
|
4
|
+
|
|
5
|
+
* This project no longer maintains a GNU-style ChangeLog file.
|
|
6
|
+
See the Git commit history for detailed changes since 3.1.1.
|
|
7
|
+
|
|
8
|
+
2015-05-13 Björn Esser <besser82@fedoraproject.org>
|
|
9
|
+
|
|
10
|
+
* release version 3.1.1
|
|
11
|
+
|
|
12
|
+
* README.bcrypt: whitespace clean-up
|
|
13
|
+
* src/crypt-private.h
|
|
14
|
+
|
|
15
|
+
* configure.ac: add '--enable-Wno-cast-align' to silence 'cast
|
|
16
|
+
increases required alignment'
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
2015-05-12 Björn Esser <besser82@fedoraproject.org>
|
|
20
|
+
|
|
21
|
+
* release version 3.1.0
|
|
22
|
+
|
|
23
|
+
* configure.ac: update upstream-contact
|
|
24
|
+
|
|
25
|
+
* configure.ac: add './configure --enable-bootstrap' to skip some
|
|
26
|
+
tests on initial build
|
|
27
|
+
* src/Makefile.am
|
|
28
|
+
|
|
29
|
+
* bootstrap.sh: add bootstrap-script
|
|
30
|
+
|
|
31
|
+
* LICENSE.bcrypt: add LICENSE for bcrypt
|
|
32
|
+
* Makefile.am
|
|
33
|
+
|
|
34
|
+
* plugins/blowfish/Makefile.am: update crypt_blowfish to v1.3
|
|
35
|
+
* plugins/blowfish/blowfish-test.c
|
|
36
|
+
* plugins/blowfish/crypt_blowfish.c
|
|
37
|
+
* plugins/blowfish/crypt_blowfish.h
|
|
38
|
+
* plugins/blowfish/ow-crypt.h
|
|
39
|
+
|
|
40
|
+
* configure.ac: add '-Wextra' to CFLAGS
|
|
41
|
+
|
|
42
|
+
* plugins/md5/md5.c: fix '-Werror=strict-aliasing'
|
|
43
|
+
* plugins/sha256/sha256.c
|
|
44
|
+
* plugins/sha512/sha512.c
|
|
45
|
+
|
|
46
|
+
* src/cert.c: fix '-Werror=unused-result'
|
|
47
|
+
|
|
48
|
+
* configure.in --> configure.ac: update Autotools
|
|
49
|
+
* Makefile.am
|
|
50
|
+
* m4/
|
|
51
|
+
* plugins/blowfish/Makefile.am
|
|
52
|
+
* plugins/md5/Makefile.am
|
|
53
|
+
* plugins/sha256/Makefile.am
|
|
54
|
+
* plugins/sha512/Makefile.am
|
|
55
|
+
* src/Makefile.am
|
|
56
|
+
|
|
57
|
+
2011-05-10 Thorsten Kukuk <kukuk@suse.de>
|
|
58
|
+
|
|
59
|
+
* release version 3.0.4
|
|
60
|
+
|
|
61
|
+
* src/cert.c (get8): Don't save return value we never use.
|
|
62
|
+
|
|
63
|
+
2009-10-29 Thorsten Kukuk <kukuk@suse.de>
|
|
64
|
+
|
|
65
|
+
* release version 3.0.3
|
|
66
|
+
|
|
67
|
+
* src/xcrypt.c (__xcrypt_gensalt_r): Fix memory leak [bnc#547893].
|
|
68
|
+
|
|
69
|
+
2008-11-04 Thorsten Kukuk <kukuk@suse.de>
|
|
70
|
+
|
|
71
|
+
* plugins/blowfish/blowfish-test.c (run): Fix compiler
|
|
72
|
+
warnings [bnc#440134].
|
|
73
|
+
|
|
74
|
+
2008-09-28 Thorsten Kukuk <kukuk@suse.de>
|
|
75
|
+
|
|
76
|
+
* src/xcrypt-private.h: Add prototype for _xcrypt_gensalt_sha256_rn
|
|
77
|
+
and _xcrypt_gensalt_sha512_rn.
|
|
78
|
+
* src/crypt_gensalt.c: Add new gensalt functions.
|
|
79
|
+
* src/xcrypt.c: Use gensalt functions for sha512 and sha256.
|
|
80
|
+
* src/gensalt-test.c: Enable test cases for sha256 and sha512.
|
|
81
|
+
|
|
82
|
+
2008-07-16 Thorsten Kukuk <kukuk@suse.de>
|
|
83
|
+
|
|
84
|
+
* release version 3.0.2
|
|
85
|
+
|
|
86
|
+
* src/xcrypt.c (__xcrypt_gensalt_r): Handle special
|
|
87
|
+
MD5 case.
|
|
88
|
+
* src/gensalt-test.c: New test case.
|
|
89
|
+
* src/Makefile.am: Add gensalt-test as new test case.
|
|
90
|
+
|
|
91
|
+
2008-06-24 Thorsten Kukuk <kukuk@suse.de>
|
|
92
|
+
|
|
93
|
+
* release version 3.0.1
|
|
94
|
+
|
|
95
|
+
* plugins/md5/md5.c: Fix undefined macros.
|
|
96
|
+
* plugins/sha256/sha256.c: Likewise.
|
|
97
|
+
* plugins/sha512/sha512.c: Likewise.
|
|
98
|
+
|
|
99
|
+
2008-02-15 Thorsten Kukuk <kukuk@suse.de>
|
|
100
|
+
|
|
101
|
+
* release version 3.0
|
|
102
|
+
|
|
103
|
+
* plugins/*: Move all crypt related code into plugins.
|
|
104
|
+
* plugins/sha256: New, $5$ aka sha256 hash.
|
|
105
|
+
* plugins/sha512: New, $6$ aka sha512 hash.
|
|
106
|
+
|
|
107
|
+
* src/sha.c: Removed.
|
|
108
|
+
* src/sha-crypt.c: Likewise.
|
|
109
|
+
|
|
110
|
+
* src/xcrypt.h: Add __nonnull.
|
|
111
|
+
|
|
112
|
+
* src/crypt_util.c: Sync with glibc 2.7.
|
|
113
|
+
|
|
114
|
+
* src/xcrypt.c: Load all hashes except DES dynamic.
|
|
115
|
+
|
|
116
|
+
* src/Makefile.am: increase version of shared library.
|
|
117
|
+
|
|
118
|
+
2006-01-06 Thorsten Kukuk <kukuk@suse.de>
|
|
119
|
+
|
|
120
|
+
* release version 2.4
|
|
121
|
+
|
|
122
|
+
* src/Makefile.am: Bump minor version number
|
|
123
|
+
|
|
124
|
+
* src/crypt_gensalt.c: Sync with crypt_blowfish 1.0.
|
|
125
|
+
|
|
126
|
+
2005-09-18 Thorsten Kukuk <kukuk@suse.de>
|
|
127
|
+
|
|
128
|
+
* release version 2.3
|
|
129
|
+
|
|
130
|
+
* src/x86.S: Remove.
|
|
131
|
+
|
|
132
|
+
* src/crypt_blowfish.c: Don't use ASM on x86.
|
|
133
|
+
|
|
134
|
+
2004-06-18 Thorsten Kukuk <kukuk@suse.de>
|
|
135
|
+
|
|
136
|
+
* release version 2.2
|
|
137
|
+
|
|
138
|
+
* src/md5-crypt.c (__md5_crypt): Check if realloc
|
|
139
|
+
runs out of memory (from glibc CVS).
|
|
140
|
+
|
|
141
|
+
* configure.in: Remove --noexecstack flag (compiler
|
|
142
|
+
can do it better itself).
|
|
143
|
+
|
|
144
|
+
2003-11-14 Thorsten Kukuk <kukuk@suse.de>
|
|
145
|
+
|
|
146
|
+
* configure.in: Check for --noexecstack support
|
|
147
|
+
|
|
148
|
+
2003-10-16 Thorsten Kukuk <kukuk@suse.de>
|
|
149
|
+
|
|
150
|
+
* release version 2.1
|
|
151
|
+
|
|
152
|
+
* COPYING: Add all different copyrights.
|
|
153
|
+
|
|
154
|
+
* src/x86.S: Added, optimized, thread safe version for ix86.
|
|
155
|
+
|
|
156
|
+
* src/crypt_blowfish.c: Use optimized assembler functions on ix86.
|
|
157
|
+
|
|
158
|
+
* libxcrypt.spec: New.
|
|
159
|
+
|
|
160
|
+
2003-07-28 Thorsten Kukuk <kukuk@suse.de>
|
|
161
|
+
|
|
162
|
+
* release version 2.0
|
|
163
|
+
|
|
164
|
+
* src/crypt_util.c: Include xcrypt-private.h only, add weak aliases.
|
|
165
|
+
* src/wrapper.c: Likewise.
|
|
166
|
+
|
|
167
|
+
* src/crypt_gensalt.c: Rename _crypt_* to _xcrypt_*
|
|
168
|
+
* src/crypt_blowfish.c: Likewise.
|
|
169
|
+
|
|
170
|
+
* src/crypt-entry.c: Include xcrypt-private.h.
|
|
171
|
+
|
|
172
|
+
* src/crypt.c: Only include xcrypt-private.h.
|
|
173
|
+
|
|
174
|
+
* src/xcrypt-private.h: Include xcrypt.h, undef xcrypt defines
|
|
175
|
+
* src/xcrypt.h: Rename prototypes from crypt* to xcrypt* and
|
|
176
|
+
add compat defines.
|
|
177
|
+
|
|
178
|
+
2003-01-16 Thorsten Kukuk <kukuk@suse.de>
|
|
179
|
+
|
|
180
|
+
* release version 1.4
|
|
181
|
+
|
|
182
|
+
* src/blowfish-test.c: Add test with threads.
|
|
183
|
+
|
|
184
|
+
* src/Makefile.am: Use AM_CFLAGS instead of CFLAGS,
|
|
185
|
+
(blowfish_test_LDFLAGS): Add libpthread,
|
|
186
|
+
(blowfish_test_CFLAGS): Define number of threads for test.
|
|
187
|
+
* src/crypt_util.c: Don't define _LIBC for libc-lock.h,
|
|
188
|
+
redefine __libc_lock_t with pthread_mutex_t.
|
|
189
|
+
|
|
190
|
+
* src/crypt_blowfish.c: Sync with version 0.4.5
|
|
191
|
+
|
|
192
|
+
2003-01-10 Thorsten Kukuk <kukuk@suse.de>
|
|
193
|
+
|
|
194
|
+
* release version 1.3
|
|
195
|
+
|
|
196
|
+
2002-11-04 Thorsten Kukuk <kukuk@suse.de>
|
|
197
|
+
|
|
198
|
+
* src/crypt_util.c (__init_des_r): Sync with current glibc CVS
|
|
199
|
+
(fix initialisation of internal data struct).
|
|
200
|
+
|
|
201
|
+
* src/md5test.c (main): Sync with current glibc CVS (add test
|
|
202
|
+
case for above crypt_util fix).
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
2002-10-21 Thorsten Kukuk <kukuk@suse.de>
|
|
206
|
+
|
|
207
|
+
* release version 1.2
|
|
208
|
+
|
|
209
|
+
* src/crypt_util.c: undef _LIBC after inclusion of libc-lock.h
|
|
210
|
+
* src/crypt_blowfish.c: Add support for hppa
|
|
211
|
+
* configure.in: bump version number to 1.2
|
|
212
|
+
|
|
213
|
+
2002-05-27 Thorsten Kukuk <kukuk@suse.de>
|
|
214
|
+
|
|
215
|
+
* release version 1.1
|
|
216
|
+
|
|
217
|
+
* src/sha.c: New file.
|
|
218
|
+
* src/sha-crypt.c: New file.
|
|
219
|
+
* src/md5-private.h: Renamed to ...
|
|
220
|
+
* src/xcrypt-private.h: ... to this.
|
|
221
|
+
* src/crypt_gensalt.c: Add dummy function for SHA1.
|
|
222
|
+
* src/wrapper.c: Call SHA1 functions.
|
|
223
|
+
|
|
224
|
+
2002-05-14 Thorsten Kukuk <kukuk@suse.de>
|
|
225
|
+
|
|
226
|
+
* src/xcrypt.h: Add prototpyes for SHA1 functions.
|
|
227
|
+
|
|
228
|
+
* src/wrapper.c: Don't include md5.h.
|
|
229
|
+
|
|
230
|
+
* src/md5-crypt.c: Include xcrypt.h instead of md5.h.
|
|
231
|
+
* src/md5test.c: Likewise.
|
|
232
|
+
* src/md5.c: Likewise.
|
|
233
|
+
|
|
234
|
+
* src/xcrypt.h: Add prototypes from md5.h.
|
|
235
|
+
* src/md5.h: Removed.
|
|
236
|
+
|
|
237
|
+
2002-04-13 Thorsten Kukuk <kukuk@suse.de>
|
|
238
|
+
|
|
239
|
+
* release version 1.0
|
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
Installation Instructions
|
|
2
|
+
*************************
|
|
3
|
+
|
|
4
|
+
Basic Installation
|
|
5
|
+
==================
|
|
6
|
+
|
|
7
|
+
The following shell commands:
|
|
8
|
+
|
|
9
|
+
test -f configure || ./bootstrap
|
|
10
|
+
./configure
|
|
11
|
+
make
|
|
12
|
+
make install
|
|
13
|
+
|
|
14
|
+
should configure, build, and install this package. The first line,
|
|
15
|
+
which bootstraps, is intended for developers; when building from
|
|
16
|
+
distribution tarballs it does nothing and can be skipped. A package
|
|
17
|
+
might name the bootstrapping script differently; if the name is
|
|
18
|
+
‘autogen.sh’, for example, the first line should say ‘./autogen.sh’
|
|
19
|
+
instead of ‘./bootstrap’.
|
|
20
|
+
|
|
21
|
+
The following more-detailed instructions are generic; see the
|
|
22
|
+
‘README’ file for instructions specific to this package. Some packages
|
|
23
|
+
provide this ‘INSTALL’ file but do not implement all of the features
|
|
24
|
+
documented below. The lack of an optional feature in a given package is
|
|
25
|
+
not necessarily a bug. More recommendations for GNU packages can be
|
|
26
|
+
found in the GNU Coding Standards.
|
|
27
|
+
|
|
28
|
+
Many packages have scripts meant for developers instead of ordinary
|
|
29
|
+
builders, as they may use developer tools that are less commonly
|
|
30
|
+
installed, or they may access the network, which has privacy
|
|
31
|
+
implications. These scripts attempt to bootstrap by building the
|
|
32
|
+
‘configure’ script and related files, possibly using developer tools or
|
|
33
|
+
the network. Because the output of bootstrapping is system-independent,
|
|
34
|
+
it is normally run by a package developer so that its output can be put
|
|
35
|
+
into the distribution tarball and ordinary builders and users need not
|
|
36
|
+
bootstrap. Some packages have commands like ‘./autopull.sh’ and
|
|
37
|
+
‘./autogen.sh’ that you can run instead of ‘./bootstrap’, for more
|
|
38
|
+
fine-grained control over bootstrapping.
|
|
39
|
+
|
|
40
|
+
The ‘configure’ script attempts to guess correct values for various
|
|
41
|
+
system-dependent variables used during compilation. It uses those
|
|
42
|
+
values to create a ‘Makefile’ in each directory of the package. It may
|
|
43
|
+
also create one or more ‘.h’ files containing system-dependent
|
|
44
|
+
definitions. Finally, it creates a script ‘config.status’ that you can
|
|
45
|
+
run in the future to recreate the current configuration, and a file
|
|
46
|
+
‘config.log’ containing output useful for debugging ‘configure’.
|
|
47
|
+
|
|
48
|
+
It can also use an optional file (typically called ‘config.cache’ and
|
|
49
|
+
enabled with ‘--cache-file=config.cache’ or simply ‘-C’) that saves the
|
|
50
|
+
results of its tests to speed up reconfiguring. Caching is disabled by
|
|
51
|
+
default to prevent problems with accidental use of stale cache files.
|
|
52
|
+
|
|
53
|
+
If you need to do unusual things to compile the package, please try
|
|
54
|
+
to figure out how ‘configure’ could check whether to do them, and mail
|
|
55
|
+
diffs or instructions to the address given in the ‘README’ so they can
|
|
56
|
+
be considered for the next release. If you are using the cache, and at
|
|
57
|
+
some point ‘config.cache’ contains results you don’t want to keep, you
|
|
58
|
+
may remove or edit it.
|
|
59
|
+
|
|
60
|
+
The ‘autoconf’ program generates ‘configure’ from the file
|
|
61
|
+
‘configure.ac’. Normally you should edit ‘configure.ac’ instead of
|
|
62
|
+
editing ‘configure’ directly.
|
|
63
|
+
|
|
64
|
+
The simplest way to compile this package is:
|
|
65
|
+
|
|
66
|
+
1. ‘cd’ to the directory containing the package’s source code.
|
|
67
|
+
|
|
68
|
+
2. If this is a developer checkout and file ‘configure’ does not yet
|
|
69
|
+
exist, run the bootstrapping script (typically ‘./bootstrap’ or
|
|
70
|
+
‘./autogen.sh’) to bootstrap and create the file. You may need
|
|
71
|
+
special developer tools and network access to bootstrap, and the
|
|
72
|
+
network access may have privacy implications.
|
|
73
|
+
|
|
74
|
+
3. Type ‘./configure’ to configure the package for your system. This
|
|
75
|
+
might take a while. While running, ‘configure’ prints messages
|
|
76
|
+
telling which features it is checking for.
|
|
77
|
+
|
|
78
|
+
4. Type ‘make’ to compile the package.
|
|
79
|
+
|
|
80
|
+
5. Optionally, type ‘make check’ to run any self-tests that come with
|
|
81
|
+
the package, generally using the just-built uninstalled binaries.
|
|
82
|
+
|
|
83
|
+
6. Type ‘make install’ to install the programs and any data files and
|
|
84
|
+
documentation. When installing into a prefix owned by root, it is
|
|
85
|
+
recommended that the package be configured and built as a regular
|
|
86
|
+
user, and only the ‘make install’ phase executed with root
|
|
87
|
+
privileges.
|
|
88
|
+
|
|
89
|
+
7. Optionally, type ‘make installcheck’ to repeat any self-tests, but
|
|
90
|
+
this time using the binaries in their final installed location.
|
|
91
|
+
This target does not install anything. Running this target as a
|
|
92
|
+
regular user, particularly if the prior ‘make install’ required
|
|
93
|
+
root privileges, verifies that the installation completed
|
|
94
|
+
correctly.
|
|
95
|
+
|
|
96
|
+
8. You can remove the program binaries and object files from the
|
|
97
|
+
source code directory by typing ‘make clean’. To also remove the
|
|
98
|
+
files that ‘configure’ created (so you can compile the package for
|
|
99
|
+
a different kind of computer), type ‘make distclean’. There is
|
|
100
|
+
also a ‘make maintainer-clean’ target, but that is intended mainly
|
|
101
|
+
for the package’s developers. If you use it, you may have to
|
|
102
|
+
bootstrap again.
|
|
103
|
+
|
|
104
|
+
9. If the package follows the GNU Coding Standards, you can type ‘make
|
|
105
|
+
uninstall’ to remove the installed files.
|
|
106
|
+
|
|
107
|
+
Installation Prerequisites
|
|
108
|
+
==========================
|
|
109
|
+
|
|
110
|
+
Installation requires a POSIX-like environment with a shell and at
|
|
111
|
+
least the following standard utilities:
|
|
112
|
+
|
|
113
|
+
awk cat cp diff echo expr false ls mkdir mv printf pwd rm rmdir sed
|
|
114
|
+
sort test tr
|
|
115
|
+
|
|
116
|
+
This package’s installation may need other standard utilities such as
|
|
117
|
+
‘grep’, ‘make’, ‘sleep’ and ‘touch’, along with compilers like ‘gcc’.
|
|
118
|
+
|
|
119
|
+
Compilers and Options
|
|
120
|
+
=====================
|
|
121
|
+
|
|
122
|
+
Some systems require unusual options for compilation or linking that
|
|
123
|
+
the ‘configure’ script does not know about. Run ‘./configure --help’
|
|
124
|
+
for details on some of the pertinent environment variables.
|
|
125
|
+
|
|
126
|
+
You can give ‘configure’ initial values for configuration parameters
|
|
127
|
+
by setting variables in the command line or in the environment. Here is
|
|
128
|
+
an example:
|
|
129
|
+
|
|
130
|
+
./configure CC=gcc CFLAGS=-g LIBS=-lposix
|
|
131
|
+
|
|
132
|
+
See “Defining Variables” for more details.
|
|
133
|
+
|
|
134
|
+
Compiling For Multiple Architectures
|
|
135
|
+
====================================
|
|
136
|
+
|
|
137
|
+
You can compile the package for more than one kind of computer at the
|
|
138
|
+
same time, by placing the object files for each system in their own
|
|
139
|
+
directory. To do this, you can use GNU ‘make’. ‘cd’ to the directory
|
|
140
|
+
where you want the object files and executables to go and run the
|
|
141
|
+
‘configure’ script. ‘configure’ automatically checks for the source
|
|
142
|
+
code in the directory that ‘configure’ is in and in ‘..’. This is known
|
|
143
|
+
as a “VPATH” build.
|
|
144
|
+
|
|
145
|
+
With a non-GNU ‘make’, it is safer to compile the package for one
|
|
146
|
+
system at a time in the source code directory. After you have installed
|
|
147
|
+
the package for one system, use ‘make distclean’ before reconfiguring
|
|
148
|
+
for another system.
|
|
149
|
+
|
|
150
|
+
Some platforms, notably macOS, support “fat” or “universal” binaries,
|
|
151
|
+
where a single binary can execute on different architectures. On these
|
|
152
|
+
platforms you can configure and compile just once, with options specific
|
|
153
|
+
to that platform.
|
|
154
|
+
|
|
155
|
+
Installation Names
|
|
156
|
+
==================
|
|
157
|
+
|
|
158
|
+
By default, ‘make install’ installs the package’s commands under
|
|
159
|
+
‘/usr/local/bin’, include files under ‘/usr/local/include’, etc. You
|
|
160
|
+
can specify an installation prefix other than ‘/usr/local’ by giving
|
|
161
|
+
‘configure’ the option ‘--prefix=PREFIX’, where PREFIX must be an
|
|
162
|
+
absolute file name.
|
|
163
|
+
|
|
164
|
+
You can specify separate installation prefixes for
|
|
165
|
+
architecture-specific files and architecture-independent files. If you
|
|
166
|
+
pass the option ‘--exec-prefix=PREFIX’ to ‘configure’, the package uses
|
|
167
|
+
PREFIX as the prefix for installing programs and libraries.
|
|
168
|
+
Documentation and other data files still use the regular prefix.
|
|
169
|
+
|
|
170
|
+
In addition, if you use an unusual directory layout you can give
|
|
171
|
+
options like ‘--bindir=DIR’ to specify different values for particular
|
|
172
|
+
kinds of files. Run ‘configure --help’ for a list of the directories
|
|
173
|
+
you can set and what kinds of files go in them. In general, the default
|
|
174
|
+
for these options is expressed in terms of ‘${prefix}’, so that
|
|
175
|
+
specifying just ‘--prefix’ will affect all of the other directory
|
|
176
|
+
specifications that were not explicitly provided.
|
|
177
|
+
|
|
178
|
+
The most portable way to affect installation locations is to pass the
|
|
179
|
+
correct locations to ‘configure’; however, many packages provide one or
|
|
180
|
+
both of the following shortcuts of passing variable assignments to the
|
|
181
|
+
‘make install’ command line to change installation locations without
|
|
182
|
+
having to reconfigure or recompile.
|
|
183
|
+
|
|
184
|
+
The first method involves providing an override variable for each
|
|
185
|
+
affected directory. For example, ‘make install
|
|
186
|
+
prefix=/alternate/directory’ will choose an alternate location for all
|
|
187
|
+
directory configuration variables that were expressed in terms of
|
|
188
|
+
‘${prefix}’. Any directories that were specified during ‘configure’,
|
|
189
|
+
but not in terms of ‘${prefix}’, must each be overridden at install time
|
|
190
|
+
for the entire installation to be relocated. The approach of makefile
|
|
191
|
+
variable overrides for each directory variable is required by the GNU
|
|
192
|
+
Coding Standards, and ideally causes no recompilation. However, some
|
|
193
|
+
platforms have known limitations with the semantics of shared libraries
|
|
194
|
+
that end up requiring recompilation when using this method, particularly
|
|
195
|
+
noticeable in packages that use GNU Libtool.
|
|
196
|
+
|
|
197
|
+
The second method involves providing the ‘DESTDIR’ variable. For
|
|
198
|
+
example, ‘make install DESTDIR=/alternate/directory’ will prepend
|
|
199
|
+
‘/alternate/directory’ before all installation names. The approach of
|
|
200
|
+
‘DESTDIR’ overrides is not required by the GNU Coding Standards, and
|
|
201
|
+
does not work on platforms that have drive letters. On the other hand,
|
|
202
|
+
it does better at avoiding recompilation issues, and works well even
|
|
203
|
+
when some directory options were not specified in terms of ‘${prefix}’
|
|
204
|
+
at ‘configure’ time.
|
|
205
|
+
|
|
206
|
+
Optional Features
|
|
207
|
+
=================
|
|
208
|
+
|
|
209
|
+
If the package supports it, you can cause programs to be installed
|
|
210
|
+
with an extra prefix or suffix on their names by giving ‘configure’ the
|
|
211
|
+
option ‘--program-prefix=PREFIX’ or ‘--program-suffix=SUFFIX’.
|
|
212
|
+
|
|
213
|
+
Some packages pay attention to ‘--enable-FEATURE’ and
|
|
214
|
+
‘--disable-FEATURE’ options to ‘configure’, where FEATURE indicates an
|
|
215
|
+
optional part of the package. They may also pay attention to
|
|
216
|
+
‘--with-PACKAGE’ and ‘--without-PACKAGE’ options, where PACKAGE is
|
|
217
|
+
something like ‘gnu-ld’. ‘./configure --help’ should mention the
|
|
218
|
+
‘--enable-...’ and ‘--with-...’ options that the package recognizes.
|
|
219
|
+
|
|
220
|
+
Some packages offer the ability to configure how verbose the
|
|
221
|
+
execution of ‘make’ will be. For these packages, running ‘./configure
|
|
222
|
+
--enable-silent-rules’ sets the default to minimal output, which can be
|
|
223
|
+
overridden with ‘make V=1’; while running ‘./configure
|
|
224
|
+
--disable-silent-rules’ sets the default to verbose, which can be
|
|
225
|
+
overridden with ‘make V=0’.
|
|
226
|
+
|
|
227
|
+
Specifying a System Type
|
|
228
|
+
========================
|
|
229
|
+
|
|
230
|
+
By default ‘configure’ builds for the current system. To create
|
|
231
|
+
binaries that can run on a different system type, specify a
|
|
232
|
+
‘--host=TYPE’ option along with compiler variables that specify how to
|
|
233
|
+
generate object code for TYPE. For example, to create binaries intended
|
|
234
|
+
to run on a 64-bit ARM processor:
|
|
235
|
+
|
|
236
|
+
./configure --host=aarch64-linux-gnu \
|
|
237
|
+
CC=aarch64-linux-gnu-gcc \
|
|
238
|
+
CXX=aarch64-linux-gnu-g++
|
|
239
|
+
|
|
240
|
+
If done on a machine that can execute these binaries (e.g., via
|
|
241
|
+
‘qemu-aarch64’, ‘$QEMU_LD_PREFIX’, and Linux’s ‘binfmt_misc’
|
|
242
|
+
capability), the build behaves like a native build. Otherwise it is a
|
|
243
|
+
cross-build: ‘configure’ will make cross-compilation guesses instead of
|
|
244
|
+
running test programs, and ‘make check’ will not work.
|
|
245
|
+
|
|
246
|
+
A system type can either be a short name like ‘mingw64’, or a
|
|
247
|
+
canonical name like ‘x86_64-pc-linux-gnu’. Canonical names have the
|
|
248
|
+
form CPU-COMPANY-SYSTEM where SYSTEM is either OS or KERNEL-OS. To
|
|
249
|
+
canonicalize and validate a system type, you can run the command
|
|
250
|
+
‘config.sub’, which is often squirreled away in a subdirectory like
|
|
251
|
+
‘build-aux’. For example:
|
|
252
|
+
|
|
253
|
+
$ build-aux/config.sub arm64-linux
|
|
254
|
+
aarch64-unknown-linux-gnu
|
|
255
|
+
$ build-aux/config.sub riscv-lnx
|
|
256
|
+
Invalid configuration 'riscv-lnx': OS 'lnx' not recognized
|
|
257
|
+
|
|
258
|
+
You can look at the ‘config.sub’ file to see which types are recognized.
|
|
259
|
+
If the file is absent, this package does not need the system type.
|
|
260
|
+
|
|
261
|
+
If ‘configure’ fails with the diagnostic “cannot guess build type”.
|
|
262
|
+
‘config.sub’ did not recognize your system’s type. In this case, first
|
|
263
|
+
fetch the newest versions of these files from the GNU config package
|
|
264
|
+
(https://savannah.gnu.org/projects/config). If that fixes things,
|
|
265
|
+
please report it to the maintainers of the package containing
|
|
266
|
+
‘configure’. Otherwise, you can try the configure option ‘--build=TYPE’
|
|
267
|
+
where TYPE comes close to your system type; also, please report the
|
|
268
|
+
problem to <config-patches@gnu.org>.
|
|
269
|
+
|
|
270
|
+
For more details about configuring system types, see the Autoconf
|
|
271
|
+
documentation.
|
|
272
|
+
|
|
273
|
+
Sharing Defaults
|
|
274
|
+
================
|
|
275
|
+
|
|
276
|
+
If you want to set default values for ‘configure’ scripts to share,
|
|
277
|
+
you can create a site shell script called ‘config.site’ that gives
|
|
278
|
+
default values for variables like ‘CC’, ‘cache_file’, and ‘prefix’.
|
|
279
|
+
‘configure’ looks for ‘PREFIX/share/config.site’ if it exists, then
|
|
280
|
+
‘PREFIX/etc/config.site’ if it exists. Or, you can set the
|
|
281
|
+
‘CONFIG_SITE’ environment variable to the location of the site script.
|
|
282
|
+
A warning: not all ‘configure’ scripts look for a site script.
|
|
283
|
+
|
|
284
|
+
Defining Variables
|
|
285
|
+
==================
|
|
286
|
+
|
|
287
|
+
Variables not defined in a site shell script can be set in the
|
|
288
|
+
environment passed to ‘configure’. However, some packages may run
|
|
289
|
+
configure again during the build, and the customized values of these
|
|
290
|
+
variables may be lost. In order to avoid this problem, you should set
|
|
291
|
+
them in the ‘configure’ command line, using ‘VAR=value’. For example:
|
|
292
|
+
|
|
293
|
+
./configure CC=/usr/local2/bin/gcc
|
|
294
|
+
|
|
295
|
+
causes the specified ‘gcc’ to be used as the C compiler (unless it is
|
|
296
|
+
overridden in the site shell script).
|
|
297
|
+
|
|
298
|
+
Unfortunately, this technique does not work for ‘CONFIG_SHELL’ due to an
|
|
299
|
+
Autoconf limitation. Until the limitation is lifted, you can use this
|
|
300
|
+
workaround:
|
|
301
|
+
|
|
302
|
+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
|
303
|
+
|
|
304
|
+
‘configure’ Invocation
|
|
305
|
+
======================
|
|
306
|
+
|
|
307
|
+
‘configure’ recognizes the following options to control how it
|
|
308
|
+
operates.
|
|
309
|
+
|
|
310
|
+
‘--help’
|
|
311
|
+
‘-h’
|
|
312
|
+
Print a summary of all of the options to ‘configure’, and exit.
|
|
313
|
+
|
|
314
|
+
‘--help=short’
|
|
315
|
+
‘--help=recursive’
|
|
316
|
+
Print a summary of the options unique to this package’s
|
|
317
|
+
‘configure’, and exit. The ‘short’ variant lists options used only
|
|
318
|
+
in the top level, while the ‘recursive’ variant lists options also
|
|
319
|
+
present in any nested packages.
|
|
320
|
+
|
|
321
|
+
‘--version’
|
|
322
|
+
‘-V’
|
|
323
|
+
Print the version of Autoconf used to generate the ‘configure’
|
|
324
|
+
script, and exit.
|
|
325
|
+
|
|
326
|
+
‘--cache-file=FILE’
|
|
327
|
+
Enable the cache: use and save the results of the tests in FILE,
|
|
328
|
+
traditionally ‘config.cache’. FILE defaults to ‘/dev/null’ to
|
|
329
|
+
disable caching.
|
|
330
|
+
|
|
331
|
+
‘--config-cache’
|
|
332
|
+
‘-C’
|
|
333
|
+
Alias for ‘--cache-file=config.cache’.
|
|
334
|
+
|
|
335
|
+
‘--srcdir=DIR’
|
|
336
|
+
Look for the package’s source code in directory DIR. Usually
|
|
337
|
+
‘configure’ can determine that directory automatically.
|
|
338
|
+
|
|
339
|
+
‘--prefix=DIR’
|
|
340
|
+
Use DIR as the installation prefix. See “Installation Names” for
|
|
341
|
+
more details, including other options available for fine-tuning the
|
|
342
|
+
installation locations.
|
|
343
|
+
|
|
344
|
+
‘--host=TYPE’
|
|
345
|
+
Build binaries for system TYPE. See “Specifying a System Type”.
|
|
346
|
+
|
|
347
|
+
‘--enable-FEATURE’
|
|
348
|
+
‘--disable-FEATURE’
|
|
349
|
+
Enable or disable the optional FEATURE. See “Optional Features”.
|
|
350
|
+
|
|
351
|
+
‘--with-PACKAGE’
|
|
352
|
+
‘--without-PACKAGE’
|
|
353
|
+
Use or omit PACKAGE when building. See “Optional Features”.
|
|
354
|
+
|
|
355
|
+
‘--quiet’
|
|
356
|
+
‘--silent’
|
|
357
|
+
‘-q’
|
|
358
|
+
Do not print messages saying which checks are being made. To
|
|
359
|
+
suppress all normal output, redirect it to ‘/dev/null’ (any error
|
|
360
|
+
messages will still be shown).
|
|
361
|
+
|
|
362
|
+
‘--no-create’
|
|
363
|
+
‘-n’
|
|
364
|
+
Run the configure checks, but stop before creating any output
|
|
365
|
+
files.
|
|
366
|
+
|
|
367
|
+
‘configure’ also recognizes several environment variables, and accepts
|
|
368
|
+
some other, less widely useful, options. Run ‘configure --help’ for
|
|
369
|
+
more details.
|
|
370
|
+
|
|
371
|
+
Copyright notice
|
|
372
|
+
================
|
|
373
|
+
|
|
374
|
+
Copyright © 1994–1996, 1999–2002, 2004–2017, 2020–2025 Free Software
|
|
375
|
+
Foundation, Inc.
|
|
376
|
+
|
|
377
|
+
Copying and distribution of this file, with or without modification,
|
|
378
|
+
are permitted in any medium without royalty provided the copyright
|
|
379
|
+
notice and this notice are preserved. This file is offered as-is,
|
|
380
|
+
without warranty of any kind.
|