ess-dmsc / ad-kafka-interface

EPICS areaDetector Kafka plugin and Kafka driver.
BSD 2-Clause "Simplified" License
2 stars 6 forks source link

Build Error "any_of is not a member of std" #6

Open stmudie opened 4 years ago

stmudie commented 4 years ago

My environment is: Centos 6.5 (Pilatus IOC) scl devtools-8 (to get a c++11 compatible compiler)

I get the build error "any_of is not a member of std". This can be fixed by including in KafkaProducer.cpp

SkyToGround commented 4 years ago

Oops, sorry about that. This is now fixed in master. I generally compile the code using libc++ and I know that this library includes a lot of different headers without you asking for them.

With that said, I have had trouble getting the code to compile using current releases of EPICS due to problems with the EPICS build system. You are saying that you have been able to compile it after only adding #include <algorithm> to the relevant files?