diff options
-rw-r--r-- | project2/Jamfile.jam | 2 | ||||
-rw-r--r-- | project2/sql/rdbmsDataSource.h | 4 | ||||
-rw-r--r-- | project2/url/curlHelper.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/project2/Jamfile.jam b/project2/Jamfile.jam index f21ede2..c432bfa 100644 --- a/project2/Jamfile.jam +++ b/project2/Jamfile.jam @@ -34,6 +34,6 @@ package.install installp2cgi : : cgi//p2cgi ; package.install installp2fcgi : : cgi//p2fcgi ; package.install installp2daemon : : daemon//p2daemon ; package.install installheaders : <install-source-root>. : : : [ glob-tree *.h ] ; -package.install installheadersmisc : : : : [ glob ../libmisc/*.h ] ; +package.install installheadersmisc : : : : [ glob ../libmisc/*.h : ../libmisc/threads.h ] ; package.install installheadersdb : : : : [ glob ../libdbpp/*.h ] ; diff --git a/project2/sql/rdbmsDataSource.h b/project2/sql/rdbmsDataSource.h index 6d3b184..0497aab 100644 --- a/project2/sql/rdbmsDataSource.h +++ b/project2/sql/rdbmsDataSource.h @@ -5,8 +5,8 @@ #include <map> #include <set> #include "dataSource.h" -#include "../libdbpp/connection.h" -#include "../libdbpp/error.h" +#include <connection.h> +#include <error.h> #include "scriptLoader.h" #include "connectionLoader.h" diff --git a/project2/url/curlHelper.h b/project2/url/curlHelper.h index 9c0bbba..10c6c69 100644 --- a/project2/url/curlHelper.h +++ b/project2/url/curlHelper.h @@ -2,7 +2,7 @@ #define CURLHELPER_H #include "variables.h" -#include "../libmisc/curlsup.h" +#include <curlsup.h> class Curl : public CurlHandle { public: |