Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
dbus
dbus
Commits
2460ddfd
Commit
2460ddfd
authored
Mar 27, 2012
by
Simon McVittie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dbus-1.4'
Conflicts: NEWS configure.ac
parents
f67f4597
6edbb08b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
NEWS
NEWS
+5
-0
dbus/dbus-sysdeps.c
dbus/dbus-sysdeps.c
+6
-12
No files found.
NEWS
View file @
2460ddfd
...
...
@@ -9,9 +9,14 @@ D-Bus 1.5.11 (UNRELEASED)
• Turn DBusBasicValue into public API so bindings don't need to invent their
own "union of everything" type (fd.o #11191, Simon McVittie)
• Enumerate data files included in the build rather than using find(1)
(fd.o #33840, Simon McVittie)
• Windows-specific:
· make dbus-daemon.exe --print-address (and --print-pid) work again
on Win32, but not on WinCE (fd.o #46049, Simon McVittie)
· fix duplicate case value when compiling against mingw-w64
(fd.o #47321, Andoni Morales Alastruey)
D-Bus 1.5.10 (2012-02-21)
==
...
...
dbus/dbus-sysdeps.c
View file @
2460ddfd
...
...
@@ -614,16 +614,14 @@ _dbus_error_from_errno (int error_number)
#ifdef EPROTONOSUPPORT
case
EPROTONOSUPPORT
:
return
DBUS_ERROR_NOT_SUPPORTED
;
#endif
#ifdef WSAEPROTONOSUPPORT
#elif defined(WSAEPROTONOSUPPORT)
case
WSAEPROTONOSUPPORT
:
return
DBUS_ERROR_NOT_SUPPORTED
;
#endif
#ifdef EAFNOSUPPORT
case
EAFNOSUPPORT
:
return
DBUS_ERROR_NOT_SUPPORTED
;
#endif
#ifdef WSAEAFNOSUPPORT
#elif defined(WSAEAFNOSUPPORT)
case
WSAEAFNOSUPPORT
:
return
DBUS_ERROR_NOT_SUPPORTED
;
#endif
...
...
@@ -654,32 +652,28 @@ _dbus_error_from_errno (int error_number)
#ifdef ECONNREFUSED
case
ECONNREFUSED
:
return
DBUS_ERROR_NO_SERVER
;
#endif
#ifdef WSAECONNREFUSED
#elif defined(WSAECONNREFUSED)
case
WSAECONNREFUSED
:
return
DBUS_ERROR_NO_SERVER
;
#endif
#ifdef ETIMEDOUT
case
ETIMEDOUT
:
return
DBUS_ERROR_TIMEOUT
;
#endif
#ifdef WSAETIMEDOUT
#elif defined(WSAETIMEDOUT)
case
WSAETIMEDOUT
:
return
DBUS_ERROR_TIMEOUT
;
#endif
#ifdef ENETUNREACH
case
ENETUNREACH
:
return
DBUS_ERROR_NO_NETWORK
;
#endif
#ifdef WSAENETUNREACH
#elif defined(WSAENETUNREACH)
case
WSAENETUNREACH
:
return
DBUS_ERROR_NO_NETWORK
;
#endif
#ifdef EADDRINUSE
case
EADDRINUSE
:
return
DBUS_ERROR_ADDRESS_IN_USE
;
#endif
#ifdef WSAEADDRINUSE
#elif defined(WSAEADDRINUSE)
case
WSAEADDRINUSE
:
return
DBUS_ERROR_ADDRESS_IN_USE
;
#endif
...
...
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