summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-28 18:00:36 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-28 18:00:36 (GMT)
commit8be12bb34f3aa77a86e1067958d676b4e5243d06 (patch)
tree5441685d01c22bf5e0ce10e4ad54a6f5c5adfc97 /Source/cmCTest.cxx
parente71b03cbf06910fa2e12d5ea6b7b10bde78b8694 (diff)
downloadCMake-8be12bb34f3aa77a86e1067958d676b4e5243d06.zip
CMake-8be12bb34f3aa77a86e1067958d676b4e5243d06.tar.gz
CMake-8be12bb34f3aa77a86e1067958d676b4e5243d06.tar.bz2
Ifdef code that is missing
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 2cd3072..629e9d8 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -481,6 +481,7 @@ int cmCTest::UpdateDirectory()
}
std::string extra_update_opts;
+#ifdef HAVE_CURL
if ( m_TestModel == cmCTest::NIGHTLY )
{
struct tm* t = ::GetNightlyTime(m_DartConfiguration["NightlyStartTime"]);
@@ -493,6 +494,7 @@ int cmCTest::UpdateDirectory()
extra_update_opts += "-D \"" + today_update_date +"\"";
//std::cout << "Update: " << extra_update_opts << std::endl;
}
+#endif
std::string command = cvsCommand + " -z3 update " + cvsOptions +
" " + extra_update_opts;