Author: iratqq Date: Mon Feb 2 01:39:37 2009 New Revision: 5791
Modified: trunk/replace/os_dep.h Log: * replace/os_dep.h: - Fix checking HAVE_* is undef or not. Modified: trunk/replace/os_dep.h ============================================================================== --- trunk/replace/os_dep.h (original) +++ trunk/replace/os_dep.h Mon Feb 2 01:39:37 2009 @@ -121,7 +121,7 @@ #ifdef HAVE_POLL_H #include <poll.h> -#elif HAVE_SYS_POLL_H +#elif defined(HAVE_SYS_POLL_H) #include <sys/poll.h> #else #include "bsd-poll.h"
