mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-07 01:50:18 +01:00
Merge branch 'issue-355' into 'master'
Fix MinGW build error Closes #355 See merge request dbus/dbus!226
This commit is contained in:
commit
05cc895444
3 changed files with 5 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ load_ex_ip_helper_procedures(void)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
lpfnAllocateAndGetTcpExTableFromStack = (ProcAllocateAndGetTcpExtTableFromStack)GetProcAddress (hModule, "AllocateAndGetTcpExTableFromStack");
|
||||
lpfnAllocateAndGetTcpExTableFromStack = (ProcAllocateAndGetTcpExtTableFromStack) (void (*)(void))GetProcAddress (hModule, "AllocateAndGetTcpExTableFromStack");
|
||||
if (lpfnAllocateAndGetTcpExTableFromStack == NULL)
|
||||
{
|
||||
_dbus_verbose ("could not find function AllocateAndGetTcpExTableFromStack in iphlpapi.dll\n");
|
||||
|
|
|
|||
|
|
@ -130,6 +130,8 @@ init_wine() {
|
|||
# One of static, shared; used for windows cross builds
|
||||
: "${ci_runtime:=static}"
|
||||
|
||||
echo "ci_buildsys=$ci_buildsys ci_distro=$ci_distro ci_docker=$ci_docker ci_host=$ci_host ci_local_packages=$ci_local_packages ci_parallel=$ci_parallel ci_suite=$ci_suite ci_test=$ci_test ci_test_fatal=$ci_test_fatal ci_variant=$ci_variant ci_runtime=$ci_runtime $0"
|
||||
|
||||
if [ -n "$ci_docker" ]; then
|
||||
exec docker run \
|
||||
--env=ci_buildsys="${ci_buildsys}" \
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@ NULL=
|
|||
# One of debug, reduced, legacy, production
|
||||
: "${ci_variant:=production}"
|
||||
|
||||
echo "ci_distro=$ci_distro ci_docker=$ci_docker ci_in_docker=$ci_in_docker ci_host=$ci_host ci_local_packages=$ci_local_packages ci_suite=$ci_suite ci_variant=$ci_variant $0"
|
||||
|
||||
if [ $(id -u) = 0 ]; then
|
||||
sudo=
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue