Skip to content
Snippets Groups Projects
  1. Dec 23, 2015
    • est31's avatar
      Android: Tell make about sub-makes to speed up build · 98d16e0d
      est31 authored
      Before, sub-makes called by make were called without make knowing they
      were sub-makes. This however led make's jobserver not do its tasks,
      and the build process ended up with inefficient parralelisation. This
      commit fixes this by applying the two ways the make manual tells
      about: putting + to the start of the line (used when ndk-build is
      invoked), and exchanging "make" with "$(MAKE)".
      
      Before, make complained with messages like:
      
      make[2]: warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.
      
      This complaint can now only been seen for openssl. openssl has issues
      if make gets exchanged with $(MAKE): if exchanged, above error message
      is multiplied for various subdirs of the openssl source tree.
      
      On a 4 core box, "make -j 4" build time from "make clean_all" cleaned
      source tree could be improved from 15:34 minutes to 10:45 minutes.
      This means a speedup of 45%.
      98d16e0d
  2. Dec 22, 2015
  3. Dec 21, 2015
  4. Dec 20, 2015
    • HybridDog's avatar
      Fix missing localization for obj · 5755c9a4
      HybridDog authored
      5755c9a4
    • ShadowNinja's avatar
      Android: Fix extra files being copied to the APK · b4eb614d
      ShadowNinja authored
      dcb91cf0 hacked around the biggest issue
      this caused, but wasted a lot of CPU time and disk space  It also still
      included a lot of other unwanted files.  This removes all of `doc/` except
      the license, and also removes the server list.
      b4eb614d
    • est31's avatar
      Fix missing pop · f192a5bc
      est31 authored
      Previous commit
      
      70ea5d55 "Add support for limiting rotation of automatic face movement dir entitys"
      
      by sapier has broken minetest's feature to open worlds. This was due to a
      missing stack pop operation.
      
      Thanks to @oleastre for reporting this bug and suggesting the fix.
      f192a5bc
  5. Dec 19, 2015
  6. Dec 18, 2015
  7. Dec 17, 2015
  8. Dec 15, 2015
  9. Dec 11, 2015
  10. Dec 10, 2015
    • est31's avatar
      Fix some setting documentation · 8e3602f6
      est31 authored
      * Horizontal and vertical are used wrongly. Use height and width because
      	horizontal/vertical describes different things. Thanks @kilbith for pointing out.
      * Update minetest.conf.example and settings_translation_file.cpp
      * Correct maximum/minimum copy paste mistake.
      8e3602f6
    • RealBadAngel's avatar
      Speed up and make more accurate relief mapping · a64d78a3
      RealBadAngel authored
      using linear + binary search.
      a64d78a3
  11. Dec 07, 2015
    • ShadowNinja's avatar
      Fix Event implementation · 696148e2
      ShadowNinja authored
      On non-windows platforms this just used a semaphore,
      which meant that multiple calls to signal() would
      result in wait() returning multiple times.
      696148e2
    • ShadowNinja's avatar
      Add seperate cache path · ea2964f5
      ShadowNinja authored
      This is set to the XDG cache path where possible.
      It's set to the app's cache path on Android.
      ea2964f5
    • est31's avatar
      Fix threshold type · 51e8c2b2
      est31 authored
      Fix the type of the threshold value for mapgen.
      The commit
      
      a78dd7f2 "Fix spelling of noise_threshold"
      
      has changed it to be read as int, but it can have non-integral values too.
      
      Thanks to @kwolekr for pointing this out.
      51e8c2b2
    • est31's avatar
      lua_api.txt: add blank lines before * lists · 9a5a538e
      est31 authored
      If rendered as markdown, lists need a blank line before them
      so that they are recognized as such.
      9a5a538e
    • paramat's avatar
      Mapgen: Add propagate_shadow bool to calcLighting · 49073ba2
      paramat authored
      To terminate unwanted shadows from floatlands or realms above
      Also add to LuaVoxelManip calc_lighting for use in mapgen mods
      Remove the 2 argument calcLighting, mapgens now use the 5
      argument form to specify the volumes for propagateSunlight and
      spreadLight
      In mgsinglenode replace calcLighting with setLighting and
      clean-up use of tabs and spaces
      49073ba2
  12. Dec 06, 2015
  13. Dec 05, 2015
    • Ferdinand Thiessen's avatar
      Improve LuaJIT detection · 70ece71e
      Ferdinand Thiessen authored
      On openSUSE luajit is not detected correctly.
      This is because openSUSE is using a lua version suffix, like other Linux distributions do it also.
      So the include directory is:
      include/luajit-5_1-2.0
      70ece71e
    • est31's avatar
      Make travis work again · 5643b9b9
      est31 authored
      Now we do sudo apt-get update to download package sources.
      This fixes travis build with the new GCE based infrastructure.
      
      Closes #3427.
      Closes #3426.
      5643b9b9
Loading