summaryrefslogtreecommitdiff
path: root/dev-util/premake/files/premake-5.0.0-c99.patch
blob: 49f9f70e51604a5641729a6ad6e53773e437cde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
https://bugs.gentoo.org/895842#c6
diff '--color=auto' -burN premake-core-5.0.0-beta2-orig/contrib/libzip/config.h premake-core-5.0.0-beta2/contrib/libzip/config.h
--- premake-core-5.0.0-beta2-orig/contrib/libzip/config.h	2022-09-02 21:11:21.000000000 +0200
+++ premake-core-5.0.0-beta2/contrib/libzip/config.h	2024-05-17 14:07:31.072971328 +0200
@@ -25,6 +25,7 @@
 #endif
 /* #undef HAVE_STRINGS_H */
 /* #undef HAVE_UNISTD_H */
+#define HAVE_UNISTD_H 1
 #define __INT8_LIBZIP 1
 #define INT8_T_LIBZIP 1
 #define UINT8_T_LIBZIP 1
diff '--color=auto' -burN premake-core-5.0.0-beta2-orig/contrib/libzip/mkstemp.c premake-core-5.0.0-beta2/contrib/libzip/mkstemp.c
--- premake-core-5.0.0-beta2-orig/contrib/libzip/mkstemp.c	2022-09-02 21:11:21.000000000 +0200
+++ premake-core-5.0.0-beta2/contrib/libzip/mkstemp.c	2024-05-17 14:07:31.073971328 +0200
@@ -31,6 +31,8 @@
  * SUCH DAMAGE.
  */
 
+#include "zipint.h"
+
 #include <sys/types.h>
 #include <sys/stat.h>
 
@@ -43,13 +45,14 @@
 #endif
 #include <stdio.h>
 #include <stdlib.h>
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 #ifndef O_BINARY
 #define O_BINARY 0
 #endif
 
-
-
 int
 _zip_mkstemp(char *path)
 {
diff '--color=auto' -burN premake-core-5.0.0-beta2-orig/contrib/libzip/zip_fdopen.c premake-core-5.0.0-beta2/contrib/libzip/zip_fdopen.c
--- premake-core-5.0.0-beta2-orig/contrib/libzip/zip_fdopen.c	2022-09-02 21:11:21.000000000 +0200
+++ premake-core-5.0.0-beta2/contrib/libzip/zip_fdopen.c	2024-05-17 14:06:29.441972020 +0200
@@ -31,11 +31,10 @@
   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-
-
 #include "zipint.h"
-
-
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 ZIP_EXTERN struct zip *
 zip_fdopen(int fd_orig, int _flags, int *zep)