1 | // Copyright (C) 2016 Intel Corporation. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef _GNU_SOURCE |
5 | # define _GNU_SOURCE |
6 | #endif |
7 | #include <QtCore/qglobal.h> |
8 | |
9 | #define FORKFD_NO_SPAWNFD |
10 | #if defined(QT_NO_DEBUG) && !defined(NDEBUG) |
11 | # define NDEBUG |
12 | #endif |
13 | |
14 | #include <forkfd.h> |
15 | #include "../../3rdparty/forkfd/forkfd.c" |
16 |