diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-02-28 18:00:36 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-02-28 18:00:36 (GMT) |
commit | 8be12bb34f3aa77a86e1067958d676b4e5243d06 (patch) | |
tree | 5441685d01c22bf5e0ce10e4ad54a6f5c5adfc97 /Source/cmCTest.cxx | |
parent | e71b03cbf06910fa2e12d5ea6b7b10bde78b8694 (diff) | |
download | CMake-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.cxx | 2 |
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; |