1. 21 Nov, 2020 1 commit
  2. 01 Oct, 2020 2 commits
  3. 13 Aug, 2020 1 commit
    • Jeroen Roovers's avatar
      Simplify configure check for fmin · 00bc6dad
      Jeroen Roovers authored
      AC_TRY_LINK is deprecated and users are encouraged to replace it with
      AC_LINK_IFELSE. However, AC_SEARCH_LIBS uses AC_LINK_IFELSE internally
      and does exactly what we need here: test whether an `fmin` symbol is
      already resolved or if libm will resolve it, neatly avoiding autoconf
      caching and AC_TRY_LINK/AC_LINK_IFELSE pitfalls. So just use that.
      00bc6dad
  4. 15 Jun, 2020 3 commits
  5. 14 Jun, 2020 3 commits
  6. 13 Jun, 2020 3 commits
  7. 12 Jun, 2020 2 commits
  8. 09 Jun, 2020 5 commits
  9. 08 Jun, 2020 4 commits
  10. 05 Jun, 2020 4 commits
  11. 04 Jun, 2020 3 commits
  12. 03 Jun, 2020 5 commits
  13. 26 May, 2020 3 commits
  14. 24 May, 2020 1 commit
    • Xiao Deng's avatar
      Return NULL from plist_copy() if passed a NULL pointer · ea5b54b4
      Xiao Deng authored
      This will prevent an assert if a NULL pointer is passed, and can make
      writing some code easier and cleaner without the need for a NULL check.
      For example, plist_copy(plist_dict_get_item(dict, "abc")) would give us
      a copy of the dict's node if the dict has a value for the given key, or
      NULL without any further checks.
      ea5b54b4