Commit 5edb3c85 authored by dimitri's avatar dimitri
Browse files

Release-1.3.6-20040222

parent a9b8e482
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.6
DOXYGEN Version 1.3.6-20040222

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

--------
Dimitri van Heesch (12 February 2004)
Dimitri van Heesch (22 February 2004)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.6
DOXYGEN Version 1.3.6_20040222

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) (12 February 2004)
Dimitri van Heesch (dimitri@stack.nl) (22 February 2004)
+1 −1
Original line number Diff line number Diff line
1.3.6
1.3.6-20040222
+2 −1
Original line number Diff line number Diff line
@@ -204,7 +204,8 @@ int main(int argc,char **argv)
        {
          numParams++;
        }
        if (strcmp(mem->typeString()->latin1(),"void")!=0)
        const char *type = mem->typeString()->latin1();
        if (type && strcmp(type, "void"))
        {
          numParams++; // count non-void return types as well
        }
+19 −16
Original line number Diff line number Diff line
@@ -224,6 +224,8 @@ fi
#- check for qt --------------------------------------------------------------
 
if test "$f_wizard" = YES; then
  if test -z "$QTDIR"; then
    echo "  QTDIR environment variable not set!"
    echo -n "  Checking for Qt..."
    if test -d "/usr/lib/qt3/lib"; then
      if test -d "/usr/lib/qt3/include"; then
@@ -246,8 +248,9 @@ if test "$f_wizard" = YES; then
        fi
      fi
    fi
  fi
  if test -z "$QTDIR"; then
    echo "QTDIR not set!"
    echo "QTDIR not set and Qt not found at standard locations!"
    echo
    echo "tmake requires the QTDIR environment variable to be set."
    echo "check your Qt installation!"
Loading