diff options
author | Fneufneu <fneufneu@xbmc.org> | 2011-01-31 17:43:12 +0100 |
---|---|---|
committer | spiff <spiff@xbmc.org> | 2011-05-04 21:27:48 +0200 |
commit | 3daad443b93751a02371b024477c06fe52db3063 (patch) | |
tree | 2024b4b078407cbf3ee92343012524d01e5d1863 | |
parent | c8693a0c5338c86eeda50b53c6ad65dbb2bbed9e (diff) |
freebsd does not have sysinfo.h
-rw-r--r-- | xbmc/utils/Stopwatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/Stopwatch.cpp b/xbmc/utils/Stopwatch.cpp index 1190e4b1e8..6afeb4c7c4 100644 --- a/xbmc/utils/Stopwatch.cpp +++ b/xbmc/utils/Stopwatch.cpp @@ -20,7 +20,7 @@ */ #include "Stopwatch.h" -#if defined(_LINUX) && !defined(__APPLE__) +#if defined(_LINUX) && !defined(__APPLE__) && !defined(__FreeBSD__) #include <sys/sysinfo.h> #endif #include "utils/TimeUtils.h" |