-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
171 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Wrapper for Microsoft lib.exe | ||
|
||
me=ar-lib | ||
scriptversion=2024-06-19.01; # UTC | ||
scriptversion=2025-02-03.05; # UTC | ||
|
||
# Copyright (C) 2010-2025 Free Software Foundation, Inc. | ||
# Written by Peter Rosin <[email protected]>. | ||
|
@@ -51,9 +51,20 @@ func_file_conv () | |
# lazily determine how to convert abs files | ||
case `uname -s` in | ||
MINGW*) | ||
file_conv=mingw | ||
if test -n "$MSYSTEM" && (cygpath --version) >/dev/null 2>&1; then | ||
# MSYS2 environment. | ||
file_conv=cygwin | ||
else | ||
# Original MinGW environment. | ||
file_conv=mingw | ||
fi | ||
;; | ||
CYGWIN* | MSYS*) | ||
MSYS*) | ||
# Old MSYS environment, or MSYS2 with 32-bit MSYS2 shell. | ||
file_conv=cygwin | ||
;; | ||
CYGWIN*) | ||
# Cygwin environment. | ||
file_conv=cygwin | ||
;; | ||
*) | ||
|
@@ -65,8 +76,8 @@ func_file_conv () | |
mingw) | ||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||
;; | ||
cygwin | msys) | ||
file=`cygpath -m "$file" || echo "$file"` | ||
cygwin) | ||
file=`cygpath -w "$file" || echo "$file"` | ||
;; | ||
wine) | ||
file=`winepath -w "$file" || echo "$file"` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#! /bin/sh | ||
# Wrapper for compilers which do not understand '-c -o'. | ||
|
||
scriptversion=2024-12-03.03; # UTC | ||
scriptversion=2025-02-03.05; # UTC | ||
|
||
# Copyright (C) 1999-2025 Free Software Foundation, Inc. | ||
# Written by Tom Tromey <[email protected]>. | ||
|
@@ -37,11 +37,11 @@ IFS=" "" $nl" | |
|
||
file_conv= | ||
|
||
# func_file_conv build_file lazy | ||
# func_file_conv build_file unneeded_conversions | ||
# Convert a $build file to $host form and store it in $file | ||
# Currently only supports Windows hosts. If the determined conversion | ||
# type is listed in (the comma separated) LAZY, no conversion will | ||
# take place. | ||
# type is listed in (the comma separated) UNNEEDED_CONVERSIONS, no | ||
# conversion will take place. | ||
func_file_conv () | ||
{ | ||
file=$1 | ||
|
@@ -51,9 +51,20 @@ func_file_conv () | |
# lazily determine how to convert abs files | ||
case `uname -s` in | ||
MINGW*) | ||
file_conv=mingw | ||
if test -n "$MSYSTEM" && (cygpath --version) >/dev/null 2>&1; then | ||
# MSYS2 environment. | ||
file_conv=cygwin | ||
else | ||
# Original MinGW environment. | ||
file_conv=mingw | ||
fi | ||
;; | ||
CYGWIN* | MSYS*) | ||
MSYS*) | ||
# Old MSYS environment, or MSYS2 with 32-bit MSYS2 shell. | ||
file_conv=cygwin | ||
;; | ||
CYGWIN*) | ||
# Cygwin environment. | ||
file_conv=cygwin | ||
;; | ||
*) | ||
|
@@ -63,12 +74,14 @@ func_file_conv () | |
fi | ||
case $file_conv/,$2, in | ||
*,$file_conv,*) | ||
# This is the optimization mentioned above: | ||
# If UNNEEDED_CONVERSIONS contains $file_conv, don't convert. | ||
;; | ||
mingw/*) | ||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||
;; | ||
cygwin/* | msys/*) | ||
file=`cygpath -m "$file" || echo "$file"` | ||
cygwin/*) | ||
file=`cygpath -w "$file" || echo "$file"` | ||
;; | ||
wine/*) | ||
file=`winepath -w "$file" || echo "$file"` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2025-02-05 Luigi Scarso <[email protected]> | ||
* add mathemptydisplaymode primitive, | ||
* fix nodes leak in end_graf (thanks to [email protected]) | ||
|
||
|
||
2025-02-02 Luigi Scarso <[email protected]> | ||
* Fixed subtype of beforedisplaypenalty (thanks to [email protected]) | ||
|
||
|
||
2025-02-01 Luigi Scarso <[email protected]> | ||
* LuaJIT 2.1.1736781742 (work in progress) | ||
* LuaTeX 1.21.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#ifndef luatex_svn_revision_h | ||
#define luatex_svn_revision_h | ||
#define luatex_svn_revision 7653 | ||
#define luatex_svn_revision 7657 | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.