Fix FDBLibTLS to specify includes from the root.
This commit is contained in:
parent
268093a96d
commit
7cd73468f1
|
@ -20,9 +20,9 @@
|
|||
|
||||
#include "boost/config.hpp"
|
||||
|
||||
#include "FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLSPolicy.h"
|
||||
#include "Trace.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPolicy.h"
|
||||
#include "flow/Trace.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "ITLSPlugin.h"
|
||||
#include "fdbrpc/ITLSPlugin.h"
|
||||
#include "ReferenceCounted.h"
|
||||
|
||||
#include <tls.h>
|
||||
|
|
|
@ -18,9 +18,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "FDBLibTLSPolicy.h"
|
||||
#include "FDBLibTLSSession.h"
|
||||
#include "Trace.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPolicy.h"
|
||||
#include "FDBLibTLS/FDBLibTLSSession.h"
|
||||
#include "flow/Trace.h"
|
||||
|
||||
#include <openssl/bio.h>
|
||||
#include <openssl/err.h>
|
||||
|
|
|
@ -23,11 +23,11 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "ITLSPlugin.h"
|
||||
#include "fdbrpc/ITLSPlugin.h"
|
||||
#include "ReferenceCounted.h"
|
||||
|
||||
#include "FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLSVerify.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLS/FDBLibTLSVerify.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "FDBLibTLSSession.h"
|
||||
#include "Trace.h"
|
||||
#include "FDBLibTLS/FDBLibTLSSession.h"
|
||||
#include "flow/Trace.h"
|
||||
|
||||
#include <openssl/bio.h>
|
||||
#include <openssl/err.h>
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "ITLSPlugin.h"
|
||||
#include "fdbrpc/ITLSPlugin.h"
|
||||
#include "ReferenceCounted.h"
|
||||
|
||||
#include "FDBLibTLSPolicy.h"
|
||||
#include "FDBLibTLSVerify.h"
|
||||
#include "IRandom.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPolicy.h"
|
||||
#include "FDBLibTLS/FDBLibTLSVerify.h"
|
||||
#include "flow/IRandom.h"
|
||||
|
||||
#include <tls.h>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "FDBLibTLSVerify.h"
|
||||
#include "FDBLibTLS/FDBLibTLSVerify.h"
|
||||
|
||||
#include <openssl/objects.h>
|
||||
|
||||
|
|
|
@ -23,6 +23,6 @@
|
|||
FDBLibTLS_BUILD_SOURCES +=
|
||||
|
||||
|
||||
FDBLibTLS_CFLAGS := -fPIC -I/usr/local/include -I$(BOOSTDIR) -Iflow -Ifdbrpc -DUSE_UCONTEXT
|
||||
FDBLibTLS_CFLAGS := -fPIC -I/usr/local/include -I$(BOOSTDIR) -I. -Iflow -Ifdbrpc -DUSE_UCONTEXT
|
||||
|
||||
lib/libFDBLibTLS.a: bin/coverage.FDBLibTLS.xml
|
||||
|
|
|
@ -30,10 +30,10 @@
|
|||
|
||||
#include <boost/circular_buffer.hpp>
|
||||
|
||||
#include "ITLSPlugin.h"
|
||||
#include "fdbrpc/ITLSPlugin.h"
|
||||
#include "ReferenceCounted.h"
|
||||
|
||||
#include "FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPlugin.h"
|
||||
|
||||
#define TESTDATA "./testdata/"
|
||||
|
||||
|
|
|
@ -27,11 +27,11 @@
|
|||
|
||||
#include <openssl/objects.h>
|
||||
|
||||
#include "ITLSPlugin.h"
|
||||
#include "fdbrpc/ITLSPlugin.h"
|
||||
#include "ReferenceCounted.h"
|
||||
|
||||
#include "FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLSPolicy.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPlugin.h"
|
||||
#include "FDBLibTLS/FDBLibTLSPolicy.h"
|
||||
|
||||
struct FDBLibTLSVerifyTest {
|
||||
FDBLibTLSVerifyTest(std::string input):
|
||||
|
|
Loading…
Reference in New Issue