Error building v0.10.3 in Ubuntu 22.04.3 LTS (Elementary OS 7.1 Horus) #3551
-
Hi, having installed dependencies with provided script from wiki and executing: $ git clone -b v0.10.3 https://github.com/neutrinolabs/xrdp.git --recursive
$ cd xrdp
$ sudo ./bootstrap
$ sudo ./configure --enable-fuse --enable-jpeg --enable-rfxcodec --enable-mp3lame --enable-vsock --enable-painter --enable-openh264
$ sudo make And get:
Is there something I'm missing? Please, let me know if this is not the right place to ask this. Thanks! P.S.: original script is here, but since it didn't work I tried executing commands shown above alone and got the same error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @tetebueno You really shouldn't be building software with privilege. The only times you need to use
Your commands are otherwise fine, I think. Remove the directory you've created (for which you'll need to use
If you're still getting the same error, refer to this link for a solution. I can't clain any credit for that one I'm afraid. |
Beta Was this translation helpful? Give feedback.
Hi @tetebueno
You really shouldn't be building software with privilege. The only times you need to use
sudo
are:-sudo make install
)Your commands are otherwise fine, I think. Remove the directory you've created (for which you'll need to use
sudo rm -rf
!), and try again without thesudo
commands, i.e.:-If you're still getting the same error, refer to this link for a solution. I can't clain…