MacOS: executing 'make' for current xorgxrdp generates errors from not being able to find X11 headers #263
-
with the current xorgxrdp-0.9.19 download when i execute 'make' i get the following errors arising from what appears to be non-fully path qualified X11/*.h file references that live in /opt/X11/include/X11 path.
I can get these 'make' errors go away if i execute q1. Is that work around expected and acceptable or is there some aspect of my xcode and x11 libraries setup, that i put in place following these macos xrdp build instructions, that i'm overlooking such that the q2. When i then execute |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, sorry I'm late! I had the same problem. You can resolve this issue by providing the X11 includes path directly when invoking make CFLAGS="-I/opt/X11/include -I/opt/X11/include/X11" Works on my machine (Macbook Air M2 w/ MacOS Sonoma 14.1.1), so I hope this helps anyone having this problem. Cheers! :) |
Beta Was this translation helpful? Give feedback.
Hey, sorry I'm late!
I had the same problem. You can resolve this issue by providing the X11 includes path directly when invoking
make
. For example:make CFLAGS="-I/opt/X11/include -I/opt/X11/include/X11"
Works on my machine (Macbook Air M2 w/ MacOS Sonoma 14.1.1), so I hope this helps anyone having this problem.
Cheers! :)