I tried to build POCO 1.4.3 on CentOS using gcc version 4.1.2. The build failed in AtomicCounter.h until I changed the conditional compile condition (__GNUC_MINOR__ >= 1) to (__GNUC_MINOR__ > 1). It was apparently looking for atomic operations that are not available in version 4.1.2.
Is this a known issue?





