graphics/jogamp-jogl: modernize patches
Ran: make patch; rm files/*; make makepatch.
This renames a patch and splits patch-freebsd to 3 separate patch files.
Manually checked that the patches are equal.
Approved by: no maintainer
mail/postfix-current: Fix MONGO flavor
Fix MONGO flavor by depending on libbson and mongo-c-driver contained
in quarterly branch.
This is a direct commit to 2026Q3
mail/postfix: Fix MONGO flavor
Fix MONGO flavor by depending on libbson and mongo-c-driver contained
in quarterly branch.
Also fix pkg-plist for MONGO flavor.
This is a direct commit to 2026Q3
Interfaces: Assignments - add interface configuration settings in new assignments page. for https://github.com/opnsense/core/issues/10568
Refactor NetworkInterface model to reuse existing property names as much as possible, move from/to legacy logic into a custom fieldtype and store all legacy settings in a container named "pending" to ease reconfiguration and updating legacy configurations.
[mlir][arith] Allow folding all +/- 0 under fastmath nsz (#217031)
The fastmath `nsz` flag means the sign bit of 0.0 or -0.0 input operands
can be non-deterministically flipped. This allows us to fold the
following:
(x + (-0.0))
(x - (+0.0))
to x.
[lldb] Add ternary conditional operator to DIL (#211344)
Add ternary conditional operator to DIL: `condition ? true_expr :
false_expr`.
Note: DIL will evaluate only the operand chosen by the condition,
and will not check the type or evaluate the other operand.
[lldb] Scope XML register type IDs to features (#216384)
This change separates XML register-type lookup from ownership:
- Uses a temporary type registry for each `<feature>`, allowing IDs to
be reused safely across features.
- Keeps all parsed types alive in process-owned storage.
- Uses one common registry for enums, flags, and future vector/union
types.
- Prevents stale enum pointers and cross-feature type reuse.
Relates to #214444.
---------
Co-authored-by: Bar Soloveychik <barsolo at fb.com>
[compiler-rt] [Darwin] Bump min-deployment targets to match libc++ (#216855)
Fixes the following warning when compiling with newer SDKs:
```
/....../usr/include/c++/v1/__configuration/availability.h:204:4: warning: "The selected platform is no longer supported by libc++." [-W#warnings]
204 | # warning "The selected platform is no longer supported by libc++."
| ^
```
rdar://175395925