Fix build/dependency issue.
bug 10427951
Change-Id: I798a0014f299b22c26bea3205823fcbb64f7ec70
diff --git a/cpp/rsCppInternal.h b/cpp/rsCppInternal.h
index 3f1e130..904c5ab 100644
--- a/cpp/rsCppInternal.h
+++ b/cpp/rsCppInternal.h
@@ -17,6 +17,8 @@
#ifndef ANDROID_RS_CPP_INTERNAL_H
#define ANDROID_RS_CPP_INTERNAL_H
+#include "rsCppUtils.h"
+
#define tryDispatch(rs, dispatch) \
if (rs->getError() == RS_SUCCESS) { \
dispatch; \
@@ -25,4 +27,9 @@
#define createDispatch(rs, dispatch) \
rs->getError() == RS_SUCCESS ? dispatch : NULL
+#undef LOG_TAG
+#undef LOG_NDEBUG
+#define LOG_NDEBUG 0
+#define LOG_TAG "rsC++"
+
#endif