Merge the two features for shared memory

Change-Id: Ic7bd27b289b755c801e3c510c44b2afe9a253bd8
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
Ulf Hermann 2016-11-30 15:31:00 +01:00
parent 506aa694a9
commit 141be52f2f

View File

@ -355,11 +355,6 @@
"condition": "features.statemachine",
"output": [ "publicFeature" ]
},
"sharedmemory": {
"label": "Enable QSharedMemory",
"condition": "config.android || config.win32 || tests.ipc_sysv || tests.ipc_posix",
"output": [ { "type": "define", "negative": true, "name": "QT_NO_SHAREDMEMORY" } ]
},
"slog2": {
"label": "slog2",
"condition": "libs.slog2",
@ -395,7 +390,9 @@
"label": "QSharedMemory",
"purpose": "Provides access to a shared memory segment.",
"section": "Kernel",
"condition": "!config.vxworks",
"condition": [
"config.android || config.win32 || (!config.vxworks && (tests.ipc_sysv || tests.ipc_posix))"
],
"output": [ "publicFeature", "feature" ]
},
"systemsemaphore": {