Skip to content

Commit f1103ed

Browse files
author
Dimitri van Heesch
committed
Release-1.5.4-20080101
1 parent c9fcb18 commit f1103ed

File tree

284 files changed

+13674
-2928
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+13674
-2928
lines changed

Doxyfile

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.5.2
1+
# Doxyfile 1.5.4
22

33
#---------------------------------------------------------------------------
44
# Project related configuration options
@@ -28,10 +28,13 @@ TAB_SIZE = 8
2828
ALIASES =
2929
OPTIMIZE_OUTPUT_FOR_C = NO
3030
OPTIMIZE_OUTPUT_JAVA = NO
31+
OPTIMIZE_FOR_FORTRAN = NO
3132
BUILTIN_STL_SUPPORT = NO
3233
CPP_CLI_SUPPORT = NO
34+
SIP_SUPPORT = NO
3335
DISTRIBUTE_GROUP_DOC = NO
3436
SUBGROUPING = YES
37+
TYPEDEF_HIDES_STRUCT = NO
3538
#---------------------------------------------------------------------------
3639
# Build related configuration options
3740
#---------------------------------------------------------------------------
@@ -40,6 +43,7 @@ EXTRACT_PRIVATE = NO
4043
EXTRACT_STATIC = YES
4144
EXTRACT_LOCAL_CLASSES = YES
4245
EXTRACT_LOCAL_METHODS = NO
46+
EXTRACT_ANON_NSPACES = NO
4347
HIDE_UNDOC_MEMBERS = NO
4448
HIDE_UNDOC_CLASSES = NO
4549
HIDE_FRIEND_COMPOUNDS = NO
@@ -69,7 +73,7 @@ WARNINGS = YES
6973
WARN_IF_UNDOCUMENTED = YES
7074
WARN_IF_DOC_ERROR = YES
7175
WARN_NO_PARAMDOC = NO
72-
WARN_FORMAT = "$file:$line: $text"
76+
WARN_FORMAT = "$file:$line: $text "
7377
WARN_LOGFILE =
7478
#---------------------------------------------------------------------------
7579
# configuration options related to the input files
@@ -100,7 +104,9 @@ EXCLUDE = src/code.cpp \
100104
src/config.cpp \
101105
src/pyscanner.cpp \
102106
src/fortranscanner.cpp \
103-
src/fortrancode.cpp
107+
src/fortrancode.cpp \
108+
src/vhdlscanner.cpp \
109+
src/vhdlcode.cpp
104110
EXCLUDE_SYMLINKS = NO
105111
EXCLUDE_PATTERNS =
106112
EXCLUDE_SYMBOLS =
@@ -139,6 +145,9 @@ HTML_FOOTER =
139145
HTML_STYLESHEET =
140146
HTML_ALIGN_MEMBERS = YES
141147
GENERATE_HTMLHELP = NO
148+
GENERATE_DOCSET = YES
149+
DOCSET_FEEDNAME = "Doxygen docs"
150+
DOCSET_BUNDLE_ID = org.doxygen.Doxygen
142151
HTML_DYNAMIC_SECTIONS = YES
143152
CHM_FILE =
144153
HHC_LOCATION =

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
DOXYGEN Version 1.5.4
1+
DOXYGEN Version 1.5.4-20080101
22

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

66
--------
7-
Dimitri van Heesch (26 October 2007)
7+
Dimitri van Heesch (01 January 2008)

PLATFORMS

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ osf1-g++
2323
qnx-g++
2424
sco-g++
2525
solaris-cc
26+
solaris-cc-64
2627
solaris-g++
2728
sunos-g++
2829
ultrix-g++

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DOXYGEN Version 1.5.4
1+
DOXYGEN Version 1.5.4_20080101
22

33
Please read INSTALL for compilation instructions.
44

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

1818
Enjoy,
1919

20-
Dimitri van Heesch ([email protected]) (26 October 2007)
20+
Dimitri van Heesch ([email protected]) (01 January 2008)

addon/doxyapp/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
all clean depend: Makefile.doxyapp
2+
all clean depend distclean: Makefile.doxyapp
33
$(MAKE) -f Makefile.doxyapp $@
44

55
distclean: clean

addon/doxywizard/Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# $Id$
2+
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/Makefile.win_nmake.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# $Id$
2+
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/doxywizard.pro.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# $Id$
2+
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/doxywizard.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/expert.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/expert.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputbool.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputbool.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputint.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputint.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputstring.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputstring.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputstrlist.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/inputstrlist.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/qtbc.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

addon/doxywizard/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/******************************************************************************
22
*
3-
* $Id$
3+
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

configure

+18-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# $Id$
44
#
5-
# Copyright (C) 1997-2005 by Dimitri van Heesch.
5+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
66
#
77
# Permission to use, copy, modify, and distribute this software and its
88
# documentation under the terms of the GNU General Public License is hereby
@@ -20,7 +20,7 @@ doxygen_version_minor=5
2020
doxygen_version_revision=4
2121

2222
#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
23-
doxygen_version_mmn=NO
23+
doxygen_version_mmn=20080101
2424

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

@@ -159,9 +159,6 @@ if test -z "$f_platform"; then
159159
if test "$f_insttool" = NO; then
160160
f_insttool=/usr/bin/install
161161
fi
162-
if test -n "`ls /Developer/SDKs/MacOSX10.*u.sdk`"; then
163-
f_platform=macosx-uni-c++
164-
fi
165162
;;
166163
FreeBSD:*)
167164
f_platform=freebsd-g++
@@ -516,6 +513,21 @@ if test "$f_platform" = "hpux-g++"; then
516513
TMAKE_CXXFLAGS += -D_LARGEFILE_SOURCE
517514
EOF
518515
fi
516+
if test "$f_platform" = "macosx-uni-c++"; then
517+
if test -n "`ls /Developer/SDKs/MacOSX10.*.sdk`"; then
518+
mac_sdk=MacOSX10.4u.sdk
519+
fi
520+
if test -n "`ls /Developer/SDKs/MacOSX10.5*.sdk`"; then
521+
mac_sdk=MacOSX10.5.sdk
522+
fi
523+
if test -n $mac_sdk; then
524+
cat >> .tmakeconfig <<EOF
525+
TMAKE_CFLAGS += -isysroot /Developer/SDKs/$mac_sdk
526+
TMAKE_CXXFLAGS += -isysroot /Developer/SDKs/$mac_sdk
527+
TMAKE_LFLAGS += -Wl,-syslibroot,/Developer/SDKs/$mac_sdk
528+
EOF
529+
fi
530+
fi
519531
if test "$f_wizard" = YES; then
520532
cat >> .tmakeconfig <<EOF
521533
TMAKE_MOC = $QTDIR/bin/moc
@@ -597,7 +609,7 @@ fi
597609
echo -n " Generating src/lang_cfg.h..."
598610
echo $f_langs | $f_perl -e '@l=split(/,/,<STDIN>);
599611
chomp @l;
600-
@allowed=(split(/,/,"NL,SE,CZ,FR,ID,IT,DE,JP,JE,ES,FI,RU,HR,PL,PT,HU,KR,KE,RO,SI,CN,NO,BR,DK,SK,UA,GR,TW,SR,CA,LT,ZA,AR,FA"));
612+
@allowed=(split(/,/,"NL,SE,CZ,FR,ID,IT,DE,JP,JE,ES,FI,RU,HR,PL,PT,HU,KR,KE,RO,SI,CN,NO,MK,BR,DK,SK,UA,GR,TW,SR,CA,LT,ZA,AR,FA"));
601613
foreach my $elem (@l){
602614
$elem =~ tr/a-z/A-Z/;
603615
$r=0;

doc/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

doc/Makefile.win_make.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

doc/Makefile.win_nmake.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
#
33
#
4-
# Copyright (C) 1997-2007 by Dimitri van Heesch.
4+
# Copyright (C) 1997-2008 by Dimitri van Heesch.
55
#
66
# Permission to use, copy, modify, and distribute this software and its
77
# documentation under the terms of the GNU General Public License is hereby

doc/arch.doc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

doc/autolink.doc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

doc/commands.doc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
*
44
*
5-
* Copyright (C) 1997-2007 by Dimitri van Heesch.
5+
* Copyright (C) 1997-2008 by Dimitri van Heesch.
66
*
77
* Permission to use, copy, modify, and distribute this software and its
88
* documentation under the terms of the GNU General Public License is hereby

0 commit comments

Comments
 (0)