>>>>> On Tue, 27 Jan 2026 21:11:47 +0000, fabian via vbox-dev said:
> 
> The virtualbox github New Issue page says to report this to the mailing list.
> 
> The configure.py script does not detect the latest version of openjdk 
> correctly.

It looks like an explicit change to require JDK instead of OpenJDK for some
reason:

https://github.com/VirtualBox/virtualbox/commit/257b98ec289785fda1c3556c8f1f0ba7f595eace

> At line 2052, it detects the version of java with the line:
> 
> [ r'java (\d+)\.(\d+)\.(\d+)' ],
> 
> Openjdk version 17.0.18 returns (see attached pic)
> 
> openjdk 17.0.18 2026-01-20
> 
> Adding the following line after the initial 'java' line fixes the problem:
> 
> 'java':  [ r'openjdk (\d+)\.(\d+)\.(\d+)-?.*' ],

That only works because it creates a dictionary with two identical keys
('java') so the second one overrides the first.

__Martin
_______________________________________________
vbox-dev mailing list
[email protected]
https://www.virtualbox.org/mailman/listinfo/vbox-dev

Reply via email to