Merge remote-tracking branch 'origin/pristine'

* origin/pristine: (62 commits)
  editors/cudatext: Updatet to 1.223.5.1
  Add net/lldap: Light LDAP implementation for authentication
  Add www/wasm-bindgen-cli: CLI tool to generate Rust bindings for Wasm
  science/afni: Update to 25.1.04
  x11-wm/jwm: Update to 2.4.6
  java/openjdk24: Upgrade to version 24.0.1+9.1
  sysutils/eza: Update to 0.21.2
  audio/baresip: Modernize port
  net-mgmt/icingaweb2-module-grafana: Update 3.0.1 => 3.1.0
  devel/ruby-build: Update to 20250424
  sysutils/libtpms: Update 0.9.6 => 0.10.0
  Magit: Mark development snapshot ports as DEPRECATED and set EXPIRATION_DATE
  math/R-cran-recipes: Update to 1.3.0
  sysutils/py-hcloud: update to 2.5.0
  sysutils/snmp_exporter: update to 0.29.0
  dns/unbound: Update 1.22.0 => 1.23.0
  databases/pgbarman: update to 3.13.3
  devel/electron35: update to 35.2.0
  misc/lf: update 33 → 35
  audio/neuralrack-lv2: update 0.1.4 → 0.1.5
  ...
This commit is contained in:
2025-04-25 19:28:10 +02:00
145 changed files with 5274 additions and 930 deletions
+3 -3
View File
@@ -35,7 +35,7 @@ CPE_VENDOR= oracle
USE_GITHUB= yes
GH_ACCOUNT= freebsd
GH_PROJECT= openjdk
GH_TAGNAME= jdk-24-ga-freebsd-1
GH_TAGNAME= jdk-24.0.1-ga-freebsd-1
NO_CCACHE= yes
@@ -60,8 +60,8 @@ NOPRECIOUSMAKEVARS= yes
JDK_MAJOR_VERSION= 24
JDK_MINOR_VERSION= 0
JDK_PATCH_VERSION= 0
JDK_BUILD_NUMBER= 36
JDK_PATCH_VERSION= 1
JDK_BUILD_NUMBER= 9
BSD_JDK_VERSION= 1
JDK_BUG_URL= https://bugs.freebsd.org/bugzilla/enter_bug.cgi?product=Ports%20%26%20Packages&component=Individual%20Port(s)&short_desc=java/${PORTNAME}${JDK_MAJOR_VERSION}%3A%20
+3 -3
View File
@@ -1,3 +1,3 @@
TIMESTAMP = 1742895111
SHA256 (freebsd-openjdk-jdk-24.0.0+36-1-jdk-24-ga-freebsd-1_GH0.tar.gz) = d2dc74549c4038bcab0b54622e98083d48989976e4f221ce53d265e785d16abf
SIZE (freebsd-openjdk-jdk-24.0.0+36-1-jdk-24-ga-freebsd-1_GH0.tar.gz) = 120821939
TIMESTAMP = 1745490330
SHA256 (freebsd-openjdk-jdk-24.0.1+9-1-jdk-24.0.1-ga-freebsd-1_GH0.tar.gz) = f9a5a14ba9205bcb6bced5a153d0d726d03c9ffdd459171683a9ade9ac31ea4e
SIZE (freebsd-openjdk-jdk-24.0.1+9-1-jdk-24.0.1-ga-freebsd-1_GH0.tar.gz) = 120804490
@@ -1,44 +0,0 @@
--- src/hotspot/os_cpu/bsd_ppc/os_bsd_ppc.cpp.orig 2024-04-11 22:23:08 UTC
+++ src/hotspot/os_cpu/bsd_ppc/os_bsd_ppc.cpp
@@ -61,6 +61,7 @@
# include <sys/types.h>
# include <sys/mman.h>
# include <pthread.h>
+# include <pthread_np.h>
# include <signal.h>
# include <errno.h>
# include <dlfcn.h>
@@ -432,6 +433,33 @@ size_t os::Posix::default_stack_size(os::ThreadType th
// Default stack size (compiler thread needs larger stack).
size_t s = (thr_type == os::compiler_thread ? 4 * M : 1024 * K);
return s;
+}
+
+void os::current_stack_base_and_size(address* base, size_t* size) {
+ address bottom;
+ pthread_attr_t attr;
+
+ int rslt = pthread_attr_init(&attr);
+
+ // JVM needs to know exact stack location, abort if it fails
+ if (rslt != 0)
+ fatal("pthread_attr_init failed with error = %d", rslt);
+
+ rslt = pthread_attr_get_np(pthread_self(), &attr);
+
+ if (rslt != 0)
+ fatal("pthread_attr_get_np failed with error = %d", rslt);
+
+ if (pthread_attr_getstackaddr(&attr, (void **)&bottom) != 0 ||
+ pthread_attr_getstacksize(&attr, size) != 0) {
+ fatal("Can not locate current stack attributes!");
+ }
+
+ *base = bottom + *size;
+
+ pthread_attr_destroy(&attr);
+ assert(os::current_stack_pointer() >= bottom &&
+ os::current_stack_pointer() < *base, "just checking");
}
/////////////////////////////////////////////////////////////////////////////