1. 07 Mar, 2016 - 5 commits
  2. 04 Mar, 2016 - 2 commits
  3. 02 Mar, 2016 - 1 commit
  4. 01 Mar, 2016 - 23 commits
  5. 13 Feb, 2016 - 1 commit
  6. 10 Feb, 2016 - 1 commit
  7. 09 Feb, 2016 - 1 commit
  8. 29 Jan, 2016 - 1 commit
  9. 20 Jan, 2016 - 1 commit
  10. 13 Jan, 2016 - 1 commit
  11. 12 Jan, 2016 - 3 commits
    • Manuel Pégourié-Gonnard's avatar
      Add scripts/apidoc_full.sh · d091ed19
      Manuel Pégourié-Gonnard authored
      This re-introduces the apidoc with full config.h, but hopefully with the race
      conditions and other issues that the previous implementation had.
      
      Adapt doxygen test script to use that new script, and also check for errors
      in addition to warnings while at it.
      d091ed19
    • Manuel Pégourié-Gonnard's avatar
      Revert changes done to 'make apidoc' target · c990189e
      Manuel Pégourié-Gonnard authored
      This partially reverts 1989caf7 (only the changes to Makefile and
      CMakeLists, the addition to scripts/config.pl is kept).
      
      Modifying config.h in the apidoc target creates a race condition with
      
          make -j4 all apidoc
      
      where some parts of the library, tests or programs could be built with the
      wrong config.h, resulting in all kinds of (semi-random) errors. Recent
      versions of CMake mitigate this by adding a .NOTPARALLEL target to the
      generated Makefile, but people would still get errors with older CMake
      versions that are still in use (eg in RHEL 5), and with plain make.
      
      An additional issue is that, by failing to use cp -p, the apidoc target was
      updating the timestamp on config.h, which seems to cause further build issues.
      
      Let's get back to the previous, safe, situation. The improved apidoc building
      will be resurrected in a script in the next commit.
      
      fixes #390
      fixes #391
      c990189e
    • Simon Butcher's avatar
      Reverted the INPUT in doxygen to . · 04d42111
      Simon Butcher authored
      Previous change to include excluded the content in doxygen/input
      04d42111