mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Merge pull request #1050 from Hummer12007/cmake
Unset LD_LIBRARY_PATH, unless specified
This commit is contained in:
commit
2047bb81dc
@ -47,9 +47,11 @@ option(enable-swaymsg "Enables the swaymsg utility" YES)
|
||||
option(enable-gdk-pixbuf "Use Pixbuf to support more image formats" YES)
|
||||
option(zsh-completions "Zsh shell completions" NO)
|
||||
option(default-wallpaper "Installs the default wallpaper" YES)
|
||||
set(LD_LIBRARY_PATH "/usr/lib" CACHE STRING "Configures sway's default LD_LIBRARY_PATH")
|
||||
option(LD_LIBRARY_PATH "Configure sway's default LD_LIBRARY_PATH")
|
||||
|
||||
if (LD_LIBRARY_PATH)
|
||||
add_definitions(-D_LD_LIBRARY_PATH="${LD_LIBRARY_PATH}")
|
||||
endif()
|
||||
|
||||
find_package(JsonC REQUIRED)
|
||||
find_package(PCRE REQUIRED)
|
||||
|
@ -214,7 +214,11 @@ int main(int argc, char **argv) {
|
||||
|
||||
// Security:
|
||||
unsetenv("LD_PRELOAD");
|
||||
#ifdef _LD_LIBRARY_PATH
|
||||
setenv("LD_LIBRARY_PATH", _LD_LIBRARY_PATH, 1);
|
||||
#else
|
||||
unsetenv("LD_LIBRARY_PATH");
|
||||
#endif
|
||||
|
||||
int c;
|
||||
while (1) {
|
||||
|
Loading…
Reference in New Issue
Block a user