summaryrefslogtreecommitdiffstats
path: root/Modules/FindJNI.cmake
Commit message (Collapse)AuthorAgeFilesLines
* FindJNI: Search in Fedora arch-specific JVM location (#12276)Christoph Höger2011-06-151-0/+1
|
* Merge topic 'fixbug_0011183'Brad King2011-04-121-0/+1
|\ | | | | | | | | a59d198 Add support for java on fedora
| * Add support for java on fedoraMathieu Malaterre2011-04-081-0/+1
| | | | | | | | | | This commit fixes BUG: 0011183 by adding new paths used on fedora, specifically: /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0
* | Add support for FindJava on HP-UX and alphaMathieu Malaterre2011-04-081-0/+2
|/ | | | | This commit fixes BUG: 0010242. It now properly inspect specific directory on hp-ux and alpha implementation of the JRE
* Modules: Include builtin FindPackageHandleStandardArgs directlyBrad King2011-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The FindPackageHandleStandardArgs module was originally created outside of CMake. It was added for CMake 2.6.0 by commit e118a627 (add a macro FIND_PACKAGE_HANDLE_STANDARD_ARGS..., 2007-07-18). However, it also proliferated into a number of other projects that at the time required only CMake 2.4 and thus could not depend on CMake to provide the module. CMake's own find modules started using the module in commit b5f656e0 (use the new FIND_PACKAGE_HANDLE_STANDARD_ARGS in some of the FindXXX modules..., 2007-07-18). Then commit d358cf5c (add 2nd, more powerful mode to find_package_handle_standard_args, 2010-07-29) added a new feature to the interface of the module that was fully optional and backward compatible with all existing users of the module. Later commit 5f183caa (FindZLIB: use the FPHSA version mode, 2010-08-04) and others shortly thereafter started using the new interface in CMake's own find modules. This change was also backward compatible because it was only an implementation detail within each module. Unforutnately these changes introduced a problem for projects that still have an old copy of FindPackageHandleStandardArgs in CMAKE_MODULE_PATH. When any such project uses one of CMake's builtin find modules the line include(FindPackageHandleStandardArgs) loads the copy from the project which does not have the new interface! Then the including find module tries to use the new interface with the old module and fails. Whether this breakage can be considered a backward incompatible change in CMake is debatable. The situation is analagous to copying a standard library header from one version of a compiler into a project and then observing problems when the next version of the compiler reports errors in its other headers that depend on its new version of the original header. Nevertheless it is a change to CMake that causes problems for projects that worked with previous versions. This problem was discovered during the 2.8.3 release candidate cycle. It is an instance of a more general problem with projects that provide their own versions of CMake modules when other CMake modules depend on them. At the time we resolved this instance of the problem with commit b0118402 (Use absolute path to FindPackageHandleStandardArgs.cmake everywhere, 2010-09-28) for the 2.8.3 release. In order to address the more general problem we introduced policy CMP0017 in commit db44848f (Prefer files from CMAKE_ROOT when including from CMAKE_ROOT, 2010-11-17). That change was followed by commit ce28737c (Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017, 2010-12-20) which reverted the original workaround in favor of using the policy. However, existing project releases do not set the policy behavior to NEW and therefore still exhibit the problem. We introduced in commit a364daf1 (Allow users to specify defaults for unset policies, 2011-01-03) an option for users to build existing projects by adding -DCMAKE_POLICY_DEFAULT_CMP0017=NEW to the command line. Unfortunately this solution still does not allow such projects to build out of the box, and there is no good way to suggest the use of the new option. The only remaining solution to keep existing projects that exhibit this problem building is to restore the change originally made in commit b0118402 (Use absolute path to FindPackageHandleStandardArgs.cmake everywhere, 2010-09-28). This also avoids policy CMP0017 warnings for this particular instance of the problem the policy addresses.
* Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017Alex Neundorf2011-01-041-1/+1
| | | | | | | | This puts the new search behaviour for included files in action, i.e. now when a file from Modules/ include()s another file, it also gets the one from Modules/ included, i.e. the one it expects. Alex
* Use absolute path to FindPackageHandleStandardArgs.cmake everywhereAlex Neundorf2010-09-281-1/+1
| | | | | | | This is to avoid getting an (older) copy of FPHSA.cmake which is e.g. installed with KDE 4.5.0 and 4.5.1. Alex
* Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
|
* BUG: 0009611 Fix Arch independent FindJNI.cmake on LinuxMathieu Malaterre2010-07-301-18/+43
|
* -handle the REQUIRED and QUIET keywords in FindJNI.cmake, also set JNI_FOUNDAlexander Neundorf2009-12-211-0/+5
| | | | Alex
* BUG: 0009817 cmake does not search in solaris subdirectory for ↵Mathieu Malaterre2009-11-021-0/+1
| | | | JAVA_INCLUDE_PATH2. Thanks to Gaetan Lehmann for patch
* Fix for bug #9793 try to make sure jni.h matches jni_md.hBill Hoffman2009-10-291-2/+1
|
* Fix for bug#9686 convert java_home to a cmake path before using.Bill Hoffman2009-10-221-5/+8
|
* Fix for bug #9611, some more paths for OpenJDK.Bill Hoffman2009-09-301-1/+5
|
* Fix for bug #9611 do not hard code archs for search paths of java, look at ↵Bill Hoffman2009-09-301-35/+52
| | | | the machine type.
* Convert CMake find-modules to BSD LicenseBrad King2009-09-281-0/+13
| | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices.
* Bug #09476, add more search paths for jni.Bill Hoffman2009-09-161-1/+12
|
* ENH: add even more search directories for debian-like systems (see #8821)Alexander Neundorf2009-04-211-2/+8
| | | | Alex
* ENH: add one more search directory (see #8919)Alexander Neundorf2009-04-211-0/+1
| | | | Alex
* BUG: #7333, search dirs for FedoraAlexander Neundorf2008-07-201-0/+2
| | | | Alex
* BUG: #7360: add support for FreeBSDAlexander Neundorf2008-07-201-1/+8
| | | | | | BUG: #7345: add support for ppc Alex
* BUG: fix #6416: provide JNI_LIBRARIES and JNI_INCLUDE_DIRSAlexander Neundorf2008-07-201-3/+20
| | | | Alex
* ENH: have jni look more places on linuxBill Hoffman2008-04-081-1/+2
|
* BUG: Eliminate message - it pops up an annoying dialog whenever you run ↵David Cole2008-01-161-1/+0
| | | | CMakeSetup in a project with java wrapping turned on.
* BUG: fix for 5933, look for java in more reg entriesBill Hoffman2007-12-171-1/+5
|
* BUG: fix for bug 4605Bill Hoffman2007-04-041-4/+22
|
* ENH: Support JVM on MacAndy Cedilnik2006-12-261-1/+1
|
* ENH: More documentationAndy Cedilnik2006-10-271-0/+3
|
* ENH: Add support for libjvmAndy Cedilnik2006-10-271-0/+17
|
* ENH: remove JavaEmbeddingBill Hoffman2006-10-271-7/+4
|
* ENH: remove JavaEmbedding frameworkBill Hoffman2006-10-241-4/+1
|
* ENH: More locations for JavaAndy Cedilnik2006-10-121-0/+7
|
* ENH: some style fixes for the bookKen Martin2005-12-151-3/+3
|
* ENH: add documentation support for modulesBill Hoffman2005-12-141-2/+2
|
* ENH: java fixes from MathieuBill Hoffman2005-09-231-0/+5
|
* ENH: add support for java 1.5Bill Hoffman2005-09-081-0/+2
|
* STYLE: Fix typoAndy Cedilnik2005-08-031-1/+1
|
* ENH: Removing extra 64-bit search paths. They are now constructed ↵Brad King2005-04-071-3/+0
| | | | automatically from the paths listed.
* ENH: Adding support for 64-bit library paths. Contributed by Peter Vanroose.Brad King2005-04-071-0/+3
|
* ENH: bug fix 1573Bill Hoffman2005-02-101-0/+2
|
* ENH: Better finding of JNIAndy Cedilnik2004-02-061-0/+17
|
* FIX: for Windows users, it seems logical to favor native win32 installation ↵Sebastien Barre2003-10-161-4/+4
| | | | before Cygwin ones. Otherwise you can end up with bad mixes (part of the java tools were picked from the SDK, part from Cygwin)
* Ok, now it finds JNI on Mac OSX 10.2Andy Cedilnik2003-02-111-10/+14
|
* Fix typoAndy Cedilnik2003-02-111-3/+3
|
* Add missing locationAndy Cedilnik2003-02-111-0/+3
|
* Improve searching for java files on OSXAndy Cedilnik2003-02-111-10/+38
|
* Clean find for Python, add find for python 2.2 on windows, cleanup java on ↵Andy Cedilnik2002-11-141-0/+2
| | | | windows and add java 1.4 support
* ENH: Added /usr/local/lib/java search paths.Brad King2002-07-151-2/+6
|
* Add debian Java pathsAndy Cedilnik2002-06-171-1/+2
|
* ENH: Make everything ADVANCEDSebastien Barre2001-12-201-1/+8
|