Commit 66353e2e authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.5.2

parent cc52853c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.1-20070315
DOXYGEN Version 1.5.2

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

--------
Dimitri van Heesch (15 March 2007)
Dimitri van Heesch (04 April 2007)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.1_20070315
DOXYGEN Version 1.5.2

Please read INSTALL for compilation instructions.

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

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (15 March 2007)
Dimitri van Heesch (dimitri@stack.nl) (04 April 2007)
+6 −0
Original line number Diff line number Diff line
@@ -52,6 +52,11 @@ void setDotPath()
  Config_getString("DOT_PATH")=getResourcePath();
}

void setMscgenPath()
{
  Config_getString("MSCGEN_PATH")=getResourcePath();
}

#endif


@@ -667,6 +672,7 @@ MainWidget::MainWidget(QWidget *parent)
  Config_getBool("HAVE_DOT")=TRUE;
#if defined(Q_OS_MACX)
  setDotPath();
  setMscgenPath();
#endif
  
  QWidget *w = new QWidget(this);
+3 −3
Original line number Diff line number Diff line
@@ -17,10 +17,10 @@

doxygen_version_major=1
doxygen_version_minor=5
doxygen_version_revision=1
doxygen_version_revision=2

#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
doxygen_version_mmn=20070315
doxygen_version_mmn=NO

bin_dirs=`echo $PATH | sed -e "s/:/ /g"`

@@ -426,7 +426,7 @@ echo "using $f_perl";
#
echo "  Creating VERSION file."
# Output should be something like 1.4.5-20051010
if test "$doxygen_version_mmn" = NO; then
if test "x$doxygen_version_mmn" = "xNO"; then
  echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision" > VERSION
else
  echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision-$doxygen_version_mmn" > VERSION
+17 −3
Original line number Diff line number Diff line
@@ -263,12 +263,11 @@ void replaceComment(int offset);

%}

CHARLIT   (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'"))

%option noyywrap

%x Scan
%x SkipString
%x SkipChar
%x SComment
%x CComment
%x Verbatim
@@ -285,8 +284,9 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'"))
                                     copyToOutput(yytext,yyleng); 
				     BEGIN(SkipString); 
                                   }
<Scan>{CHARLIT}			   {
<Scan>'				   {
                                     copyToOutput(yytext,yyleng); 
				     BEGIN(SkipChar);
  				   }
<Scan>\n                           { /* new line */ 
                                     copyToOutput(yytext,yyleng); 
@@ -398,6 +398,20 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'"))
<SkipString>\n                     { /* new line inside string (illegal for some compilers) */ 
                                     copyToOutput(yytext,yyleng); 
                                   }
<SkipChar>\\.		           { /* escaped character */
                                     copyToOutput(yytext,yyleng); 
                                   }
<SkipChar>'                        { /* end of character literal */ 
                                     copyToOutput(yytext,yyleng); 
                                     BEGIN(Scan);
                                   }
<SkipChar>.                        { /* any other string character */ 
                                     copyToOutput(yytext,yyleng); 
                                   }
<SkipChar>\n                       { /* new line character */
                                     copyToOutput(yytext,yyleng); 
                                   }

<CComment>[^\\@*\n]*	           { /* anything that is not a '*' or command */ 
                                     copyToOutput(yytext,yyleng); 
                                   }
Loading