Commit f5978b87 authored by Clint Adams's avatar Clint Adams
Browse files

threadscope: Upgrading from 0.2.9 to 0.2.10

parent 326e6ace
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
threadscope (0.2.10-1) unstable; urgency=medium

  * New upstream release

 -- Clint Adams <clint@debian.org>  Sat, 21 Apr 2018 21:24:36 -0400

threadscope (0.2.9-3) unstable; urgency=medium

  [ Ilias Tsitsimpis ]
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ Build-Depends:
 libghc-cairo-dev (<< 0.14),
 libghc-file-embed-dev (<< 0.1),
 libghc-ghc-events-dev (>= 0.5),
 libghc-ghc-events-dev (<< 0.7),
 libghc-ghc-events-dev (<< 0.8),
 libghc-glib-dev (<< 0.14),
 libghc-gtk-dev (>= 0.12),
 libghc-gtk-dev (<< 0.15),
+0 −24
Original line number Diff line number Diff line
Description: Do not include windows_cconv.h on non mingw32 systems
 Do not include windows_cconv.h on non windows systems, or else build
 fails with `#error Unknown mingw32 arch` on architectures other than
 i386 or x86_64.
Author: Ilias Tsitsimpis <iliastsi@debian.org>
Forwarded: https://github.com/haskell/ThreadScope/pull/79
Bug-Debian: https://bugs.debian.org/876525

Index: b/GUI/GtkExtras.hs
===================================================================
--- a/GUI/GtkExtras.hs
+++ b/GUI/GtkExtras.hs
@@ -18,9 +18,10 @@ import Control.Concurrent.MVar
 #if !(mingw32_HOST_OS || mingw32_TARGET_OS)
 import System.Glib.GError
 import Control.Monad
-#endif
 
+#else
 #include "windows_cconv.h"
+#endif
 
 waitGUI :: IO ()
 waitGUI = do
+0 −1
Original line number Diff line number Diff line
no-windows-cconv