diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-02-09 19:18:25 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-02-09 19:18:25 (GMT) |
commit | aacd1557af129e2bff3514169e04168376a2431b (patch) | |
tree | 95ba82f21de02e4db4763daea53134c8e56fb1df /qtools | |
parent | dcd4714c4413348d02eb7224dafee5d06be43dfb (diff) | |
download | Doxygen-aacd1557af129e2bff3514169e04168376a2431b.zip Doxygen-aacd1557af129e2bff3514169e04168376a2431b.tar.gz Doxygen-aacd1557af129e2bff3514169e04168376a2431b.tar.bz2 |
Release-1.8.3.1-20130209
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/Doxyfile | 16 | ||||
-rw-r--r-- | qtools/Makefile.in | 4 | ||||
-rw-r--r-- | qtools/qdatetime.cpp | 4 |
3 files changed, 16 insertions, 8 deletions
diff --git a/qtools/Doxyfile b/qtools/Doxyfile index 1ba80cc..fdf0741 100644 --- a/qtools/Doxyfile +++ b/qtools/Doxyfile @@ -1,4 +1,4 @@ -# Doxyfile 1.8.3 +# Doxyfile 1.8.3.1 #--------------------------------------------------------------------------- # Project related configuration options @@ -87,7 +87,7 @@ CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- -QUIET = YES +QUIET = NO WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES @@ -186,8 +186,9 @@ MATHJAX_EXTENSIONS = SEARCHENGINE = YES SERVER_BASED_SEARCH = NO EXTERNAL_SEARCH = NO -SEARCHENGINE_URL = +SEARCHENGINE_URL = SEARCHDATA_FILE = searchdata.xml +EXTERNAL_SEARCH_ID = EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output @@ -201,6 +202,7 @@ PAPER_TYPE = a4wide EXTRA_PACKAGES = LATEX_HEADER = LATEX_FOOTER = +LATEX_EXTRA_FILES = PDF_HYPERLINKS = YES USE_PDFLATEX = YES LATEX_BATCHMODE = NO @@ -232,6 +234,11 @@ XML_SCHEMA = XML_DTD = XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- +# configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- +GENERATE_DOCBOOK = YES +DOCBOOK_OUTPUT = docbook +#--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- GENERATE_AUTOGEN_DEF = NO @@ -261,6 +268,7 @@ TAGFILES = GENERATE_TAGFILE = ../qtools_docs/qtools.tag ALLEXTERNALS = NO EXTERNAL_GROUPS = YES +EXTERNAL_PAGES = YES PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool @@ -268,7 +276,7 @@ PERL_PATH = /usr/bin/perl CLASS_DIAGRAMS = NO MSCGEN_PATH = HIDE_UNDOC_RELATIONS = YES -HAVE_DOT = NO +HAVE_DOT = YES DOT_NUM_THREADS = 0 DOT_FONTNAME = DOT_FONTSIZE = 10 diff --git a/qtools/Makefile.in b/qtools/Makefile.in index 78710fd..ca66cc1 100644 --- a/qtools/Makefile.in +++ b/qtools/Makefile.in @@ -17,10 +17,10 @@ all: Makefile.qtools Makefile $(MAKE) -f Makefile.qtools $@ Makefile.qtools: qtools.pro - $(ENV) $(PERL) $(TMAKE) qtools.pro >Makefile.qtools + $(ENV) $(PERL) "$(TMAKE)" qtools.pro >Makefile.qtools tmake: - $(ENV) $(PERL) $(TMAKE) qtools.pro >Makefile.qtools + $(ENV) $(PERL) "$(TMAKE)" qtools.pro >Makefile.qtools clean: Makefile.qtools $(MAKE) -f Makefile.qtools clean diff --git a/qtools/qdatetime.cpp b/qtools/qdatetime.cpp index 4edaca9..d0cc36e 100644 --- a/qtools/qdatetime.cpp +++ b/qtools/qdatetime.cpp @@ -52,7 +52,7 @@ #include <dos.h> #elif defined(_OS_OS2_) #include <os2.h> -#elif defined(_OS_UNIX_) +#elif defined(_OS_UNIX_) || defined(_OS_MAC_) #include <sys/time.h> #include <unistd.h> #undef gettimeofday @@ -893,7 +893,7 @@ bool QTime::currentTime( QTime *ct ) t.second*1000 + t.hsecond*10; return (t.hour== 0 && t.minute == 0); -#elif defined(_OS_UNIX_) +#elif defined(_OS_UNIX_) || defined(_OS_MAC_) struct timeval tv; gettimeofday( &tv, 0 ); |