summaryrefslogtreecommitdiff
path: root/lang/micropython/files/patch-modtime.c
diff options
context:
space:
mode:
authorMarcus von Appen <mva@FreeBSD.org>2014-07-28 08:57:33 +0000
committerMarcus von Appen <mva@FreeBSD.org>2014-07-28 08:57:33 +0000
commit89e5af5da424bf80efff710ce55a53162c465a9a (patch)
tree82a2d5867433b01f00a87ffc3e5eeae48be843d4 /lang/micropython/files/patch-modtime.c
parent- Fix ownership of var/run/opendnssec (diff)
- Update to version 1.2
- Respect CFLAGS and CPPFLAGS
Diffstat (limited to 'lang/micropython/files/patch-modtime.c')
-rw-r--r--lang/micropython/files/patch-modtime.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lang/micropython/files/patch-modtime.c b/lang/micropython/files/patch-modtime.c
deleted file mode 100644
index 0a8fd1312463..000000000000
--- a/lang/micropython/files/patch-modtime.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- modtime.c.orig 2014-06-05 20:07:38.000000000 +0200
-+++ modtime.c 2014-06-06 07:58:58.000000000 +0200
-@@ -59,6 +59,8 @@
- #define CLOCK_DIV 1000.0
- #elif defined(MP_CLOCKS_PER_SEC) && (MP_CLOCKS_PER_SEC == 1000) // WIN32
- #define CLOCK_DIV 1.0
-+#elif defined(__FreeBSD__) && (MP_CLOCKS_PER_SEC == 128)
-+#define CLOCK_DIV (1.0 / 128.0)
- #else
- #error Unsupported clock() implementation
- #endif