1. Jul 12, 2014
  2. Apr 30, 2014
  3. Feb 17, 2014
  4. Feb 12, 2014
  5. Feb 11, 2014
  6. Dec 27, 2013
  7. Dec 13, 2013
  8. Nov 14, 2013
  9. Sep 23, 2013
  10. Sep 20, 2013
  11. Sep 16, 2013
  12. Aug 28, 2013
  13. Aug 15, 2013
  14. Aug 06, 2013
  15. Jul 28, 2013
  16. Jul 23, 2013
  17. Jul 21, 2013
  18. Jul 08, 2013
  19. Jul 02, 2013
  20. 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
  21. Jun 25, 2013
  22. Jun 21, 2013
  23. Jun 14, 2013