mirror of
https://github.com/ceph/ceph
synced 2025-01-31 23:44:10 +00:00
Merge pull request #25302 from wjwithagen/wjw-wip-build-kv_store_2
include: define errnos if not defined for better portablity Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
commit
87bb80e866
@ -48,7 +48,7 @@ fi
|
||||
-D WITH_FUSE=ON \
|
||||
-D WITH_KRBD=OFF \
|
||||
-D WITH_XFS=OFF \
|
||||
-D WITH_KVS=OFF \
|
||||
-D WITH_KVS=ON \
|
||||
-D CEPH_MAN_DIR=man \
|
||||
-D WITH_LIBCEPHFS=OFF \
|
||||
-D WITH_CEPHFS=OFF \
|
||||
|
@ -79,9 +79,15 @@
|
||||
/* get PATH_MAX */
|
||||
#include <limits.h>
|
||||
|
||||
#ifndef EUCLEAN
|
||||
#define EUCLEAN 117
|
||||
#endif
|
||||
#ifndef EREMOTEIO
|
||||
#define EREMOTEIO 121
|
||||
#endif
|
||||
#ifndef EKEYREJECTED
|
||||
#define EKEYREJECTED 129
|
||||
#endif
|
||||
|
||||
#ifndef HOST_NAME_MAX
|
||||
#ifdef MAXHOSTNAMELEN
|
||||
|
@ -5,6 +5,7 @@
|
||||
* Author: Eleanor Cawthon
|
||||
*/
|
||||
|
||||
#include "include/compat.h"
|
||||
#include "objclass/objclass.h"
|
||||
#include <errno.h>
|
||||
#include "key_value_store/kvs_arg_types.h"
|
||||
|
Loading…
Reference in New Issue
Block a user