commit | 6e22904ba5e4ba36a2a3a597be3c218bb9e141d2 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Oct 10 11:09:49 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Oct 10 11:09:49 2013 -0700 |
tree | 7d6770c876351527307d32bfe8625f4fc062b978 | |
parent | f21e2246355a5a43b6d1f65bed58b8085d24bf7d [diff] |
make: Create include directory for make install to install headers. Put ndn-cpp-config.h in include/ndn-cpp.
diff --git a/ndn-cpp/security/identity/basic-identity-storage.cpp b/ndn-cpp/security/identity/basic-identity-storage.cpp index 130c5b1..e383a32 100644 --- a/ndn-cpp/security/identity/basic-identity-storage.cpp +++ b/ndn-cpp/security/identity/basic-identity-storage.cpp
@@ -6,7 +6,7 @@ */ // Only compile if ndn-cpp-config.h defines NDN_CPP_HAVE_SQLITE3. -#include "../../ndn-cpp-config.h" +#include <ndn-cpp/ndn-cpp-config.h> #ifdef NDN_CPP_HAVE_SQLITE3 #if 1
diff --git a/ndn-cpp/security/identity/basic-identity-storage.hpp b/ndn-cpp/security/identity/basic-identity-storage.hpp index 1cc2eb7..2e0db30 100644 --- a/ndn-cpp/security/identity/basic-identity-storage.hpp +++ b/ndn-cpp/security/identity/basic-identity-storage.hpp
@@ -9,7 +9,7 @@ #define NDN_BASIC_IDENTITY_STORAGE_H // Only compile if ndn-cpp-config.h defines NDN_CPP_HAVE_SQLITE3. -#include "../../ndn-cpp-config.h" +#include <ndn-cpp/ndn-cpp-config.h> #ifdef NDN_CPP_HAVE_SQLITE3 #include <sqlite3.h>
diff --git a/ndn-cpp/security/identity/osx-private-key-storage.cpp b/ndn-cpp/security/identity/osx-private-key-storage.cpp index 2a58d85..5cca7ca 100644 --- a/ndn-cpp/security/identity/osx-private-key-storage.cpp +++ b/ndn-cpp/security/identity/osx-private-key-storage.cpp
@@ -6,7 +6,7 @@ */ // Only compile if ndn-cpp-config.h defines NDN_CPP_HAVE_OSX_SECURITY 1. -#include "../../ndn-cpp-config.h" +#include <ndn-cpp/ndn-cpp-config.h> #if NDN_CPP_HAVE_OSX_SECURITY #include <fstream>
diff --git a/ndn-cpp/security/identity/osx-private-key-storage.hpp b/ndn-cpp/security/identity/osx-private-key-storage.hpp index d206a04..729bf9e 100644 --- a/ndn-cpp/security/identity/osx-private-key-storage.hpp +++ b/ndn-cpp/security/identity/osx-private-key-storage.hpp
@@ -9,7 +9,7 @@ #define NDN_OSX_PRIVATEKEY_STORAGE_H // Only compile if ndn-cpp-config.h defines NDN_CPP_HAVE_OSX_SECURITY 1. -#include "../../ndn-cpp-config.h" +#include <ndn-cpp/ndn-cpp-config.h> #if NDN_CPP_HAVE_OSX_SECURITY #include "../../common.hpp"