aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/bboxset2.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-05-26 17:12:12 -0400
committerErik Schnetter <schnetter@gmail.com>2013-05-26 17:12:12 -0400
commit55513a20c041ef782bbd5f74b0c011673cc9b32e (patch)
tree3e73086c028dd7e781ffd05444dc39e41f6e940a /Carpet/CarpetLib/src/bboxset2.cc
parent2cebe8a689c57817408a2ebf61e5ed0105b9c436 (diff)
CarpetLib: Disable bboxset2 by default
Change from CARPET_NO_BBOXSET2 and CARPET_BBOXSET2 to CARPET_ENABLE_BBOXSET2 (build it) and CARPET_USE_BBOXSET2 (use it).
Diffstat (limited to 'Carpet/CarpetLib/src/bboxset2.cc')
-rw-r--r--Carpet/CarpetLib/src/bboxset2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/bboxset2.cc b/Carpet/CarpetLib/src/bboxset2.cc
index 447d04951..77bbcd085 100644
--- a/Carpet/CarpetLib/src/bboxset2.cc
+++ b/Carpet/CarpetLib/src/bboxset2.cc
@@ -1,6 +1,6 @@
#include <cctk.h>
-#ifndef CARPET_NO_BBOXSET2
+#ifdef CARPET_ENABLE_BBOXSET2
#include "bboxset2.hh"
@@ -35,4 +35,4 @@ namespace bboxset2 {
} // namespace bboxset2
-#endif // #ifndef CARPET_NO_BBOXSET2
+#endif // #ifdef CARPET_ENABLE_BBOXSET2