Include sockLib header to enable usage of socket functions on VxWorks

Functions normally found from <sys/socket.h> are available on VxWorks
from <sockLib.h> header.

Change-Id: I2263ec40ba9f37bc95755b633fb43d66ceb2777c
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
This commit is contained in:
Pasi Petäjäjärvi 2013-01-16 16:13:46 +02:00 committed by The Qt Project
parent 9ce12cc8de
commit ea14a63083

View File

@ -56,6 +56,10 @@
#include <sys/socket.h>
#endif
#ifdef Q_OS_VXWORKS
#include <sockLib.h>
#endif
#include <stddef.h>
#define PLATFORMSOCKETENGINE QNativeSocketEngine