Commit 50828c3c authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.3.9.1

parent 89f2e4c8
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -83,7 +83,6 @@ EXCLUDE = src/code.cpp \
                         src/tag.cpp \
                         src/tag.cpp \
                         src/doctokenizer.cpp \
                         src/doctokenizer.cpp \
                         src/logos.cpp \
                         src/logos.cpp \
                         src/doxysearch.cpp \
                         src/suffixtree.cpp \
                         src/suffixtree.cpp \
                         src/suffixtree.h \
                         src/suffixtree.h \
                         src/searchindex.cpp \
                         src/searchindex.cpp \
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.3.9
DOXYGEN Version 1.3.9.1


Please read the installation section of the manual 
Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.
(http://www.doxygen.org/install.html) for instructions.


--------
--------
Dimitri van Heesch (05 October 2004)
Dimitri van Heesch (10 October 2004)
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.3.9
DOXYGEN Version 1.3.9.1


Please read INSTALL for compilation instructions.
Please read INSTALL for compilation instructions.


@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.


Enjoy,
Enjoy,


Dimitri van Heesch (dimitri@stack.nl) (05 October 2004)
Dimitri van Heesch (dimitri@stack.nl) (10 October 2004)
+1 −1
Original line number Original line Diff line number Diff line
1.3.9
1.3.9.1
+17 −4
Original line number Original line Diff line number Diff line
@@ -211,11 +211,11 @@ If you don't mind spending some time on it, there are several options:
 "input buffer overflow, can't enlarge buffer because scanner uses REJECT"</b>
 "input buffer overflow, can't enlarge buffer because scanner uses REJECT"</b>


This error happens when doxygen lexical scanner has a rule that matches
This error happens when doxygen lexical scanner has a rule that matches
more than 16K of input characters in one go. I've seen this happening 
more than 256K of input characters in one go. I've seen this happening 
on a very large generated file (\>16K lines), where the built-in preprocessor 
on a very large generated file (\>256K lines), where the built-in preprocessor 
converted it into an empty file (with \>16K of newlines). Another case
converted it into an empty file (with \>256K of newlines). Another case
where this might happen is if you have lines in your code with more than
where this might happen is if you have lines in your code with more than
16K characters. 
256K characters. 


If you have run into such a case and want me to fix it, you
If you have run into such a case and want me to fix it, you
should send me a code fragment that triggers the message. To work around
should send me a code fragment that triggers the message. To work around
@@ -263,6 +263,19 @@ namespace std {
I'm still looking for someone who can provide me with definitions
I'm still looking for someone who can provide me with definitions
for all (relevant) STL classes.
for all (relevant) STL classes.


<li><b>Can I configure doxygen from the command line?</b>

Not via command line options, but doxygen can read from <code>stdin</code>,
so you can pipe things through it. Here's an example how to override an option
in a configuration file from the command line (assuming a unix environment):

\verbatim
( cat Doxyfile ; echo "PROJECT_NUMBER=1.0" ) | doxygen -
\endverbatim

If multiple options with the same name are specified then doxygen will use 
the last one. To append to an existing option you can use the += operator.

<li><b>How did doxygen get its name?</b>
<li><b>How did doxygen get its name?</b>


Doxygen got its name from playing with the words 
Doxygen got its name from playing with the words 
Loading