Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9207927d
Commit
9207927d
authored
Dec 01, 2022
by
Brendan Shanks
Committed by
Alexandre Julliard
Dec 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Remove SystemConfiguration header check (always present on macOS).
parent
c39e2291
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
26 deletions
+2
-26
configure
configure
+0
-12
configure.ac
configure.ac
+0
-2
dbus.c
dlls/mountmgr.sys/dbus.c
+1
-1
diskarb.c
dlls/mountmgr.sys/diskarb.c
+1
-3
config.h.in
include/config.h.in
+0
-8
No files found.
configure
View file @
9207927d
...
...
@@ -7829,18 +7829,6 @@ then :
printf
"%s
\n
"
"#define HAVE_OPENCL_OPENCL_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h"
"ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h
"
=
xyes
then
:
printf
"%s
\n
"
"#define HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"SystemConfiguration/SCNetworkConfiguration.h"
"ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h
"
=
xyes
then
:
printf
"%s
\n
"
"#define HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"arpa/inet.h"
"ac_cv_header_arpa_inet_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_arpa_inet_h
"
=
xyes
then
:
...
...
configure.ac
View file @
9207927d
...
...
@@ -409,8 +409,6 @@ AC_CHECK_HEADERS(\
CL/cl.h \
EGL/egl.h \
OpenCL/opencl.h \
SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h \
SystemConfiguration/SCNetworkConfiguration.h \
arpa/inet.h \
arpa/nameser.h \
asm/types.h \
...
...
dlls/mountmgr.sys/dbus.c
View file @
9207927d
...
...
@@ -573,7 +573,7 @@ found:
while
(
p_dbus_connection_read_write_dispatch
(
connection
,
-
1
))
/* nothing */
;
}
#if !defined(
HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H) || !defined(HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H
)
#if !defined(
__APPLE__
)
/* The udisks dispatch loop will block all threads using the same connection, so we'll
use a private connection. Multiple threads can make methods calls at the same time
...
...
dlls/mountmgr.sys/diskarb.c
View file @
9207927d
...
...
@@ -33,8 +33,6 @@
#include <sys/ioctl.h>
#ifdef __APPLE__
#include <DiskArbitration/DiskArbitration.h>
#endif
#if defined(HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H) && defined(HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H)
#include <SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h>
#include <SystemConfiguration/SCNetworkConfiguration.h>
#endif
...
...
@@ -227,7 +225,7 @@ void run_diskarbitration_loop(void)
#endif
/* __APPLE__ */
#if defined(
HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H) && defined(HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H
)
#if defined(
__APPLE__
)
static
UInt8
map_option
(
unsigned
int
option
)
{
...
...
include/config.h.in
View file @
9207927d
...
...
@@ -501,14 +501,6 @@
/* Define to 1 if you have the `sysinfo' function. */
#undef HAVE_SYSINFO
/* Define to 1 if you have the
<SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h> header file. */
#undef HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H
/* Define to 1 if you have the <SystemConfiguration/SCNetworkConfiguration.h>
header file. */
#undef HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H
/* Define to 1 if you have the <sys/attr.h> header file. */
#undef HAVE_SYS_ATTR_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment