Do not define QT_NO_DYNAMIC_LIBRARY for VxWorks process (RTP)

Shared libraries cannot be used in kernel mode (DKM), only at process
mode (RTP).

Change-Id: I8cecc12461aa4417b16577db3bc9cd85a1aa7efa
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
This commit is contained in:
Pasi Petäjäjärvi 2013-01-03 15:39:53 +02:00 committed by The Qt Project
parent cd5a4279f3
commit 2d44f879a2

View File

@ -56,7 +56,7 @@
#include <string.h>
#endif
#if defined(Q_OS_VXWORKS) || defined (Q_OS_NACL)
#if (defined(Q_OS_VXWORKS) && !defined(VXWORKS_RTP)) || defined (Q_OS_NACL)
#define QT_NO_DYNAMIC_LIBRARY
#endif