Incorrect header file inclusion
Status: Alpha
Brought to you by:
henroid
Bug
---
ptptl/ptp/test.cpp: Line 43:
#include <ptp/console.h>
This console header is needed only for console
applications under WIN32. Consequently, 'make test'
fails on Linux.
Fix
---
#ifdef WIN32
#include <ptp/console.h>
#endif //WIN32