From: Andre Noll <maan@systemlinux.org>
Date: Sat, 6 Jul 2013 18:26:59 +0000 (+0200)
Subject: Doxyfile: Predefine HAVE_CLOCK_GETTIME.
X-Git-Tag: v0.4.13~16
X-Git-Url: https://git.tue.mpg.de/?a=commitdiff_plain;h=baf9e192bdb28240de9cf6bda60d6f42646f8051;p=paraslash.git

Doxyfile: Predefine HAVE_CLOCK_GETTIME.

Fixes the following doxygen warning:

	time.c:227: Warning: include file sys/time.h not found, perhaps you forgot to add its directory to INCLUDE_PATH?
---

diff --git a/Doxyfile b/Doxyfile
index 3fed0c2e..04d8f326 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -1306,7 +1306,8 @@ PREDEFINED             = HAVE_MAD \
                          HAVE_OGGVORBIS \
                          __GNUC__=4 \
                          __GNUC_MINOR__=4 \
-                         HAVE_UCRED
+                         HAVE_UCRED \
+			 HAVE_CLOCK_GETTIME
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
 # this tag can be used to specify a list of macro names that should be expanded.