summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-05-22 10:37:46 -0400
committerCMake Topic Stage <kwrobot@kitware.com>2014-05-22 10:37:46 -0400
commit04fc5dd493b6ccb24972a69641d5e41f1a76bf8e (patch)
tree25d545ecf9c3cc114c434678634a41632f45d4f2
parent99d718c51d152d00465cf666d13ecf92ea44e7de (diff)
parentbd32b682f21738532cbfbe7cf5b0acd9e86f77cc (diff)
downloadcmake-04fc5dd493b6ccb24972a69641d5e41f1a76bf8e.tar.gz
Merge topic 'OpenBSD-paths'
bd32b682 OpenBSD: honor the LOCALBASE and X11BASE environment variables
-rw-r--r--Modules/Platform/OpenBSD.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/Modules/Platform/OpenBSD.cmake b/Modules/Platform/OpenBSD.cmake
index 023f055b20..7ac6c7e842 100644
--- a/Modules/Platform/OpenBSD.cmake
+++ b/Modules/Platform/OpenBSD.cmake
@@ -23,3 +23,16 @@ set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE)
# OpenBSD policy requires that shared libraries be installed without
# executable permission.
set(CMAKE_INSTALL_SO_NO_EXE 1)
+
+if($ENV{LOCALBASE})
+ set(OPENBSD_LOCALBASE $ENV{LOCALBASE})
+else()
+ set(OPENBSD_LOCALBASE /usr/local)
+endif()
+if($ENV{X11BASE})
+ set(OPENBSD_X11BASE $ENV{X11BASE})
+else()
+ set(OPENBSD_X11BASE /usr/X11R6)
+endif()
+
+list(APPEND CMAKE_SYSTEM_PREFIX_PATH ${OPENBSD_LOCALBASE})