make: Change configure to output ndn-cpp/ndn-cpp-config.h instead of config.h
diff --git a/ndn-cpp/c/common.h b/ndn-cpp/c/common.h
index 3f27199..72af018 100644
--- a/ndn-cpp/c/common.h
+++ b/ndn-cpp/c/common.h
@@ -7,7 +7,7 @@
#ifndef NDN_COMMON_H
#define NDN_COMMON_H
-#include "../../config.h"
+#include "../ndn-cpp-config.h"
#include <stdint.h>
#include <stddef.h>
diff --git a/ndn-cpp/c/util/ndn_memory.h b/ndn-cpp/c/util/ndn_memory.h
index 68721e8..abf3bcf 100644
--- a/ndn-cpp/c/util/ndn_memory.h
+++ b/ndn-cpp/c/util/ndn_memory.h
@@ -5,7 +5,7 @@
*/
/*
- * Based on HAVE_MEMCPY and HAVE_MEMSET in config.h, use the library version or a local implementation of memcmp, memcpy and memset.
+ * Based on HAVE_MEMCPY and HAVE_MEMSET in ndn-cpp-config.h, use the library version or a local implementation of memcmp, memcpy and memset.
*/
#ifndef NDN_MEMORY_H