Brad King
c5e00bf0b2
Merge topic 'fix-11925-vcxproj-filters-mismatch'
...
a6b52bd
VS10: Write header-only files in correct xml element (#11925 )
2011-05-24 14:34:56 -04:00
Brad King
44b7f2f5bc
Merge topic 'string-RANDOM-seed'
...
7ff98b7
Fix forced-seed argument type in string(RANDOM)
3d92c8c
Explicitly cast time value in cmSystemTools::RandomSeed
eb6f461
VS 6: Define _WIN32_WINNT to load wincrypt.h correctly
e1b0a11
Improve string(RANDOM) default seed
2011-05-24 14:34:51 -04:00
Brad King
0f843584f3
Merge topic 'doc-output_required_files'
...
5cf4ff6
Document status of output_required_files command (#12214 )
2011-05-24 14:34:48 -04:00
Brad King
14a6bda1a2
Merge topic 'CPackRPM-fixForAIX'
...
db45b10
CPack make RPM work on AIX. fix #0012183 merge patch from Pasi Valminen
2011-05-24 14:34:46 -04:00
Brad King
1605784f47
Merge topic 'absoft-fortran-compiler'
...
8bd3e51
Absoft: Enable FortranCInterface check in Fortran test
d7b376b
Absoft: Detect implicit link libraries on Linux and Mac
ac5b999
Add Absoft Fortran compiler id and basic flags
2011-05-24 14:34:40 -04:00
Brad King
a78acb2c82
Merge topic 'fix-cpack-osxx11-perms'
...
0fb388c
Ensure executable files have executable permissions.
2011-05-24 14:34:37 -04:00
Brad King
da1b688325
Merge topic 'rule-messages'
...
dca304e
Merge branch 'MakeCodeBlocksGeneratorNonVerbose2' into rule-messages
051cee0
Revert "Honor RULE_MESSAGES property for build target messages" (#12190 )
2011-05-24 14:34:33 -04:00
Brad King
7ffb678e4b
Merge topic 'intel-12-vs-2005'
...
3a8add0
ENH: Fix Intel 12 plugin project generation for VS < 10
2011-05-24 14:34:28 -04:00
KWSys Robot
0c64fcd309
KWSys Nightly Date Stamp
2011-05-24 00:12:11 -04:00
David Cole
a6b52bd8ef
VS10: Write header-only files in correct xml element ( #11925 )
2011-05-23 17:30:23 -04:00
Brad King
7ff98b7a8c
Fix forced-seed argument type in string(RANDOM)
...
Clang points out that local variable 'seed' needs to be "unsigned int":
Source/cmStringCommand.cxx:828:21: warning: operands of ? are integers
of different signs: 'int' and 'unsigned int' [-Wsign-compare]
srand(force_seed? seed : cmSystemTools::RandomSeed());
^ ~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
2011-05-23 15:57:41 -04:00
Brad King
5cf4ff6e1f
Document status of output_required_files command ( #12214 )
...
This command is barely functional and exists only for historical
reasons. State this in the documentation.
2011-05-23 13:21:15 -04:00
KWSys Robot
cac769f3a7
KWSys Nightly Date Stamp
2011-05-23 00:12:39 -04:00
KWSys Robot
b3bab3ce03
KWSys Nightly Date Stamp
2011-05-22 00:13:03 -04:00
Eric NOULARD
db45b10ff7
CPack make RPM work on AIX. fix #0012183 merge patch from Pasi Valminen
2011-05-21 12:34:37 +02:00
KWSys Robot
41c83c1bdc
KWSys Nightly Date Stamp
2011-05-21 00:13:03 -04:00
Brad King
8bd3e51a1c
Absoft: Enable FortranCInterface check in Fortran test
...
Exclude module symbol mangling because Absoft mangles with ".in." so the
symbols cannot be referenced from C.
2011-05-20 09:00:21 -04:00
Brad King
d7b376b3a7
Absoft: Detect implicit link libraries on Linux and Mac
...
Use the "-X -v" flag to the Absoft front-end to pass "-v" to the gcc it
invokes under the hood. Teach CMakeParseImplicitLinkInfo to exclude
linker version lines from consideration as link lines. Fix parsing of
Sun's linker search path option "-Y..." to avoid conflict with the Mac
linker option "-Y<num>".
2011-05-20 08:57:51 -04:00
Brad King
ac5b999fff
Add Absoft Fortran compiler id and basic flags
...
Identification at preprocessing time depends on definition of __ABSOFT__
to be added in service pack V11.1.2 of the compiler.
2011-05-20 08:53:36 -04:00
KWSys Robot
c5aae0e625
KWSys Nightly Date Stamp
2011-05-20 00:12:09 -04:00
Brad King
3d92c8c827
Explicitly cast time value in cmSystemTools::RandomSeed
...
Use static_cast to avoid warnings like
conversion to ‘unsigned int’ from ‘__time_t’ may alter its value
conversion to ‘unsigned int’ from ‘__suseconds_t’ may alter its value
We do not care if the value is truncated because we are looking for just
32 bits anyway.
2011-05-19 07:56:04 -04:00
KWSys Robot
14abf9f3d8
KWSys Nightly Date Stamp
2011-05-19 00:10:07 -04:00
Brad King
eb6f461fc1
VS 6: Define _WIN32_WINNT to load wincrypt.h correctly
2011-05-18 10:09:23 -04:00
KWSys Robot
c7d4cf1db1
KWSys Nightly Date Stamp
2011-05-18 00:12:05 -04:00
Brad King
e1b0a11dd4
Improve string(RANDOM) default seed
...
The naive time(0) seed is unique only within one second. Instead try to
read a real source of entropy and otherwise fall back to a combination
of the process id and high-resolution time.
2011-05-17 10:07:26 -04:00
KWSys Robot
dc2a45fa3f
KWSys Nightly Date Stamp
2011-05-17 00:13:04 -04:00
Wesley Turner
0fb388c733
Ensure executable files have executable permissions.
...
Fix the OSX X11 CPack generator to make sure the installer
that it generates contains executable files.
2011-05-16 18:15:32 -04:00
Brad King
dca304ec8d
Merge branch 'MakeCodeBlocksGeneratorNonVerbose2' into rule-messages
...
Conflicts:
Source/cmGlobalUnixMakefileGenerator3.cxx
Source/cmGlobalUnixMakefileGenerator3.h
2011-05-16 11:28:07 -04:00
Brad King
051cee0096
Revert "Honor RULE_MESSAGES property for build target messages" ( #12190 )
...
This reverts commit dc36b34994
. It broke
dependency logic instead of only silencing messages. Revert to previous
behavior.
2011-05-16 11:26:58 -04:00
Brad King
3a8add058b
ENH: Fix Intel 12 plugin project generation for VS < 10
...
Suggested-by: Dick Munroe <munroe@csworks.com>
2011-05-16 10:13:04 -04:00
KWSys Robot
a77dfb6d64
KWSys Nightly Date Stamp
2011-05-16 00:12:06 -04:00
KWSys Robot
41ce1ea2d4
KWSys Nightly Date Stamp
2011-05-15 00:12:04 -04:00
KWSys Robot
30bf6162be
KWSys Nightly Date Stamp
2011-05-14 00:13:04 -04:00
KWSys Robot
69677ca471
KWSys Nightly Date Stamp
2011-05-13 00:12:04 -04:00
KWSys Robot
da9ba5726f
KWSys Nightly Date Stamp
2011-05-12 00:13:02 -04:00
KWSys Robot
692f62fc3e
KWSys Nightly Date Stamp
2011-05-11 00:12:05 -04:00
Brad King
7faffc988c
Merge topic 'doc-CMAKE_BUILD_TYPE-config-case-issue-12148'
...
d7d71eb
Fix case typo in CMAKE_BUILD_TYPE docs (#12148 )
2011-05-10 13:58:23 -04:00
Brad King
a4d935933b
Merge topic 'FixVirtualFoldersInEclipse'
...
a7d8d49
-fix VirtualFolders in Eclipse under Windows
2011-05-10 13:58:15 -04:00
KWSys Robot
c32262bc04
KWSys Nightly Date Stamp
2011-05-10 00:10:21 -04:00
Brad King
ee9fc4b1d3
KWSys: Fix leaked FILE in EncodeExecutable error case
...
This leak was detected by cppcheck static analysis.
Author: Hans Johnson <hans-johnson@uiowa.edu>
Change-Id: I1b81cb245acb9a6033f24ecc8d1452ca4df8371a
2011-05-09 08:40:03 -04:00
KWSys Robot
afa83eb4cf
KWSys Nightly Date Stamp
2011-05-09 08:40:03 -04:00
KWSys Robot
6aa45ac2ee
KWSys Nightly Date Stamp
2011-05-08 00:12:16 -04:00
KWSys Robot
d3e09bba6a
KWSys Nightly Date Stamp
2011-05-07 00:13:05 -04:00
Alex Neundorf
a7d8d49b8f
-fix VirtualFolders in Eclipse under Windows
...
Under Windows "locationURI" must be used for virtual folders, while
"location" must be used only for linked folders. Under Linux it doesn't
seem to matter.
Alex
2011-05-06 22:44:45 +02:00
KWSys Robot
303c7e8f40
KWSys Nightly Date Stamp
2011-05-06 00:12:04 -04:00
KWSys Robot
19e3397942
KWSys Nightly Date Stamp
2011-05-05 00:10:10 -04:00
KWSys Robot
aad6c4481d
KWSys Nightly Date Stamp
2011-05-04 00:13:04 -04:00
Brad King
db96c05f74
Merge topic 'OpenBSD-host-processor-issue-12143'
...
0bfabf9
OpenBSD: Use 'arch -s' for host processor (#12143 )
2011-05-03 13:43:09 -04:00
Brad King
d7d71ebda3
Fix case typo in CMAKE_BUILD_TYPE docs ( #12148 )
...
Reported-by: Stephen Kelly <steveire@gmail.com>
2011-05-03 12:49:41 -04:00
KWSys Robot
9c84f747c3
KWSys Nightly Date Stamp
2011-05-03 09:10:01 -04:00