HAVE -> PHAVE

This commit is contained in:
rdb 2009-09-03 15:41:24 +00:00
parent 8cfef6c08d
commit 45ad239e59

View File

@ -24,7 +24,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <algorithm> #include <algorithm>
#ifdef HAVE_UTIME_H #ifdef PHAVE_UTIME_H
#include <utime.h> #include <utime.h>
// We assume we have these too. // We assume we have these too.
@ -32,20 +32,20 @@
#include <fcntl.h> #include <fcntl.h>
#endif #endif
#ifdef HAVE_GLOB_H #ifdef PHAVE_GLOB_H
#include <glob.h> #include <glob.h>
#ifndef GLOB_NOMATCH #ifndef GLOB_NOMATCH
#define GLOB_NOMATCH -3 #define GLOB_NOMATCH -3
#endif #endif
#endif #endif
#ifdef HAVE_DIRENT_H #ifdef PHAVE_DIRENT_H
#include <dirent.h> #include <dirent.h>
#endif #endif
// It's true that dtoolbase.h includes this already, but we include // It's true that dtoolbase.h includes this already, but we include
// this again in case we are building this file within ppremake. // this again in case we are building this file within ppremake.
#ifdef HAVE_UNISTD_H #ifdef PHAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif