blob: 98fc07b6cfe5ca68a076687a56f63a9e9f0af994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- a/src/util/logging.c
+++ b/src/util/logging.c
@@ -58,6 +58,11 @@
#define VIR_FROM_THIS VIR_FROM_NONE
+#ifdef __UCLIBC__
+/* uclibc does not implement mkostemp GNU extention */
+#define mkostemp(x,y) mkstemp(x)
+#endif
+
VIR_ENUM_DECL(virLogSource)
VIR_ENUM_IMPL(virLogSource, VIR_LOG_FROM_LAST,
"file",
|