Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/csync
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2019-01-15 16:54:30 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:58:37 +0300
commit1cc41427fcd9e0b4cc6ee2257846157d590fa71e (patch)
tree71806a14df80ea901ec2eed847d51b1ebe51d830 /src/csync
parent4d58208676f3a2234d1c051c53775f8031560681 (diff)
Build fix for mingw64 7.3 (Qt 5.12.0)
Diffstat (limited to 'src/csync')
-rw-r--r--src/csync/std/c_private.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/csync/std/c_private.h b/src/csync/std/c_private.h
index 1802c2f38..9b1ee2502 100644
--- a/src/csync/std/c_private.h
+++ b/src/csync/std/c_private.h
@@ -42,8 +42,6 @@
#include <errno.h> // NOLINT this is sometimes compiled in C mode
#ifdef __MINGW32__
-#define EDQUOT 0
-#define ENODATA 0
#ifndef S_IRGRP
#define S_IRGRP 0
#endif
@@ -74,10 +72,6 @@
#include <fcntl.h>
#endif
-#ifndef ENODATA
-#define ENODATA EPIPE
-#endif
-
#ifdef _WIN32
typedef struct stat64 csync_stat_t; // NOLINT this is sometimes compiled in C mode
@@ -90,10 +84,6 @@ typedef struct stat csync_stat_t; // NOLINT this is sometimes compiled in C mode
#define O_NOATIME 0
#endif
-#ifndef ENODATA
-#define ENODATA EBADF
-#endif
-
#if !defined(HAVE_ASPRINTF)
#if defined(HAVE___MINGW_ASPRINTF)
#define asprintf __mingw_asprintf