[ ghc-Bugs-642810 ] Still fails to build with GCC 3.2 on Mandrake

2002-11-26 Thread noreply
Bugs item #642810, was opened at 2002-11-23 10:51 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=642810&group_id=8032 Category: Driver Group: 5.04.1 Status: Closed Resolution: None Priority: 5 Submitted By: Joe English (jenglish) Assigned to: Nobody/Anon

[ ghc-Bugs-643878 ] sortBy not stable

2002-11-26 Thread noreply
Bugs item #643878, was opened at 2002-11-25 17:12 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=643878&group_id=8032 Category: Prelude Group: 5.04.1 >Status: Closed Resolution: Fixed Priority: 7 Submitted By: Mike Gunter (magunter) Assigned to: Nobody/A

[ ghc-Bugs-643878 ] sortBy not stable

2002-11-26 Thread noreply
Bugs item #643878, was opened at 2002-11-26 01:12 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=643878&group_id=8032 Category: Prelude Group: 5.04.1 >Status: Open Resolution: Fixed Priority: 7 Submitted By: Mike Gunter (magunter) Assigned to: Nobody/Ano

[ ghc-Bugs-642810 ] Still fails to build with GCC 3.2 on Mandrake

2002-11-26 Thread noreply
Bugs item #642810, was opened at 2002-11-23 10:51 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=642810&group_id=8032 Category: Driver Group: 5.04.1 Status: Closed Resolution: None Priority: 5 Submitted By: Joe English (jenglish) Assigned to: Nobody/Anon

[ ghc-Bugs-642810 ] Still fails to build with GCC 3.2 on Mandrake

2002-11-26 Thread noreply
Bugs item #642810, was opened at 2002-11-23 10:51 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=642810&group_id=8032 Category: Driver Group: 5.04.1 Status: Closed Resolution: None Priority: 5 Submitted By: Joe English (jenglish) Assigned to: Nobody/Anon

[ ghc-Bugs-642810 ] Still fails to build with GCC 3.2

2002-11-26 Thread noreply
Bugs item #642810, was opened at 2002-11-23 18:51 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=642810&group_id=8032 Category: Driver Group: 5.04.1 >Status: Closed Resolution: None Priority: 5 Submitted By: Joe English (jenglish) Assigned to: Nobody/Ano

RE: Running make

2002-11-26 Thread Simon Marlow
> "Simon Marlow" <[EMAIL PROTECTED]> writes: > > > > You also need libreadline.so, which here is just a link to > > libreadline.so.4.2. The "right" way to get this, if you're on an > > RPM-based Linux system, is to install the appropriate readline-devel > > RPM. > > Thanks, it worked, but now a

[ ghc-Bugs-643878 ] sortBy not stable

2002-11-26 Thread noreply
Bugs item #643878, was opened at 2002-11-26 01:12 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=643878&group_id=8032 Category: Prelude Group: 5.04.1 >Status: Closed >Resolution: Fixed Priority: 7 Submitted By: Mike Gunter (magunter) Assigned to: Nobody/

Re: [ ghc-Bugs-643878 ] sortBy not stable

2002-11-26 Thread Volker Stolz
In local.glasgow-haskell-bugs, you wrote: > The library report requires that sortBy be stable. In > 5.04.1 it isn't: It looks like the change to mergesort broke this property: #ifdef USE_REPORT_PRELUDE sort = sortBy compare sortBy cmp = foldr (insertBy cmp) [] #else sortBy cmp l = mergesort cmp

Re: Running make

2002-11-26 Thread sonja groening
"Simon Marlow" <[EMAIL PROTECTED]> writes: > > You also need libreadline.so, which here is just a link to > libreadline.so.4.2. The "right" way to get this, if you're on an > RPM-based Linux system, is to install the appropriate readline-devel > RPM. Thanks, it worked, but now a longer error occ

Re: [ ghc-Bugs-643878 ] sortBy not stable

2002-11-26 Thread Volker Stolz
In local.glasgow-haskell-bugs, you wrote: > The library report requires that sortBy be stable. In > 5.04.1 it isn't: [Simon, I must have missed that ghc-bugs is subscribers-only] There's an #ifdef'ed version in there which is stable, but the newer mergesort is not: #ifdef USE_REPORT_PRELUDE sort