1. 24 Oct, 2016 1 commit
  2. 22 Oct, 2016 1 commit
  3. 21 Oct, 2016 4 commits
  4. 20 Oct, 2016 6 commits
  5. 19 Oct, 2016 4 commits
  6. 18 Oct, 2016 6 commits
  7. 17 Oct, 2016 6 commits
  8. 16 Oct, 2016 1 commit
  9. 14 Oct, 2016 6 commits
  10. 13 Oct, 2016 4 commits
    • Deomid Ryabkov's avatar
      MG_DISABLE_MQTT -> MG_ENABLE_MQTT · b298d46a
      Deomid Ryabkov authored
      PUBLISHED_FROM=34e6028b68e286f81be7ba0f8ae73b760f144131
      b298d46a
    • Deomid Ryabkov's avatar
      Rename MG_DISABLE_CGI -> MG_ENABLE_CGI · 75059d1b
      Deomid Ryabkov authored
      Also factor out CGI-related code from http.c, it's getting too big.
      
      Build tests with -Wundef
      
      PUBLISHED_FROM=a1e82fafba73812c249db0b49c59d1b48417b60d
      75059d1b
    • Deomid Ryabkov's avatar
      Run V7 tests with -Wundef · 15e9a927
      Deomid Ryabkov authored
      PUBLISHED_FROM=e2375c5b10be12a75f6a5f9df56ebe9f5faa9331
      15e9a927
    • Deomid Ryabkov's avatar
      Change from using #ifdef to #if for features tests · bafc30be
      Deomid Ryabkov authored
      "#if FOO" still works with simple -DFOO, but gives more flexibility.
      Specifically, if user expressed no preference (FOO is not defined),
      we can apply reasonable defaults (this is the legitimate use of ifdef).
      
      In short, from now on, please use
      
       #if MG_ENABLE_FOO
      
      instead of
      
       #ifdef MG_ENABLE_FOO
      
      Since we are all used to #ifdef, this change also adds a precommit check
      to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
      "ifdef" and "if defined()" are not allowed to be used with macros that contain
      ENABLE or DISABLE, unless the like also contains "ifdef-ok".
      
      Hence, if you are sure you want to use ifdef, use this:
      
       #ifdef MG_ENABLE_FOO /* ifdef-ok */
      
      PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
      bafc30be
  11. 12 Oct, 2016 1 commit