mirror of https://github.com/citusdata/citus.git
Fix build on illumos
parent
b0ac70f1f4
commit
6174a4d3d6
|
@ -13,6 +13,11 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
/* necessary to get alloca() on illumos */
|
||||||
|
#ifdef __sun
|
||||||
|
#include <alloca.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "fmgr.h"
|
#include "fmgr.h"
|
||||||
#include "miscadmin.h"
|
#include "miscadmin.h"
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,8 @@
|
||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
|
/* necessary to get S_IRUSR, S_IWUSR definitions on illumos */
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
/* TaskFileDestReceiver can be used to stream results into a file */
|
/* TaskFileDestReceiver can be used to stream results into a file */
|
||||||
typedef struct TaskFileDestReceiver
|
typedef struct TaskFileDestReceiver
|
||||||
|
|
Loading…
Reference in New Issue