forked from pool/racket
34b203c004
- Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
73 lines
2.5 KiB
Diff
73 lines
2.5 KiB
Diff
diff -ru old/src/cfg-racket new/src/cfg-racket
|
|
--- old/src/cfg-racket 2020-08-21 15:04:58.350336921 +0200
|
|
+++ new/src/cfg-racket 2020-08-21 15:05:24.934420798 +0200
|
|
@@ -7011,7 +7011,7 @@
|
|
LIBSFX=la
|
|
WXLIBS=WXLIBSDYN
|
|
ICP="${LIBTOOLPROG} --mode=install cp"
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
ICP_STATIC_LIB='$(NOOP)'
|
|
MRLIBINSTALL="install-lib"
|
|
LIBFINISH="${LIBTOOLPROG} --mode=finish"
|
|
diff -ru old/src/cs/c/configure new/src/cs/c/configure
|
|
--- old/src/cs/c/configure 2020-08-21 15:04:58.366336971 +0200
|
|
+++ new/src/cs/c/configure 2020-08-21 15:05:45.366485257 +0200
|
|
@@ -5429,7 +5429,7 @@
|
|
LTA="la"
|
|
STRIP_LIB_DEBUG=":"
|
|
LIBSFX=la
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
else
|
|
ICP=cp
|
|
LTO="o"
|
|
diff -ru old/src/cs/c/configure.ac new/src/cs/c/configure.ac
|
|
--- old/src/cs/c/configure.ac 2020-08-21 15:04:58.366336971 +0200
|
|
+++ new/src/cs/c/configure.ac 2020-08-21 15:06:01.478536085 +0200
|
|
@@ -658,7 +658,7 @@
|
|
LTA="la"
|
|
STRIP_LIB_DEBUG=":"
|
|
LIBSFX=la
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
else
|
|
ICP=cp
|
|
LTO="o"
|
|
diff -ru old/src/racket/configure.ac new/src/racket/configure.ac
|
|
--- old/src/racket/configure.ac 2020-08-21 15:04:58.350336921 +0200
|
|
+++ new/src/racket/configure.ac 2020-08-21 15:06:14.246576366 +0200
|
|
@@ -1408,7 +1408,7 @@
|
|
LIBSFX=la
|
|
WXLIBS=WXLIBSDYN
|
|
ICP="${LIBTOOLPROG} --mode=install cp"
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
ICP_STATIC_LIB='$(NOOP)'
|
|
MRLIBINSTALL="install-lib"
|
|
LIBFINISH="${LIBTOOLPROG} --mode=finish"
|
|
diff -ru old/src/rktio/configure new/src/rktio/configure
|
|
--- old/src/rktio/configure 2020-08-21 15:04:58.406337098 +0200
|
|
+++ new/src/rktio/configure 2020-08-21 15:06:40.086657892 +0200
|
|
@@ -4568,7 +4568,7 @@
|
|
LTA="la"
|
|
STRIP_LIB_DEBUG=":"
|
|
LIBSFX=la
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
else
|
|
ICP=cp
|
|
LTO="o"
|
|
diff -ru old/src/rktio/configure.ac new/src/rktio/configure.ac
|
|
--- old/src/rktio/configure.ac 2020-08-21 15:04:58.406337098 +0200
|
|
+++ new/src/rktio/configure.ac 2020-08-21 15:06:49.942688988 +0200
|
|
@@ -393,7 +393,7 @@
|
|
LTA="la"
|
|
STRIP_LIB_DEBUG=":"
|
|
LIBSFX=la
|
|
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
|
|
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
|
|
else
|
|
ICP=cp
|
|
LTO="o"
|