Martin Costabel | 1 Jan 2007 13:45
Picon

Re: Wine does not compile

Matthias Kümmerer wrote:
> Jean-François Mertens schrieb:
>> Matthias : did you also have version 1.1.3 of Apple's X11 ?
> I used the Apple X11 delivered on the Mac OS X 10.4 CD (came with my 
> Macbook 1.83 GHz in October). The exact version I don't know, but I'll 
> have a look at it, when I am home again.

It would still be interesting to set the record straight on this 
question. I grepped through all the different Apple X11 versions I could 
get my hands on, and none of them has any reference to GLchar. I don't 
know, though, which X11 comes with a MacBook October 2006.

--

-- 
Martin

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
Jonas Steverud | 1 Jan 2007 21:22

Re: Incomplete Gnome setup - something is broken and don't know how to fix

17 dec 2006 kl. 10.24 skrev Jonas Steverud:

> I've installed a few parts but it hasn't helped; I think that I need
> to tell Gnome to use a specific theme but since I do not have the
> complete system this fails (e.g. I cannot run the Control Center
> since it cannot load this or that file etc. etc.).

Ok, I have partly fixed the problem but would need some assistance to  
get it completely fixed.

I have installed a number of Gnome packages, to no avial but some  
error messages gave me a few ideas and I now found the problem. For  
some reason, glines (and all other Gnome apps) cannot find and  
correctly handle SVG images. I converted /sw/share/pixmaps/glines/ 
balls.svg and /sw/share/pixmaps/glines/shapes.svg into PNGs (using  
other software, not related to Fink or Gnome) and I can now play  
glines - it will find my newly created PNGs and let me play the game  
(I used both the balls and the shapes).

As far as I can tell I have installed everything that is SVG-related  
in Fink, but obviously not enough. All dependancies are satisfied.

My question is, which library/-ies handles this? Which package should  
I install so get this right?

I've installed all packages I can think of! Any other suggestions?

~/> fink list svg
Information about 6465 packages read in 2 seconds.
[...]
(Continue reading)

Marc Baaden | 1 Jan 2007 23:28
X-Face
Picon
Picon

Re: Was "exmh" ever in fink?


Hi,

the message about exmh on Mac/Fink is perfect timing. I am also an exmh/nmh
fan and would want to move from linux to Mac. What I always wondered about it
whether Apple Mail is completely compatible with nmh -- I mean could you run
both on the same (and unique) Mail folder structure?  (I came to this question
once I noticed how easy and convenient it is to move message from my Mac/Mail
to linux/exmh and vice versa as both use a similar mail folder system).

Anybody does this in a "production" way? (switching between exmh/Apple Mail on
a unique Mail folder structure).

Thanks in advance,
MB

>>> Martin Costabel said:
 >> > 	Did fink ever have an "exmh" package?    [..]
 >> You are right that Apple's Mail is still in the pretty-toy stage. It may 
 >> grow up some day, but right now I wouldn't want to use it for a 
 >> 9000-message folder. Why don't you give Thunderbird a try?
--

-- 
 Dr. Marc Baaden  - Institut de Biologie Physico-Chimique, Paris
 mailto:baaden <at> smplinux.de      -      http://www.baaden.ibpc.fr
 FAX: +33 15841 5026  -  Tel: +33 15841 5176  ou  +33 609 843217

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
(Continue reading)

Nyenyec N | 2 Jan 2007 06:52
Picon
Gravatar

Launching postgresql81

I hope this is the right place to ask this.

I successfully compiled and installed postgresql81, but I didn't find
the obvious way of actually launching the daemon and registering it
with launchd.

Any help is appreciated.

Thanks,
nyenyec, recent switcher

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
Daniel Macks | 2 Jan 2007 08:50

Re: Fixing INFOPATH

On Sat, Dec 30, 2006 at 04:54:33PM +0100, Daniel wrote:
> 
>   When Fink is installed, INFOPATH is changed by /sw/bin/init.sh,
>   starting at line 67:
> 
>     if [ -z "$INFOPATH" ]; then
>       INFOPATH=/sw/share/info:/sw/info:/usr/share/info
>     else
>       prepend_path INFOPATH /sw/share/info:/sw/info
>     fi
>     export INFOPATH
> 
>   The problem occurs when INFOPATH is not set, and /sw/bin/init.sh
>   sets it. Then, `info' only searches in INFOPATH, not anymore in the
>   compile-time default directories.
> 
> Solution:
> 
>   Add a colon to INFOPATH. This makes `info' search INFOPATH and then
>   the compile-time default directories.
> 
>     if [ -z "$INFOPATH" ]; then
>    -  INFOPATH=/sw/share/info:/sw/info:/usr/share/info
>    +  INFOPATH=/sw/share/info:/sw/info:/usr/share/info:
>     else

I suspect the inclusion of /usr/share/info was designed to avert this
problem, however that's clearly an incomplete solution now. Is there a
reason we need to put /usr/share/info ahead of all the other default
search paths, or should we just do the same "prepend fink to the
(Continue reading)

Daniel | 2 Jan 2007 12:26
Picon

Re: Fixing INFOPATH

> > When Fink is installed, INFOPATH is changed by /sw/bin/init.sh,
> > starting at line 67:
> >
> > if [ -z "$INFOPATH" ]; then
> > INFOPATH=/sw/share/info:/sw/info:/usr/share/info
> > else
> > prepend_path INFOPATH /sw/share/info:/sw/info
> > fi
> > export INFOPATH
> >
> > The problem occurs when INFOPATH is not set, and /sw/bin/init.sh
> > sets it. Then, `info' only searches in INFOPATH, not anymore in the
> > compile-time default directories.
> >
> > Solution:
> >
> > Add a colon to INFOPATH. This makes `info' search INFOPATH and then
> > the compile-time default directories.
> >
> > if [ -z "$INFOPATH" ]; then
> > - INFOPATH=/sw/share/info:/sw/info:/usr/share/info
> > + INFOPATH=/sw/share/info:/sw/info:/usr/share/info:
> > else
>
> I suspect the inclusion of /usr/share/info was designed to avert this
> problem, however that's clearly an incomplete solution now. Is there a
> reason we need to put /usr/share/info ahead of all the other default
> search paths, or should we just do the same "prepend fink to the
> defaults" that we (try to) do in other cases?
>
(Continue reading)

Alexander Hansen | 2 Jan 2007 14:08
Picon
Gravatar

Re: Launching postgresql81

On 1/2/07, Nyenyec N <nyenyec <at> gmail.com> wrote:
> I hope this is the right place to ask this.
>
> I successfully compiled and installed postgresql81, but I didn't find
> the obvious way of actually launching the daemon and registering it
> with launchd.
>
> Any help is appreciated.
>
> Thanks,
> nyenyec, recent switcher
>

Take a look at "fink info postgresql81", which has some usage notes.

--

-- 
Alexander K. Hansen
(akh)
Fink Documenter (still)

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
Chris Zubrzycki | 2 Jan 2007 16:39
Picon

Re: Was "exmh" ever in fink?


On Dec 30, 2006, at 2:52 AM, Martin Costabel wrote:

> Mike O'Brien wrote:
>> 	Did fink ever have an "exmh" package?  There doesn't
>
> I don't think so.
>
>> seem to be one there now.  I'm thinking of moving my mail
>> reading over to my Mac, but I'm an old MH/exmh hand, and
>> I sort of doubt Apple Mail's sturdiness when it comes to
>> my typical 9,000-message folders (which MH handles
>> without breaking a sweat).
>
> You are right that Apple's Mail is still in the pretty-toy stage.  
> It may
> grow up some day, but right now I wouldn't want to use it for a
> 9000-message folder. Why don't you give Thunderbird a try?

I have +20k messages in a folder, the 10.4 version is much better, it  
uses a form of maildir instead of mbox, like in 10.3. It can be a  
little slow to access the folder, but the messages show up fine after  
they cache is loaded :)

-chris zubrzycki
--
PGP public key: http://homepage.mac.com/beren/publickey.txt
ID: 0xA2ABC070
Fingerprint: 26B0 BA6B A409 FA83 42B3  1688 FBF9 8232 A2AB C070
========================================================
(Continue reading)

Mike O'Brien | 2 Jan 2007 21:26
Picon

Re: Was "exmh" ever in fink?


On Jan 2, 2007, at 7:39 AM, Chris Zubrzycki wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
>
> On Dec 30, 2006, at 2:52 AM, Martin Costabel wrote:
>
>> Mike O'Brien wrote:
>>> 	Did fink ever have an "exmh" package?  There doesn't
>>
>> I don't think so.
>>
>>> seem to be one there now.  I'm thinking of moving my mail
>>> reading over to my Mac, but I'm an old MH/exmh hand, and
>>> I sort of doubt Apple Mail's sturdiness when it comes to
>>> my typical 9,000-message folders (which MH handles
>>> without breaking a sweat).
>>
>> You are right that Apple's Mail is still in the pretty-toy stage.
>> It may
>> grow up some day, but right now I wouldn't want to use it for a
>> 9000-message folder. Why don't you give Thunderbird a try?
>
> I have +20k messages in a folder, the 10.4 version is much better, it
> uses a form of maildir instead of mbox, like in 10.3. It can be a
> little slow to access the folder, but the messages show up fine after
> they cache is loaded :)
>
(Continue reading)

Alexander Hansen | 2 Jan 2007 21:32
Picon
Gravatar

Re: Was "exmh" ever in fink?

On 1/2/07, Mike O'Brien <misterprotocol <at> mac.com> wrote:
>
> On Jan 2, 2007, at 7:39 AM, Chris Zubrzycki wrote:
>
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> >
> > On Dec 30, 2006, at 2:52 AM, Martin Costabel wrote:
> >
> >> Mike O'Brien wrote:
> >>>     Did fink ever have an "exmh" package?  There doesn't
> >>
> >> I don't think so.
> >>
> >>> seem to be one there now.  I'm thinking of moving my mail
> >>> reading over to my Mac, but I'm an old MH/exmh hand, and
> >>> I sort of doubt Apple Mail's sturdiness when it comes to
> >>> my typical 9,000-message folders (which MH handles
> >>> without breaking a sweat).
> >>
> >> You are right that Apple's Mail is still in the pretty-toy stage.
> >> It may
> >> grow up some day, but right now I wouldn't want to use it for a
> >> 9000-message folder. Why don't you give Thunderbird a try?
> >
> > I have +20k messages in a folder, the 10.4 version is much better, it
> > uses a form of maildir instead of mbox, like in 10.3. It can be a
> > little slow to access the folder, but the messages show up fine after
> > they cache is loaded :)
(Continue reading)


Gmane