diff options
author | Zeev Suraski <zeev@php.net> | 1999-07-23 15:18:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-07-23 15:18:37 +0000 |
commit | 00238ad1ba0e51b868edf5eb685ae55ceb027028 (patch) | |
tree | d77518cc371ef1be0f24f141d6887cae82987457 /ext/gd/gdcache.c | |
parent | b291b0902d857e22b80fef6c6f9a62020db691e7 (diff) | |
download | php-git-00238ad1ba0e51b868edf5eb685ae55ceb027028.tar.gz |
Added check for freetype.h
Diffstat (limited to 'ext/gd/gdcache.c')
-rw-r--r-- | ext/gd/gdcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/gdcache.c b/ext/gd/gdcache.c index 1662ebb184..e9c628607b 100644 --- a/ext/gd/gdcache.c +++ b/ext/gd/gdcache.c @@ -38,11 +38,11 @@ /* This just seems unessacary */ #if (WIN32|WINNT) -#define HAVE_LIBTTF 1 +#define ENABLE_GD_TTF #else #include "php_config.h" #endif -#if HAVE_LIBTTF +#ifdef ENABLE_GD_TTF #include "gdcache.h" @@ -198,4 +198,4 @@ main(char *argv[], int argc) #endif -#endif /* HAVE_LIBTTF */ +#endif /* ENABLE_GD_TTF */ |