blob: 58073d6ceeaa17faef0fbdad40c00bda0cfeb4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
DESCRIPTION = "Header files from the MingGW-w64 project"
require mingw-w64.inc
S = "${WORKDIR}/mingw-w64-v${PV}/mingw-w64-headers"
B = "${WORKDIR}/build-${TARGET_SYS}"
inherit autotools nativesdk
INHIBIT_DEFAULT_DEPS = "1"
DEPENDS = ""
PACKAGECONFIG ??= "secure-api"
PACKAGECONFIG[secure-api] = "--enable-secure-api,--disable-secure-api"
do_configure() {
oe_runconf
}
do_compile() {
:
}
do_install_append() {
# install correct pthread headers
install -m 0644 -t ${D}${includedir} ${S}/../mingw-w64-libraries/winpthreads/include/*.h
}
FILES_${PN} += "${exec_prefix}/${TARGET_SYS}"
|