* [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
@ 2017-12-12 12:47 Ramsay Jones
2017-12-12 19:53 ` Junio C Hamano
0 siblings, 1 reply; 8+ messages in thread
From: Ramsay Jones @ 2017-12-12 12:47 UTC (permalink / raw)
To: Junio C Hamano; +Cc: GIT Mailing-list, Ævar Arnfjörð Bjarmason
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---
Hi Junio,
Could you please add (or squash) this on top of the 'ab/sha1dc-build'
branch, so that I can build with NO_DC_SHA1_SUBMODULE=NoThanks in my
config.mak.
[If I were to get a vote, I would vote no to the submodule. ;-) ]
Thanks!
ATB,
Ramsay Jones
Makefile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index 929b49b04..91bbb0ed8 100644
--- a/Makefile
+++ b/Makefile
@@ -1042,6 +1042,10 @@ EXTLIBS =
GIT_USER_AGENT = git/$(GIT_VERSION)
+include config.mak.uname
+-include config.mak.autogen
+-include config.mak
+
ifndef NO_DC_SHA1_SUBMODULE
ifndef DC_SHA1_EXTERNAL
ifneq ($(wildcard sha1collisiondetection/lib/sha1.h),sha1collisiondetection/lib/sha1.h)
@@ -1053,10 +1057,6 @@ whatever reason define NO_DC_SHA1_SUBMODULE=NoThanks)
endif
endif
-include config.mak.uname
--include config.mak.autogen
--include config.mak
-
ifdef DEVELOPER
CFLAGS += $(DEVELOPER_CFLAGS)
endif
--
2.15.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 12:47 [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak Ramsay Jones
@ 2017-12-12 19:53 ` Junio C Hamano
2017-12-12 19:57 ` Junio C Hamano
2017-12-12 21:06 ` Ævar Arnfjörð Bjarmason
0 siblings, 2 replies; 8+ messages in thread
From: Junio C Hamano @ 2017-12-12 19:53 UTC (permalink / raw)
To: Ramsay Jones; +Cc: GIT Mailing-list, Ævar Arnfjörð Bjarmason
Ramsay Jones <ramsay@ramsayjones.plus.com> writes:
> Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
> ---
>
> Hi Junio,
>
> Could you please add (or squash) this on top of the 'ab/sha1dc-build'
> branch, so that I can build with NO_DC_SHA1_SUBMODULE=NoThanks in my
> config.mak.
Makes sense. The patch looks scary by appearing to move the
includes far to the front of the Makefile, but it in fact is moving
the NO_DC_SHA1_SUBMODULE block slightly down and it is a sensible
and safe move.
I actually think that the block can go even further down, perhaps
close to the run of choices "what variant are we building?" we make
at around we have "ifdef NO_CURL".
Ævar?
> diff --git a/Makefile b/Makefile
> index 929b49b04..91bbb0ed8 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1042,6 +1042,10 @@ EXTLIBS =
>
> GIT_USER_AGENT = git/$(GIT_VERSION)
>
> +include config.mak.uname
> +-include config.mak.autogen
> +-include config.mak
> +
> ifndef NO_DC_SHA1_SUBMODULE
> ifndef DC_SHA1_EXTERNAL
> ifneq ($(wildcard sha1collisiondetection/lib/sha1.h),sha1collisiondetection/lib/sha1.h)
> @@ -1053,10 +1057,6 @@ whatever reason define NO_DC_SHA1_SUBMODULE=NoThanks)
> endif
> endif
>
> -include config.mak.uname
> --include config.mak.autogen
> --include config.mak
> -
> ifdef DEVELOPER
> CFLAGS += $(DEVELOPER_CFLAGS)
> endif
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 19:53 ` Junio C Hamano
@ 2017-12-12 19:57 ` Junio C Hamano
2017-12-12 21:11 ` Jonathan Tan
2017-12-12 21:06 ` Ævar Arnfjörð Bjarmason
1 sibling, 1 reply; 8+ messages in thread
From: Junio C Hamano @ 2017-12-12 19:57 UTC (permalink / raw)
To: Jonathan Tan
Cc: Ramsay Jones, GIT Mailing-list, Ævar Arnfjörð Bjarmason
Junio C Hamano <gitster@pobox.com> writes:
> Makes sense. The patch looks scary by appearing to move the
> includes far to the front of the Makefile, but it in fact is moving
> the NO_DC_SHA1_SUBMODULE block slightly down and it is a sensible
> and safe move.
A completely unrelated tangent. This was a good change to try your
anchored diff on. Viewing this change with
$ git show --anchored='include config.mak'
looks a lot less scary than the way it is shown by default (which
matches what was posted on the list).
Good job.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 19:53 ` Junio C Hamano
2017-12-12 19:57 ` Junio C Hamano
@ 2017-12-12 21:06 ` Ævar Arnfjörð Bjarmason
2017-12-12 22:20 ` Junio C Hamano
1 sibling, 1 reply; 8+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2017-12-12 21:06 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Ramsay Jones, GIT Mailing-list
On Tue, Dec 12, 2017 at 8:53 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Ramsay Jones <ramsay@ramsayjones.plus.com> writes:
>
>> Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
>> ---
>>
>> Hi Junio,
>>
>> Could you please add (or squash) this on top of the 'ab/sha1dc-build'
>> branch, so that I can build with NO_DC_SHA1_SUBMODULE=NoThanks in my
>> config.mak.
>
> Makes sense. The patch looks scary by appearing to move the
> includes far to the front of the Makefile, but it in fact is moving
> the NO_DC_SHA1_SUBMODULE block slightly down and it is a sensible
> and safe move.
>
> I actually think that the block can go even further down, perhaps
> close to the run of choices "what variant are we building?" we make
> at around we have "ifdef NO_CURL".
>
> Ævar?
Makes sense to me, do you want to squash this + your proposed edit &
I'll pick it up if there's another version, or I can re-submit.
>> diff --git a/Makefile b/Makefile
>> index 929b49b04..91bbb0ed8 100644
>> --- a/Makefile
>> +++ b/Makefile
>> @@ -1042,6 +1042,10 @@ EXTLIBS =
>>
>> GIT_USER_AGENT = git/$(GIT_VERSION)
>>
>> +include config.mak.uname
>> +-include config.mak.autogen
>> +-include config.mak
>> +
>> ifndef NO_DC_SHA1_SUBMODULE
>> ifndef DC_SHA1_EXTERNAL
>> ifneq ($(wildcard sha1collisiondetection/lib/sha1.h),sha1collisiondetection/lib/sha1.h)
>> @@ -1053,10 +1057,6 @@ whatever reason define NO_DC_SHA1_SUBMODULE=NoThanks)
>> endif
>> endif
>>
>> -include config.mak.uname
>> --include config.mak.autogen
>> --include config.mak
>> -
>> ifdef DEVELOPER
>> CFLAGS += $(DEVELOPER_CFLAGS)
>> endif
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 19:57 ` Junio C Hamano
@ 2017-12-12 21:11 ` Jonathan Tan
0 siblings, 0 replies; 8+ messages in thread
From: Jonathan Tan @ 2017-12-12 21:11 UTC (permalink / raw)
To: Junio C Hamano
Cc: Ramsay Jones, GIT Mailing-list, Ævar Arnfjörð Bjarmason
On Tue, 12 Dec 2017 11:57:28 -0800
Junio C Hamano <gitster@pobox.com> wrote:
> Junio C Hamano <gitster@pobox.com> writes:
>
> > Makes sense. The patch looks scary by appearing to move the
> > includes far to the front of the Makefile, but it in fact is moving
> > the NO_DC_SHA1_SUBMODULE block slightly down and it is a sensible
> > and safe move.
>
> A completely unrelated tangent. This was a good change to try your
> anchored diff on. Viewing this change with
>
> $ git show --anchored='include config.mak'
>
> looks a lot less scary than the way it is shown by default (which
> matches what was posted on the list).
>
> Good job.
Thanks, glad that it helped.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 21:06 ` Ævar Arnfjörð Bjarmason
@ 2017-12-12 22:20 ` Junio C Hamano
2017-12-12 22:58 ` Junio C Hamano
0 siblings, 1 reply; 8+ messages in thread
From: Junio C Hamano @ 2017-12-12 22:20 UTC (permalink / raw)
To: Ævar Arnfjörð Bjarmason; +Cc: Ramsay Jones, GIT Mailing-list
Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
>> I actually think that the block can go even further down, perhaps
>> close to the run of choices "what variant are we building?" we make
>> at around we have "ifdef NO_CURL".
>>
>> Ævar?
>
> Makes sense to me, do you want to squash this + your proposed edit &
> I'll pick it up if there's another version, or I can re-submit.
OK. I'll squash in the 'move it further down' to the original
commit that removed DC_SHA1_SUBMODULE and added NO_DC_SHA1_SUBMODULE
when rebuilding 'pu' branch.
Thanks.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 22:20 ` Junio C Hamano
@ 2017-12-12 22:58 ` Junio C Hamano
2017-12-12 23:21 ` Ævar Arnfjörð Bjarmason
0 siblings, 1 reply; 8+ messages in thread
From: Junio C Hamano @ 2017-12-12 22:58 UTC (permalink / raw)
To: Ævar Arnfjörð Bjarmason; +Cc: Ramsay Jones, GIT Mailing-list
Junio C Hamano <gitster@pobox.com> writes:
> Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
>
>>> I actually think that the block can go even further down, perhaps
>>> close to the run of choices "what variant are we building?" we make
>>> at around we have "ifdef NO_CURL".
>>>
>>> Ævar?
>>
>> Makes sense to me, do you want to squash this + your proposed edit &
>> I'll pick it up if there's another version, or I can re-submit.
>
> OK. I'll squash in the 'move it further down' to the original
> commit that removed DC_SHA1_SUBMODULE and added NO_DC_SHA1_SUBMODULE
> when rebuilding 'pu' branch.
>
> Thanks.
Another minor thing I noticed (which I do not have any squashable
fix for) is that "make distclean" does not even work without
submodule or this environment, which feels a bit too excessive. I
haven't tried to figure out how involved a fix for that would be yet
and I do not mind leaving it broken if it would be too much work.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak
2017-12-12 22:58 ` Junio C Hamano
@ 2017-12-12 23:21 ` Ævar Arnfjörð Bjarmason
0 siblings, 0 replies; 8+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2017-12-12 23:21 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Ramsay Jones, GIT Mailing-list
On Tue, Dec 12 2017, Junio C. Hamano jotted:
> Junio C Hamano <gitster@pobox.com> writes:
>
>> Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes:
>>
>>>> I actually think that the block can go even further down, perhaps
>>>> close to the run of choices "what variant are we building?" we make
>>>> at around we have "ifdef NO_CURL".
>>>>
>>>> Ævar?
>>>
>>> Makes sense to me, do you want to squash this + your proposed edit &
>>> I'll pick it up if there's another version, or I can re-submit.
>>
>> OK. I'll squash in the 'move it further down' to the original
>> commit that removed DC_SHA1_SUBMODULE and added NO_DC_SHA1_SUBMODULE
>> when rebuilding 'pu' branch.
>>
>> Thanks.
>
> Another minor thing I noticed (which I do not have any squashable
> fix for) is that "make distclean" does not even work without
> submodule or this environment, which feels a bit too excessive. I
> haven't tried to figure out how involved a fix for that would be yet
> and I do not mind leaving it broken if it would be too much work.
Yes, that sucks. I can't think of a better fix for it than this massive
hack of outsourcing printing the error to the header itself, which'll
only be executed if we actually compile:
diff --git a/Makefile b/Makefile
index ba3e061edd..881cf55159 100644
--- a/Makefile
+++ b/Makefile
@@ -1022,9 +1022,7 @@ GIT_USER_AGENT = git/$(GIT_VERSION)
ifndef DC_SHA1_EXTERNAL
ifneq ($(wildcard sha1collisiondetection/lib/sha1.h),sha1collisiondetection/lib/sha1.h)
-$(error The sha1collisiondetection submodule is not checked out. \
-Please make it available, either by cloning with --recurse-submodules, \
-or by running "git submodule update --init".)
+ BASIC_CFLAGS += -DERROR_SHA1COLLISIONDETECTION_SUBMODULE
endif
else
ifdef NO_DC_SHA1_SUBMODULE
diff --git a/sha1dc_git.h b/sha1dc_git.h
index be1d48abbe..93a9be976a 100644
--- a/sha1dc_git.h
+++ b/sha1dc_git.h
@@ -1,5 +1,11 @@
/* Plumbing with collition-detecting SHA1 code */
+#ifdef ERROR_SHA1COLLISIONDETECTION_SUBMODULE
+#error "The sha1collisiondetection submodule is not checked out." \
+ "Please make it available, either by cloning with --recurse-submodules," \
+ "or by running \"git submodule update --init\"."
+#endif
+
#ifdef DC_SHA1_EXTERNAL
#include <sha1dc/sha1.h>
#else
But maybe I missed a way to make the $(error) path work only if certain
targets were about to be compiled.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-12-12 23:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-12 12:47 [PATCH] Makefile: allow NO_DC_SHA1_SUBMODULE to be set in config.mak Ramsay Jones
2017-12-12 19:53 ` Junio C Hamano
2017-12-12 19:57 ` Junio C Hamano
2017-12-12 21:11 ` Jonathan Tan
2017-12-12 21:06 ` Ævar Arnfjörð Bjarmason
2017-12-12 22:20 ` Junio C Hamano
2017-12-12 22:58 ` Junio C Hamano
2017-12-12 23:21 ` Ævar Arnfjörð Bjarmason
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).