summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ACML-GPU supportedAlexey Ozeritsky2011-08-131-11/+43
|
* gotoblas supportedAlexey Ozeritsky2011-08-112-1/+30
|
* fixed: search of acml librariesAlexey Ozeritsky2011-08-112-56/+46
|
* KWSys Nightly Date StampKWSys Robot2011-08-111-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-08-101-1/+1
|
* KWSys: __int64 and long long may be same type in specializationBrad King2011-08-091-4/+3
| | | | | | | | | | | | | For the specialization of hash<>(), the types long long and __int64 may be the same type. While the CMakeLists indicate that if __int64 is a alias for another type the it will not be enabled, on mingw they both appear to be the same type and enabled. This patch only enable specialization for long long OR __int64 to avoid the potential conflict. Author: Bradley Lowekamp <blowekamp@mail.nih.gov> Change-Id: I813a9ac008b296fab5a369c48e6dd5460fd0c035
* KWSys Nightly Date StampKWSys Robot2011-08-091-1/+1
|
* KWSys: Fix using long long and __int64 with hash_(set|map)Brad King2011-08-081-1/+24
| | | | | | | | Added hash function for types long long and __int64, conditional on detection by FundamentalType. Author: Bradley Lowekamp <blowekamp@mail.nih.gov> Change-Id: Ie273f55cd4387ca3dbbe00b9d96ad4935e456c9e
* KWSys Nightly Date StampKWSys Robot2011-08-081-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-08-071-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-08-061-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-08-051-1/+1
|
* KWSys: Avoid conversion warning in SystemTools::GetTimeBrad King2011-08-041-1/+1
| | | | | Convert struct timeval members to double explicitly to avoid a GCC warning with -Wconversion.
* KWSys Nightly Date StampKWSys Robot2011-08-041-1/+1
|
* KWSys: Simplify SystemTools::GetTime implementation (#12261)Brad King2011-08-032-64/+17
| | | | | | We already use GetSystemTimeAsFileTime() and gettimeofday() unconditionally on supported Windows and non-Windows platforms, respectively. Remove outdated portability complexity.
* KWSys Nightly Date StampKWSys Robot2011-08-031-1/+1
|
* Merge topic 'CodeBlocksIncludeDirsAndDefines'David Cole2011-08-025-107/+181
|\ | | | | | | | | | | | | e2e8c0a Also put builtin include dirs into CodeBlocks project file 92c0dc5 Remove useless line of code a5683f8 Patch by Campbell Barton: puts definitions into C::B project file
| * Also put builtin include dirs into CodeBlocks project fileAlex Neundorf2011-08-015-106/+165
| | | | | | | | | | | | | | | | Refactor code from CMakeFindEclipseCDT4.cmake so it can be used alkso for CodeBlocks, and move it into new file CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake. Alex
| * Remove useless line of codeAlex Neundorf2011-08-011-1/+0
| | | | | | | | Alex
| * Patch by Campbell Barton: puts definitions into C::B project fileAlex Neundorf2011-07-291-0/+16
| | | | | | | | | | | | | | This enables Codeblocks and QtCreator to do proper highlighting based on defined macros. Alex
* | Merge topic 'FindGIFAndFreetypeCleanupAndEnhancements'David Cole2011-08-022-36/+41
|\ \ | | | | | | | | | | | | | | | | | | | | | 81a70c6 Add basic version check for giflib 2462f65 FindGif: add giflib4 as one more name for the library under Windows f97620e FindGIF/FindFreetype.cmake: remove standard search paths from find-calls 7c38523 Strip trailing whitespace
| * | Add basic version check for giflibAlex Neundorf2011-08-011-2/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | This is used e.g. in KDE, there on Solaris an old version of giflib was found (version 3), which could be detected by checking for the UserData member variable: http://websvn.kde.org/?view=revision&revision=545738 Alex
| * | FindGif: add giflib4 as one more name for the library under WindowsAlex Neundorf2011-07-271-1/+1
| | | | | | | | | | | | Alex
| * | FindGIF/FindFreetype.cmake: remove standard search paths from find-callsAlex Neundorf2011-07-272-21/+1
| | | | | | | | | | | | | | | | | | | | | | | | In both files find_path() and find_library() are called with multiple additional search PATHS which are already anyway part of the default search dirs, so it should be safe to remove them. Alex
| * | Strip trailing whitespaceAlex Neundorf2011-07-272-12/+12
| | | | | | | | | | | | Alex
* | | Merge topic 'FindPostgresqlImprovements'David Cole2011-08-021-30/+23
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 825c457 FindPostgreSQL: fix PATH_SUFFIXES, better output for FPHSA e159bb5 Mark the results from find() as advanced da1bdaf Use FPHSA(), remove unnecessary stuff and don't recommend link_directories() 217d068 More PATH_SUFFIXES for finding Postgresql and also search catalog/pg_type.h
| * | | FindPostgreSQL: fix PATH_SUFFIXES, better output for FPHSAAlex Neundorf2011-08-011-5/+4
| | | | | | | | | | | | | | | | Alex
| * | | Mark the results from find() as advancedAlex Neundorf2011-08-011-0/+2
| | | | | | | | | | | | | | | | Alex
| * | | Use FPHSA(), remove unnecessary stuff and don't recommend link_directories()Alex Neundorf2011-08-011-38/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | -don't recommend using link_directories() -don't do the extra if(EXISTS) checks, since the code is already inside a if(PostgreSQL_FOUND) Alex
| * | | More PATH_SUFFIXES for finding Postgresql and also search catalog/pg_type.hAlex Neundorf2011-08-011-0/+22
| |/ / | | | | | | | | | | | | | | | Patch from Jaroslaw Staniek, reviewed by Andrew Maclean Alex
* | | Merge topic 'fix-11866-add-watcom-sys-libs'David Cole2011-08-023-0/+73
|\ \ \ | | | | | | | | | | | | | | | | | | | | ff59716 Watcom: Use correct args for execute_process call (#11866) 80769cd Add Watcom support to InstallRequiredSystemLibraries (#11866)
| * | | Watcom: Use correct args for execute_process call (#11866)David Cole2011-08-011-2/+2
| | | | | | | | | | | | | | | | | | | | I botched an exec_program to execute_process translation on Friday. RESULT_VARIABLE is the correct argument to execute_process.
| * | | Add Watcom support to InstallRequiredSystemLibraries (#11866)David Cole2011-07-293-0/+73
| | |/ | |/| | | | | | | | | | | | | | | | Also adds code to determine the version of the Watcom compiler in use. Thanks to J Decker for the patch.
* | | Merge topic 'doc-WIN32-cygwin'David Cole2011-08-021-1/+1
|\ \ \ | | | | | | | | | | | | | | | | 1f641de Documentation: WIN32 not defined on Cygwin (#12334)
| * | | Documentation: WIN32 not defined on Cygwin (#12334)Brad King2011-07-291-1/+1
| |/ / | | | | | | | | | | | | | | | Since commit 85c0a69a (Cygwin: Do not define 'WIN32', 2010-12-17) WIN32 is not defined on Cygwin. Update documentation of the WIN32 variable accordingly.
* | | Merge topic 'ExcludeCMakesFilesFromCodeBlocksProject'David Cole2011-08-021-0/+7
|\ \ \ | | | | | | | | | | | | | | | | f32f6f0 Don't put files from CMAKE_ROOT into CodeBlocks projects (#12110)
| * | | Don't put files from CMAKE_ROOT into CodeBlocks projects (#12110)Alex Neundorf2011-07-291-0/+7
| |/ / | | | | | | | | | | | | | | | This causes that all files in C::B are displayed in a tree starting at / Alex
* | | Merge topic 'cpack-nsis-multi-installs'David Cole2011-08-023-15/+11
|\ \ \ | | | | | | | | | | | | | | | | e6d2bcf CPack/NSIS: Fix reinstall and multiple install issues when using components.
| * | | CPack/NSIS: Fix reinstall and multiple install issues when using components.Clinton Stimpson2011-07-293-15/+11
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix NSIS template to more thoroughly use CPACK_PACKAGE_INSTALL_REGISTRY_KEY. This allows different versions of software to have a separate sections in the registry to keep track of things (installed components, and uninstall stuff). Change default of CPACK_PACKAGE_INSTALL_REGISTRY_KEY to follow the value of CPACK_PACKAGE_INSTALL_DIRECTORY so if an installation overwrites another installation, the proper registry entries are more likely to be overwritten. Fix CPack/NSIS generator to not insert code in the NSIS template to skip installation of already installed components. This enables a repair like behavior and also enables installing patch releases on top of an older installation.
* | | Merge topic 'fix-12299-add-vs10-scc-support'David Cole2011-08-021-2/+17
|\ \ \ | | | | | | | | | | | | | | | | 05ddfbf VS10: Add SCC support
| * | | VS10: Add SCC supportSteven Velez2011-07-291-2/+17
| |/ / | | | | | | | | | | | | Honor the properties that were added for earlier versions of visual studio.
* | | Merge topic 'fix-12245-add-wlib--c-flag'David Cole2011-08-021-2/+2
|\ \ \ | | | | | | | | | | | | | | | | a0974ae Watcom: Add -c flag to wlib calls (#12245)
| * | | Watcom: Add -c flag to wlib calls (#12245)David Cole2011-07-291-2/+2
| |/ / | | | | | | | | | | | | | | | | | | Allows wlib to generate proper exports if two routines have the same spelling, but different case (like Scale and scale). Thanks to J Decker for the patch.
* | | Merge topic 'adjust-path-for-all-generators-test'David Cole2011-08-021-0/+22
|\ \ \ | | | | | | | | | | | | | | | | 0baf565 Ensure libgmp-10.dll is in the PATH for CMakeTestAllGenerators
| * | | Ensure libgmp-10.dll is in the PATH for CMakeTestAllGeneratorsDavid Cole2011-07-291-0/+22
| |/ / | | | | | | | | | | | | | | | | | | | | | But only if it exists at the default location: C:/MinGW/bin/libgmp-10.dll This is so that the pop-up dialog about not being able to load that dll does not hang the test when there's nobody watching.
* | | Merge topic 'fix-updategit-test'David Cole2011-08-021-3/+5
|\ \ \ | | | | | | | | | | | | | | | | 0375865 Fix machine-specific UpdateGIT test failures
| * | | Fix machine-specific UpdateGIT test failuresDavid Cole2011-07-291-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | Generated Update.xml file is larger than the previously hard-coded limit of 4096. Introduce variable max_update_xml_size and bump it up to 16k for reliable test runs.
* | | | Merge topic 'fix-8707-add-vs-globals'David Cole2011-08-025-6/+39
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | df95772 Add support for Visual Studio project-specific globals (#8707)
| * | | | Add support for Visual Studio project-specific globals (#8707)David Cole2011-07-295-6/+39
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Pau Garcia i Quiles for the inspiration for the patch. I've tweaked it a bit compared to what's in the bug tracker: this commit does not allow empty global variable names. I also added usage of the new feature to an existing test. Although it has no effect on the resulting Visual Studio projects, you can verify that the VSResource test produces a non-empty globals section in the generated .vcproj(x) files.
* | | | Merge topic 'qt4-use-check-cxx-symbol'David Cole2011-08-021-7/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | de30173 Remove C compiler requirement from FindQt4.cmake