aboutsummaryrefslogtreecommitdiff
path: root/lib/lua/src
Commit message (Collapse)AuthorAge
* Patch built-in Lua to fix miscompile on Android (#12347)paradust72022-05-21
|
* Compile Lua as C++ (#11683)Jude Melton-Houghton2022-04-07
| | | Co-authored-by: sfan5 <sfan5@live.de>
* Update embedded Lua to 5.1.5 (#7387)sfan52018-05-30
|
* Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ ↵Loïc Blot2017-04-02
instead of src/ (#5473) * Update embedded jsoncpp from unk version to 0.10.6 0.10.6 is last release without c++11 * Make jsoncpp more compliant with its amalgamate Jsoncpp cpp file should be upper, make the library like it does in amalgamate * Reorganization: move minetest embedded libs outside of source tree to /lib * Fix a dead grep in LINT
d=$(diff -u "$f" <(${CLANG_FORMAT} "$f") || true) if ! [ -z "$d" ]; then whitelisted=$(awk '$1 == "'$f'" { print 1 }' "$CLANG_FORMAT_WHITELIST") # If file is not whitelisted, mark a failure if [ -z "${whitelisted}" ]; then errorcount=$((errorcount+1)) printf "The file %s is not compliant with the coding style" "$f" if [ ${errorcount} -gt 50 ]; then printf "\nToo many errors encountered previously, this diff is hidden.\n" else printf ":\n%s\n" "$d" fi fail=1 fi fi done if [ "$fail" = 1 ]; then echo "LINT reports failure." exit 1 fi echo "LINT OK" }