[EMAIL PROTECTED] (Steven M. Schweda) writes:

> gcc -I. -I. -I/opt/include   -DHAVE_CONFIG_H 
> -DSYSTEM_WGETRC=\"/usr/local/etc/wg
> etrc\" -DLOCALEDIR=\"/usr/local/share/locale\" -O2 -Wall -Wno-implicit -c 
> ptimer
> .c
> ptimer.c:95:20: operator '>' has no left operand
> [...]

Thanks for reporting this.  I've now changed the line 95 to:

# if defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0

>    Is there any reason that "# ifdef _POSIX_TIMERS" would be worse?

POSIX allows systems to explicitly define _POSIX_TIMERS to 0 to
indicate that they are unavailable.  #ifdef _POSIX_TIMERS would be
wrong on systems that did that.

Reply via email to