diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-31 16:03:53 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-31 16:04:21 -0400 |
commit | b027961b96be1382cbefbcedcb79c0cf349863a6 (patch) | |
tree | 1aafc7225d6d099acef0289992a9d6d8543aaea3 /python/pyinterp.h | |
parent | d2df584373c6a083908964369497f77ada10e16d (diff) | |
download | fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.tar.gz fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.tar.bz2 fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.zip |
Removed unnecessary #ifdef block. pyinterp.h now guards itself.
Diffstat (limited to 'python/pyinterp.h')
-rw-r--r-- | python/pyinterp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/pyinterp.h b/python/pyinterp.h index df0e00dd..de910223 100644 --- a/python/pyinterp.h +++ b/python/pyinterp.h @@ -35,6 +35,8 @@ #include "scope.h" #include "session.h" +#if defined(HAVE_BOOST_PYTHON) + #include <boost/python.hpp> #include <Python.h> @@ -126,4 +128,6 @@ public: } // namespace ledger +#endif // HAVE_BOOST_PYTHON + #endif // _PYINTERP_H |