Commit 1f15cdfe authored by dimitri's avatar dimitri
Browse files

Release-1.2.3

parent 00340144
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.2-20001015
DOXYGEN Version 1.2.3


Please read the installation section of the manual for instructions.
Please read the installation section of the manual for instructions.


--------
--------
Dimitri van Heesch (15 October 2000)
Dimitri van Heesch (30 October 2000)
+1 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@ distclean: clean
	-rm -f src/Makefile.doxygen src/Makefile.doxytag src/Makefile.doxysearch qtools/Makefile.qtools
	-rm -f src/Makefile.doxygen src/Makefile.doxytag src/Makefile.doxysearch qtools/Makefile.qtools
	-rm -f Makefile qtools/Makefile src/Makefile examples/Makefile doc/Makefile 
	-rm -f Makefile qtools/Makefile src/Makefile examples/Makefile doc/Makefile 
	-rm -f .makeconfig .tmakeconfig
	-rm -f .makeconfig .tmakeconfig
	-rm -f src/doxygen.pro src/doxytag.pro src/doxysearch.pro
	-rm -f src/doxygen.pro src/doxytag.pro src/doxysearch.pro qtools/qtools.pro
	-rm -f src/version.cpp
	-rm -f src/version.cpp
	-rm -r addon/configgen/Makefile addon/doxywizard/Makefile
	-rm -r addon/configgen/Makefile addon/doxywizard/Makefile
	-rm -f addon/configgen/Makefile.configgen 
	-rm -f addon/configgen/Makefile.configgen 
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.2-20001015
DOXYGEN Version 1.2.3


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


@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at


Enjoy,
Enjoy,


Dimitri van Heesch (15 October 2000)
Dimitri van Heesch (30 October 2000)
+1 −1
Original line number Original line Diff line number Diff line
1.2.2-20001015
1.2.3
+24 −2
Original line number Original line Diff line number Diff line
@@ -140,8 +140,12 @@ static FILE *tryPath(const char *path,const char *fileName)
  return 0;
  return 0;
}
}


static void substEnvVarsInStrList(QStrList &sl);
static void substEnvVarsInString(QCString &s);

static FILE *findFile(const char *fileName)
static FILE *findFile(const char *fileName)
{
{
  substEnvVarsInStrList(includePathList);
  char *s=includePathList.first();
  char *s=includePathList.first();
  while (s) // try each of the include paths
  while (s) // try each of the include paths
  {
  {
@@ -162,6 +166,7 @@ static void readIncludeFile(const char *incName)
  } 
  } 


  QCString inc = incName;
  QCString inc = incName;
  substEnvVarsInString(inc);
  inc = inc.stripWhiteSpace();
  inc = inc.stripWhiteSpace();
  uint incLen = inc.length();
  uint incLen = inc.length();
  if (inc.at(0)=='"' && inc.at(incLen-1)=='"') // strip quotes
  if (inc.at(0)=='"' && inc.at(incLen-1)=='"') // strip quotes
@@ -431,6 +436,23 @@ void configStrToVal()
    Config::colsInAlphaIndex=cols;
    Config::colsInAlphaIndex=cols;
  }
  }


  if (enumValuesPerLineString.isEmpty())
  {
    Config::enumValuesPerLine=4;
  }
  else
  {
    bool ok;
    int cols = enumValuesPerLineString.toInt(&ok);
    if (!ok || cols<1 || cols>20)
    {
      warn_cont("Warning: argument of ENUM_VALUES_PER_LINE is not a valid number in the range [1..20]!\n"
	   "Using the default of 4!\n");
      cols = 4;
    }
    Config::enumValuesPerLine=cols;
  }
  
  if (maxDotGraphWidthString.isEmpty())
  if (maxDotGraphWidthString.isEmpty())
  {
  {
    Config::maxDotGraphWidth=1024;
    Config::maxDotGraphWidth=1024;
@@ -441,7 +463,7 @@ void configStrToVal()
    int width =maxDotGraphWidthString.toInt(&ok);
    int width =maxDotGraphWidthString.toInt(&ok);
    if (!ok)
    if (!ok)
    {
    {
      warn_cont("Warning: argument of MAX_DOT_GRAPH_WIDTH is not a valid number in the range [1..20]!\n"
      warn_cont("Warning: argument of MAX_DOT_GRAPH_WIDTH is not a valid number in the range [100..30000]!\n"
	   "Using the default of 1024 pixels!\n");
	   "Using the default of 1024 pixels!\n");
      width=1024;
      width=1024;
    }
    }
@@ -466,7 +488,7 @@ void configStrToVal()
    int height =maxDotGraphHeightString.toInt(&ok);
    int height =maxDotGraphHeightString.toInt(&ok);
    if (!ok)
    if (!ok)
    {
    {
      warn_cont("Warning: argument of MAX_DOT_GRAPH_WIDTH is not a valid number in the range [1..20]!\n"
      warn_cont("Warning: argument of MAX_DOT_GRAPH_WIDTH is not a valid number in the range [100..30000]!\n"
	   "Using the default of 1024 pixels!\n");
	   "Using the default of 1024 pixels!\n");
      height=1024;
      height=1024;
    }
    }
Loading