summaryrefslogtreecommitdiff
path: root/misc/librepo/files/patch-librepo_downloader.c
blob: ed1fdc00ada9dc0557f7406146492b67b6a32095 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- librepo/downloader.c.orig	2020-08-22 20:15:59 UTC
+++ librepo/downloader.c
@@ -18,9 +18,11 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#if __FreeBSD__
 #define _XOPEN_SOURCE   500 // Because of fdopen() and ftruncate()
 #define _DEFAULT_SOURCE     // Because of futimes()
 #define _BSD_SOURCE         // Because of futimes()
+#endif
 
 #include <glib.h>
 #include <assert.h>
@@ -31,7 +33,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/time.h>
-#include <sys/xattr.h>
+#include "xattr.h"
 #include <fcntl.h>
 #include <curl/curl.h>