Re: KDE and OpenSSL = Broken

2006-09-06 Thread Joerg Sonnenberger
On Wed, Sep 06, 2006 at 03:05:55AM +1000, Petr Janda wrote: [...] Whats going on here? Can anyone have a look at this? Historically libraries in FreeBSD (and therefore DragonFly) did not expose dependency libraries directly, but require the main applications to link them in correctly. That means

Re: KDE and OpenSSL = Broken

2006-09-06 Thread Petr Janda
And how do I go about doing that? Petr Joerg Sonnenberger wrote: On Wed, Sep 06, 2006 at 03:05:55AM +1000, Petr Janda wrote: [...] Whats going on here? Can anyone have a look at this? Historically libraries in FreeBSD (and therefore DragonFly) did not expose dependency libraries

How to delete files starting with -?

2006-09-06 Thread Petr Janda
Is it possible? How? Ive been trying to figure out. Petr

Re: How to delete files starting with -?

2006-09-06 Thread Sascha Wildner
Petr Janda wrote: Is it possible? How? Ive been trying to figure out. rm -- filename '--' means: End of options, treat everything from this point as arguments. Sascha -- http://yoyodyne.ath.cx

Re: How to delete files starting with -?

2006-09-06 Thread Matthieu Guéguen
On 9/6/06, Petr Janda [EMAIL PROTECTED] wrote: Is it possible? How? Ive been trying to figure out. Petr Just do rm -- yourfilestartingwithminus Note the double minus sign between rm and the filename.

Re: How to delete files starting with -?

2006-09-06 Thread Geert Hendrickx
On Thu, Sep 07, 2006 at 12:07:52AM +1000, Petr Janda wrote: Is it possible? How? Ive been trying to figure out. rm -- -foo (that's why I did touch -- -i in my homedir, so I can't accidentally do rm * there ;-)) Geert

Re: KDE and OpenSSL = Broken

2006-09-06 Thread walt
On Wed, 6 Sep 2006, Joerg Sonnenberger wrote: On Wed, Sep 06, 2006 at 03:05:55AM +1000, Petr Janda wrote: [...] Whats going on here? Can anyone have a look at this? Historically libraries in FreeBSD (and therefore DragonFly) did not expose dependency libraries directly, but require the

Re: KDE and OpenSSL = Broken

2006-09-06 Thread Joerg Sonnenberger
On Wed, Sep 06, 2006 at 07:47:29AM -0700, walt wrote: kdelibs3 installs two libraries that contain the missing symbols, libkio.so and libkcertpart.so, so I'd vote for that. Yeah, I have the slight feeling that the ssl detection of KDE is broken. I'll check it later. Joerg

802.1x

2006-09-06 Thread Gergo Szakal
Is there any way to use DF as a 802.1x client (supplicant)? Can one use it on a network where this is mandatory in order to gain access to the LAN?

Re: How to delete files starting with -?

2006-09-06 Thread Timour Ezeev
On Thu, 7 Sep 2006, Petr Janda wrote: Is it possible? How? Ive been trying to figure out. Yet another way is to specified either full or relative path of the file, i.e: rm /home/user/-badfile or rm ./-badfile BR, - Timour

Re: How to delete files starting with -?

2006-09-06 Thread Petr Janda
Cheers everyone. Petr