Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | RPATH: Record support for $ORIGIN on various *BSD | Peter Wu | 2018-10-26 | 1 | -0/+4 |
| | | | | | | | | | | All of NetBSD, FreeBSD, OpenBSD and DragonFly BSD support `$ORIGIN`, but the last two require `-z origin` as documented at https://lekensteyn.nl/rpath.html The `-z origin` option causes a flag bit to be set and has no effect if the `RPATH` does not contain expandable tokens. | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | ENH: add DragonFly BSD, which is very close to FreeBSD (#4500) | Alexander Neundorf | 2007-07-13 | 1 | -0/+5 |
Alex |