You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
4.3 KiB
124 lines
4.3 KiB
Index: Documentation/Makefile |
|
--- Documentation/Makefile.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ Documentation/Makefile 2014-10-03 00:16:22.074209983 +0200 |
|
@@ -107,11 +107,11 @@ |
|
|
|
MAKEINFO = makeinfo |
|
INSTALL_INFO = install-info |
|
-DOCBOOK2X_TEXI = docbook2x-texi |
|
+DOCBOOK2X_TEXI = docbook2texi |
|
DBLATEX = dblatex |
|
ASCIIDOC_DBLATEX_DIR = /etc/asciidoc/dblatex |
|
ifndef PERL_PATH |
|
- PERL_PATH = /usr/bin/perl |
|
+ PERL_PATH = perl |
|
endif |
|
|
|
-include ../config.mak.autogen |
|
Index: Makefile |
|
--- Makefile.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ Makefile 2014-10-03 00:16:22.074209983 +0200 |
|
@@ -374,12 +374,12 @@ |
|
bindir = $(prefix)/$(bindir_relative) |
|
mandir = $(prefix)/share/man |
|
infodir = $(prefix)/share/info |
|
-gitexecdir = libexec/git-core |
|
+gitexecdir = libexec/git |
|
mergetoolsdir = $(gitexecdir)/mergetools |
|
sharedir = $(prefix)/share |
|
gitwebdir = $(sharedir)/gitweb |
|
localedir = $(sharedir)/locale |
|
-template_dir = share/git-core/templates |
|
+template_dir = share/git/templates |
|
htmldir = $(prefix)/share/doc/git-doc |
|
ETC_GITCONFIG = $(sysconfdir)/gitconfig |
|
ETC_GITATTRIBUTES = $(sysconfdir)/gitattributes |
|
@@ -1128,10 +1128,10 @@ |
|
else |
|
ifdef CURLDIR |
|
# Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case. |
|
- BASIC_CFLAGS += -I$(CURLDIR)/include |
|
- CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl |
|
+ BASIC_CFLAGS += `$(CURLDIR)/bin/curl-config --cflags` |
|
+ CURL_LIBCURL = `$(CURLDIR)/bin/curl-config --libs` |
|
else |
|
- CURL_LIBCURL = -lcurl |
|
+ CURL_LIBCURL = -lcurl -lssl -lcrypto |
|
endif |
|
ifdef NEEDS_SSL_WITH_CURL |
|
CURL_LIBCURL += -lssl |
|
@@ -2369,6 +2369,12 @@ |
|
$(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' |
|
$(INSTALL) -m 644 $(SCRIPT_LIB) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' |
|
$(INSTALL) $(install_bindir_programs) '$(DESTDIR_SQ)$(bindir_SQ)' |
|
+ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(prefix)/lib' |
|
+ $(INSTALL) -m 644 $(LIB_FILE) '$(DESTDIR_SQ)$(prefix)/lib/libgit.a' |
|
+ $(INSTALL) -m 644 $(XDIFF_LIB) '$(DESTDIR_SQ)$(prefix)/lib/libgit-xdiff.a' |
|
+ $(INSTALL) -m 644 $(VCSSVN_LIB) '$(DESTDIR_SQ)$(prefix)/lib/libgit-vcssvn.a' |
|
+ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(prefix)/include/git' |
|
+ for h in $(LIB_H); do b=`echo $$h | sed -e 's;/*[^/][^/]*$$;;'`; $(INSTALL) -d -m 755 $(DESTDIR_SQ)$(prefix)/include/git/$$b; $(INSTALL) -m 644 $$h $(DESTDIR_SQ)$(prefix)/include/git/$$h; done |
|
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install |
|
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(mergetools_instdir_SQ)' |
|
$(INSTALL) -m 644 mergetools/* '$(DESTDIR_SQ)$(mergetools_instdir_SQ)' |
|
Index: builtin/index-pack.c |
|
--- builtin/index-pack.c.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ builtin/index-pack.c 2014-10-03 00:16:22.074209983 +0200 |
|
@@ -182,6 +182,9 @@ |
|
#define work_lock() |
|
#define work_unlock() |
|
|
|
+#define type_cas_lock() |
|
+#define type_cas_unlock() |
|
+ |
|
#define deepest_delta_lock() |
|
#define deepest_delta_unlock() |
|
|
|
Index: config.mak.in |
|
--- config.mak.in.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ config.mak.in 2014-10-03 00:16:22.084263568 +0200 |
|
@@ -14,9 +14,9 @@ |
|
prefix = @prefix@ |
|
exec_prefix = @exec_prefix@ |
|
bindir = @bindir@ |
|
-gitexecdir = @libexecdir@/git-core |
|
+gitexecdir = @libexecdir@/git |
|
datarootdir = @datarootdir@ |
|
-template_dir = @datadir@/git-core/templates |
|
+template_dir = @datadir@/git/templates |
|
sysconfdir = @sysconfdir@ |
|
docdir = @docdir@ |
|
|
|
Index: perl/Makefile.PL |
|
--- perl/Makefile.PL.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ perl/Makefile.PL 2014-10-03 00:16:22.084263568 +0200 |
|
@@ -58,5 +58,6 @@ |
|
PM => \%pm, |
|
PM_FILTER => qq[\$(PERL) -pe "s<\\Q++LOCALEDIR++\\E><$localedir>"], |
|
MAKEFILE => 'perl.mak', |
|
- INSTALLSITEMAN3DIR => '$(SITEPREFIX)/share/man/man3' |
|
+ INSTALLDIRS => 'vendor', |
|
+ INSTALLSITEMAN3DIR => '$(SITEPREFIX)/man/man3' |
|
); |
|
Index: sha1_file.c |
|
--- sha1_file.c.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ sha1_file.c 2014-10-03 00:16:22.084263568 +0200 |
|
@@ -22,6 +22,7 @@ |
|
#include "bulk-checkin.h" |
|
#include "streaming.h" |
|
#include "dir.h" |
|
+#include <sys/resource.h> |
|
|
|
#ifndef O_NOATIME |
|
#if defined(__linux__) && (defined(__i386__) || defined(__PPC__)) |
|
Index: templates/Makefile |
|
--- templates/Makefile.orig 2014-09-30 21:00:40.000000000 +0200 |
|
+++ templates/Makefile 2014-10-03 00:16:22.084263568 +0200 |
|
@@ -8,7 +8,7 @@ |
|
TAR ?= tar |
|
RM ?= rm -f |
|
prefix ?= $(HOME) |
|
-template_instdir ?= $(prefix)/share/git-core/templates |
|
+template_instdir ?= $(prefix)/share/git/templates |
|
# DESTDIR= |
|
|
|
ifndef SHELL_PATH
|
|
|