RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Hal Daume III
Simon,

Sorry about the confusion here...the one you uploaded I don't think was
entirely fixed (this is my first time building a binary distribution -- I
promise next time it will be much smoother).  Please re-sync with:

  http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2

This should not have the path problems the previous one(s) did.

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Tue, 3 Jun 2003, Simon Marlow wrote:

  
  Sorry about that.  It's fixed at:
http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
  
  Simon: could you update the haskell.org link?
 
 Uploaded, thanks.
 
 Simon
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 


___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Simon Marlow
 
 Sorry about the confusion here...the one you uploaded I don't 
 think was
 entirely fixed (this is my first time building a binary 
 distribution -- I
 promise next time it will be much smoother).  Please re-sync with:
 
   http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
 
 This should not have the path problems the previous one(s) did.

Done.

Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Matt Fairtlough
I am having trouble installing the package in a non-standard place.  After
downloading and unpacking I did:

 ./configure --prefix=/home/matt
creating cache ./config.cache
checking host system type... sparc-sun-solaris2.9
...
usual reports, not relevant to problem reported I think
...
updating cache ./config.cache
creating ./config.status
creating Makefile

Configuration done, ready to either 'make install'
or 'make in-place'.
(see README and INSTALL files for more info.)


So this looks ok; and is confirmed by:

 make show-install-setup
Install setup...
bindir  = /home/matt/bin
libdir  = /home/matt/lib/ghc-6.0 (libdir  = /home/matt/lib/ghc-6.0)
datadir = /home/matt/share/ghc-6.0 (datadir = /home/matt/share/ghc-6.0)
 make install ! install.log 

 more install.log
Configuring ghc, version 6.0, on sparc-sun-solaris2 ...
Creating a configured version of ghc-asm ..
Done.
Creating a configured version of ghc-split ..
Done.
Creating a configured version of ghc-6.0 ..
Done.
Creating a configured version of ghci-6.0 ..
Done.
Creating a configured version of ghc-pkg-6.0 ..
Done.
Creating a configured version of hsc2hs ..
Done.
./mkdirhier /home/matt/bin
(cd lib/sparc-sun-solaris2; find . -type d -exec sh -c '../.././mkdirhier $0 
/ho
me/matt/lib/ghc-6.0/$0' {} \; )
(cd share; find . -type d -exec sh -c '.././mkdirhier 
/home/matt/share/ghc-6.0/$
0' {} \; )
for i in  ghc-6.0 ghci-6.0 ghc-pkg-6.0 hsc2hs ; do \
   if test -n $i ; then /usr/local/bin/ginstall -c -m 755   
bin/sparc-sun-sola
ris2/$i /home/matt/bin; fi; \
done;
for i in hp2ps ghcprof ; do \
   if test -n $i ; then /usr/local/bin/ginstall -c -m 755   
bin/sparc-sun-sola
ris2/$i /home/matt/bin; fi; \
done;
Creating a symbolic link from ghc-6.0 to ghc
Creating a symbolic link from ghci-6.0 to ghci
Creating a symbolic link from ghc-pkg-6.0 to ghc-pkg
(cd lib/sparc-sun-solaris2; find . -type f -exec sh -c 'cp $0 
/home/matt/lib/ghc
-6.0/$0' {} \; )
for i in `(cd share; find . -type f )`; do \
   /usr/local/bin/ginstall -c -m 644   share/$i /home/matt/share/ghc-6.0/$i; 
\
done
./mkdirhier /home/matt/share/ghc-6.0/html 
if test -d share/html ; then cp -r share/html/* /home/matt/share/ghc-6.0/html 
; 
fi
for i in share/*.ps; do \
cp $i /home/matt/share/ghc-6.0 ; \
done
cp: cannot stat `share/*.ps': No such file or directory
make: *** [install-docs] Error 1

ok, a problem with the documentation but I think this is the last thing make
install does so it shouldn't affect the binaries.

 ls -l `which ghc`
lrwxrwxrwx1 matt vt  7 Jun  3 16:54 /home/matt/bin/ghc - ghc-6.0*

ok, looks reasonable, should work:

 ghc --version
/home/matt/bin/ghc: /usr/local/lib/ghc-6.0/ghc-6.0: not found

oops, who said anything about /usr/local?

 more /home/matt/bin/ghc
#! /bin/sh
bindir='/home/matt/bin'
libdir='/home/matt/lib/ghc-6.0'
libexecdir='/home/matt/lib/ghc-6.0'
datadir='/home/matt/share/ghc-6.0'
SED='/usr/local/bin/sed'
DEFAULT_TMPDIR='/tmp'
#!/bin/sh
GHCBIN=/usr/local/lib/ghc-6.0/ghc-6.0;
TOPDIROPT=-B/usr/local/lib/ghc-6.0;
# Mini-driver for GHC
exec $GHCBIN $TOPDIROPT ${1+$@}

That doesn't look right at all.

Matt.

---
Matt Fairtlough  0114-22-21826  http://www.dcs.shef.ac.uk/~matt/
---



___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Volker Stolz
In local.glasgow-haskell-users, you wrote:
 I am having trouble installing the package in a non-standard place.  After
 downloading and unpacking I did:

There have been some fixes to this particular package. Please check
if there's a more recent package (t  1 day)!

Volker
-- 
http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
rage against the finite state machine 
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Hal Daume III
I don't think this is the problem, though, as none of the path issues he
mentioned contained the ill-mannered hdaume in them :).

Perhaps SimonM can comment more on this...

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Tue, 3 Jun 2003, Volker Stolz wrote:

 In local.glasgow-haskell-users, you wrote:
  I am having trouble installing the package in a non-standard place.  After
  downloading and unpacking I did:
 
 There have been some fixes to this particular package. Please check
 if there's a more recent package (t  1 day)!
 
 Volker
 -- 
 http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
 rage against the finite state machine 
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Matt Fairtlough

X-Authentication-Warning: moussor.isi.edu: hdaume owned process doing -bs
Date: Tue, 3 Jun 2003 09:26:32 -0700 (PDT)
From: Hal Daume III [EMAIL PROTECTED]
To: Volker Stolz [EMAIL PROTECTED]
cc: Matt Fairtlough [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: GHC 6.0 Release: sparc-solaris2 binaries

I don't think this is the problem, though, as none of the path issues he
mentioned contained the ill-mannered hdaume in them :).

I downloaded the package this afternoon after Simon's message so I assumed it 
was the latest (I also, rather cheekily, downloaded it from Hal's isi link 
posted today; it was a different binary file but exhibited exactly the same 
behaviour wrt non-default installation directories).

Matt.



___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


GHC 6.0 for Mac OS X

2003-06-04 Thread Wolfgang Thaller
I've now uploaded a binary package for Mac OS X
(Apple Installer .pkg inside a .dmg)
at
http://www.uni-graz.at/imawww/haskell/GHC.6.0.dmg
Enjoy!

Cheers,

Wolfgang

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Please help me

2003-06-04 Thread David Savimbi
From: David Jonas Savimbi
Johannesburg, South Africa
Email: [EMAIL PROTECTED]
June 3rd, 2003.

Dear Sir,
It is my humble pleasure to write you this letter irrespective of the fact that you do 
not know me. However, I got your name through your country business directory here in 
my search for a reliable and trustworthy person that can assist me confidently.
My name is Mr.John Jonas Savimbi. I am the son of Late Dr. Jonas Savimbi from Angola. 
I am 29 years old and I have got two younger sisters of same blood. Our mother died 
almost a year ago. We are all fighting for political asylum in South Africa. We cannot 
find a home in Angola anymore because of the war that our late father fought with the 
government of Angola until he died in that war. The government of Angola is now mad at 
us because our late father also wanted to be president and caused the people to fight 
the war for him because he was the president of UNITA political movement of Angola.
So now we are in South Africa and we are suffering too much because we don't have 
money and the government of South Africa will not give jobs to asylum seekers. I am 
much concerned about my younger sisters who are finding it very difficult to manage in 
the situation. But I know that we should not suffer this way. I know that I must not 
let my younger sisters get into trouble because of money. So after consideration I am 
hereby begging for your assistance to help me to recover the sum of USD $29 Million 
which is my inheritance from my late mother. My late mother had taken this money with 
her to Spain in a diplomatic metal box marked (Precious Stones). Subsequently she 
lodged the metal box (As precious Stones) with a Securities and Valuables Protection 
company in Spain. I am supposed to be the beneficiary in the event of her death. 
However, all effort I made to go Spain to claim was refused by the Spainish embassy. 
And this was while it was still possible for me to travel. Now I cannot travel 
anywhere anymore. So in the situation that we are facing now, I must find somebody who 
can go to the Spain on my behalf.
I understand that I will have to transfer my beneficiary rights unto you. I am willing 
to do so in the hope that you are a God fearing person who will not abandon us after 
you have the money. So from the bottom of my heart I am giving you 20% of the all the 
money. Once we have enough to sustain us sufficiently, you may be come our fund 
manager and invest the rest wisely for us. If you will be kind to assist us, please 
inform me urgently.
Kind regards to you and your family.
Sincerely,

David Jonas savimbi


___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Please help me

2003-06-04 Thread David Savimbi
From: David Jonas Savimbi
Johannesburg, South Africa
Email: [EMAIL PROTECTED]
June 3rd, 2003.

Dear Sir,
It is my humble pleasure to write you this letter irrespective of the fact that you do 
not know me. However, I got your name through your country business directory here in 
my search for a reliable and trustworthy person that can assist me confidently.
My name is Mr.John Jonas Savimbi. I am the son of Late Dr. Jonas Savimbi from Angola. 
I am 29 years old and I have got two younger sisters of same blood. Our mother died 
almost a year ago. We are all fighting for political asylum in South Africa. We cannot 
find a home in Angola anymore because of the war that our late father fought with the 
government of Angola until he died in that war. The government of Angola is now mad at 
us because our late father also wanted to be president and caused the people to fight 
the war for him because he was the president of UNITA political movement of Angola.
So now we are in South Africa and we are suffering too much because we don't have 
money and the government of South Africa will not give jobs to asylum seekers. I am 
much concerned about my younger sisters who are finding it very difficult to manage in 
the situation. But I know that we should not suffer this way. I know that I must not 
let my younger sisters get into trouble because of money. So after consideration I am 
hereby begging for your assistance to help me to recover the sum of USD $29 Million 
which is my inheritance from my late mother. My late mother had taken this money with 
her to Spain in a diplomatic metal box marked (Precious Stones). Subsequently she 
lodged the metal box (As precious Stones) with a Securities and Valuables Protection 
company in Spain. I am supposed to be the beneficiary in the event of her death. 
However, all effort I made to go Spain to claim was refused by the Spainish embassy. 
And this was while it was still possible for me to travel. Now I cannot travel 
anywhere anymore. So in the situation that we are facing now, I must find somebody who 
can go to the Spain on my behalf.
I understand that I will have to transfer my beneficiary rights unto you. I am willing 
to do so in the hope that you are a God fearing person who will not abandon us after 
you have the money. So from the bottom of my heart I am giving you 20% of the all the 
money. Once we have enough to sustain us sufficiently, you may be come our fund 
manager and invest the rest wisely for us. If you will be kind to assist us, please 
inform me urgently.
Kind regards to you and your family.
Sincerely,

David Jonas savimbi


___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Simon Marlow
Hal - how did you build this distribution?  Did you set 'BIN_DIST=1' in
build.mk before building everything?

Cheers,
Simon 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Hal Daume III
 Sent: 03 June 2003 17:27
 To: Volker Stolz
 Cc: Matt Fairtlough; [EMAIL PROTECTED]
 Subject: Re: GHC 6.0 Release: sparc-solaris2 binaries
 
 I don't think this is the problem, though, as none of the 
 path issues he
 mentioned contained the ill-mannered hdaume in them :).
 
 Perhaps SimonM can comment more on this...
 
 --
  Hal Daume III   | [EMAIL PROTECTED]
  Arrest this man, he talks in maths.   | www.isi.edu/~hdaume
 
 On Tue, 3 Jun 2003, Volker Stolz wrote:
 
  In local.glasgow-haskell-users, you wrote:
   I am having trouble installing the package in a 
 non-standard place.  After
   downloading and unpacking I did:
  
  There have been some fixes to this particular package. Please check
  if there's a more recent package (t  1 day)!
  
  Volker
  -- 
  http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
  rage against the finite state machine 
  ___
  Glasgow-haskell-users mailing list
  [EMAIL PROTECTED]
  http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
  
 
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 
 
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 for Mac OS X

2003-06-04 Thread Simon Marlow
 
 I've now uploaded a binary package for Mac OS X
 (Apple Installer .pkg inside a .dmg)
 
 at
 http://www.uni-graz.at/imawww/haskell/GHC.6.0.dmg

Now available from the GHC 6.0 download page.  Thanks Wolfgang!

Cheers,
Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: long constant list of pairs (was Re: Ways and Build Tags for Optimisation)

2003-06-04 Thread Christian Maeder
We had very long compilation times when optimization or profiling was 
switched on, for a [(String, Int)] list with about 5000 entries.

We worked around the problem by changing the list into a String 
(escaping doublequotes) and using read to convert it to a list.
The big string, however, does not go through hugs:

- Maximum token length (4000) exceeded

Christian

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users