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
25 lines
522 B
C
25 lines
522 B
C
--- core/src/include/baconfig.h 2020-02-04 15:53:01.627766000 -0500
|
|
+++ core/src/include/baconfig.h 2020-02-04 15:53:34.762711000 -0500
|
|
@@ -119,11 +119,11 @@
|
|
#define N_(s) (s)
|
|
#endif /* N_ */
|
|
#else /* !ENABLE_NLS */
|
|
+#include <locale.h>
|
|
#undef _
|
|
#undef N_
|
|
#undef textdomain
|
|
#undef bindtextdomain
|
|
-#undef setlocale
|
|
|
|
#ifndef _
|
|
#define _(s) (s)
|
|
@@ -136,9 +136,6 @@
|
|
#endif
|
|
#ifndef bindtextdomain
|
|
#define bindtextdomain(p, d)
|
|
-#endif
|
|
-#ifndef setlocale
|
|
-#define setlocale(p, d)
|
|
#endif
|
|
#endif /* ENABLE_NLS */
|
|
|