Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CMake
CMake
Commits
d6aee2bc
Commit
d6aee2bc
authored
Aug 24, 2001
by
Bill Hoffman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG: fix for SGI Native compiler
parent
930ea3ef
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2278 additions
and
765 deletions
+2278
-765
Tests/Complex/cmTestConfigure.h.in
Tests/Complex/cmTestConfigure.h.in
+4
-0
Tests/ComplexOneConfig/cmTestConfigure.h.in
Tests/ComplexOneConfig/cmTestConfigure.h.in
+4
-0
Tests/ComplexRelativePaths/cmTestConfigure.h.in
Tests/ComplexRelativePaths/cmTestConfigure.h.in
+4
-0
configure
configure
+2254
-764
configure.in
configure.in
+12
-1
No files found.
Tests/Complex/cmTestConfigure.h.in
View file @
d6aee2bc
...
...
@@ -3,3 +3,7 @@
#define STRING_VAR "${STRING_VAR}"
#undef CMAKE_NO_STD_NAMESPACE
#undef CMAKE_NO_ANSI_STREAM_HEADERS
#undef CMAKE_NO_ANSI_FOR_SCOPE
Tests/ComplexOneConfig/cmTestConfigure.h.in
View file @
d6aee2bc
...
...
@@ -3,3 +3,7 @@
#define STRING_VAR "${STRING_VAR}"
#undef CMAKE_NO_STD_NAMESPACE
#undef CMAKE_NO_ANSI_STREAM_HEADERS
#undef CMAKE_NO_ANSI_FOR_SCOPE
Tests/ComplexRelativePaths/cmTestConfigure.h.in
View file @
d6aee2bc
...
...
@@ -3,3 +3,7 @@
#define STRING_VAR "${STRING_VAR}"
#undef CMAKE_NO_STD_NAMESPACE
#undef CMAKE_NO_ANSI_STREAM_HEADERS
#undef CMAKE_NO_ANSI_FOR_SCOPE
configure
View file @
d6aee2bc
This diff is collapsed.
Click to expand it.
configure.in
View file @
d6aee2bc
...
...
@@ -30,7 +30,18 @@ case $system in
echo "$ac_t""no" 1>&6
fi
rm -f conftest*
;;
;;
IRIX-6* | IRIX64-6* | IRIX-64-6*)
echo $ac_n "checking whether ${CC} accepts -LANG:std""... $ac_c" 1>&6
echo 'void f(){}' > conftest.c
if test -z "`${CC} -LANG:std -c conftest.c 2>&1`"; then
echo "$ac_t""yes" 1>&6
CMAKE_ANSI_CFLAGS="-LANG:std"
else
echo "$ac_t""no" 1>&6
fi
rm -f conftest*
;;
esac
fi
AC_SUBST(CMAKE_ANSI_CFLAGS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment