From dmwit at dmwit.com Tue Feb 2 02:56:07 2016 From: dmwit at dmwit.com (Daniel Wagner) Date: Mon, 1 Feb 2016 18:56:07 -0800 Subject: [xmonad] Mouse focus without entering window In-Reply-To: References: <1453797809-sup-1469@pruts.nl> <1453837074-sup-3117@pruts.nl> Message-ID: Well, I haven't tested it, but the code of `takeTopFocus` looks pretty different to me: withWindowSet $ maybe (setFocusX =<< asks theRoot) takeFocusX . W.peek To me, that reads as "if nothing is focused, focus the root window", whereas the desired behavior is "no matter what's focused right now, focus the window under the mouse". So both the condition and the action to take seem different to me...? ~d On Sun, Jan 31, 2016 at 2:06 PM, Brandon Allbery wrote: > On Sun, Jan 31, 2016 at 3:26 PM, Daniel Wagner wrote: > >> You should be able to do this with the `handleEventHook` [1], for which >> the `MotionEvent` [2] is the appropriate event to handle. You should be >> able to use `focus` [3] on the `Window` contained in the event to focus the >> window the mouse is currently over > > > Isn't this basically takeTopFocus (i.e. ICCCM WM_TAKE_FOCUS)? > > -- > brandon s allbery kf8nh sine nomine > associates > allbery.b at gmail.com > ballbery at sinenomine.net > unix, openafs, kerberos, infrastructure, xmonad > http://sinenomine.net > > _______________________________________________ > xmonad mailing list > xmonad at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From csolje at gmail.com Tue Feb 2 21:39:19 2016 From: csolje at gmail.com (Christian Solje) Date: Tue, 2 Feb 2016 22:39:19 +0100 Subject: [xmonad] Multiple Screens Message-ID: I am trying to get my 3 monitor setup to work with independent screens, I am also trying to have the xmobar to show on every screen that I got. How should I go about getting it to work? Best Regards Christian From mlists at pmade.com Tue Feb 2 21:53:19 2016 From: mlists at pmade.com (Peter Jones) Date: Tue, 02 Feb 2016 14:53:19 -0700 Subject: [xmonad] Multiple Screens References: Message-ID: <87k2mmkcds.fsf@pmade.com> Christian Solje writes: > I am trying to get my 3 monitor setup to work with independent > screens, I am also trying to have the xmobar to show on every screen > that I got. > How should I go about getting it to work? What do you mean by "independent screens"? Are you talking about XMonad.Layout.IndependentScreens or your physical monitors? As long as the X11 Haskell module was compiled with Xinerama support then multiple monitor support works out of the box. The default behavior is to allow each monitor to display a workspace independent of what the other monitors are displaying. XMonad.Layout.IndependentScreens allows you to change that behavior to match that of dwm's. https://hackage.haskell.org/package/xmonad-contrib-0.12/docs/XMonad-Layout-IndependentScreens.html As for three copies of xmobar, I believe you just need three configuration files specifying where each bar should be displayed and then start three copies. -- Peter Jones, Founder, Devalot.com Defending the honor of good code From csolje at gmail.com Tue Feb 2 22:06:29 2016 From: csolje at gmail.com (Christian Solje) Date: Tue, 2 Feb 2016 23:06:29 +0100 Subject: [xmonad] Multiple Screens In-Reply-To: <87k2mmkcds.fsf@pmade.com> References: <87k2mmkcds.fsf@pmade.com> Message-ID: <158FA109-4E8A-42AD-A4F0-0C2A8F6B18F7@gmail.com> That is what I am looking for but I just can seem to figure out how to configure it to work. Like what do I need to add and where. Best Regards Christian > On Feb 2, 2016, at 10:53 PM, Peter Jones wrote: > > Christian Solje writes: >> I am trying to get my 3 monitor setup to work with independent >> screens, I am also trying to have the xmobar to show on every screen >> that I got. >> How should I go about getting it to work? > > What do you mean by "independent screens"? Are you talking about > XMonad.Layout.IndependentScreens or your physical monitors? > > As long as the X11 Haskell module was compiled with Xinerama support > then multiple monitor support works out of the box. The default > behavior is to allow each monitor to display a workspace independent of > what the other monitors are displaying. > > XMonad.Layout.IndependentScreens allows you to change that behavior to > match that of dwm's. > > https://hackage.haskell.org/package/xmonad-contrib-0.12/docs/XMonad-Layout-IndependentScreens.html > > As for three copies of xmobar, I believe you just need three > configuration files specifying where each bar should be displayed and > then start three copies. > > -- > Peter Jones, Founder, Devalot.com > Defending the honor of good code > > _______________________________________________ > xmonad mailing list > xmonad at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad From allbery.b at gmail.com Wed Feb 3 01:12:36 2016 From: allbery.b at gmail.com (Brandon Allbery) Date: Tue, 2 Feb 2016 20:12:36 -0500 Subject: [xmonad] Mouse focus without entering window In-Reply-To: References: <1453797809-sup-1469@pruts.nl> <1453837074-sup-3117@pruts.nl> Message-ID: On Mon, Feb 1, 2016 at 9:56 PM, Daniel Wagner wrote: > Well, I haven't tested it, but the code of `takeTopFocus` looks pretty > different to me I meant more "same basic concept", although indeed takeTopFocus does not do identically what was requested. The point was more that, since takeTopFocus works, similar focus changers should also work --- because that was the question. -- brandon s allbery kf8nh sine nomine associates allbery.b at gmail.com ballbery at sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnnyspoon at gmail.com Wed Feb 3 02:51:02 2016 From: johnnyspoon at gmail.com (Dmitri Iouchtchenko) Date: Tue, 2 Feb 2016 21:51:02 -0500 Subject: [xmonad] Multiple Screens In-Reply-To: References: Message-ID: On 02/02/2016, Christian Solje wrote: > I am also trying to have the xmobar to show on every screen that I got. You could do this with X.H.DynamicBars (http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Hooks-DynamicBars.html). I can't find any examples for how to use it, but you can refer to my configuration (the relevant commit is https://github.com/0/.../commit/1bc32215ae60edd961f0304bd6aea8fbe9a43658). I'm not certain that I'm using it correctly, since my barDestroyer doesn't "tear down previous instances" like the docs say it should, but it still works fine for me. I suspect it's because xmobar exits automatically when its handle is closed. Dmitri From mathstuf at gmail.com Wed Feb 3 04:43:42 2016 From: mathstuf at gmail.com (Ben Boeckel) Date: Wed, 3 Feb 2016 04:43:42 +0000 (UTC) Subject: [xmonad] Multiple Screens References: Message-ID: On Wed, 03 Feb, 2016 at 02:51:02 GMT, Dmitri Iouchtchenko wrote: > On 02/02/2016, Christian Solje wrote: >> I am also trying to have the xmobar to show on every screen that I got. > > You could do this with X.H.DynamicBars > (http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Hooks-DynamicBars.html). > I can't find any examples for how to use it, but you can refer to my > configuration (the relevant commit is > https://github.com/0/.../commit/1bc32215ae60edd961f0304bd6aea8fbe9a43658). > I'm not certain that I'm using it correctly, since my barDestroyer > doesn't "tear down previous instances" like the docs say it should, This is so that old instances of the bars don't stack up over time. > but it still works fine for me. I suspect it's because xmobar exits > automatically when its handle is closed. Yeah, this is fine. Here is how I do it (I authored DynamicBars): https://paste.fedoraproject.org/317789/54474221/ I also use 3 monitors at work, so the setup is: - xmonad talks to xmonadpropwrite which writes a property to the root window with the xmonad part of the bar (per monitor); - xmonad also starts and stops xmobar at .service instances in my systemd --user session (one service per monitor, specified like xmobar at 0.service for monitor 0); - when xmonad restarts, xmobar doesn't notice (this was done because 3 xmobar instances was flaky and all of them wouldn't always start, so I made them able to be started independently of xmonad); and - xmobar is started with the -C argument to give an extra command which indicates the property to read from the root window. --Ben From csolje at gmail.com Wed Feb 3 07:25:43 2016 From: csolje at gmail.com (=?UTF-8?Q?Christian_S=C3=B8lje?=) Date: Wed, 03 Feb 2016 07:25:43 +0000 Subject: [xmonad] Multiple Screens In-Reply-To: References: Message-ID: Thank you Ben that was just what I need now I get how it works On Wed, Feb 3, 2016, 5:44 AM Ben Boeckel wrote: > On Wed, 03 Feb, 2016 at 02:51:02 GMT, Dmitri Iouchtchenko wrote: > > On 02/02/2016, Christian Solje wrote: > >> I am also trying to have the xmobar to show on every screen that I got. > > > > You could do this with X.H.DynamicBars > > ( > http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Hooks-DynamicBars.html > ). > > I can't find any examples for how to use it, but you can refer to my > > configuration (the relevant commit is > > https://github.com/0/.../commit/1bc32215ae60edd961f0304bd6aea8fbe9a43658 > ). > > I'm not certain that I'm using it correctly, since my barDestroyer > > doesn't "tear down previous instances" like the docs say it should, > > This is so that old instances of the bars don't stack up over time. > > > but it still works fine for me. I suspect it's because xmobar exits > > automatically when its handle is closed. > > Yeah, this is fine. > > Here is how I do it (I authored DynamicBars): > > https://paste.fedoraproject.org/317789/54474221/ > > I also use 3 monitors at work, so the setup is: > > - xmonad talks to xmonadpropwrite which writes a property to the root > window with the xmonad part of the bar (per monitor); > - xmonad also starts and stops xmobar at .service instances in my systemd > --user session (one service per monitor, specified like > xmobar at 0.service for monitor 0); > - when xmonad restarts, xmobar doesn't notice (this was done because > 3 xmobar instances was flaky and all of them wouldn't always start, > so I made them able to be started independently of xmonad); and > - xmobar is started with the -C argument to give an extra command > which indicates the property to read from the root window. > > --Ben > > _______________________________________________ > xmonad mailing list > xmonad at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad > -- Best regards Christian S?lje Email: csolje at gmail.com Phone: +4522612930 -------------- next part -------------- An HTML attachment was scrubbed... URL: From robertsawko at gmail.com Mon Feb 8 09:04:46 2016 From: robertsawko at gmail.com (Robert Sawko) Date: Mon, 8 Feb 2016 09:04:46 +0000 Subject: [xmonad] First workspace not tiling with dzen2 Message-ID: <20160208090446.GA20860@sow763758c.soe.cranfield.ac.uk> Hi, I've copied my xmonad configuration on a new laptop and it all worked fine, almost fine. I have made some small changes to the configuration, particularly dzen2 status and xmonad bar which I keep separately at the top. The one annoying issue is that dzen2 stopped tiling, but only on the first workspace. Opening a new window will overlay dzen2 unless I restart xmonad, creating effectively new dzen2 bar, but even then any change to the layout will also cause dzen to get covered by other applications. This peculiarity occurs only on the first workspace! I posted my xmonad conifig on github, so please look here https://github.com/robertsawko/xmonad_config This config seems to generate some other unwanted messages, such deprecated warnings for ICCCCMFocus or defaultGSConfig which I am going to investigate. Please let me know if you have any ideas. Regards, Robert From allbery.b at gmail.com Mon Feb 8 14:38:50 2016 From: allbery.b at gmail.com (Brandon Allbery) Date: Mon, 8 Feb 2016 09:38:50 -0500 Subject: [xmonad] First workspace not tiling with dzen2 In-Reply-To: <20160208090446.GA20860@sow763758c.soe.cranfield.ac.uk> References: <20160208090446.GA20860@sow763758c.soe.cranfield.ac.uk> Message-ID: On Mon, Feb 8, 2016 at 4:04 AM, Robert Sawko wrote: > The one annoying issue is that dzen2 stopped tiling, but only on the > first workspace. Opening a new window will overlay dzen2 unless I > restart xmonad, creating effectively new dzen2 bar, but even then any > change to the layout will also cause dzen to get covered by other > applications. > This sounds like the strut cache bug introduced in xmonad 0.12. https://github.com/xmonad/xmonad-contrib/pull/30 is pending review (still, sigh). -- brandon s allbery kf8nh sine nomine associates allbery.b at gmail.com ballbery at sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From robertsawko at gmail.com Sat Feb 13 03:25:19 2016 From: robertsawko at gmail.com (Robert Sawko) Date: Sat, 13 Feb 2016 03:25:19 +0000 Subject: [xmonad] First workspace not tiling with dzen2 In-Reply-To: References: <20160208090446.GA20860@sow763758c.soe.cranfield.ac.uk> Message-ID: <20160213032519.GA16234@florence.Home> > This sounds like the strut cache bug introduced in xmonad 0.12. > https://github.com/xmonad/xmonad-contrib/pull/30 is pending review > (still, sigh). Thanks Brandon, Yes, that seems to be the problem. For now I went with the manual gap solution through stdLayout = gaps[(U, 25)] $ tiled ||| Mirror tiled ||| Full And I wait until a fix comes from xmonad-contrib then. Robert -- No free lunch, no shortcuts, no easy way, but at least you can be creative! http://en.wikipedia.org/wiki/No_free_lunch_in_search_and_optimization From nawi at nawi.is Sun Feb 21 19:07:08 2016 From: nawi at nawi.is (Christoph R. Murauer) Date: Sun, 21 Feb 2016 20:07:08 +0100 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. Message-ID: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Hello ! Originally I posted this question at beginners@ but maybe this list is a better place to ask. I tried to build xmonad on Mac OS X 10.11.3 El Capitan and, it fails. For details see the below log. Installed is the latest Haskell Platform 7.10.3 and the latest CLI tools for Xcode. The platform itself works because I build Hakyll before without problems. Thanks for ideas. The username is replaced by USER. Configuring X11-1.6.1.2... Dependency base ==4.8.2.0: using base-4.8.2.0 Dependency data-default ==0.5.3: using data-default-0.5.3 Using Cabal-1.22.5.0 compiled by ghc-7.10 Using compiler: ghc-7.10.3 Using install prefix: /Users/USER/Library/Haskell Binaries installed in: /Users/USER/Library/Haskell/bin Libraries installed in: /Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/X11-1.6.1.2 Private binaries installed in: /Users/USER/Library/Haskell/libexec Data files installed in: /Users/USER/Library/Haskell/share/ghc-7.10.3-x86_64/X11-1.6.1.2 Documentation installed in: /Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/X11-1.6.1.2/doc Configuration files installed in: /Users/USER/Library/Haskell/etc Using alex version 3.1.4 found on system at: /usr/local/bin/alex Using ar found on system at: /usr/bin/ar No c2hs found No cpphs found Using gcc version 4.2.1 found on system at: /usr/bin/gcc Using ghc version 7.10.3 found on system at: /usr/local/bin/ghc Using ghc-pkg version 7.10.3 found on system at: /usr/local/bin/ghc-pkg No ghcjs found No ghcjs-pkg found No greencard found Using haddock version 2.16.1 found on system at: /usr/local/bin/haddock Using happy version 1.19.5 found on system at: /usr/local/bin/happy Using haskell-suite found on system at: haskell-suite-dummy-location Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location No hmake found Using hpc version 0.67 found on system at: /usr/local/bin/hpc Using hsc2hs version 0.67 found on system at: /usr/local/bin/hsc2hs Using hscolour version 1.22 found on system at: /usr/local/bin/HsColour No jhc found Using ld found on system at: /usr/bin/ld No lhc found No lhc-pkg found No pkg-config found Using strip found on system at: /usr/bin/strip Using tar found on system at: /usr/bin/tar No uhc found sh ./configure '--with-compiler=ghc' '--prefix=/Users/USER/Library/Haskell' '--bindir=/Users/USER/Library/Haskell/bin' '--libdir=/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib' '--libexecdir=/Users/USER/Library/Haskell/libexec' '--datadir=/Users/USER/Library/Haskell/share' '--sysconfdir=/Users/USER/Library/Haskell/etc' '--with-gcc=/usr/bin/gcc' configure: WARNING: unrecognized options: --with-compiler, --with-gcc checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for X... libraries /usr/X11/lib, headers /usr/X11/include checking whether -R must be followed by a space... neither works checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking whether to build Xinerama... yes checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking X11/extensions/Xinerama.h usability... yes checking X11/extensions/Xinerama.h presence... yes checking for X11/extensions/Xinerama.h... yes checking X11/extensions/Xrandr.h usability... yes checking X11/extensions/Xrandr.h presence... yes checking for X11/extensions/Xrandr.h... yes checking whether to build XScreenSaver... yes checking X11/extensions/scrnsaver.h usability... yes checking X11/extensions/scrnsaver.h presence... yes checking for X11/extensions/scrnsaver.h... yes checking whether to include X.orgkeysyms... yes checking X11/keysym.h usability... yes checking X11/keysym.h presence... yes checking for X11/keysym.h... yes checking X11/DECkeysym.h usability... yes checking X11/DECkeysym.h presence... yes checking for X11/DECkeysym.h... yes checking X11/Sunkeysym.h usability... yes checking X11/Sunkeysym.h presence... yes checking for X11/Sunkeysym.h... yes checking X11/ap_keysym.h usability... yes checking X11/ap_keysym.h presence... yes checking for X11/ap_keysym.h... yes checking X11/HPkeysym.h usability... yes checking X11/HPkeysym.h presence... yes checking for X11/HPkeysym.h... yes checking X11/XF86keysym.h usability... yes checking X11/XF86keysym.h presence... yes checking for X11/XF86keysym.h... yes checking X11/keysymdef.h usability... yes checking X11/keysymdef.h presence... yes checking for X11/keysymdef.h... yes checking X11/cursorfont.h usability... yes checking X11/cursorfont.h presence... yes checking for X11/cursorfont.h... yes configure: creating ./config.status config.status: creating config.mk config.status: creating X11.buildinfo config.status: creating include/HsX11Config.h config.status: creating include/X11_extras_config.h configure: WARNING: unrecognized options: --with-compiler, --with-gcc Reading parameters from ./X11.buildinfo Reading parameters from ./X11.buildinfo Component build order: library creating dist/build creating dist/build/autogen Building X11-1.6.1.2... /usr/local/bin/ghc-pkg init dist/package.conf.inplace Preprocessing library X11-1.6.1.2... creating dist/build/Graphics/X11 creating dist/build/Graphics creating dist/build/Graphics/X11 /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Types.hs Graphics/X11/Types.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Atom.hs Graphics/X11/Xlib/Atom.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Cursor.hs Graphics/X11/Xlib/Cursor.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Event.hs Graphics/X11/Xlib/Event.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Font.hs Graphics/X11/Xlib/Font.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Misc.hs Graphics/X11/Xlib/Misc.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Types.hs Graphics/X11/Xlib/Types.hsc creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Extras.hs Graphics/X11/Xlib/Extras.hsc creating dist/build/Graphics/X11 /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xinerama.hs Graphics/X11/Xinerama.hsc creating dist/build/Graphics/X11 /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xrandr.hs Graphics/X11/Xrandr.hsc creating dist/build/Graphics/X11 /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/XScreenSaver.hs Graphics/X11/XScreenSaver.hsc creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/AP.hs Graphics/X11/ExtraTypes/AP.hsc In file included from AP.hsc:166: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/DEC.hs Graphics/X11/ExtraTypes/DEC.hsc In file included from DEC.hsc:111: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/HP.hs Graphics/X11/ExtraTypes/HP.hsc In file included from HP.hsc:504: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/Sun.hs Graphics/X11/ExtraTypes/Sun.hsc In file included from Sun.hsc:236: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/XF86.hs Graphics/X11/ExtraTypes/XF86.hsc In file included from XF86.hsc:775: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/ExtraTypes /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/ExtraTypes/XorgDefault.hs Graphics/X11/ExtraTypes/XorgDefault.hsc In file included from XorgDefault.hsc:10047: In file included from include/HsAllKeysyms.h:48: /usr/X11/include/X11/HPkeysym.h:58:9: warning: '_HPKEYSYM_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef _HPKEYSYM_H ^~~~~~~~~~~ /usr/X11/include/X11/HPkeysym.h:60:9: note: '_HPKEYSYM' is defined here; did you mean '_HPKEYSYM_H'? #define _HPKEYSYM ^~~~~~~~~ _HPKEYSYM_H 1 warning generated. creating dist/build/Graphics/X11/Xlib /usr/local/bin/hsc2hs '--cc=/usr/bin/gcc' '--ld=/usr/bin/gcc' '--cflag=-D__GLASGOW_HASKELL__=710' '--cflag=-Ddarwin_BUILD_OS=1' '--cflag=-Dx86_64_BUILD_ARCH=1' '--cflag=-Ddarwin_HOST_OS=1' '--cflag=-Dx86_64_HOST_ARCH=1' '--cflag=-Iinclude' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-I/usr/X11/include' '--cflag=-Idist/build/autogen' '--cflag=-include' '--cflag=dist/build/autogen/cabal_macros.h' '--lflag=-lXss' '--lflag=-lXinerama' '--lflag=-lXext' '--lflag=-lX11' '--lflag=-lXrandr' '--lflag=-lXext' '--lflag=-L/usr/X11/lib' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS/include' '--cflag=-I/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/include' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1' '--lflag=-L/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1' '--lflag=-L/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM' '--lflag=-liconv' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3' '--lflag=-L/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts' '--lflag=-lm' '--lflag=-ldl' -o dist/build/Graphics/X11/Xlib/Internal.hs Graphics/X11/Xlib/Internal.hsc Building library... creating dist/build /usr/local/bin/ghc --make -fbuilding-cabal-package -O -static -dynamic-too -dynosuf dyn_o -dynhisuf dyn_hi -outputdir dist/build -odir dist/build -hidir dist/build -stubdir dist/build -i -idist/build -i. -idist/build/autogen -Idist/build/autogen -Idist/build -Iinclude -optP-include -optPdist/build/autogen/cabal_macros.h -this-package-key X11_IWliEAOAW3jLTNM8XZxGwo -hide-all-packages -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 -XHaskell98 -XForeignFunctionInterface -XCPP Graphics.X11 Graphics.X11.Types Graphics.X11.Xlib Graphics.X11.Xlib.Atom Graphics.X11.Xlib.Color Graphics.X11.Xlib.Context Graphics.X11.Xlib.Cursor Graphics.X11.Xlib.Display Graphics.X11.Xlib.Event Graphics.X11.Xlib.Font Graphics.X11.Xlib.Misc Graphics.X11.Xlib.Region Graphics.X11.Xlib.Screen Graphics.X11.Xlib.Types Graphics.X11.Xlib.Window Graphics.X11.Xlib.Image Graphics.X11.Xlib.Extras Graphics.X11.Xinerama Graphics.X11.Xrandr Graphics.X11.XScreenSaver Graphics.X11.ExtraTypes Graphics.X11.ExtraTypes.AP Graphics.X11.ExtraTypes.DEC Graphics.X11.ExtraTypes.HP Graphics.X11.ExtraTypes.Sun Graphics.X11.ExtraTypes.XF86 Graphics.X11.ExtraTypes.XorgDefault Graphics.X11.Xlib.Internal -funbox-strict-fields -Wall -fno-warn-unused-binds [ 1 of 28] Compiling Graphics.X11.Xlib.Internal ( dist/build/Graphics/X11/Xlib/Internal.hs, dist/build/Graphics/X11/Xlib/Internal.o ) [ 2 of 28] Compiling Graphics.X11.Types ( dist/build/Graphics/X11/Types.hs, dist/build/Graphics/X11/Types.o ) Graphics/X11/Types.hsc:61:1: Warning: Tab character [ 3 of 28] Compiling Graphics.X11.Xlib.Types ( dist/build/Graphics/X11/Xlib/Types.hs, dist/build/Graphics/X11/Xlib/Types.o ) [ 4 of 28] Compiling Graphics.X11.Xlib.Display ( Graphics/X11/Xlib/Display.hs, dist/build/Graphics/X11/Xlib/Display.o ) [ 5 of 28] Compiling Graphics.X11.Xlib.Event ( dist/build/Graphics/X11/Xlib/Event.hs, dist/build/Graphics/X11/Xlib/Event.o ) [ 6 of 28] Compiling Graphics.X11.Xlib.Screen ( Graphics/X11/Xlib/Screen.hs, dist/build/Graphics/X11/Xlib/Screen.o ) [ 7 of 28] Compiling Graphics.X11.Xlib.Window ( Graphics/X11/Xlib/Window.hs, dist/build/Graphics/X11/Xlib/Window.o ) [ 8 of 28] Compiling Graphics.X11.Xlib.Context ( Graphics/X11/Xlib/Context.hs, dist/build/Graphics/X11/Xlib/Context.o ) [ 9 of 28] Compiling Graphics.X11.Xlib.Color ( Graphics/X11/Xlib/Color.hs, dist/build/Graphics/X11/Xlib/Color.o ) [10 of 28] Compiling Graphics.X11.Xlib.Font ( dist/build/Graphics/X11/Xlib/Font.hs, dist/build/Graphics/X11/Xlib/Font.o ) Graphics/X11/Xlib/Font.hsc:23:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:58:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:73:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:82:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:83:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:84:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:85:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:87:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:94:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:95:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:96:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:98:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:102:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:107:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:111:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:115:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:138:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:139:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:140:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:141:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:142:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:143:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:144:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:148:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:149:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:150:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:151:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:152:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:153:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:154:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:155:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:156:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:157:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:164:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:165:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:166:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:167:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:168:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:169:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:170:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:171:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:172:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:173:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:174:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:175:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:177:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:178:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:179:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:186:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:187:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:189:1: Warning: Tab character [11 of 28] Compiling Graphics.X11.Xlib.Cursor ( dist/build/Graphics/X11/Xlib/Cursor.hs, dist/build/Graphics/X11/Xlib/Cursor.o ) [12 of 28] Compiling Graphics.X11.Xlib.Atom ( dist/build/Graphics/X11/Xlib/Atom.hs, dist/build/Graphics/X11/Xlib/Atom.o ) [13 of 28] Compiling Graphics.X11.Xlib.Region ( Graphics/X11/Xlib/Region.hs, dist/build/Graphics/X11/Xlib/Region.o ) [14 of 28] Compiling Graphics.X11.Xlib.Image ( Graphics/X11/Xlib/Image.hs, dist/build/Graphics/X11/Xlib/Image.o ) [15 of 28] Compiling Graphics.X11.Xlib.Misc ( dist/build/Graphics/X11/Xlib/Misc.hs, dist/build/Graphics/X11/Xlib/Misc.o ) Graphics/X11/Xlib/Misc.hsc:698:10: Warning: Orphan instance: instance Default VisualInfo To avoid this move the instance declaration to the module of the class or of the type, or wrap the type with a newtype and declare the instance on the new type. [16 of 28] Compiling Graphics.X11.Xrandr ( dist/build/Graphics/X11/Xrandr.hs, dist/build/Graphics/X11/Xrandr.o ) [17 of 28] Compiling Graphics.X11.ExtraTypes.AP ( dist/build/Graphics/X11/ExtraTypes/AP.hs, dist/build/Graphics/X11/ExtraTypes/AP.o ) [18 of 28] Compiling Graphics.X11.ExtraTypes.DEC ( dist/build/Graphics/X11/ExtraTypes/DEC.hs, dist/build/Graphics/X11/ExtraTypes/DEC.o ) [19 of 28] Compiling Graphics.X11.ExtraTypes.HP ( dist/build/Graphics/X11/ExtraTypes/HP.hs, dist/build/Graphics/X11/ExtraTypes/HP.o ) [20 of 28] Compiling Graphics.X11.ExtraTypes.Sun ( dist/build/Graphics/X11/ExtraTypes/Sun.hs, dist/build/Graphics/X11/ExtraTypes/Sun.o ) [21 of 28] Compiling Graphics.X11.ExtraTypes.XF86 ( dist/build/Graphics/X11/ExtraTypes/XF86.hs, dist/build/Graphics/X11/ExtraTypes/XF86.o ) [22 of 28] Compiling Graphics.X11.ExtraTypes.XorgDefault ( dist/build/Graphics/X11/ExtraTypes/XorgDefault.hs, dist/build/Graphics/X11/ExtraTypes/XorgDefault.o ) [23 of 28] Compiling Graphics.X11.ExtraTypes ( Graphics/X11/ExtraTypes.hs, dist/build/Graphics/X11/ExtraTypes.o ) Graphics/X11/ExtraTypes.hs:16:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:17:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:18:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:19:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:20:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:21:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:22:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:23:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:25:1: Warning: Tab character [24 of 28] Compiling Graphics.X11.Xlib ( Graphics/X11/Xlib.hs, dist/build/Graphics/X11/Xlib.o ) Graphics/X11/Xlib.hs:23:1: Warning: Tab character Graphics/X11/Xlib.hs:24:1: Warning: Tab character Graphics/X11/Xlib.hs:26:1: Warning: Tab character Graphics/X11/Xlib.hs:27:1: Warning: Tab character Graphics/X11/Xlib.hs:29:1: Warning: Tab character Graphics/X11/Xlib.hs:30:1: Warning: Tab character Graphics/X11/Xlib.hs:31:1: Warning: Tab character Graphics/X11/Xlib.hs:33:1: Warning: Tab character Graphics/X11/Xlib.hs:47:1: Warning: Tab character [25 of 28] Compiling Graphics.X11.Xlib.Extras ( dist/build/Graphics/X11/Xlib/Extras.hs, dist/build/Graphics/X11/Xlib/Extras.o ) [26 of 28] Compiling Graphics.X11.Xinerama ( dist/build/Graphics/X11/Xinerama.hs, dist/build/Graphics/X11/Xinerama.o ) [27 of 28] Compiling Graphics.X11.XScreenSaver ( dist/build/Graphics/X11/XScreenSaver.hs, dist/build/Graphics/X11/XScreenSaver.o ) [28 of 28] Compiling Graphics.X11 ( Graphics/X11.hs, dist/build/Graphics/X11.o ) /usr/local/bin/ghc --make -fbuilding-cabal-package -O -prof -osuf p_o -hisuf p_hi -outputdir dist/build -odir dist/build -hidir dist/build -stubdir dist/build -i -idist/build -i. -idist/build/autogen -Idist/build/autogen -Idist/build -Iinclude -optP-include -optPdist/build/autogen/cabal_macros.h -this-package-key X11_IWliEAOAW3jLTNM8XZxGwo -hide-all-packages -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 -XHaskell98 -XForeignFunctionInterface -XCPP Graphics.X11 Graphics.X11.Types Graphics.X11.Xlib Graphics.X11.Xlib.Atom Graphics.X11.Xlib.Color Graphics.X11.Xlib.Context Graphics.X11.Xlib.Cursor Graphics.X11.Xlib.Display Graphics.X11.Xlib.Event Graphics.X11.Xlib.Font Graphics.X11.Xlib.Misc Graphics.X11.Xlib.Region Graphics.X11.Xlib.Screen Graphics.X11.Xlib.Types Graphics.X11.Xlib.Window Graphics.X11.Xlib.Image Graphics.X11.Xlib.Extras Graphics.X11.Xinerama Graphics.X11.Xrandr Graphics.X11.XScreenSaver Graphics.X11.ExtraTypes Graphics.X11.ExtraTypes.AP Graphics.X11.ExtraTypes.DEC Graphics.X11.ExtraTypes.HP Graphics.X11.ExtraTypes.Sun Graphics.X11.ExtraTypes.XF86 Graphics.X11.ExtraTypes.XorgDefault Graphics.X11.Xlib.Internal -funbox-strict-fields -Wall -fno-warn-unused-binds -prof -auto-all [ 1 of 28] Compiling Graphics.X11.Xlib.Internal ( dist/build/Graphics/X11/Xlib/Internal.hs, dist/build/Graphics/X11/Xlib/Internal.p_o ) [ 2 of 28] Compiling Graphics.X11.Types ( dist/build/Graphics/X11/Types.hs, dist/build/Graphics/X11/Types.p_o ) Graphics/X11/Types.hsc:61:1: Warning: Tab character [ 3 of 28] Compiling Graphics.X11.Xlib.Types ( dist/build/Graphics/X11/Xlib/Types.hs, dist/build/Graphics/X11/Xlib/Types.p_o ) [ 4 of 28] Compiling Graphics.X11.Xlib.Display ( Graphics/X11/Xlib/Display.hs, dist/build/Graphics/X11/Xlib/Display.p_o ) [ 5 of 28] Compiling Graphics.X11.Xlib.Event ( dist/build/Graphics/X11/Xlib/Event.hs, dist/build/Graphics/X11/Xlib/Event.p_o ) [ 6 of 28] Compiling Graphics.X11.Xlib.Screen ( Graphics/X11/Xlib/Screen.hs, dist/build/Graphics/X11/Xlib/Screen.p_o ) [ 7 of 28] Compiling Graphics.X11.Xlib.Window ( Graphics/X11/Xlib/Window.hs, dist/build/Graphics/X11/Xlib/Window.p_o ) [ 8 of 28] Compiling Graphics.X11.Xlib.Context ( Graphics/X11/Xlib/Context.hs, dist/build/Graphics/X11/Xlib/Context.p_o ) [ 9 of 28] Compiling Graphics.X11.Xlib.Color ( Graphics/X11/Xlib/Color.hs, dist/build/Graphics/X11/Xlib/Color.p_o ) [10 of 28] Compiling Graphics.X11.Xlib.Font ( dist/build/Graphics/X11/Xlib/Font.hs, dist/build/Graphics/X11/Xlib/Font.p_o ) Graphics/X11/Xlib/Font.hsc:23:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:58:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:73:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:82:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:83:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:84:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:85:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:87:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:94:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:95:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:96:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:98:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:102:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:107:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:111:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:115:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:138:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:139:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:140:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:141:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:142:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:143:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:144:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:148:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:149:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:150:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:151:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:152:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:153:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:154:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:155:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:156:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:157:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:164:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:165:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:166:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:167:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:168:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:169:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:170:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:171:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:172:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:173:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:174:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:175:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:177:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:178:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:179:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:186:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:187:1: Warning: Tab character Graphics/X11/Xlib/Font.hsc:189:1: Warning: Tab character [11 of 28] Compiling Graphics.X11.Xlib.Cursor ( dist/build/Graphics/X11/Xlib/Cursor.hs, dist/build/Graphics/X11/Xlib/Cursor.p_o ) [12 of 28] Compiling Graphics.X11.Xlib.Atom ( dist/build/Graphics/X11/Xlib/Atom.hs, dist/build/Graphics/X11/Xlib/Atom.p_o ) [13 of 28] Compiling Graphics.X11.Xlib.Region ( Graphics/X11/Xlib/Region.hs, dist/build/Graphics/X11/Xlib/Region.p_o ) [14 of 28] Compiling Graphics.X11.Xlib.Image ( Graphics/X11/Xlib/Image.hs, dist/build/Graphics/X11/Xlib/Image.p_o ) [15 of 28] Compiling Graphics.X11.Xlib.Misc ( dist/build/Graphics/X11/Xlib/Misc.hs, dist/build/Graphics/X11/Xlib/Misc.p_o ) Graphics/X11/Xlib/Misc.hsc:698:10: Warning: Orphan instance: instance Default VisualInfo To avoid this move the instance declaration to the module of the class or of the type, or wrap the type with a newtype and declare the instance on the new type. [16 of 28] Compiling Graphics.X11.Xrandr ( dist/build/Graphics/X11/Xrandr.hs, dist/build/Graphics/X11/Xrandr.p_o ) [17 of 28] Compiling Graphics.X11.ExtraTypes.AP ( dist/build/Graphics/X11/ExtraTypes/AP.hs, dist/build/Graphics/X11/ExtraTypes/AP.p_o ) [18 of 28] Compiling Graphics.X11.ExtraTypes.DEC ( dist/build/Graphics/X11/ExtraTypes/DEC.hs, dist/build/Graphics/X11/ExtraTypes/DEC.p_o ) [19 of 28] Compiling Graphics.X11.ExtraTypes.HP ( dist/build/Graphics/X11/ExtraTypes/HP.hs, dist/build/Graphics/X11/ExtraTypes/HP.p_o ) [20 of 28] Compiling Graphics.X11.ExtraTypes.Sun ( dist/build/Graphics/X11/ExtraTypes/Sun.hs, dist/build/Graphics/X11/ExtraTypes/Sun.p_o ) [21 of 28] Compiling Graphics.X11.ExtraTypes.XF86 ( dist/build/Graphics/X11/ExtraTypes/XF86.hs, dist/build/Graphics/X11/ExtraTypes/XF86.p_o ) [22 of 28] Compiling Graphics.X11.ExtraTypes.XorgDefault ( dist/build/Graphics/X11/ExtraTypes/XorgDefault.hs, dist/build/Graphics/X11/ExtraTypes/XorgDefault.p_o ) [23 of 28] Compiling Graphics.X11.ExtraTypes ( Graphics/X11/ExtraTypes.hs, dist/build/Graphics/X11/ExtraTypes.p_o ) Graphics/X11/ExtraTypes.hs:16:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:17:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:18:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:19:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:20:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:21:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:22:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:23:1: Warning: Tab character Graphics/X11/ExtraTypes.hs:25:1: Warning: Tab character [24 of 28] Compiling Graphics.X11.Xlib ( Graphics/X11/Xlib.hs, dist/build/Graphics/X11/Xlib.p_o ) Graphics/X11/Xlib.hs:23:1: Warning: Tab character Graphics/X11/Xlib.hs:24:1: Warning: Tab character Graphics/X11/Xlib.hs:26:1: Warning: Tab character Graphics/X11/Xlib.hs:27:1: Warning: Tab character Graphics/X11/Xlib.hs:29:1: Warning: Tab character Graphics/X11/Xlib.hs:30:1: Warning: Tab character Graphics/X11/Xlib.hs:31:1: Warning: Tab character Graphics/X11/Xlib.hs:33:1: Warning: Tab character Graphics/X11/Xlib.hs:47:1: Warning: Tab character [25 of 28] Compiling Graphics.X11.Xlib.Extras ( dist/build/Graphics/X11/Xlib/Extras.hs, dist/build/Graphics/X11/Xlib/Extras.p_o ) [26 of 28] Compiling Graphics.X11.Xinerama ( dist/build/Graphics/X11/Xinerama.hs, dist/build/Graphics/X11/Xinerama.p_o ) [27 of 28] Compiling Graphics.X11.XScreenSaver ( dist/build/Graphics/X11/XScreenSaver.hs, dist/build/Graphics/X11/XScreenSaver.p_o ) [28 of 28] Compiling Graphics.X11 ( Graphics/X11.hs, dist/build/Graphics/X11.p_o ) Building C Sources... creating dist/build /usr/local/bin/ghc -c -fPIC -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/fdset.c /usr/local/bin/ghc -c -dynamic -fPIC -osuf dyn_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/fdset.c /usr/local/bin/ghc -c -prof -fPIC -osuf p_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/fdset.c creating dist/build /usr/local/bin/ghc -c -fPIC -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/auxiliaries.c /usr/local/bin/ghc -c -dynamic -fPIC -osuf dyn_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/auxiliaries.c /usr/local/bin/ghc -c -prof -fPIC -osuf p_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/auxiliaries.c creating dist/build /usr/local/bin/ghc -c -fPIC -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/XUtils.c /usr/local/bin/ghc -c -dynamic -fPIC -osuf dyn_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/XUtils.c /usr/local/bin/ghc -c -prof -fPIC -osuf p_o -odir dist/build -Idist/build/autogen -Idist/build -Iinclude -optc-O2 -optc-I/usr/X11/include -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 cbits/XUtils.c Linking... [(InstalledPackageId "base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25",PackageIdentifier {pkgName = PackageName {unPackageName = "base"}, pkgVersion = Version {versionBranch = [4,8,2,0], versionTags = []}},ModuleRenaming True []),(InstalledPackageId "data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2",PackageIdentifier {pkgName = PackageName {unPackageName = "data-default"}, pkgVersion = Version {versionBranch = [0,5,3], versionTags = []}},ModuleRenaming True [])] /usr/bin/ar -r -s dist/build/objs-34820/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo.a dist/build/Graphics/X11.o dist/build/Graphics/X11/Types.o dist/build/Graphics/X11/Xlib.o dist/build/Graphics/X11/Xlib/Atom.o dist/build/Graphics/X11/Xlib/Color.o dist/build/Graphics/X11/Xlib/Context.o dist/build/Graphics/X11/Xlib/Cursor.o dist/build/Graphics/X11/Xlib/Display.o dist/build/Graphics/X11/Xlib/Event.o dist/build/Graphics/X11/Xlib/Font.o dist/build/Graphics/X11/Xlib/Misc.o dist/build/Graphics/X11/Xlib/Region.o dist/build/Graphics/X11/Xlib/Screen.o dist/build/Graphics/X11/Xlib/Types.o dist/build/Graphics/X11/Xlib/Window.o dist/build/Graphics/X11/Xlib/Image.o dist/build/Graphics/X11/Xlib/Extras.o dist/build/Graphics/X11/Xinerama.o dist/build/Graphics/X11/Xrandr.o dist/build/Graphics/X11/XScreenSaver.o dist/build/Graphics/X11/ExtraTypes.o dist/build/Graphics/X11/ExtraTypes/AP.o dist/build/Graphics/X11/ExtraTypes/DEC.o dist/build/Graphics/X11/ExtraTypes/HP.o dist/build/Graphics/X11/ExtraTypes/Sun.o dist/build/Graphics/X11/ExtraTypes/XF86.o dist/build/Graphics/X11/ExtraTypes/XorgDefault.o dist/build/Graphics/X11/Xlib/Internal.o dist/build/cbits/fdset.o dist/build/cbits/auxiliaries.o dist/build/cbits/XUtils.o ar: creating archive dist/build/objs-34820/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo.a /usr/bin/ar -r -s dist/build/objs-34820/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo_p.a dist/build/Graphics/X11.p_o dist/build/Graphics/X11/Types.p_o dist/build/Graphics/X11/Xlib.p_o dist/build/Graphics/X11/Xlib/Atom.p_o dist/build/Graphics/X11/Xlib/Color.p_o dist/build/Graphics/X11/Xlib/Context.p_o dist/build/Graphics/X11/Xlib/Cursor.p_o dist/build/Graphics/X11/Xlib/Display.p_o dist/build/Graphics/X11/Xlib/Event.p_o dist/build/Graphics/X11/Xlib/Font.p_o dist/build/Graphics/X11/Xlib/Misc.p_o dist/build/Graphics/X11/Xlib/Region.p_o dist/build/Graphics/X11/Xlib/Screen.p_o dist/build/Graphics/X11/Xlib/Types.p_o dist/build/Graphics/X11/Xlib/Window.p_o dist/build/Graphics/X11/Xlib/Image.p_o dist/build/Graphics/X11/Xlib/Extras.p_o dist/build/Graphics/X11/Xinerama.p_o dist/build/Graphics/X11/Xrandr.p_o dist/build/Graphics/X11/XScreenSaver.p_o dist/build/Graphics/X11/ExtraTypes.p_o dist/build/Graphics/X11/ExtraTypes/AP.p_o dist/build/Graphics/X11/ExtraTypes/DEC.p_o dist/build/Graphics/X11/ExtraTypes/HP.p_o dist/build/Graphics/X11/ExtraTypes/Sun.p_o dist/build/Graphics/X11/ExtraTypes/XF86.p_o dist/build/Graphics/X11/ExtraTypes/XorgDefault.p_o dist/build/Graphics/X11/Xlib/Internal.p_o dist/build/cbits/fdset.p_o dist/build/cbits/auxiliaries.p_o dist/build/cbits/XUtils.p_o ar: creating archive dist/build/objs-34820/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo_p.a /usr/local/bin/ghc -shared -dynamic -lXss -lXinerama -lX11 -lXrandr -lXext '-dynload deploy' -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-dlist-0.0.1 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1 -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59 -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2 -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3 -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS -optl-Wl,-rpath,/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7 -this-package-key X11_IWliEAOAW3jLTNM8XZxGwo -no-auto-link-packages -package-db dist/package.conf.inplace -package-id base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 dist/build/Graphics/X11.dyn_o dist/build/Graphics/X11/Types.dyn_o dist/build/Graphics/X11/Xlib.dyn_o dist/build/Graphics/X11/Xlib/Atom.dyn_o dist/build/Graphics/X11/Xlib/Color.dyn_o dist/build/Graphics/X11/Xlib/Context.dyn_o dist/build/Graphics/X11/Xlib/Cursor.dyn_o dist/build/Graphics/X11/Xlib/Display.dyn_o dist/build/Graphics/X11/Xlib/Event.dyn_o dist/build/Graphics/X11/Xlib/Font.dyn_o dist/build/Graphics/X11/Xlib/Misc.dyn_o dist/build/Graphics/X11/Xlib/Region.dyn_o dist/build/Graphics/X11/Xlib/Screen.dyn_o dist/build/Graphics/X11/Xlib/Types.dyn_o dist/build/Graphics/X11/Xlib/Window.dyn_o dist/build/Graphics/X11/Xlib/Image.dyn_o dist/build/Graphics/X11/Xlib/Extras.dyn_o dist/build/Graphics/X11/Xinerama.dyn_o dist/build/Graphics/X11/Xrandr.dyn_o dist/build/Graphics/X11/XScreenSaver.dyn_o dist/build/Graphics/X11/ExtraTypes.dyn_o dist/build/Graphics/X11/ExtraTypes/AP.dyn_o dist/build/Graphics/X11/ExtraTypes/DEC.dyn_o dist/build/Graphics/X11/ExtraTypes/HP.dyn_o dist/build/Graphics/X11/ExtraTypes/Sun.dyn_o dist/build/Graphics/X11/ExtraTypes/XF86.dyn_o dist/build/Graphics/X11/ExtraTypes/XorgDefault.dyn_o dist/build/Graphics/X11/Xlib/Internal.dyn_o dist/build/cbits/fdset.dyn_o dist/build/cbits/auxiliaries.dyn_o dist/build/cbits/XUtils.dyn_o -o dist/build/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo-ghc7.10.3.dylib ld: library not found for -lXss clang: error: linker command failed with exit code 1 (use -v to see invocation) EOF From allbery.b at gmail.com Sun Feb 21 20:01:06 2016 From: allbery.b at gmail.com (Brandon Allbery) Date: Sun, 21 Feb 2016 15:01:06 -0500 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. In-Reply-To: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> References: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Message-ID: On Sun, Feb 21, 2016 at 2:07 PM, Christoph R. Murauer wrote: > /usr/local/bin/ghc -shared -dynamic -lXss -lXinerama -lX11 -lXrandr -lXext > '-dynload deploy' > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/array_67iodizgJQIIxYVTp4emlA > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/rts > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/conta_2C3ZI8RgPO2LBMidXKTvIU > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-0.5.3 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-class-0.0.1 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-base-0.0.1 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-containers-0.0.1 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib > /data-default-instances-dlist-0.0.1 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/data-default-instances-old-locale-0.0.1 > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/deeps_6vMKxt5sPFR0XsbRWvvq59 > -optl-Wl,-rpath,/Users/USER/Library/Haskell/ghc-7.10.3-x86_64/lib/dlist-0.7.1.2 > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3 > -optl-Wl,-rpath,/Library/Frameworks/GHC.framework/Versions/7.10.3-x86_64/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS > -optl-Wl,-rpath,/Library/Haskell/ghc-7.10.3-x86_64/lib/old-locale-1.0.0.7 > -this-package-key X11_IWliEAOAW3jLTNM8XZxGwo -no-auto-link-packages > -package-db dist/package.conf.inplace -package-id > base-4.8.2.0-cc43d8e06aa74e9c4c0132becc49ee25 -package-id > data-default-0.5.3-9dff3193f506bb1167ea34cbb11b90f2 > dist/build/Graphics/X11.dyn_o dist/build/Graphics/X11/Types.dyn_o > dist/build/Graphics/X11/Xlib.dyn_o dist/buil > d/Graphics/X11/Xlib/Atom.dyn_o dist/build/Graphics/X11/Xlib/Color.dyn_o > dist/build/Graphics/X11/Xlib/Context.dyn_o > dist/build/Graphics/X11/Xlib/Cursor.dyn_o > dist/build/Graphics/X11/Xlib/Display.dyn_o > dist/build/Graphics/X11/Xlib/Event.dyn_o > dist/build/Graphics/X11/Xlib/Font.dyn_o > dist/build/Graphics/X11/Xlib/Misc.dyn_o > dist/build/Graphics/X11/Xlib/Region.dyn_o > dist/build/Graphics/X11/Xlib/Screen.dyn_o > dist/build/Graphics/X11/Xlib/Types.dyn_o > dist/build/Graphics/X11/Xlib/Window.dyn_o > dist/build/Graphics/X11/Xlib/Image.dyn_o > dist/build/Graphics/X11/Xlib/Extras.dyn_o > dist/build/Graphics/X11/Xinerama.dyn_o dist/build/Graphics/X11/Xrandr.dyn_o > dist/build/Graphics/X11/XScreenSaver.dyn_o > dist/build/Graphics/X11/ExtraTypes.dyn_o > dist/build/Graphics/X11/ExtraTypes/AP.dyn_o > dist/build/Graphics/X11/ExtraTypes/DEC.dyn_o > dist/build/Graphics/X11/ExtraTypes/HP.dyn_o > dist/build/Graphics/X11/ExtraTypes/Sun.dyn_o > dist/build/Graphics/X11/ExtraTypes/XF86.dyn_o > dist/build/Graphics/X11/ExtraTypes/XorgDef > ault.dyn_o dist/build/Graphics/X11/Xlib/Internal.dyn_o > dist/build/cbits/fdset.dyn_o dist/build/cbits/auxiliaries.dyn_o > dist/build/cbits/XUtils.dyn_o -o > dist/build/libHSX11-1.6.1.2-IWliEAOAW3jLTNM8XZxGwo-ghc7.10.3.dylib > ld: library not found for -lXss > This is https://github.com/xmonad/X11/issues/24 and workarounds are provided there. -- brandon s allbery kf8nh sine nomine associates allbery.b at gmail.com ballbery at sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From nawi at nawi.is Sun Feb 21 21:03:46 2016 From: nawi at nawi.is (Christoph R. Murauer) Date: Sun, 21 Feb 2016 22:03:46 +0100 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. In-Reply-To: References: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Message-ID: Thanks for your answer. Maybe someone else needs the information. Xmonad 0.12 requires : LIBRARY_PATH=/opt/X11/lib:$LIBRARY_PATH CPPFLAGS="-I/opt/X11/include" LDFLAGS="-L/opt/X11/lib" cabal install xmonad Xmonad-contrib 0.12 requires : LIBRARY_PATH=/opt/X11/lib:$LIBRARY_PATH CPPFLAGS="-I/opt/X11/include" LDFLAGS="-L/opt/X11/lib" cabal install xmonad-contrib --flags="-use_xft? It could also be, that pkg-config is required. Available for example using Homebrew. > This is https://github.com/xmonad/X11/issues/24 and workarounds are provided there. > > -- > brandon s allbery kf8nh sine nomine associates > allbery.b at gmail.com ballbery at sinenomine.net > unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net From allbery.b at gmail.com Sun Feb 21 21:06:32 2016 From: allbery.b at gmail.com (Brandon Allbery) Date: Sun, 21 Feb 2016 16:06:32 -0500 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. In-Reply-To: References: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Message-ID: On Sun, Feb 21, 2016 at 4:03 PM, Christoph R. Murauer wrote: > Xmonad 0.12 requires : > > LIBRARY_PATH=/opt/X11/lib:$LIBRARY_PATH CPPFLAGS="-I/opt/X11/include" > LDFLAGS="-L/opt/X11/lib" cabal install xmonad > > Xmonad-contrib 0.12 requires : > > LIBRARY_PATH=/opt/X11/lib:$LIBRARY_PATH CPPFLAGS="-I/opt/X11/include" > LDFLAGS="-L/opt/X11/lib" cabal install xmonad-contrib --flags="-use_xft? > > It could also be, that pkg-config is required. Available for example using > Homebrew. pkg-config isn't required, although it can help. If you do use it, you'll need to have PKG_CONFIG_PATH in the environment pointing to the pkgconfig databases (yes, plural; one in lib, one in share) under /opt/X11 or /usr/X11 for it to find the X11 libraries. -- brandon s allbery kf8nh sine nomine associates allbery.b at gmail.com ballbery at sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From nawi at nawi.is Sun Feb 21 21:14:43 2016 From: nawi at nawi.is (Christoph R. Murauer) Date: Sun, 21 Feb 2016 22:14:43 +0100 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. In-Reply-To: References: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Message-ID: <8E432F58-C091-45BA-A311-137DB59B85F2@nawi.is> > pkg-config isn't required, although it can help. If you do use it, you'll need to have PKG_CONFIG_PATH in the environment pointing to the pkgconfig databases (yes, plural; one in lib, one in share) under /opt/X11 or /usr/X11 for it to find the X11 libraries. Yes, maybe. I haven?t tried to reproduce it. But as I tried to build xmonad-contrib without --flags="-use_xft? it was reported as missing. I will give it a try on a clean system. > -- > brandon s allbery kf8nh sine nomine associates > allbery.b at gmail.com ballbery at sinenomine.net > unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net From nawi at nawi.is Sun Feb 21 22:18:52 2016 From: nawi at nawi.is (Christoph R. Murauer) Date: Sun, 21 Feb 2016 23:18:52 +0100 Subject: [xmonad] Building xmonad / X11 fails on Mac OS X 10.11.3 El Capitan. In-Reply-To: References: <876A83DE-7005-4D3F-8A09-65B587BE169C@nawi.is> Message-ID: <255F723C-3EB7-4D17-88BF-D26D31310911@nawi.is> > Am 21.02.2016 um 22:06 schrieb Brandon Allbery : > > pkg-config isn't required, although it can help. If you do use it, you'll need to have PKG_CONFIG_PATH in the environment pointing to the pkgconfig databases (yes, plural; one in lib, one in share) under /opt/X11 or /usr/X11 for it to find the X11 libraries. You are right. I gave it a second try and, it worked with the 2 commands without pkg-config or other things. Thanks.