MantisBT - CMake |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0012878 | CMake | Modules | public | 2012-01-17 12:55 | 2012-11-05 14:33 |
|
Reporter | Dan Kegel | |
Assigned To | Rolf Eike Beer | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | Linux | OS | Ubuntu | OS Version | 12.04 |
Product Version | CMake 2.8.7 | |
Target Version | CMake 2.8.9 | Fixed in Version | CMake 2.8.9 | |
|
Summary | 0012878: find_package(Java) gives warning "regex not supported" again |
Description | Java.cmake has a hard-coded regex to parse java version strings, and it did
not expect 'icedtea' to appear in them.
It did seem to expect 'oem' to appear in them, so blindly piggyback on that
to add 'icedtea'. (Since a character class is used, it would also support
-tie-me-a-code and other anagrams, but fixing that is best done by
the author of that regex if desired.)
See attached patch. |
Steps To Reproduce | Same as for bug 11676, but on latest ubuntu (12.04) with latest jdk (openjdk-7-jdk). |
Additional Information | Exact log:
CMake Warning at /usr/local/cmake/share/cmake-2.8/Modules/FindJava.cmake:120 (message):
regex not supported: java version "1.7.0_147-icedtea"
OpenJDK Runtime Environment (IcedTea7 2.0) (7~b147-2.0-1ubuntu2)
OpenJDK 64-Bit Server VM (build 21.0-b17, mixed mode). Please report
|
Tags | No tags attached. |
Relationships | |
Attached Files | icedtea.patch (845) 2012-01-17 12:56 https://public.kitware.com/Bug/file/4193/icedtea.patch |
|
Issue History |
Date Modified | Username | Field | Change |
2012-01-17 12:55 | Dan Kegel | New Issue | |
2012-01-17 12:56 | Dan Kegel | File Added: icedtea.patch | |
2012-06-25 08:32 | David Cole | Note Added: 0029824 | |
2012-06-25 08:33 | David Cole | Note Added: 0029825 | |
2012-06-25 09:11 | Rolf Eike Beer | Note Added: 0029826 | |
2012-06-25 10:46 | David Cole | Note Added: 0029827 | |
2012-06-25 12:55 | Rolf Eike Beer | Note Added: 0029828 | |
2012-06-25 12:55 | Rolf Eike Beer | Assigned To | => Rolf Eike Beer |
2012-06-25 12:55 | Rolf Eike Beer | Status | new => resolved |
2012-06-25 12:55 | Rolf Eike Beer | Resolution | open => fixed |
2012-06-25 12:55 | Rolf Eike Beer | Fixed in Version | => CMake 2.8.9 |
2012-06-25 12:55 | Rolf Eike Beer | Target Version | => CMake 2.8.9 |
2012-11-05 14:33 | David Cole | Note Added: 0031460 | |
2012-11-05 14:33 | David Cole | Status | resolved => closed |
Notes |
|
(0029824)
|
David Cole
|
2012-06-25 08:32
|
|
Is the attached patch correct?
Do we have to match "oem" without matching "icedtea-oem" on some platforms?
(i.e. -- should the "icedtea-" be *separately* optional from the "oem-"?) |
|
|
(0029825)
|
David Cole
|
2012-06-25 08:33
|
|
Oh, never mind. I see the comment about the character class now...
Maybe it's better fixed by just leaving that section of the reg ex as ".*" to match anything there...? |
|
|
(0029826)
|
Rolf Eike Beer
|
2012-06-25 09:11
|
|
I think the best regex is really
[0-9]+\\.[0-9]+\\.[0-9_.]+.*
i.e. allowing anything after the number. This is only used for Jave_VERSION_STRING which may contain more or less arbitrary content anyway. |
|
|
(0029827)
|
David Cole
|
2012-06-25 10:46
|
|
Eike,
The regex you propose in http://cmake.org/Bug/view.php?id=12878#c29826 [^] sounds reasonable to me. As long as we can extract the numerical portions of the string for version comparisons down to the patch level, I think that's good.
Any reason not to just do that?
I can probably do it later today if we're agreed it's the best fix. |
|
|
(0029828)
|
Rolf Eike Beer
|
2012-06-25 12:55
|
|
|
|
(0031460)
|
David Cole
|
2012-11-05 14:33
|
|
Closing resolved issues that have not been updated in more than 4 months. |
|