When trying to compile a simple example using the ACE_TP_Reactor, the compile
fails with the top-most error being
/usr/include/ace/TP_Reactor.h:34:32: error: ace/Select_Reactor.h: No such file
or directory
Reproducible: Always
Steps to Reproduce:
1. Create an empty C++ source file.
2. Include the header <ace/TP_Reactor.h>
3. main() can be empty.
4. Try to compile with "g++ -o example example.cpp -lACE
Actual Results:
Compilation fails.
Expected Results:
Compilation succeeds
As a local workaround, I unpacked the ACE sources from /usr/portage/distfiles
and copied ace/Select_Reactor.h to /usr/include/ace manually.