diff --git a/Development-Setup.md b/Development-Setup.md index 26ed7ec..f3c9bce 100644 --- a/Development-Setup.md +++ b/Development-Setup.md @@ -14,8 +14,12 @@ The Arch User Repository (AUR) has the convenient `sway-git` and `wlroots-git` p ### Fedora Fedora requires installing all of the dependencies one-by-one. `--releasever=29` is required as dependencies for versions below 29 are outdated. + +#### Note +`wayland-protocols-devel` is currently outdated for release 29. You will need to pull and install this for yourself from https://github.com/wayland-project/wayland-protocols. + ``` -dnf install -y --releasever=29 git gcc meson ninja-build wayland-devel wayland-protocols-devel mesa-libEGL-devel mesa-libGLES-devel mesa-dri-drivers libdrm-devel libgbm-devel libxkbcommon-devel libudev-devel pixman-devel libinput-devel libevdev-devel systemd-devel cairo-devel libpcap-devel json-c-devel pam-devel pango-devel pcre-devel gdk-pixbuf2-devel +dnf install -y --releasever=29 git gcc meson ninja-build wayland-devel mesa-libEGL-devel mesa-libGLES-devel mesa-dri-drivers xorg-x11-server-Xwayland libdrm-devel libgbm-devel libxkbcommon-devel libudev-devel pixman-devel libinput-devel libevdev-devel systemd-devel cairo-devel libpcap-devel json-c-devel pam-devel pango-devel pcre-devel gdk-pixbuf2-devel ``` ### Debian @@ -35,6 +39,7 @@ Ensure that your `PKG_CONFIG_PATH` contains `/usr/local/lib/pkgconfig` and `/usr ``` export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:$PKG_CONFIG_PATH +export PKG_CONFIG_PATH=/usr/local/share/pkgconfig:$PKG_CONFIG_PATH ``` Ensure that your `LD_LIBRARY_PATH` contains `/usr/local/lib/` and `/usr/local/lib64/` by executing `echo $LD_LIBRARY_PATH`. If it doesn't, open the `~/.profile` file located in your home directory and add: