Comment 1 for bug 756096

Revision history for this message
Andy Whitcroft (apw) wrote :

Ok so the error of record is as below:

    In file included from /usr/include/openwsman/cpp/WsmanFilter.h:6:0,
                 from /usr/include/openwsman/cpp/WsmanClient.h:18,
                 from /usr/include/openwsman/cpp/OpenWsmanClient.h:14,
                 from BaseWSManClient.h:45,
                 from UNSWSManClient.h:53,
                 from UserNotificationThread.h:54,
                 from UserNotificationServiceLinux.h:54,
                 from UNSMainLinux.cpp:59:
    /usr/include/openwsman/cpp/WsmanEPR.h:5:23: fatal error: wsman-epr.h: No such file or directory

The application itself just includes the header as below:

    #include <openwsman/cpp/OpenWsmanClient.h>

We then chain through a number of headers using #include "" syntax:

    OpenWsmanClient.h: #include "WsmanClient.h"
    WsmanClient.h: #include "WsmanFilter.h"
    WsmanFilter.h: #include "WsmanEPR.h"
    WsmanEPR.h: #include "wsman-epr.h"

The final one above is bound to fail as the include file is in the /usr/include/openwsman directory.