From c44f32f76d1120a57eeb3dce53a78aec5e3d4786 Mon Sep 17 00:00:00 2001 From: shefty Date: Fri, 21 Mar 2008 01:59:29 +0000 Subject: [PATCH] winverbs: include parent directory ('..') in include path replace #include "..\wv_ioctl.h" with just #include "wv_ioctl.h" by having the parent directory in the include path. Signed-off-by: Sean Hefty git-svn-id: svn://openib.tc.cornell.edu/gen1@1007 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86 --- branches/winverbs/core/winverbs/user/SOURCES | 2 +- branches/winverbs/core/winverbs/user/wv_cq.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_device.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_ep.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_listen.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_pd.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_pd.h | 2 +- branches/winverbs/core/winverbs/user/wv_provider.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_qp.cpp | 2 +- branches/winverbs/core/winverbs/user/wv_srq.cpp | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/branches/winverbs/core/winverbs/user/SOURCES b/branches/winverbs/core/winverbs/user/SOURCES index 7dd6fb79..eaee43da 100644 --- a/branches/winverbs/core/winverbs/user/SOURCES +++ b/branches/winverbs/core/winverbs/user/SOURCES @@ -23,7 +23,7 @@ SOURCES = \ wv_srq.cpp \ wv_uverbs.cpp -INCLUDES = ..\..\..\inc;..\..\..\inc\user; +INCLUDES = ..;..\..\..\inc;..\..\..\inc\user; USER_C_FLAGS = $(USER_C_FLAGS) -DEXPORT_WV_SYMBOLS diff --git a/branches/winverbs/core/winverbs/user/wv_cq.cpp b/branches/winverbs/core/winverbs/user/wv_cq.cpp index 8b7e8558..ff3d192a 100644 --- a/branches/winverbs/core/winverbs/user/wv_cq.cpp +++ b/branches/winverbs/core/winverbs/user/wv_cq.cpp @@ -31,7 +31,7 @@ #include "wv_base.h" #include "wv_cq.h" #include "wv_qp.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVCompletionQueue::CWVCompletionQueue(CWVDevice *pDevice) { diff --git a/branches/winverbs/core/winverbs/user/wv_device.cpp b/branches/winverbs/core/winverbs/user/wv_device.cpp index e452df44..7eb7fdea 100644 --- a/branches/winverbs/core/winverbs/user/wv_device.cpp +++ b/branches/winverbs/core/winverbs/user/wv_device.cpp @@ -32,7 +32,7 @@ #include "wv_base.h" #include "wv_device.h" #include "wv_cq.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" #include "wv_pd.h" #define WV_MAX_LIB_NAME 32 diff --git a/branches/winverbs/core/winverbs/user/wv_ep.cpp b/branches/winverbs/core/winverbs/user/wv_ep.cpp index 70c3921b..a9a1fa36 100644 --- a/branches/winverbs/core/winverbs/user/wv_ep.cpp +++ b/branches/winverbs/core/winverbs/user/wv_ep.cpp @@ -29,7 +29,7 @@ #include "wv_base.h" #include "wv_ep.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVConnectEndpoint::CWVConnectEndpoint(CWVProvider *pProvider) { diff --git a/branches/winverbs/core/winverbs/user/wv_listen.cpp b/branches/winverbs/core/winverbs/user/wv_listen.cpp index be89ff87..d031a5e3 100644 --- a/branches/winverbs/core/winverbs/user/wv_listen.cpp +++ b/branches/winverbs/core/winverbs/user/wv_listen.cpp @@ -29,7 +29,7 @@ #include "wv_base.h" #include "wv_listen.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVListen::CWVListen(CWVProvider *pProvider) { diff --git a/branches/winverbs/core/winverbs/user/wv_pd.cpp b/branches/winverbs/core/winverbs/user/wv_pd.cpp index 86268d2f..1817452e 100644 --- a/branches/winverbs/core/winverbs/user/wv_pd.cpp +++ b/branches/winverbs/core/winverbs/user/wv_pd.cpp @@ -31,7 +31,7 @@ #include "wv_pd.h" #include "wv_srq.h" #include "wv_qp.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVProtectionDomain::CWVProtectionDomain(CWVDevice *pDevice) { diff --git a/branches/winverbs/core/winverbs/user/wv_pd.h b/branches/winverbs/core/winverbs/user/wv_pd.h index cc4933e0..bcecd660 100644 --- a/branches/winverbs/core/winverbs/user/wv_pd.h +++ b/branches/winverbs/core/winverbs/user/wv_pd.h @@ -34,7 +34,7 @@ #include "rdma\winverbs.h" #include "wv_device.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" class CWVProtectionDomain : IWVProtectionDomain { diff --git a/branches/winverbs/core/winverbs/user/wv_provider.cpp b/branches/winverbs/core/winverbs/user/wv_provider.cpp index b91fb0e4..5c7c64eb 100644 --- a/branches/winverbs/core/winverbs/user/wv_provider.cpp +++ b/branches/winverbs/core/winverbs/user/wv_provider.cpp @@ -34,7 +34,7 @@ #include "wv_device.h" #include "wv_ep.h" #include "wv_listen.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVProvider::CWVProvider() { diff --git a/branches/winverbs/core/winverbs/user/wv_qp.cpp b/branches/winverbs/core/winverbs/user/wv_qp.cpp index 50391d52..98e3bc64 100644 --- a/branches/winverbs/core/winverbs/user/wv_qp.cpp +++ b/branches/winverbs/core/winverbs/user/wv_qp.cpp @@ -31,7 +31,7 @@ #include "wv_cq.h" #include "wv_qp.h" #include "wv_srq.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" static void WvVerbsConvertQpCreate(uvp_qp_create_t *pVerbsAttr, WV_QP_CREATE *pAttr) { diff --git a/branches/winverbs/core/winverbs/user/wv_srq.cpp b/branches/winverbs/core/winverbs/user/wv_srq.cpp index f99259a0..7d8550c5 100644 --- a/branches/winverbs/core/winverbs/user/wv_srq.cpp +++ b/branches/winverbs/core/winverbs/user/wv_srq.cpp @@ -29,7 +29,7 @@ #include "wv_base.h" #include "wv_srq.h" -#include "..\wv_ioctl.h" +#include "wv_ioctl.h" CWVSharedReceiveQueue::CWVSharedReceiveQueue(CWVProtectionDomain *pPd) { -- 2.41.0