re: ASIX Ax88772 anybody?

2006-12-18 Thread Dan Frohlich
Volker wrote: Hi hackers, is anybody working on an Asix Ax88772 implementation? As far as I've seen at some oBsd hacks this chip is close (but not exactly identical) to the already supported Ax88172 axe(4) chip but a few hacks are needed. I'm wondering if somebody already has this on his/her to

Re: Newbie request - compiling with Xlib.h

2006-12-18 Thread Divacky Roman
On Sun, Dec 17, 2006 at 01:43:57AM -0200, Henry Lenzi wrote: > Hi * > > I'm trying to follow the following tutorial for Xlib prpogramming: > > http://users.actcom.co.il/~choo/lupg/tutorials/xlib-programming/xlib-programming.html#preface > > However, I can't seem to compile the simple-drawing.c e

Re: Newbie request - compiling with Xlib.h

2006-12-18 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Henry Lenzi" <[EMAIL PROTECTED]> writes: : Hi * : : I'm trying to follow the following tutorial for Xlib prpogramming: : : http://users.actcom.co.il/~choo/lupg/tutorials/xlib-programming/xlib-programming.html#preface : : However, I can't seem to comp

Re: Capturing Parallel Port Data

2006-12-18 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Mr CW" <[EMAIL PROTECTED]> writes: : Thank you for the pointers. It sounds like reading data back from the : parallel port is not a common thing to do, although I thought parallel port : projects might have done this. Then I realized that most PIC pr

RE: Keyboard issue

2006-12-18 Thread Sneed, Sean P [EQ]
SorAlx, Thank you for help that resolved my issue. Thank you, Sean Sneed Embarq - eCommerce Team Desk: 913-323-5757 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 5:52 PM To: Sneed, Sean P [EQ] Cc: freebsd-hackers@freebsd.org

Re: Newbie request - compiling with Xlib.h

2006-12-18 Thread Jona Joachim
On Mon, 18 Dec 2006 10:12:23 -0700 (MST) "M. Warner Losh" <[EMAIL PROTECTED]> wrote: > In message: > <[EMAIL PROTECTED]> "Henry > Lenzi" <[EMAIL PROTECTED]> writes: : Hi * > : > : I'm trying to follow the following tutorial for Xlib prpogramming: > : > : > http://users.actcom.co.il/~choo/lupg/tu

if exists statement

2006-12-18 Thread Beech Rintoul
I'm trying to write an if exists for a port makefile. I tried: .if exists= ${PREFIX}/etc/rc.d exit else ${MKDIR} ${PREFIX}/etc/rc.d .endif but it doesn't work. Can someone give me the right syntax? TIA Beech -- -

Re: if exists statement

2006-12-18 Thread Coleman Kane
On 12/18/06, Beech Rintoul <[EMAIL PROTECTED]> wrote: I'm trying to write an if exists for a port makefile. I tried: .if exists= ${PREFIX}/etc/rc.d exit else ${MKDIR} ${PREFIX}/etc/rc.d .endif but it doesn't work. Can someone give me the right syntax? TIA Beech -- I think you want somet

Re: if exists statement

2006-12-18 Thread Joseph Koshy
.if exists= ${PREFIX}/etc/rc.d exit else ${MKDIR} ${PREFIX}/etc/rc.d .endif but it doesn't work. Can someone give me the right syntax? .if exists(${PREFIX}/etc/rc.d) .else .endif -- FreeBSD Volunteer, http://people.freebsd.org/~jkoshy ___ free