Re: linker paths /usr/local/lib

2003-02-24 Thread Sam Izzo
On Mon, Feb 24, 2003 at 09:40:27AM +0100, Miguel Mendez wrote: Being a curious person myself I cvs co'd the OpenPTC thing to try it here. I've tried it on a NetBSD box, but the procedure to build it on FreeBSD should be similar. Hey great, thanks for that! You didn't have to do that :-) I

linker paths /usr/local/lib

2003-02-23 Thread Sam Izzo
Hi, I'm trying to compile ptc. Actually I'm trying to link against the Hermes pixel conversion library. With the following (ptc's configure creates this): char Hermes_ConverterInstance(); int main() { Hermes_ConverterInstance() ; return 0; } and the command-line: gcc test.c

Re: linker paths /usr/local/lib

2003-02-23 Thread Sam Izzo
Hi On Sun, Feb 23, 2003 at 04:51:33PM +0100, Miguel Mendez wrote: and the command-line: gcc test.c -o test -lHermes You probably want something like this: cc -o test test.c -L/usr/local/lib -lHermes Yeah that's all well and good for me compiling my own programs, but the

Re: linker paths /usr/local/lib

2003-02-23 Thread Sam Izzo
The configure scripts usually accept a parameter like `--with-extra-libs=/usr/local/lib' that you could use. You can always invoke configure with the --help option and check for it. Works most of the time. Yeah, OpenPTC doesn't accept that parameter :/ Most of the GNU tools are better

Re: sound card blocking problem

2003-02-21 Thread Sam Izzo
Hi, On Fri, Feb 21, 2003 at 09:00:29AM -0600, Brian Henning wrote: I noticed that is FBSD4.7 that when i am using the sound device in one process that the system blocks that device so no other processes can use the sound device until that process is killed. I know that in windows 2000 that is

can't mount msdos partition

2003-02-20 Thread Sam Izzo
Hi, Everything was working fine. Then I created a 30gb FAT32 partition (out of 30gb that was sitting there unused) in Windows 2000 on ad0. Previously there were three partitions on ad0, now there are four. Now when I boot back in to FreeBSD (4.7-RELEASE) I can't mount a _different_ partition

Re: CVSup Tags and release status

2003-02-20 Thread Sam Izzo
Hi, On Thu, Feb 20, 2003 at 09:55:01PM -0500, Travis Troyer wrote: This says that RELENG_4 is for FreeBSD-STABLE and that RELENG_5_0 is used only for security advisories and other seriously critical fixes. Is this still the case now that 5.0 is the current release version? I installed

Re: Root Kits?

2003-02-20 Thread Sam Izzo
Hi, On Thu, Feb 20, 2003 at 07:05:48PM -0800, Silent Secrets wrote: If you could let me know if this is an error on the root kit checker or something else is causing it to look infected, that'd be great. According to posts on this list in previous weeks it's a false positive. cheers sam To

Re: CD Recording

2003-02-18 Thread Sam Izzo
Hi, On Wed, Feb 19, 2003 at 12:05:53AM -0500, Justin P. Michel wrote: Is there an easy process for CD duplication using FreeBSD V4.7-R, and a standard IDE/ATAPI burner? I used to use Nero under Windows, but now am lost with dd and burncd, as it seems I have to know beforehand how many

Re: Fw: Creative Audigy soundblaster support

2003-02-17 Thread Sam Izzo
Hi, On Mon, Feb 17, 2003 at 11:58:52AM +0200, Alec wrote: I sent my code to FreeBSD developers and I believe they're considering it and going to include changes in next release. Well done! Do your changes affect the SBLive in any way? I don't have rear speakers working on my 4.7-RELEASE

Re: syntax problems in /etc/csh.login

2003-02-14 Thread Sam Izzo
Hi, Try this instead: if ( $user == user1 ) then echo hello user1 else if ( $user == user2 ) then echo hello user2 endif You could also do it with a switch: switch ( $user ) case user1: echo hello user1 breaksw case user2: echo hello user2 breaksw endsw

Re: emu10k1 patch

2003-02-13 Thread Sam Izzo
Hi, On Thu, Feb 13, 2003 at 11:31:23AM +0100, Antoine Jacoutot wrote: While looking for a way to improve my SBlive sound, I found a patch here: http://groups.google.com/groups?selm=a0ahlh%24itf%241%40FreeBSD.csie.NCTU.edu.tw It is supposed to improve rear speaker output and to add

asdf

2003-02-12 Thread Sam Izzo
subscribe freebsd-questions To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in the body of the message

memory leak problem

2003-02-12 Thread Sam Izzo
Hi, Woops, sorry about my other asdf spam email.. :-) This might be a stupid/obvious question but dmalloc is reporting that I have a memory leak in the following (test) program and I don't know why: #include stdio.h #include stdlib.h #include dmalloc.h int main(int argc, char **argv) { char

Re: ftp_proxy syntax

2003-02-12 Thread Sam Izzo
I have never used squid, so this may not work, but the standard for variables is captial letters. try: export FTP_PROXY=squid.sento.com:8080 Ah but the ftp man page says that the *_proxy variables are lowercase. :-) Unless it's a typo.. sam To Unsubscribe: send mail to [EMAIL PROTECTED]