Re: Warnings from gcc

2007-12-23 Thread Marc Lehmann
On Sun, Dec 23, 2007 at 08:17:18AM -0500, Jeff Squyres <[EMAIL PROTECTED]> wrote: > If you haven't tested OS X Leopard, here's a datapoint for you: I > downloaded EV 2.0 and ran "make test" on an OS X 10.5.1 intel machine > with LIBEV_FLAGS environment variable values of , 1, 2, and 8. Tha

Re: ev_stat missed?

2007-12-23 Thread Marc Lehmann
On Thu, Dec 20, 2007 at 05:36:38PM +1000, Anton Umnikov <[EMAIL PROTECTED]> wrote: > I got error test_ev_stat.c:39: undefined reference to `ev_path_set' > when I tried to compile simple test with using of ev_stat. > > Is ev_stat not availabe yet? No, thats simply a typo, stat watchers were call

ev_stat broken

2007-12-23 Thread Anton Umnikov
Hello again. puppy:st$ make ev_passwd gcc -Wall -O3 -g -DDEBUG -D_GNU_SOURCE -DUSE_RESOLVE -lev -o ev_passwd ev_passwd.c: In function ‘main’: ev_passwd.c:28: warning: implicit declaration of function ‘ev_path_set’ /home/anton/tmp/ccqKUU2t.o: In function `main': /home/anton/WORK/lib/ev_passwd.c:28

ev_stat missed?

2007-12-23 Thread Anton Umnikov
Hello. I got error test_ev_stat.c:39: undefined reference to `ev_path_set' when I tried to compile simple test with using of ev_stat. From ev.h #define ev_stat_init(ev,cb,path,interval) do \ { ev_init ((ev), (cb)); ev_path_set ((ev),(path),(interval)); } while (0) but ev_path_

Re: Warnings from gcc

2007-12-23 Thread Jeff Squyres
On Dec 22, 2007, at 9:16 PM, Marc Lehmann wrote: Fair enough. Is OS X one of those platforms? (I couldn't find an official list of supported platforms -- did I miss it?) OS X is not one of those, but since afaics only gcc is used the warnings should be comparable to similar platforms. Th