summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authormueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:29:47 (GMT)
committermueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:29:47 (GMT)
commitdaf91dc906e217e81f77f491e0abf505a91289b8 (patch)
tree223d088e44a6b0956dd0437ed4851244b2e7f36c /INSTALL
parenta6cb7ef1dc7c3d6b6ff949646b9b2deda3fc0bf3 (diff)
downloadDoxygen-daf91dc906e217e81f77f491e0abf505a91289b8.zip
Doxygen-daf91dc906e217e81f77f491e0abf505a91289b8.tar.gz
Doxygen-daf91dc906e217e81f77f491e0abf505a91289b8.tar.bz2
mods for doxygen-0.49-990728
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL30
1 files changed, 23 insertions, 7 deletions
diff --git a/INSTALL b/INSTALL
index 6a9e9b9..c62f167 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,12 +1,12 @@
-DOXYGEN Version 0.49-990522
+DOXYGEN Version 0.49-990728
INSTALLATION INSTRUCTIONS FOR UNIX:
-----------------------------------
1. Unpack the archive, unless you already have:
- gunzip doxygen-0.49-990522.src.tar.gz # uncompress the archive
- tar xf doxygen-0.49-990522.src.tar # unpack it
+ gunzip doxygen-0.49-990728.src.tar.gz # uncompress the archive
+ tar xf doxygen-0.49-990728.src.tar # unpack it
2. Make sure Qt is installed properly (check the environment variable $QTDIR)
@@ -104,7 +104,7 @@ KNOWN CONFIGURATION PROBLEMS
HTML RELATED PROBLEMS:
- the indent continuously increases.
This seems to be a problem that can be observed with Netscape 4.01.
- It is not present in many later and earlier versions.
+ It is not present in many later and earlier versions I tested.
LATEX RELATED PROBLEMS:
@@ -116,16 +116,32 @@ LATEX RELATED PROBLEMS:
- the file fancyheader.sty is known as fancyhdr.sty on some systems.
Please change that in src/latexgen.cpp
-HP-UX PROBLEMS:
+HP-UX / DIGITAL UNIX PROBLEMS:
- If you are compiling for HP-UX with aCC and you get this error:
/opt/aCC/lbin/ld: Unsatisfied symbols:
alloca (code)
- then you should edit ce_parse.cpp and replace
+ then you should (according to Anke Selig) edit ce_parse.cpp and replace
extern "C" {
void *alloca (unsigned int);
};
with
#include <alloca.h>
+- If you are compiling for Digital Unix, the same problem can be solved
+ (according to Barnard Schmallhof) by replacing the following in
+ ce_parse.cpp:
+
+ #else /* not GNU C. */
+ #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) ||
+ defined (__sparc) || defined (__sgi)
+ #include <alloca.h>
+
+ with
+
+ #else /* not GNU C. */
+ #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) ||
+ defined (__sparc) || defined (__sgi) || defined (__osf__)
+ #include <alloca.h>
+
This seems to be a problem with bison, but I don't know how to fix it.
-----------------------------------------------------------------------------
@@ -138,4 +154,4 @@ The latest version of doxygen can be obtained at
Enjoy,
-Dimitri van Heesch (22 May 1999)
+Dimitri van Heesch (30 July 1999)