diff options
| author | Felipe Pena <felipe@php.net> | 2009-06-17 16:19:48 +0000 |
|---|---|---|
| committer | Felipe Pena <felipe@php.net> | 2009-06-17 16:19:48 +0000 |
| commit | a26dc7bd5056a14b8b1ee20f50de4d4b17da7859 (patch) | |
| tree | f28f04d8d31a1829860baf9195e0f7a033cc4db8 | |
| parent | 1217eab95042b4d85fbf6baa7f56a559d20800ee (diff) | |
| download | php-git-a26dc7bd5056a14b8b1ee20f50de4d4b17da7859.tar.gz | |
- Fixed bug #48578 (Can't build 5.3 on FBSD 4.11) (Rasmus)
| -rw-r--r-- | ext/fileinfo/libmagic/cdf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/fileinfo/libmagic/cdf.c b/ext/fileinfo/libmagic/cdf.c index e6de7e1e0b..eecfa1e452 100644 --- a/ext/fileinfo/libmagic/cdf.c +++ b/ext/fileinfo/libmagic/cdf.c @@ -47,6 +47,10 @@ FILE_RCSID("@(#)$File: cdf.c,v 1.17 2009/02/03 20:27:51 christos Exp $") #include <unistd.h> #endif +#ifndef UINT32_MAX +# define UINT32_MAX (0xffffffff) +#endif + #include <string.h> #include <time.h> #include <ctype.h> |
