1. 31 5月, 2018 2 次提交
  2. 30 5月, 2018 21 次提交
  3. 27 5月, 2018 1 次提交
  4. 26 5月, 2018 2 次提交
  5. 25 5月, 2018 7 次提交
  6. 23 5月, 2018 4 次提交
  7. 12 5月, 2018 1 次提交
  8. 11 5月, 2018 2 次提交
    • E
      Remove unnecessary headers and definitions of hb-blob (#1028) · 33eb1bd2
      Ebrahim Byagowi 提交于
      It removes io.h and other polyfills which we no longer need as 7e76d746
      33eb1bd2
    • E
      Make hb_blob_create_from_file more portable (#1027) · 7e76d746
      Ebrahim Byagowi 提交于
      This makes it compatible with ARMCC which I had access in
      a collaboration with @imgtec, thanks!
      
      Basically hb_blob_create_from_file features three code paths,
      mmap, Win32 and fallback.
      
      We had fallback implementation even before this but it was relied
      to "open" which is not available on some environments. This change
      improved the situtation by using only fopen and friends for
      fallback path.
      
      Interestingly we could use "open" on Windows but in fact it was
      emulated by MSVCRT so I've completely split that from Unix path
      now that we have a distinct path for fallback path also.
      7e76d746