summaryrefslogtreecommitdiff
path: root/graphics/glide3/files/patch-swlibs-fxmisc-fxos_c
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/glide3/files/patch-swlibs-fxmisc-fxos_c')
-rw-r--r--graphics/glide3/files/patch-swlibs-fxmisc-fxos_c55
1 files changed, 0 insertions, 55 deletions
diff --git a/graphics/glide3/files/patch-swlibs-fxmisc-fxos_c b/graphics/glide3/files/patch-swlibs-fxmisc-fxos_c
deleted file mode 100644
index a9808cc4ad8a..000000000000
--- a/graphics/glide3/files/patch-swlibs-fxmisc-fxos_c
+++ /dev/null
@@ -1,55 +0,0 @@
---- swlibs/fxmisc/fxos.c.orig Wed Jan 15 10:01:58 2003
-+++ swlibs/fxmisc/fxos.c Sun Jul 1 01:56:10 2007
-@@ -43,13 +43,26 @@
- #include <fxos.h>
- #endif
- #if !macintosh
--/* return current time in seconds (floating point) */
--float fxTime(void)
--{
- #if defined ( __sparc__ ) || defined ( __DJGPP__ )
- /* times returns 0 in BSD Unix, so we use ftime instead */
- # include <sys/types.h>
- # include <sys/timeb.h>
-+#elif defined(__FreeBSD__)
-+# include <sys/time.h>
-+#elif defined ( WIN32 ) || ( __DOS__ )
-+# include <time.h>
-+# define times(a) clock()
-+# define HZ CLOCKS_PER_SEC
-+#else
-+# include <sys/types.h>
-+# include <sys/times.h>
-+# include <sys/param.h>
-+#endif
-+
-+/* return current time in seconds (floating point) */
-+float fxTime(void)
-+{
-+#if defined ( __sparc__ ) || defined ( __DJGPP__ )
- struct timeb tb;
- static time_t once; // saves first time value
-
-@@ -59,22 +72,12 @@
- return (tb.time - once) + tb.millitm * .001;
-
- #elif defined(__FreeBSD__)
--#include <sys/time.h>
- struct timeval t;
- struct timezone tz;
- gettimeofday(&t, &tz);
- return ((float)t.tv_sec + ((float)t.tv_usec)/1000000.0);
- #else
--#if defined ( WIN32 ) || ( __DOS__ )
--# include <time.h>
--# define times(a) clock()
--# define HZ CLOCKS_PER_SEC
--#else
--# include <sys/types.h>
--# include <sys/times.h>
--# include <sys/param.h>
- struct tms foo;
--#endif
- return times(&foo)/(float)HZ;
- #endif
- }