forked from Lainports/freebsd-ports
- Add support for RADOS and GFAPI (plugins and storage) [1] - Bareos ports are compiled with fastlz (compress file with LZ4/LZ4HC/FastLZ) by default - Add python3 support [1] https://docs.bareos.org/TasksAndConcepts/Plugins.html [1] https://docs.bareos.org/TasksAndConcepts/StorageBackends.html ChangeLog at: https://docs.bareos.org/Appendix/ReleaseNotes.html
24 lines
590 B
C++
24 lines
590 B
C++
--- core/src/plugins/filed/gfapi-fd.cc 2020-02-03 00:50:05.248044000 -0500
|
|
+++ core/src/plugins/filed/gfapi-fd.cc 2020-02-03 00:50:35.639144000 -0500
|
|
@@ -32,7 +32,7 @@
|
|
#include "lib/berrno.h"
|
|
#include "lib/edit.h"
|
|
|
|
-#include <api/glfs.h>
|
|
+#include <glusterfs/api/glfs.h>
|
|
|
|
|
|
/* avoid missing config.h problem on Debian 8 and Ubuntu 16:
|
|
@@ -41,10 +41,10 @@
|
|
*/
|
|
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
-#include <compat-errno.h>
|
|
+#include <glusterfs/compat-errno.h>
|
|
#undef _CONFIG_H
|
|
#else
|
|
-#include <compat-errno.h>
|
|
+#include <glusterfs/compat-errno.h>
|
|
#endif
|
|
|
|
namespace filedaemon {
|