You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to compile xorgxrdp in Manjaro Linux. When running make, I get the following error.
rdpClientCon.c: In function 'rdpClientConInit':
rdpClientCon.c:1564:21: error: 'display' undeclared (first use in this function)
1564 | i = (int)strtol(display, &endptr, 10);
| ^~~~~~~
rdpClientCon.c:1564:21: note: each undeclared identifier is reported only once for each function it app
ears in
make[3]: *** [Makefile:681: rdpClientCon.lo] Error 1
I'm sure I'm doing something wrong, but I can't find any information online about what would be causing this
The text was updated successfully, but these errors were encountered:
The variable display is a global X server variable defined in /usr/include/xorg/opaque.h on my (Ubuntu) system. That file is pulled in by #include <xf86_OSproc.h> Maybe there's another opaque.h on your include path(?)
I'm attempting to compile xorgxrdp in Manjaro Linux. When running make, I get the following error.
I'm sure I'm doing something wrong, but I can't find any information online about what would be causing this
The text was updated successfully, but these errors were encountered: