Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 275944
Collapse All | Expand All

(-)cache.h (-1 / +1 lines)
Lines 42-48 Link Here
42
 * happens that everybody shares the same bit representation
42
 * happens that everybody shares the same bit representation
43
 * in the UNIX world (and apparently wider too..)
43
 * in the UNIX world (and apparently wider too..)
44
 */
44
 */
45
#define S_IFGITLINK	0160000
45
#define S_IFGITLINK	0140000
46
#define S_ISGITLINK(m)	(((m) & S_IFMT) == S_IFGITLINK)
46
#define S_ISGITLINK(m)	(((m) & S_IFMT) == S_IFGITLINK)
47
47
48
/*
48
/*
(-)git-compat-util.h (+3 lines)
Lines 81-86 Link Here
81
#include <arpa/inet.h>
81
#include <arpa/inet.h>
82
#include <netdb.h>
82
#include <netdb.h>
83
#include <pwd.h>
83
#include <pwd.h>
84
#ifdef __MINT__
85
#include "compat/mint.h"
86
#endif
84
#include <inttypes.h>
87
#include <inttypes.h>
85
#if defined(__CYGWIN__)
88
#if defined(__CYGWIN__)
86
#undef _XOPEN_SOURCE
89
#undef _XOPEN_SOURCE
(-) (+2 lines)
Added Link Here
1
#define SA_RESTART 0
2
#define sockaddr_storage sockaddr
(-)Makefile (-1 / +1 lines)
Lines 1292-1298 Link Here
1292
1292
1293
git-imap-send$X: imap-send.o $(GITLIBS)
1293
git-imap-send$X: imap-send.o $(GITLIBS)
1294
	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1294
	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1295
		$(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL)
1295
		$(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL) $(LIB_4_CRYPTO)
1296
1296
1297
http.o http-walker.o http-push.o transport.o: http.h
1297
http.o http-walker.o http-push.o transport.o: http.h
1298
1298

Return to bug 275944