Skip to content

Commit

Permalink
Merge branch 'master' into build/work000 r71937 #158
Browse files Browse the repository at this point in the history
  • Loading branch information
t-tk committed Aug 1, 2024
2 parents 85a60ed + f78bc06 commit 74fd238
Show file tree
Hide file tree
Showing 11 changed files with 1,240 additions and 431 deletions.
18 changes: 13 additions & 5 deletions source/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
$Id$

This README.md file exists for people browsing on github.

The TeX-Live project on github (https://github.com/TeX-Live) is a mirror
of the upstream Subversion repository (https://tug.org/texlive/svn). We
use it primarily for automatic building of the sources on several platforms.

We prefer using mailing lists to github: [email protected] for general
bugs and discussion, [email protected] for bugs and patches for the compiled
programs, and so on. List of TL lists: https://tug.org/texlive/lists.html.
The releases built here (https://github.com/TeX-Live/texlive-source/releases)
are not usable TeX systems on their own, but bare binary directories.
They can be dropped into a TeX Live installation as some bin/newdir and
they should work, including resolving the dangling symlinks that are in
the bare tarballs.

For reports and other feedback, we prefer using mailing lists:
[email protected] for general bugs and discussion, [email protected] for bugs
and patches for the compiled programs, and so on. All the TL mailing
lists: https://tug.org/texlive/lists.html.

However, if you prefer to open issues or submit PRs on github, that's
ok. We will see them and will reply as soon as we can.
Expand All @@ -16,5 +24,5 @@ One common problem: Package bug reports should go to the package
maintainer, however they wish to receive reports, not to any general
TeX Live list. TL redistributes what is uploaded to CTAN without changes.

For information about the source tree here, see the ./README file here,
not this README.md.
For technical information about the source tree here, see the ./README
file here, not this README.md.
11 changes: 7 additions & 4 deletions source/build-aux/config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# shellcheck disable=SC2006,SC2268 # see below for rationale

timestamp='2024-01-01'
timestamp='2024-07-27'

# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -123,7 +123,7 @@ set_cc_for_build() {
dummy=$tmp/dummy
case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
,,) echo "int x;" > "$dummy.c"
for driver in cc gcc c89 c99 ; do
for driver in cc gcc c17 c99 c89 ; do
if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
CC_FOR_BUILD=$driver
break
Expand Down Expand Up @@ -634,7 +634,8 @@ EOF
sed 's/^ //' << EOF > "$dummy.c"
#include <sys/systemcfg.h>
main()
int
main ()
{
if (!__power_pc())
exit(1);
Expand Down Expand Up @@ -718,7 +719,8 @@ EOF
#include <stdlib.h>
#include <unistd.h>
int main ()
int
main ()
{
#if defined(_SC_KERNEL_BITS)
long bits = sysconf(_SC_KERNEL_BITS);
Expand Down Expand Up @@ -1621,6 +1623,7 @@ cat > "$dummy.c" <<EOF
#endif
#endif
#endif
int
main ()
{
#if defined (sony)
Expand Down
Loading

0 comments on commit 74fd238

Please sign in to comment.