1. 07 Dec, 2013 5 commits
  2. 02 Dec, 2013 1 commit
  3. 01 Dec, 2013 3 commits
  4. 30 Nov, 2013 2 commits
  5. 29 Nov, 2013 3 commits
  6. 26 Nov, 2013 1 commit
  7. 23 Nov, 2013 2 commits
  8. 17 Nov, 2013 6 commits
  9. 13 Nov, 2013 1 commit
    • Albert's avatar
      Debug output for lexical analyzer · 3c0a246b
      Albert authored
      In case of error messages like:
          input buffer overflow, can't enlarge buffer because scanner uses REJECT
      it is not always directly clear from which lexical analyzer (.l file) this problem comes.
      This patch helps to find these problems and does the following things:
      - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given:
          Entering lexical analyzer: pre.l (for: ..../file.c)
        and at the end:
          Finished lexical analyzer: pre.l (for: ..../file.c)
      - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like:
          --entering lexical analyzer: pre.l (for: ..../file.c)
          --finished lexical analyzer: pre.l (for: ..../file.c)
      3c0a246b
  10. 11 Nov, 2013 10 commits
  11. 10 Nov, 2013 2 commits
  12. 02 Nov, 2013 3 commits
  13. 28 Oct, 2013 1 commit
    • Albert's avatar
      Another update for the build system · a338afc8
      Albert authored
      - .gitignore
      src/unistd.h is not on src directory anymore (windows version is on winbuild directory)
      
      - doxywizard.pro.in
      consistency 0bj -> ../../objects
      
      - Doxygen.sln
      build doxygen 64 bit debug too
      
      - Doxygen.vcproj
      Config was missing (cannot be automatic due to the fact that there are 2 rules in 1 file), see also Doxywizard.vcproj
      
      - Doxywizard.vcproj
      consistency in respect to directories
      $(QTDIR)/mkspecs/msvc2005 -> $(QTDIR)/mkspecs/msvc2008
      settings part was present for x64 but not for Win32 (x64 not necessary for doxywizard)
      Config_dw was missing (cannot be automatic due to the fact that there are 2 rules in 1 file), see also Doxygen.vcproj
      
      - Version.rules
      version.py does not need any arguments
      
      - doxyindexer.vcproj
      consistency in respect to directories
      
      - doxysearch.vcproj
      consistency in respect to directories
      a338afc8