Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
CMake
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3,189
Issues
3,189
List
Boards
Labels
Service Desk
Milestones
Merge Requests
16
Merge Requests
16
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CMake
CMake
Commits
29f7f3a9
Commit
29f7f3a9
authored
Aug 24, 2001
by
Bill Hoffman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto detect lang:std:
parent
d1ca23a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
configure
configure
+3
-3
configure.in
configure.in
+3
-3
No files found.
configure
View file @
29f7f3a9
...
...
@@ -2007,7 +2007,7 @@ echo $ECHO_N "checking ansi standard C++ stream headers ... $ECHO_C" >&6
cat > conftest.cc <<!
#include <iostream>
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
cat >>confdefs.h <<\EOF
...
...
@@ -2027,7 +2027,7 @@ echo $ECHO_N "checking ansi standard namespace support ... $ECHO_C" >&6
#include <list>
void foo() { std::list<int> l; }
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
cat >>confdefs.h <<\EOF
...
...
@@ -2046,7 +2046,7 @@ echo $ECHO_N "checking ansi for scope support ... $ECHO_C" >&6
cat > conftest.cc <<!
void foo() { for(int i;;); for(int i;;); }
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
cat >>confdefs.h <<\EOF
...
...
configure.in
View file @
29f7f3a9
...
...
@@ -102,7 +102,7 @@ if test $ac_cv_prog_gxx = no; then
cat > conftest.cc <<!
#include <iostream>
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
AC_DEFINE(CMAKE_NO_ANSI_STREAM_HEADERS)
...
...
@@ -118,7 +118,7 @@ if test $ac_cv_prog_gxx = no; then
#include <list>
void foo() { std::list<int> l; }
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
AC_DEFINE(CMAKE_NO_STD_NAMESPACE)
...
...
@@ -133,7 +133,7 @@ if test $ac_cv_prog_gxx = no; then
cat > conftest.cc <<!
void foo() { for(int i;;); for(int i;;); }
!
if test -z "`${CXX} $CMAKE_
TEMPLATE_
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CMAKE_
ANSI_C
FLAGS $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
AC_DEFINE(CMAKE_NO_ANSI_FOR_SCOPE)
...
...
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