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

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 (-1 / +3 lines)
Lines 123-129 Link Here
123
#ifdef _MSC_VER
123
#ifdef _MSC_VER
124
#include "compat/msvc.h"
124
#include "compat/msvc.h"
125
#endif
125
#endif
126
126
#ifdef __MINT__
127
#include "compat/mint.h"
128
#endif
127
#ifndef NO_LIBGEN_H
129
#ifndef NO_LIBGEN_H
128
#include <libgen.h>
130
#include <libgen.h>
129
#else
131
#else
(-) (+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 329273