From 2c4e98db8c8374b1c9e417214e701171381abca1 Mon Sep 17 00:00:00 2001 From: mrkraimer Date: Sat, 3 Apr 2021 06:30:09 -0400 Subject: [PATCH 1/2] another attempt to fix jenkins_problem --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index d3b9feb..97de3e8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -24,8 +24,8 @@ INC += pv/scalarAlarmSupport.h include $(PVDATABASE_SRC)/copy/Makefile include $(PVDATABASE_SRC)/database/Makefile include $(PVDATABASE_SRC)/pvAccess/Makefile -include $(PVDATABASE_SRC)/special/Makefile include $(PVDATABASE_SRC)/support/Makefile +include $(PVDATABASE_SRC)/special/Makefile LIBRARY += pvDatabase pvDatabase_LIBS += pvData From e91b4b1b6622247a2bc422802f5ca583258d5b1a Mon Sep 17 00:00:00 2001 From: mrkraimer Date: Sat, 3 Apr 2021 07:14:31 -0400 Subject: [PATCH 2/2] another attempt to fix jenkins_problem --- src/pvAccess/channelLocal.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pvAccess/channelLocal.cpp b/src/pvAccess/channelLocal.cpp index 29fc625..00413c7 100644 --- a/src/pvAccess/channelLocal.cpp +++ b/src/pvAccess/channelLocal.cpp @@ -77,7 +77,7 @@ static bool getProcess(PVStructurePtr pvRequest,bool processDefault) } class ChannelProcessLocal : - public ChannelProcess, + public epics::pvAccess::ChannelProcess, public std::tr1::enable_shared_from_this { public: @@ -206,7 +206,7 @@ void ChannelProcessLocal::process() } class ChannelGetLocal : - public ChannelGet, + public epics::pvAccess::ChannelGet, public std::tr1::enable_shared_from_this { public: @@ -383,7 +383,7 @@ void ChannelGetLocal::get() } class ChannelPutLocal : - public ChannelPut, + public epics::pvAccess::ChannelPut, public std::tr1::enable_shared_from_this { public: @@ -567,7 +567,7 @@ void ChannelPutLocal::put( class ChannelPutGetLocal : - public ChannelPutGet, + public epics::pvAccess::ChannelPutGet, public std::tr1::enable_shared_from_this { public: @@ -802,8 +802,8 @@ void ChannelPutGetLocal::getGet() class ChannelRPCLocal : - public ChannelRPC, - public RPCResponseCallback, + public epics::pvAccess::ChannelRPC, + public epics::pvAccess::RPCResponseCallback, public std::tr1::enable_shared_from_this { public: @@ -993,7 +993,7 @@ void ChannelRPCLocal::request(PVStructurePtr const & pvArgument) typedef std::tr1::shared_ptr PVArrayPtr; class ChannelArrayLocal : - public ChannelArray, + public epics::pvAccess::ChannelArray, public std::tr1::enable_shared_from_this { public: