the bootstrap script. See README-prereq for specific notes on obtaining
these prerequisite tools.
-Valgrind <http://valgrind.org/> is also highly recommended, if
+Valgrind <https://valgrind.org/> is also highly recommended, if
Valgrind supports your architecture. See also README-valgrind
(if present).
- Perl <https://www.cpan.org/>
- Tar <https://www.gnu.org/software/tar/>
- Texinfo <https://www.gnu.org/software/texinfo/>
-- Wget <http://www.gnu.org/software/wget/>
+- Wget <https://www.gnu.org/software/wget/>
- XZ Utils <https://tukaani.org/xz/>
It is generally better to use official packages for your system.
Clement Wang clem.wang@overture.com
Colin Plumb colin@nyx.net
Collin Rogowski collin@rogowski.de
-Cray-Cyber Project http://www.cray-cyber.org
+Cray-Cyber Project https://www.cray-cyber.org
Cristian Cadar cristic@stanford.edu
Cyril Bouthors cyril@bouthors.org
Dale Scheetz dwarf@polaris.net
@item
When writing C programs, the GNU libc library (@samp{glibc})
provides the
-@uref{http://man7.org/linux/man-pages/man3/strverscmp.3.html,
+@uref{https://man7.org/linux/man-pages/man3/strverscmp.3.html,
strvercmp(3)} function to compare two strings, and
-@uref{http://man7.org/linux/man-pages/man3/versionsort.3.html,versionsort(3)}
+@uref{https://man7.org/linux/man-pages/man3/versionsort.3.html,versionsort(3)}
function to compare two directory entries (despite the names, they are
not identical to GNU Coreutils version sort ordering).
* so I can be a little bit experimental in the choice of RNGs here.
*
* This generator is based somewhat on RC4, but has analysis
- * <http://burtleburtle.net/bob/rand/isaacafa.html>
+ * <https://burtleburtle.net/bob/rand/isaacafa.html>
* pointing to it actually being better. I like it because it's nice
* and fast, and because the author did good work analyzing it.
* --------------------------------------------------------------------
#include "macros.h"
/* This expected output was generated by running the programs in
- <http://burtleburtle.net/bob/rand/isaacafa.html>, as last modified
+ <https://burtleburtle.net/bob/rand/isaacafa.html>, as last modified
on 2010-01-22. The 32-bit numbers were output by rand.c, and the
64-bit by isaac64.c, both on x86, as those programs are not
portable to 64-bit platforms. */
But some shells may use other adjustments in future to be
(forward) compatible with systems that support
wider exit status values as discussed at
- http://austingroupbugs.net/view.php?id=947 */
+ https://austingroupbugs.net/view.php?id=947 */
char *endp;
long int l = (errno = 0, strtol (operand, &endp, 10));
Another case to consider is when a particular name is invalid for
a given file system. In 2011, smbfs returns EINVAL, but the next
revision of POSIX will require EILSEQ for that situation:
- http://austingroupbugs.net/view.php?id=293
+ https://austingroupbugs.net/view.php?id=293
*/
switch (errnum)
# https://lists.gnu.org/archive/html/coreutils/2020-03/msg00004.html
require_bash_as_SHELL_
-# Paraphrasing http://bugs.gnu.org/34488#8:
+# Paraphrasing https://bugs.gnu.org/34488#8:
# POSIX requires that sh started with an inherited ignored SIGPIPE must
# silently ignore all attempts from within the shell to restore SIGPIPE
# handling to child processes of the shell:
LC_ALL=missing sort --debug /dev/null 2>out || fail=1
# musl libc maps unknown locales to the default utf8 locale
# with no way to determine failures. This is discussed at:
-# http://www.openwall.com/lists/musl/2016/04/02/1
+# https://www.openwall.com/lists/musl/2016/04/02/1
if ! grep -E 'using .*(missing|C.UTF-8).* sorting rules' out; then
compare exp out || fail=1
fi