1. Dec 27, 2013
  2. Dec 13, 2013
  3. Nov 14, 2013
  4. Sep 23, 2013
  5. Sep 20, 2013
  6. Sep 16, 2013
  7. Aug 28, 2013
  8. Aug 15, 2013
  9. Aug 06, 2013
  10. Jul 28, 2013
  11. Jul 23, 2013
  12. Jul 21, 2013
  13. Jul 08, 2013
  14. Jul 02, 2013
  15. Jun 26, 2013
    • Joakim Soderberg's avatar
      BUGFIX: Compilation error with -DNDEBUG defined. · 6fe23175
      Joakim Soderberg authored
      When building a "MinSizeRel" with CMake I get a compilation error in lex_unget_unsave. This is because assertions are turned off using -DNDEBUG:
      
      ```
      /usr/bin/gcc  -DHAVE_CONFIG_H -fPIC -Os -DNDEBUG -Ijansson/build/include -Ijansson/build/private_include    -Wall -Wextra -Wdeclaration-after-statement -Werror -o CMakeFiles/jansson.dir/src/load.c.o   -c jansson/src/load.c
      jansson/src/load.c: In function âx_unget_unsaveâjansson/src/load.c:256:14: error: variable â set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      ```
      
      This will then remove the insert, which makes the "d" variable unused, which is treated as an error since we have -Wall set. We can't simply get rid of the variable either and put the strbuffer_pop call in the assert call, since it's a macro and would remove the call entirely. So I simply added a check for NDEBUG to fix it.
      6fe23175
    • Petri Lehtinen's avatar
      Merge pull request #127 from cryptobiote/master · 84b5bfe1
      Petri Lehtinen authored
      Adding option for MSVC for those who are linking statically.
      84b5bfe1
  16. Jun 25, 2013
  17. Jun 21, 2013
  18. Jun 14, 2013
  19. Jun 13, 2013
  20. Jun 12, 2013
  21. Jun 11, 2013
  22. Jun 10, 2013
  23. Jun 09, 2013
  24. Jun 07, 2013