FreeBSD Bugzilla – Attachment 187420 Details for
Bug 223202
emulators/virtualbox-ose-nox11: can't build with error
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Fixes a build when X11 option is off
patch-src__VBox__HostServices__SharedClipboard__x11-stub.cpp (text/plain), 1.36 KB, created by
Alexander Zagrebin
on 2017-10-24 10:36:05 UTC
(
hide
)
Description:
Fixes a build when X11 option is off
Filename:
MIME Type:
Creator:
Alexander Zagrebin
Created:
2017-10-24 10:36:05 UTC
Size:
1.36 KB
patch
obsolete
>--- src/VBox/HostServices/SharedClipboard/x11-stub.cpp.orig 2017-10-18 10:12:48.000000000 +0300 >+++ src/VBox/HostServices/SharedClipboard/x11-stub.cpp 2017-10-23 22:27:35.900800000 +0300 >@@ -55,7 +55,7 @@ > int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient, > bool fHeadless) > { >- NOREF(pClient, fHeadless); >+ RT_NOREF2(pClient, fHeadless); > LogFlowFunc(("called, returning VINF_SUCCESS.\n")); > return VINF_SUCCESS; > } >@@ -91,7 +91,7 @@ > void vboxClipboardFormatAnnounce (VBOXCLIPBOARDCLIENTDATA *pClient, > uint32_t u32Formats) > { >- NOREF(pClient, u32Formats); >+ RT_NOREF2(pClient, u32Formats); > LogFlowFunc(("called, returning.\n")); > } > >@@ -107,7 +107,7 @@ > int vboxClipboardReadData (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Format, > void *pv, uint32_t cb, uint32_t *pcbActual) > { >- NOREF(pClient, u32Format, pv, cb); >+ RT_NOREF4(pClient, u32Format, pv, cb); > LogFlowFunc(("called, returning VINF_SUCCESS.\n")); > /* No data available. */ > *pcbActual = 0; >@@ -125,6 +125,6 @@ > void vboxClipboardWriteData (VBOXCLIPBOARDCLIENTDATA *pClient, void *pv, > uint32_t cb, uint32_t u32Format) > { >- NOREF(pClient, pv, cb, u32Format); >+ RT_NOREF4(pClient, pv, cb, u32Format); > LogFlowFunc(("called, returning.\n")); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 223202
: 187420