File:  [cvs.NetBSD.org] / pkgsrc / lang / racket / patches / patch-src_bc_configure.ac
Revision 1.3: download - view: text, annotated - select for diffs
Fri Jan 5 14:55:39 2024 UTC (9 months, 4 weeks ago) by riastradh
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2, pkgsrc-2024Q1-base, pkgsrc-2024Q1, HEAD
lang/racket{,-textual}: update to 8.11.1

8.11.1:

    This bug-fix release repairs a problem with building from source when using the “builtpkgs” source distribution.

8.11:

    Match clauses can include a #:do option to allow evaluation of code and bindings before a following #:when clause. See match.

    JSON Serialization supports indentation with an #:indent option to write-json. See write-json.

    An initiate-sequence function simplifies the creation of sequences. See initiate-sequence.

    The :do-in form allows an inner definition sequence. See :do-in.

    The redex-define form allows pattern-matching in PLT Redex using a define-like syntax. See redex-define.

    Racket and Chez Scheme use Robert L. Smith’s “Algorithm 116” for division of complex numbers. See Robert L. Smith. 1962. Algorithm 116: Complex division. Commun. ACM 5, 8 (Aug. 1962), 435. https://dl.acm.org/doi/10.1145/368637.368661.

    DrRacket has indentation guides that provide visual cues indicating how code is indented and grouped, accessible by using (<menu-key>-shift-i). See text:indent-guides<%>.

    “Comment-out” menu items can be specific to the #lang used by the current file. See Comments.

    Unused identifiers have a tooltip indicating that they have no bound occurrences.

    Quickscript includes a new form of scripting in the form of “hook” functions that can be attached to existing events. See Hooks.

    Plots include plot-inset and plot-legend-padding parameters to control the amount of space left unused around the plot edge and plot legend. See plot-inset.

    There are many other documentation improvements, optimizations, and bug fixes!

$NetBSD: patch-src_bc_configure.ac,v 1.3 2024/01/05 14:55:39 riastradh Exp $

Allow CONFIGURE_ENV to set PAXCTL so user need not have /usr/sbin in
PATH.

--- src/bc/configure.ac.orig	2023-11-20 06:06:53.000000000 +0000
+++ src/bc/configure.ac
@@ -548,7 +548,7 @@ case "$host_os" in
     LIBS="$LIBS -rdynamic"
     skip_iconv_check=yes
     add_curses_lib="-lterminfo"
-    default_post_linker="paxctl +m"
+    default_post_linker="${PAXCTL:-paxctl} +m"
     ;;
   irix*)
     enable_cgcdefault="yes"

CVSweb <webmaster@jp.NetBSD.org>