summaryrefslogtreecommitdiff
path: root/cmake/msvc/sys
diff options
context:
space:
mode:
authorJosh Blum2011-08-04 10:31:15 -0700
committerJosh Blum2011-08-04 10:31:15 -0700
commita498339d2950955f258ae282b61f60e4e6e647d3 (patch)
treec571997894973c9cf154a41b6e2f59b878d113ac /cmake/msvc/sys
parent2a134bd58fa95c2bee43611b86a3e479a3f989cf (diff)
downloadgnuradio-a498339d2950955f258ae282b61f60e4e6e647d3.tar.gz
gnuradio-a498339d2950955f258ae282b61f60e4e6e647d3.tar.bz2
gnuradio-a498339d2950955f258ae282b61f60e4e6e647d3.zip
cmake: specify all the boosts, remove dummy sys/time.h for msvc build
Diffstat (limited to 'cmake/msvc/sys')
-rw-r--r--cmake/msvc/sys/time.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/cmake/msvc/sys/time.h b/cmake/msvc/sys/time.h
deleted file mode 100644
index 998b5d7bb..000000000
--- a/cmake/msvc/sys/time.h
+++ /dev/null
@@ -1,69 +0,0 @@
-#ifndef _MSC_VER // [
-#error "Use this header only with Microsoft Visual C++ compilers!"
-#endif // _MSC_VER ]
-
-#ifndef _MSC_SYS_TIME_H_
-#define _MSC_SYS_TIME_H_
-
-//http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/430449b3-f6dd-4e18-84de-eebd26a8d668
-#include < time.h >
-#include <windows.h> //I've ommited this line.
-#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
- #define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64
-#else
- #define DELTA_EPOCH_IN_MICROSECS 11644473600000000ULL
-#endif
-
-struct timespec {
-
-time_t tv_sec; /* Seconds since 00:00:00 GMT, */
-
-/* 1 January 1970 */
-
-long tv_nsec; /* Additional nanoseconds since */
-
-/* tv_sec */
-
-};
-
-struct timezone
-{
- int tz_minuteswest; /* minutes W of Greenwich */
- int tz_dsttime; /* type of dst correction */
-};
-
-static inline int gettimeofday(struct timeval *tv, struct timezone *tz)
-{
- FILETIME ft;
- unsigned __int64 tmpres = 0;
- static int tzflag;
-
- if (NULL != tv)
- {
- GetSystemTimeAsFileTime(&ft);
-
- tmpres |= ft.dwHighDateTime;
- tmpres <<= 32;
- tmpres |= ft.dwLowDateTime;
-
- /*converting file time to unix epoch*/
- tmpres -= DELTA_EPOCH_IN_MICROSECS;
- tv->tv_sec = (long)(tmpres / 1000000UL);
- tv->tv_usec = (long)(tmpres % 1000000UL);
- }
-
- if (NULL != tz)
- {
- if (!tzflag)
- {
- _tzset();
- tzflag++;
- }
- tz->tz_minuteswest = _timezone / 60;
- tz->tz_dsttime = _daylight;
- }
-
- return 0;
-}
-
-#endif //_MSC_SYS_TIME_H_