Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 895842 | Differences between
and this patch

Collapse All | Expand All

(-)premake-core-5.0.0-beta2-orig/contrib/libzip/config.h (+1 lines)
Lines 25-30 Link Here
25
#endif
25
#endif
26
/* #undef HAVE_STRINGS_H */
26
/* #undef HAVE_STRINGS_H */
27
/* #undef HAVE_UNISTD_H */
27
/* #undef HAVE_UNISTD_H */
28
#define HAVE_UNISTD_H 1
28
#define __INT8_LIBZIP 1
29
#define __INT8_LIBZIP 1
29
#define INT8_T_LIBZIP 1
30
#define INT8_T_LIBZIP 1
30
#define UINT8_T_LIBZIP 1
31
#define UINT8_T_LIBZIP 1
(-)premake-core-5.0.0-beta2-orig/contrib/libzip/mkstemp.c (-2 / +5 lines)
Lines 31-36 Link Here
31
 * SUCH DAMAGE.
31
 * SUCH DAMAGE.
32
 */
32
 */
33
33
34
#include "zipint.h"
35
34
#include <sys/types.h>
36
#include <sys/types.h>
35
#include <sys/stat.h>
37
#include <sys/stat.h>
36
38
Lines 43-55 Link Here
43
#endif
45
#endif
44
#include <stdio.h>
46
#include <stdio.h>
45
#include <stdlib.h>
47
#include <stdlib.h>
48
#ifdef HAVE_UNISTD_H
49
#include <unistd.h>
50
#endif
46
51
47
#ifndef O_BINARY
52
#ifndef O_BINARY
48
#define O_BINARY 0
53
#define O_BINARY 0
49
#endif
54
#endif
50
55
51
52
53
int
56
int
54
_zip_mkstemp(char *path)
57
_zip_mkstemp(char *path)
55
{
58
{
(-)premake-core-5.0.0-beta2-orig/contrib/libzip/zip_fdopen.c (-4 / +3 lines)
Lines 31-41 Link Here
31
  IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
  IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
*/
32
*/
33
33
34
35
36
#include "zipint.h"
34
#include "zipint.h"
37
35
#ifdef HAVE_UNISTD_H
38
36
#include <unistd.h>
37
#endif
39
38
40
ZIP_EXTERN struct zip *
39
ZIP_EXTERN struct zip *
41
zip_fdopen(int fd_orig, int _flags, int *zep)
40
zip_fdopen(int fd_orig, int _flags, int *zep)

Return to bug 895842