summaryrefslogtreecommitdiffstats
path: root/src/ucl-1-fixes.patch
blob: 63f0622f69c7889f1a16b780a5179b3675044a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
This file is part of MXE. See LICENSE.md for licensing information.

From 34ee29b2233764519fecf3a9c5d7ed36ad680215 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>
Date: Sun, 8 Nov 2015 23:58:55 +0100
Subject: [PATCH] do not use winmm

  * do not link against winmm
  * comment out call to timeGetTime (defined in winmm)

winmm was used only to measure performance in an example.
---
 acc/acclib/uclock.ch |    2 +-
 configure            |    8 --------
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/acc/acclib/uclock.ch b/acc/acclib/uclock.ch
index d20dc9c..2de1f31 100644
--- a/acc/acclib/uclock.ch
+++ b/acc/acclib/uclock.ch
@@ -157,7 +157,7 @@ ACCLIB_PUBLIC(void, acc_uclock_read) (acc_uclock_handle_p h, acc_uclock_p c)
 #elif (__ACCLIB_UCLOCK_USE_CLOCK)
     c->ticks.t32 = clock();
 #elif (__ACCLIB_UCLOCK_USE_WINMM)
-    c->ticks.t32 = timeGetTime();
+    //c->ticks.t32 = timeGetTime();
 #elif (__ACCLIB_UCLOCK_USE_GETRUSAGE)
     struct rusage ru;
     if (getrusage(RUSAGE_SELF, &ru) != 0) c->ticks.rd = 0;
diff --git a/configure b/configure
index 8f7e300..13bc5b4 100755
--- a/configure
+++ b/configure
@@ -31409,14 +31409,6 @@ done
 
 
 
-if test "X$GCC" = Xyes; then
-case $host_os in
-cygwin* | mingw* | pw32*)
-     LIBS="$LIBS -lwinmm" ;;
-*)
-     ;;
-esac
-fi
 
 
 
-- 
1.7.10.4