mirror of
https://github.com/google/brotli.git
synced 2024-11-21 19:20:09 +00:00
Support for OSX build; tested using OSX 10.9/clang-500.2.79
This commit is contained in:
parent
60c24c0c2d
commit
c23cb1e83d
@ -20,6 +20,7 @@
|
||||
#include <algorithm>
|
||||
#include <limits>
|
||||
#include <vector>
|
||||
#include <cstdlib>
|
||||
|
||||
#include "./histogram.h"
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
#include <algorithm>
|
||||
#include <cstdlib>
|
||||
|
||||
#include "./fast_log.h"
|
||||
#include "./find_match_length.h"
|
||||
|
@ -18,7 +18,11 @@
|
||||
#define BROTLI_ENC_WRITE_BITS_H_
|
||||
|
||||
#include <assert.h>
|
||||
#include <endian.h>
|
||||
#if defined(OS_MACOSX)
|
||||
#include <machine/endian.h>
|
||||
#else
|
||||
#include <endian.h>
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user