Re: [GHC] #4191: Replace -fstrict-dicts with programmer-custom strictness annotations for class contexts

2010-07-19 Thread GHC
#4191: Replace -fstrict-dicts with programmer-custom strictness annotations for
class contexts
-+--
Reporter:  LouisWasserman|Owner:  
Type:  feature request   |   Status:  new 
Priority:  normal|Milestone:  
   Component:  Compiler  |  Version:  6.12.3  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by rl):

 Strict dictionaries won't help with this in the head which uses selectors
 rather than `case` for method calls. Floating method selectors out of
 loops is not straightforward with the new rule-based method selection
 mechanism but is definitely something that should be looked into. Just
 making dictionaries strict is not enough, though.

 In 6.12, on the other hand, this is usually handled by !LiberateCase which
 isn't ideal but gets the job done. Are you compiling with -O2?

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4191: Replace -fstrict-dicts with programmer-custom strictness annotations for class contexts

2010-07-19 Thread GHC
#4191: Replace -fstrict-dicts with programmer-custom strictness annotations for
class contexts
-+--
Reporter:  LouisWasserman|Owner:  
Type:  feature request   |   Status:  new 
Priority:  normal|Milestone:  
   Component:  Compiler  |  Version:  6.12.3  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by LouisWasserman):

 That's about the size of it, although I'd also prefer for -fdicts-strict
 to be a dynamic flag.  There are instances in which letting the dictionary
 stay lazy might be a good idea, and being able to control it at the module
 level instead of the package level would be nice.  (Being able to control
 it for individual dictionaries was the intent of this ticket, but I'd
 personally settle for module-level control.)

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3583: Default view patterns

2010-07-19 Thread GHC
#3583: Default view patterns
-+--
Reporter:  ksf   |Owner:
Type:  feature request   |   Status:  new   
Priority:  normal|Milestone:  _|_   
   Component:  Compiler  |  Version:  6.10.4
Keywords:|   Difficulty:  Moderate (less than a day)
  Os:  Unknown/Multiple  | Testcase:
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown  
-+--
Changes (by illissius):

 * cc: illiss...@… (added)


-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4188: Template Haskell support for reifying non-vanilla data constructors

2010-07-19 Thread GHC
#4188: Template Haskell support for reifying non-vanilla data constructors
-+--
Reporter:  illissius |Owner:  illissius   
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Template Haskell  |  Version:  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by illissius):

 Alright, thanks a lot. :)

 ...as far as I can tell, though, it seems perfectly capable of
 representing equality predicates?

 {{{
 data Con = ... | ForallC [TyVarBndr] Cxt Con
 type Cxt = [Pred]
 data Pred = ClassP Name [Type] | EqualP Type Type
 }}}

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4188: Template Haskell support for reifying non-vanilla data constructors

2010-07-19 Thread GHC
#4188: Template Haskell support for reifying non-vanilla data constructors
-+--
Reporter:  illissius |Owner:  illissius   
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Template Haskell  |  Version:  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonpj):

 You are right that the existing TH data type can represent any data
 constructor that doesn't use equality predicates.  I have a variant of
 your patch that reflects this constraint directly, and is slightly tidier
 than yours (no complaints -- the internal APIs are large).  Will commit
 shortly.  Thanks for doing the homework.

 (There's still an open task on someone to design the extensions to the TH
 data type to support full GADTs, and to get consensus from the community.)

 Simon

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4191: Replace -fstrict-dicts with programmer-custom strictness annotations for class contexts

2010-07-19 Thread GHC
#4191: Replace -fstrict-dicts with programmer-custom strictness annotations for
class contexts
-+--
Reporter:  LouisWasserman|Owner:  
Type:  feature request   |   Status:  new 
Priority:  normal|Milestone:  
   Component:  Compiler  |  Version:  6.12.3  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonpj):

 OK now I see what you are driving at.  So, if `-fdicts-strict` worked
 you'd be happy, right?  I see no need for source-language syntax, do you?

 Simon

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4203: ghc-6.12.3 fails to compile xmonad-0.9.1 tests

2010-07-19 Thread GHC
#4203: ghc-6.12.3 fails to compile xmonad-0.9.1 tests
-+--
Reporter:  slyfox|Owner:
Type:  bug   |   Status:  new   
Priority:  normal|Milestone:
   Component:  Compiler  |  Version:  6.12.3
Keywords:|   Difficulty:
  Os:  Unknown/Multiple  | Testcase:  yet   
Architecture:  Unknown/Multiple  |  Failure:  Compile-time crash
-+--

Comment(by simonpj):

 Trying to install xmonad's dependencies (on Windows) fails thus
 {{{
 cabal install X11
 Resolving dependencies...
 Configuring X11-1.5.0.0...
 configure: WARNING: unrecognized options: --with-compiler
 checking for gcc... no
 checking for cc... no
 checking for cl.exe... no
 configure: error: in `/tmp/X11-1.5.0.03600/X11-1.5.0.0':
 configure: error: no acceptable C compiler found in $PATH
 See `config.log' for more details.
 cabal.exe: Error: some packages failed to install:
 X11-1.5.0.0 failed during the configure step. The exception was:
 ExitFailure 1
 bash-3.1$ cabal --version
 cabal-install version 0.8.2
 using version 1.8.0.2 of the Cabal library
 bash-3.1$ ghc --version
 The Glorious Glasgow Haskell Compilation System, version 6.12.3
 bash-3.1$
 }}}
 So that makes it hard to reproduce your failure.

 I'll try your stripped down thing next

 Simon

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4199: createDirectoryIfMissing fails if directory exists on 32-bit windows

2010-07-19 Thread GHC
#4199: createDirectoryIfMissing fails if directory exists on 32-bit windows
+---
Reporter:  creswick |Owner:   
Type:  bug  |   Status:  new  
Priority:  normal   |Milestone:   
   Component:  libraries/directory  |  Version:  6.12.1   
Keywords:   |   Difficulty:   
  Os:  Windows  | Testcase:   
Architecture:  x86  |  Failure:  Runtime crash
+---

Comment(by creswick):

 Replying to [comment:1 simonmar]:
 > Does it make a difference whether you use `-threaded` or not?  (I know
 of one bug in this area)

 `-threaded` does not appear to have any effect.

 We've dug into this a bit more, and found that it's caused by a windows
 error code 1006 (ERROR_FILE_INVALID: http://msdn.microsoft.com/en-
 us/library/ms681383(VS.85).aspx ). This is (erroneously?) mapped to
 `IllegalArgument`.

 If we catch the exception, we can get the following details:
  * getLastError: 1006
  * ioe_type e: invalid argument
  * ioe_errno e: Just 22
  * typeOf e: GHC.IO.Exception.IOException
  * ioe_description e: Cannot create a file when that file already exists.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3605: Dll's freeze with -threaded

2010-07-19 Thread GHC
#3605: Dll's freeze with -threaded
-+--
Reporter:  NeilMitchell  |Owner:  NeilMitchell
Type:  bug   |   Status:  new 
Priority:  high  |Milestone:  6.14.1  
   Component:  Documentation |  Version:  6.12.1 RC1  
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by jod):

 * [http://www.javascr.com free css hosting]
  * [http://www.pharmacieenfrance.fr Pharmacie sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española]
  * [http://med-assistant.info Cheap Generics online]
  * [http://med-assistant.info/FR/ Medicaments en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2110: Rules to eliminate casted id's

2010-07-19 Thread GHC
#2110: Rules to eliminate casted id's
-+--
Reporter:  igloo |Owner:  
Type:  feature request   |   Status:  new 
Priority:  low   |Milestone:  6.14.1  
   Component:  Compiler  |  Version:  6.8.2   
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by jod):

 * [http://www.javascr.com upload css]
  * [http://www.pharmacieenfrance.fr Pharmacie En Ligne France]
  * [http://www.farmaciaespanola.es Comprar Genericos En España Sin Receta]
  * [http://med-assistant.info where to buy Generics online]
  * [http://med-assistant.info/FR/ Pharmacie en france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1687: A faster (^)-function.

2010-07-19 Thread GHC
#1687: A faster (^)-function.
--+-
Reporter:  moonl...@… |Owner:  
Type:  bug|   Status:  new 
Priority:  normal |Milestone:  _|_ 
   Component:  Prelude|  Version:  6.6.1   
Keywords: |   Difficulty:  Unknown 
  Os:  Linux  | Testcase:  
Architecture:  x86|  Failure:  None/Unknown
--+-
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free text hosting]
  * [http://www.pharmacieenfrance.fr Acheter Generique France Sans
 Ordonnance, Achat Medicaments bon marche sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española , Comprar Genericos
 En España Sin Receta , Compra Medicamentos Por Internet]
  * [http://med-assistant.info Medical Assistant - Your Assistant Online]
  * [http://med-assistant.info/FR/ L'Assistant Medical - Ton Assistant en
 ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #888: Implement the static argument transformation

2010-07-19 Thread GHC
#888: Implement the static argument transformation
-+--
Reporter:  simonpj   |Owner:  
Type:  task  |   Status:  new 
Priority:  low   |Milestone:  6.14.1  
   Component:  Compiler  |  Version:  6.4.2   
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  N/A 
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com share javascript]
  * [http://www.pharmacieenfrance.fr Acheter medicaments Sans Ordonnance]
  * [http://www.farmaciaespanola.es Donde Comprar genericos sin receta]
  * [http://med-assistant.info Buy Generic online no prescription]
  * [http://med-assistant.info/FR/ pharmacie en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2926: Foreign exported function returns wrong type

2010-07-19 Thread GHC
#2926: Foreign exported function returns wrong type
-+--
Reporter:  fasta |Owner:  
Type:  bug   |   Status:  new 
Priority:  low   |Milestone:  _|_ 
   Component:  Compiler (FFI)|  Version:  6.10.1  
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com paste css]
  * [http://www.pharmacieenfrance.fr Pharmacie Sans Ordonnance sur
 internet]
  * [http://www.farmaciaespanola.es Farmacia Genericos]
  * [http://med-assistant.info Order Generic cheapest online]
  * [http://med-assistant.info/FR/ pharmacie en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1786: can't build ghc-6.8.0.20071017 under Solaris using a GNU linker

2010-07-19 Thread GHC
#1786: can't build ghc-6.8.0.20071017 under Solaris using a GNU linker
-+--
Reporter:  guest |Owner:
Type:  bug   |   Status:  new   
Priority:  normal|Milestone:  _|_   
   Component:  Compiler  |  Version:  6.8   
Keywords:|   Difficulty:  Moderate (less than a day)
  Os:  Solaris   | Testcase:
Architecture:  x86   |  Failure:  None/Unknown  
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com paste javascript]
  * [http://www.pharmacieenfrance.fr Acheter Generique Sans Ordonnance]
  * [http://www.farmaciaespanola.es Comprar genericos sin receta]
  * [http://med-assistant.info where to Buy Generic online usa canada]
  * [http://med-assistant.info/FR/ Le blog sur la medicine]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #368: Provide a Java Backend

2010-07-19 Thread GHC
#368: Provide a Java Backend
-+--
  Reporter:  rainbowang  |  Owner:  
  Type:  feature request | Status:  new 
  Priority:  normal  |  Milestone:  _|_ 
 Component:  Compiler|Version:  None
Resolution:  None|   Keywords:  
Difficulty:  Project (more than a week)  | Os:  Unknown/Multiple
  Testcase:  N/A |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown|  
-+--

Comment(by jod):

 * [http://www.javascr.com upload text]
  * [http://www.pharmacieenfrance.fr Achat Medicaments generiques]
  * [http://www.farmaciaespanola.es Compra Medicamentos genericos]
  * [http://med-assistant.info where to Buy medicaments online generic side
 effects]
  * [http://med-assistant.info/FR/ Acheter generique bon marche]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1540: GHC on Macs

2010-07-19 Thread GHC
#1540: GHC on Macs
---+
  Reporter:  guest |  Owner:
  Type:  task  | Status:  closed
  Priority:  high  |  Milestone:  6.8 branch
 Component:  Build System  |Version:  6.6.1 
Resolution:  fixed |   Keywords:
Difficulty:  Unknown   | Os:  MacOS X   
  Testcase:|   Architecture:  x86   
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com upload javascript]
  * [http://www.pharmacieenfrance.fr Achat Medicaments]
  * [http://www.farmaciaespanola.es Compra Medicamentos Por Internet]
  * [http://med-assistant.info where to Buy Generic online without
 prescription]
  * [http://med-assistant.info/FR/ Acheter generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2585: New versions of windres fail with "windres: CreateProcess (null): No error"

2010-07-19 Thread GHC
#2585: New versions of windres fail with "windres: CreateProcess (null): No 
error"
---+
  Reporter:  igloo |  Owner:  
  Type:  bug   | Status:  closed  
  Priority:  high  |  Milestone:  6.10.1  
 Component:  Compiler  |Version:  6.9 
Resolution:  fixed |   Keywords:  
Difficulty:  Unknown   | Os:  Unknown/Multiple
  Testcase:|   Architecture:  Unknown/Multiple
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free javascript hosting]
  * [http://www.pharmacieenfrance.fr Acheter Medicaments]
  * [http://www.farmaciaespanola.es Comprar Medicamentos sin receta]
  * [http://med-assistant.info where to Buy Generics online no
 prescription]
  * [http://med-assistant.info/FR/ Achat generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1042: Floating point exception

2010-07-19 Thread GHC
#1042: Floating point exception
---+
  Reporter:  dons  |  Owner:  igloo   
  Type:  merge | Status:  closed  
  Priority:  normal|  Milestone:  6.6.1   
 Component:  Compiler  |Version:  6.6 
Resolution:  fixed |   Keywords:  
Difficulty:  Unknown   | Os:  Unknown/Multiple
  Testcase:|   Architecture:  x86 
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free text hosting]
  * [http://www.pharmacieenfrance.fr Acheter Generique France Sans
 Ordonnance, Achat Medicaments bon marche sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española , Comprar Genericos
 En España Sin Receta , Compra Medicamentos Por Internet]
  * [http://med-assistant.info Medical Assistant - Your Assistant Online]
  * [http://med-assistant.info/FR/ L'Assistant Medical - Ton Assistant en
 ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3955: occasional stray "mkUsageInfo" output

2010-07-19 Thread GHC
#3955: occasional stray "mkUsageInfo" output
-+--
  Reporter:  dmwit   |  Owner:  simonpj   
  Type:  bug | Status:  closed
  Priority:  normal  |  Milestone:  6.12.3
 Component:  Compiler|Version:  6.12.1
Resolution:  fixed   |   Keywords:
Difficulty:  | Os:  Linux 
  Testcase:  typecheck/should_compile/T3955  |   Architecture:  x86_64 (amd64)
   Failure:  Other   |  
-+--

Comment(by jod):

 * [http://www.javascr.com upload css]
  * [http://www.pharmacieenfrance.fr Pharmacie En Ligne France]
  * [http://www.farmaciaespanola.es Comprar Genericos En España Sin Receta]
  * [http://med-assistant.info where to buy Generics online]
  * [http://med-assistant.info/FR/ Pharmacie en france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3971: FFI callback segfaults on PPC

2010-07-19 Thread GHC
#3971: FFI callback segfaults on PPC
---+
Reporter:  wkahl   |Owner:   
Type:  bug |   Status:  new  
Priority:  normal  |Milestone:  _|_  
   Component:  Compiler (FFI)  |  Version:  6.12.3   
Keywords:  |   Difficulty:   
  Os:  Linux   | Testcase:   
Architecture:  powerpc |  Failure:  Runtime crash
---+

Comment(by jod):

 * [http://www.javascr.com free css hosting]
  * [http://www.pharmacieenfrance.fr Pharmacie sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española]
  * [http://med-assistant.info Cheap Generics online]
  * [http://med-assistant.info/FR/ Medicaments en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1673: Template Haskell support for type families

2010-07-19 Thread GHC
#1673: Template Haskell support for type families
-+--
  Reporter:  g9ks1...@…  |  Owner:  
  Type:  feature request | Status:  closed  
  Priority:  high|  Milestone:  6.12 branch 
 Component:  Template Haskell|Version:  6.7 
Resolution:  fixed   |   Keywords:  
Difficulty:  Unknown | Os:  Unknown/Multiple
  Testcase:  |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown|  
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free javascript hosting]
  * [http://www.pharmacieenfrance.fr Acheter Medicaments]
  * [http://www.farmaciaespanola.es Comprar Medicamentos sin receta]
  * [http://med-assistant.info where to Buy Generics online no
 prescription]
  * [http://med-assistant.info/FR/ Achat generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2269: Word type to Double or Float conversions are slower than Int conversions

2010-07-19 Thread GHC
#2269: Word type to Double or Float conversions are slower than Int conversions
---+
Reporter:  dons|Owner:  d...@… 
Type:  feature request |   Status:  new
Priority:  low |Milestone:  6.14.1 
   Component:  Compiler|  Version:  6.8.2  
Keywords:  rules, performance, double  |   Difficulty:  Unknown
  Os:  Unknown/Multiple| Testcase: 
Architecture:  Unknown/Multiple|  Failure:  None/Unknown   
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com paste css]
  * [http://www.pharmacieenfrance.fr Pharmacie Sans Ordonnance sur
 internet]
  * [http://www.farmaciaespanola.es Farmacia Genericos]
  * [http://med-assistant.info Order Generic cheapest online]
  * [http://med-assistant.info/FR/ pharmacie en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3910: +RTS options introduce a security problem for, e.g., setuid binaries

2010-07-19 Thread GHC
#3910: +RTS options introduce a security problem for, e.g., setuid binaries
--+-
  Reporter:  andersk  |  Owner:  igloo   
  Type:  bug  | Status:  closed  
  Priority:  normal   |  Milestone:  
 Component:  Runtime System   |Version:  6.12.1  
Resolution:  fixed|   Keywords:  
Difficulty:   | Os:  Unknown/Multiple
  Testcase:   |   Architecture:  Unknown/Multiple
   Failure:  Incorrect result at runtime  |  
--+-

Comment(by jod):

 * [http://www.javascr.com share javascript]
  * [http://www.pharmacieenfrance.fr Acheter medicaments Sans Ordonnance]
  * [http://www.farmaciaespanola.es Donde Comprar genericos sin receta]
  * [http://med-assistant.info Buy Generic online no prescription]
  * [http://med-assistant.info/FR/ pharmacie en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3875: DPH QuickHull example crashes on SPARC with -N > 1

2010-07-19 Thread GHC
#3875: DPH QuickHull example crashes on SPARC with -N > 1
-+--
  Reporter:  benl|  Owner:  igloo  
  Type:  merge   | Status:  closed 
  Priority:  high|  Milestone:  6.12.2 
 Component:  Runtime System  |Version:  6.13   
Resolution:  fixed   |   Keywords: 
Difficulty:  | Os:  Solaris
  Testcase:  |   Architecture:  sparc  
   Failure:  Runtime crash   |  
-+--

Comment(by jod):

 * [http://www.javascr.com paste javascript]
  * [http://www.pharmacieenfrance.fr Acheter Generique Sans Ordonnance]
  * [http://www.farmaciaespanola.es Comprar genericos sin receta]
  * [http://med-assistant.info where to Buy Generic online usa canada]
  * [http://med-assistant.info/FR/ Le blog sur la medicine]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3793: System.Time.toClockTime does not support all valid timezone offsets.

2010-07-19 Thread GHC
#3793: System.Time.toClockTime does not support all valid timezone offsets.
--+-
  Reporter:  daniel   |  Owner:  igloo  

  Type:  merge| Status:  closed 

  Priority:  high |  Milestone:  6.12.2 

 Component:  libraries/old-time   |Version: 

Resolution:  fixed|   Keywords:  tz timezone 
toClockTime
Difficulty:  Easy (less than 1 hour)  | Os:  Unknown/Multiple   

  Testcase:   |   Architecture:  Unknown/Multiple   

   Failure:  Incorrect result at runtime  |  
--+-

Comment(by jod):

 * [http://www.javascr.com upload text]
  * [http://www.pharmacieenfrance.fr Achat Medicaments generiques]
  * [http://www.farmaciaespanola.es Compra Medicamentos genericos]
  * [http://med-assistant.info where to Buy medicaments online generic side
 effects]
  * [http://med-assistant.info/FR/ Acheter generique bon marche]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2206: GADT pattern match with non-rigid return type

2010-07-19 Thread GHC
#2206: GADT pattern match with non-rigid return type
---+
  Reporter:  simonpj   |  Owner:  simonpj 
  Type:  bug   | Status:  closed  
  Priority:  normal|  Milestone:  6.10 branch 
 Component:  Compiler  |Version:  6.8.2   
Resolution:  fixed |   Keywords:  
Difficulty:  Unknown   | Os:  Unknown/Multiple
  Testcase:  gadt-escape1  |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com upload javascript]
  * [http://www.pharmacieenfrance.fr Achat Medicaments]
  * [http://www.farmaciaespanola.es Compra Medicamentos Por Internet]
  * [http://med-assistant.info where to Buy Generic online without
 prescription]
  * [http://med-assistant.info/FR/ Acheter generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2966: build system does not respect --with-gcc=

2010-07-19 Thread GHC
#2966: build system does not respect --with-gcc=
--+-
  Reporter:  duncan   |  Owner:  igloo   
  Type:  merge| Status:  closed  
  Priority:  normal   |  Milestone:  6.12.2  
 Component:  Build System |Version:  6.12.1  
Resolution:  fixed|   Keywords:  
Difficulty:  Unknown  | Os:  Unknown/Multiple
  Testcase:   |   Architecture:  Unknown/Multiple
   Failure:  Building GHC failed  |  
--+-

Comment(by jod):

 * [http://www.javascr.com upload javascript]
  * [http://www.pharmacieenfrance.fr Achat Medicaments]
  * [http://www.farmaciaespanola.es Compra Medicamentos Por Internet]
  * [http://med-assistant.info where to Buy Generic online without
 prescription]
  * [http://med-assistant.info/FR/ Acheter generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2083: linker reports missing symbols Main.c:(.text+0x12): undefined reference to `__stginit_ZCMain'

2010-07-19 Thread GHC
#2083: linker reports missing symbols Main.c:(.text+0x12): undefined reference 
to
`__stginit_ZCMain'
--+-
  Reporter:  Andrew U. Frank  |  Owner:  
  Type:  bug  | Status:  closed  
  Priority:  normal   |  Milestone:  6.8.3   
 Component:  Compiler |Version:  6.8.2   
Resolution:  worksforme   |   Keywords:  
Difficulty:  Unknown  | Os:  Unknown/Multiple
  Testcase:   |   Architecture:  Unknown/Multiple
   Failure:  None/Unknown |  
--+-
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free javascript hosting]
  * [http://www.pharmacieenfrance.fr Acheter Medicaments]
  * [http://www.farmaciaespanola.es Comprar Medicamentos sin receta]
  * [http://med-assistant.info where to Buy Generics online no
 prescription]
  * [http://med-assistant.info/FR/ Achat generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2360: More information in occurs check message

2010-07-19 Thread GHC
#2360: More information in occurs check message
-+--
Reporter:  ajd   |Owner:  chak
Type:  feature request   |   Status:  new 
Priority:  low   |Milestone:  6.14.1  
   Component:  Compiler  |  Version:  6.8.2   
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com upload text]
  * [http://www.pharmacieenfrance.fr Achat Medicaments generiques]
  * [http://www.farmaciaespanola.es Compra Medicamentos genericos]
  * [http://med-assistant.info where to Buy medicaments online generic side
 effects]
  * [http://med-assistant.info/FR/ Acheter generique bon marche]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1860: GMP dyn link dependencies in binary distributions

2010-07-19 Thread GHC
#1860: GMP dyn link dependencies in binary distributions
---+
  Reporter:  chak  |  Owner:  
  Type:  bug   | Status:  closed  
  Priority:  normal|  Milestone:  6.10 branch 
 Component:  Build System  |Version:  6.8.1   
Resolution:  fixed |   Keywords:  
Difficulty:  Unknown   | Os:  Unknown/Multiple
  Testcase:|   Architecture:  Unknown/Multiple
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com paste javascript]
  * [http://www.pharmacieenfrance.fr Acheter Generique Sans Ordonnance]
  * [http://www.farmaciaespanola.es Comprar genericos sin receta]
  * [http://med-assistant.info where to Buy Generic online usa canada]
  * [http://med-assistant.info/FR/ Le blog sur la medicine]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #431: runInteractiveProcess and closed stdin.

2010-07-19 Thread GHC
#431: runInteractiveProcess and closed stdin.
-+--
Reporter:  nobody| Type:  bug
  Status:  closed| Priority:  low
   Milestone:  _|_   |Component:  libraries/process  
 Version:  6.4   |   Resolution:  fixed  
Keywords:|   Difficulty:  Unknown
  Os:  Unknown/Multiple  | Testcase: 
Architecture:  Unknown/Multiple  |  Failure:  Incorrect result at runtime
-+--

Comment(by jod):

 * [http://www.javascr.com share javascript]
  * [http://www.pharmacieenfrance.fr Acheter medicaments Sans Ordonnance]
  * [http://www.farmaciaespanola.es Donde Comprar genericos sin receta]
  * [http://med-assistant.info Buy Generic online no prescription]
  * [http://med-assistant.info/FR/ pharmacie en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1569: error in compiling ghc-6.6.1 on 64-bit linux

2010-07-19 Thread GHC
#1569: error in compiling ghc-6.6.1 on 64-bit linux
---+
  Reporter:  guest |  Owner:  simonmar  
   
  Type:  bug   | Status:  closed
   
  Priority:  high  |  Milestone:  6.8.1 
   
 Component:  Compiler  |Version:  6.6.1 
   
Resolution:  fixed |   Keywords:  cc1: error: unrecognized option 
`-fwrapv'
Difficulty:  Unknown   | Os:  Linux 
   
  Testcase:|   Architecture:  x86_64 (amd64)
   
   Failure:  None/Unknown  |  
---+
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com paste css]
  * [http://www.pharmacieenfrance.fr Pharmacie Sans Ordonnance sur
 internet]
  * [http://www.farmaciaespanola.es Farmacia Genericos]
  * [http://med-assistant.info Order Generic cheapest online]
  * [http://med-assistant.info/FR/ pharmacie en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2530: deriving Show adds extra parens for constructor with record syntax

2010-07-19 Thread GHC
#2530: deriving Show adds extra parens for constructor with record syntax
-+--
Reporter:  spl   |Owner:  
Type:  bug   |   Status:  new 
Priority:  low   |Milestone:  6.14.1  
   Component:  Compiler  |  Version:  6.8.3   
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by jod):

 * [http://www.javascr.com free css hosting]
  * [http://www.pharmacieenfrance.fr Pharmacie sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española]
  * [http://med-assistant.info Cheap Generics online]
  * [http://med-assistant.info/FR/ Medicaments en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #1362: Fix PPC Mac OS X memory access problem in includes/SMP.h

2010-07-19 Thread GHC
#1362: Fix PPC Mac OS X memory access problem in includes/SMP.h
-+--
  Reporter:  thorkilnaur |  Owner: 
  Type:  bug | Status:  closed 
  Priority:  normal  |  Milestone: 
 Component:  Runtime System  |Version:  6.7
Resolution:  fixed   |   Keywords: 
Difficulty:  Unknown | Os:  MacOS X
  Testcase:  |   Architecture:  powerpc
   Failure:  None/Unknown|  
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com upload css]
  * [http://www.pharmacieenfrance.fr Pharmacie En Ligne France]
  * [http://www.farmaciaespanola.es Comprar Genericos En España Sin Receta]
  * [http://med-assistant.info where to buy Generics online]
  * [http://med-assistant.info/FR/ Pharmacie en france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #3471: configure fails for GHC 6.10.4 on Mac OS X 10.6 in 64-bit mode with previously-built GHC

2010-07-19 Thread GHC
#3471: configure fails for GHC 6.10.4 on Mac OS X 10.6 in 64-bit mode with
previously-built GHC
-+--
Reporter:  paulrbrown|  Owner:  
Type:  bug   | Status:  closed  
Priority:  normal|  Component:  Build System
 Version:  6.10.4| Resolution:  duplicate   
Keywords:  configure | Os:  Unknown/Multiple
Testcase:|   Architecture:  x86 
 Failure:  None/Unknown  |  
-+--
Changes (by jod):

  * failure:  => None/Unknown


Comment:

 * [http://www.javascr.com free text hosting]
  * [http://www.pharmacieenfrance.fr Acheter Generique France Sans
 Ordonnance, Achat Medicaments bon marche sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española , Comprar Genericos
 En España Sin Receta , Compra Medicamentos Por Internet]
  * [http://med-assistant.info Medical Assistant - Your Assistant Online]
  * [http://med-assistant.info/FR/ L'Assistant Medical - Ton Assistant en
 ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4215: free text hosting

2010-07-19 Thread GHC
#4215: free text hosting
-+--
Reporter:  jod   |   Owner:   
Type:  bug   |  Status:  new  
Priority:  normal|   Component:  Compiler 
 Version:  6.12.3|Keywords:  free text hosting
  Os:  Unknown/Multiple  |Testcase:   
Architecture:  Unknown/Multiple  | Failure:  None/Unknown 
-+--
 * [http://www.javascr.com free text hosting]
  * [http://www.pharmacieenfrance.fr Acheter Generique France Sans
 Ordonnance, Achat Medicaments bon marche sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española , Comprar Genericos
 En España Sin Receta , Compra Medicamentos Por Internet]
  * [http://med-assistant.info Medical Assistant - Your Assistant Online]
  * [http://med-assistant.info/FR/ L'Assistant Medical - Ton Assistant en
 ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4214: upload css

2010-07-19 Thread GHC
#4214: upload css
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  upload css  
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com upload css]
  * [http://www.pharmacieenfrance.fr Pharmacie En Ligne France]
  * [http://www.farmaciaespanola.es Comprar Genericos En España Sin Receta]
  * [http://med-assistant.info where to buy Generics online]
  * [http://med-assistant.info/FR/ Pharmacie en france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4213: free css hosting

2010-07-19 Thread GHC
#4213: free css hosting
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  free css hosting
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com free css hosting]
  * [http://www.pharmacieenfrance.fr Pharmacie sur internet]
  * [http://www.farmaciaespanola.es Farmacia Española]
  * [http://med-assistant.info Cheap Generics online]
  * [http://med-assistant.info/FR/ Medicaments en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4212: paste css

2010-07-19 Thread GHC
#4212: paste css
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  paste css   
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com paste css]
  * [http://www.pharmacieenfrance.fr Pharmacie Sans Ordonnance sur
 internet]
  * [http://www.farmaciaespanola.es Farmacia Genericos]
  * [http://med-assistant.info Order Generic cheapest online]
  * [http://med-assistant.info/FR/ pharmacie en ligne]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4211: share javascript

2010-07-19 Thread GHC
#4211: share javascript
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  share javascript
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com share javascript]
  * [http://www.pharmacieenfrance.fr Acheter medicaments Sans Ordonnance]
  * [http://www.farmaciaespanola.es Donde Comprar genericos sin receta]
  * [http://med-assistant.info Buy Generic online no prescription]
  * [http://med-assistant.info/FR/ pharmacie en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4209: upload text

2010-07-19 Thread GHC
#4209: upload text
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  upload text 
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com upload text]
  * [http://www.pharmacieenfrance.fr Achat Medicaments generiques]
  * [http://www.farmaciaespanola.es Compra Medicamentos genericos]
  * [http://med-assistant.info where to Buy medicaments online generic side
 effects]
  * [http://med-assistant.info/FR/ Acheter generique bon marche]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4210: paste javascript

2010-07-19 Thread GHC
#4210: paste javascript
-+--
Reporter:  jod   |   Owner:  
Type:  bug   |  Status:  new 
Priority:  normal|   Component:  Compiler
 Version:  6.12.3|Keywords:  paste javascript
  Os:  Unknown/Multiple  |Testcase:  
Architecture:  Unknown/Multiple  | Failure:  None/Unknown
-+--
 * [http://www.javascr.com paste javascript]
  * [http://www.pharmacieenfrance.fr Acheter Generique Sans Ordonnance]
  * [http://www.farmaciaespanola.es Comprar genericos sin receta]
  * [http://med-assistant.info where to Buy Generic online usa canada]
  * [http://med-assistant.info/FR/ Le blog sur la medicine]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4208: free javascript hosting

2010-07-19 Thread GHC
#4208: free javascript hosting
-+--
Reporter:  jod   |   Owner: 
Type:  bug   |  Status:  new
Priority:  normal|   Component:  Compiler   
 Version:  6.12.3|Keywords:  free javascript hosting
  Os:  Unknown/Multiple  |Testcase: 
Architecture:  Unknown/Multiple  | Failure:  None/Unknown   
-+--
 * [http://www.javascr.com free javascript hosting]
  * [http://www.pharmacieenfrance.fr Acheter Medicaments]
  * [http://www.farmaciaespanola.es Comprar Medicamentos sin receta]
  * [http://med-assistant.info where to Buy Generics online no
 prescription]
  * [http://med-assistant.info/FR/ Achat generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


[GHC] #4207: upload javascript

2010-07-19 Thread GHC
#4207: upload javascript
-+--
Reporter:  jod   |   Owner:   
Type:  bug   |  Status:  new  
Priority:  normal|   Component:  Compiler 
 Version:  6.12.3|Keywords:  upload javascript
  Os:  Unknown/Multiple  |Testcase:   
Architecture:  Unknown/Multiple  | Failure:  None/Unknown 
-+--
 * [http://www.javascr.com upload javascript]
  * [http://www.pharmacieenfrance.fr Achat Medicaments]
  * [http://www.farmaciaespanola.es Compra Medicamentos Por Internet]
  * [http://med-assistant.info where to Buy Generic online without
 prescription]
  * [http://med-assistant.info/FR/ Acheter generique en ligne france]

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4172: GHC build failes when BuildFlavour = prof is used

2010-07-19 Thread GHC
#4172: GHC build failes when BuildFlavour = prof is used
---+
Reporter:  Phyx-   |Owner: 
Type:  bug |   Status:  new
Priority:  normal  |Milestone: 
   Component:  Compiler|  Version:  6.13   
Keywords:  |   Difficulty: 
  Os:  Windows | Testcase: 
Architecture:  x86_64 (amd64)  |  Failure:  Building GHC failed
---+

Comment(by Phyx-):

 my configure options were just simply ./configure --with-
 ghc=/c/ghc/ghc-6.12.1/bin/ghc

 the output of configure is

 --
 Configure completed successfully.

Building GHC version  : 6.13.20100713

Build platform: i386-unknown-mingw32
Host platform : i386-unknown-mingw32
Target platform   : i386-unknown-mingw32

Bootstrapping using   : c:/ghc/ghc-6.12.1/bin/ghc
   which is version   : 6.12.1

Using GCC :
 c:/Users/Phyx/Documents/VisualHaskell2010/ghc/inplace
 /mingw/bin/gcc.exe
   which is version   : 3.4.5

ld   :
 c:/Users/Phyx/Documents/VisualHaskell2010/ghc/inplace/mingw/bin/ld
 .exe
Happy: /c/Users/Phyx/AppData/Roaming/cabal/bin/happy (1.18.4)
Alex : /c/Users/Phyx/AppData/Roaming/cabal/bin/alex (2.3.2)
Python   : /c/Python26/python[[BR]]
Perl : /bin/perl[[BR]]
dblatex  : /c/Program Files (x86)/MiKTeX 2.8/miktex/bin/dblatex[[BR]]
xsltproc :

HsColour was not found; documentation will not contain source links

Building DocBook HTML documentation : NO[[BR]]
Building DocBook PS documentation   : YES[[BR]]
Building DocBook PDF documentation  : YES
 --

 in the build.mk the only thing I changed was uncommenting BuildFlavour =
 prof

 my MingW version is [[BR]]
 $ uname -a
 MINGW32_NT-6.1 PHYX-ARR 1.0.11(0.46/3/2) 2009-07-11 17:46 i686 Msys

 and my OS is[[BR]]

 OS Name:   Microsoft Windows 7 Professional[[BR]]
 OS Version:6.1.7600 N/A Build 7600[[BR]]
 System Type:   x64-based PC

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4205: Improve Threading Support for FreeBSD

2010-07-19 Thread GHC
#4205: Improve Threading Support for FreeBSD
-+--
Reporter:  pgj   |Owner:  
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Runtime System|  Version:  6.13
Keywords:|   Difficulty:  
  Os:  FreeBSD   | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonmar):

 Replying to [comment:5 pgj]:
 > A question before I start to fix the patch: is there any other functions
 to be implemented regarding threading?

 No, `OSThreads.c` should be all you need to change.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4205: Improve Threading Support for FreeBSD

2010-07-19 Thread GHC
#4205: Improve Threading Support for FreeBSD
-+--
Reporter:  pgj   |Owner:  
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Runtime System|  Version:  6.13
Keywords:|   Difficulty:  
  Os:  FreeBSD   | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by pgj):

 A question before I start to fix the patch: is there any other functions
 to be implemented regarding threading?

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4205: Improve Threading Support for FreeBSD

2010-07-19 Thread GHC
#4205: Improve Threading Support for FreeBSD
-+--
Reporter:  pgj   |Owner:  
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Runtime System|  Version:  6.13
Keywords:|   Difficulty:  
  Os:  FreeBSD   | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonmar):

 We should probably fix that `_DARWIN_C_SOURCE` thing too, it managed to
 slip past me :-)

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4205: Improve Threading Support for FreeBSD

2010-07-19 Thread GHC
#4205: Improve Threading Support for FreeBSD
-+--
Reporter:  pgj   |Owner:  
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Runtime System|  Version:  6.13
Keywords:|   Difficulty:  
  Os:  FreeBSD   | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by pgj):

 All right.  I dared to do so because of the presence of the
 {{{_DARWIN_C_SOURCE 1}}} line below in {{{PosixSource.h}}}, since the
 reason is almost the same.  (Actually, FreeBSD and Darwin are close
 relatives.)  But I understand your concern, and I will amend the patch
 soon.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4167: Add numSparks# to return the number of elements in the current capability's spark queue

2010-07-19 Thread GHC
#4167: Add numSparks# to return the number of elements in the current 
capability's
spark queue
-+--
Reporter:  ekmett|Owner:  
Type:  feature request   |   Status:  new 
Priority:  normal|Milestone:  
   Component:  Compiler  |  Version:  6.12.3  
Keywords:|   Difficulty:  
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonpj):

 This `numSparks#` idea would allow us to implement the "split when hungry"
 idea of Rainey et al; see "Lazy tree splitting", ICFP 2010.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4205: Improve Threading Support for FreeBSD

2010-07-19 Thread GHC
#4205: Improve Threading Support for FreeBSD
-+--
Reporter:  pgj   |Owner:  
Type:  feature request   |   Status:  patch   
Priority:  normal|Milestone:  
   Component:  Runtime System|  Version:  6.13
Keywords:|   Difficulty:  
  Os:  FreeBSD   | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--

Comment(by simonmar):

 Thanks for the patch.  Patch review: approved in principle, but please do
 not add

 {{{
 #define __BSD_VISIBLE   1
 }}}

 to `PosixSource.h`.  The point of `PosixSource.h` is that it labels
 ''portable'' C code; if the C code is not portable then it should not
 `#include "PosixSource.h"` at all (and instead should include a comment
 explaining why it isn't portable).  i.e. move the above `#define` into
 `OSThreads.h`, and put `#ifndef freebsd_HOST_OS` around the `#include
 "PosixSource.h"`.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #2451: New signal-handling API

2010-07-19 Thread GHC
#2451: New signal-handling API
-+--
Reporter:  simonmar  |Owner:  simonmar
Type:  proposal  |   Status:  new 
Priority:  high  |Milestone:  6.14.1  
   Component:  libraries/unix|  Version:  6.8.3   
Keywords:|   Difficulty:  Unknown 
  Os:  Unknown/Multiple  | Testcase:  
Architecture:  Unknown/Multiple  |  Failure:  None/Unknown
-+--
Changes (by lelf):

 * cc: anton@… (added)


-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4198: waitForProcess fails with "Bad file descriptor"

2010-07-19 Thread GHC
#4198: waitForProcess fails with "Bad file descriptor"
--+-
Reporter:  yugr   |Owner: 
Type:  bug|   Status:  new
Priority:  normal |Milestone: 
   Component:  libraries/process  |  Version:  6.12.3 
Keywords:  waitForProcess |   Difficulty: 
  Os:  Windows| Testcase: 
Architecture:  x86_64 (amd64) |  Failure:  Incorrect result at runtime
--+-

Comment(by simonmar):

 Did you compile with or without `-threaded`?

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4192: Proposed process piping function to be added to the "process" package

2010-07-19 Thread GHC
#4192: Proposed process piping function to be added to the "process" package
--+-
Reporter:  golubovsky |Owner:  
Type:  proposal   |   Status:  new 
Priority:  normal |Milestone:  
   Component:  libraries/process  |  Version:  6.12.3  
Keywords:  pipe   |   Difficulty:  
  Os:  Unknown/Multiple   | Testcase:  
Architecture:  Unknown/Multiple   |  Failure:  None/Unknown
--+-

Comment(by simonmar):

 No objection to adding the function itself.  The implementation looks like
 it could be cleaned up a bit: the use of `fromJust` is dodgy for example
 (it's not obvious that it couldn't fail).  The Haddock docs need some
 editing for correct markup, and it should be made clear that the
 std_in/std_out of each `CreateProcess` will be modified.

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4172: GHC build failes when BuildFlavour = prof is used

2010-07-19 Thread GHC
#4172: GHC build failes when BuildFlavour = prof is used
---+
Reporter:  Phyx-   |Owner: 
Type:  bug |   Status:  new
Priority:  normal  |Milestone: 
   Component:  Compiler|  Version:  6.13   
Keywords:  |   Difficulty: 
  Os:  Windows | Testcase: 
Architecture:  x86_64 (amd64)  |  Failure:  Building GHC failed
---+

Comment(by simonmar):

 What configure options and/or `build.mk` settings did you use?

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4199: createDirectoryIfMissing fails if directory exists on 32-bit windows

2010-07-19 Thread GHC
#4199: createDirectoryIfMissing fails if directory exists on 32-bit windows
+---
Reporter:  creswick |Owner:   
Type:  bug  |   Status:  new  
Priority:  normal   |Milestone:   
   Component:  libraries/directory  |  Version:  6.12.1   
Keywords:   |   Difficulty:   
  Os:  Windows  | Testcase:   
Architecture:  x86  |  Failure:  Runtime crash
+---

Comment(by simonmar):

 Does it make a difference whether you use `-threaded` or not?  (I know of
 one bug in this area)

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4180: do not consider associativity for unary minus for fixity resolution

2010-07-19 Thread GHC
#4180: do not consider associativity for unary minus for fixity resolution
--+-
Reporter:  maeder |Owner:  
Type:  proposal   |   Status:  new 
Priority:  normal |Milestone:  
   Component:  Compiler   |  Version:  6.12.3  
Keywords:  fixity resolution  |   Difficulty:  
  Os:  Unknown/Multiple   | Testcase:  
Architecture:  Unknown/Multiple   |  Failure:  None/Unknown
--+-

Comment(by maeder):

 also see http://hackage.haskell.org/trac/haskell-
 prime/wiki/PrefixMinusResolution (as positive answer to b)

 The "simple mental model" is: "prefix minus applications extend as far to
 the right as long as infix operators have higher precedence." (This
 happens in my recent Resolve.hs attachment by `resolveNegExpr`.) Therefore
 "- 1 ## 1" should resolve as "(- 1) ## 1", too.

 Both attached versions (Fixity.hs and Resolve.hs) resolve identically (and
 identically to Simon's version http://darcs.haskell.org/haskell-
 prime/fixity/resolve.hs, if "guard (prec1 < 6)" is omitted and the
 constructed precedence for unary minus is increased to 6.5 in "parseNeg
 (Op "-" 6 Leftfix) rest", which also requires to change "type Prec = Int"
 to Float.)

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] #4195: isGadtSyntaxTyCon returns opposite result from expected

2010-07-19 Thread GHC
#4195: isGadtSyntaxTyCon returns opposite result from expected
+---
  Reporter:  illissius  |  Owner:  illissius   
  Type:  bug| Status:  closed  
  Priority:  normal |  Milestone:  
 Component:  Compiler   |Version:  6.13
Resolution:  fixed  |   Keywords:  
Difficulty: | Os:  Unknown/Multiple
  Testcase: |   Architecture:  Unknown/Multiple
   Failure:  Other  |  
+---

Comment(by simonpj):

 Yes, thanks for spotting this, illissius.

 Simon

-- 
Ticket URL: 
GHC 
The Glasgow Haskell Compiler
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs