Re: libcurl dependency for implementing RFC3161 timestamps

2016-03-09 Thread Junio C Hamano
"Anton Wuerfel" writes: > Is there any best-practice how to introduce this libcurl dependency? There > are several options: > > -As git tag is a builtin part of the main git executable, introduce a > libcurl dependency for the main executable (maybe not best-practice). > > -Move git tag to a sepa

RE: libcurl dependency for implementing RFC3161 timestamps

2016-03-09 Thread Randall S. Becker
On March 9, 2016 6:41 AM, Duy Nguyen wrote: > To: Anton Wuerfel > Cc: Git Mailing List ; i4pa...@cs.fau.de; > phillip.raff...@fau.de > Subject: Re: libcurl dependency for implementing RFC3161 timestamps > > On Wed, Mar 9, 2016 at 6:24 PM, Anton Wuerfel > wrote: > > -A

Re: libcurl dependency for implementing RFC3161 timestamps

2016-03-09 Thread Duy Nguyen
On Wed, Mar 9, 2016 at 6:24 PM, Anton Wuerfel wrote: > -As git tag is a builtin part of the main git executable, introduce a > libcurl dependency for the main executable (maybe not best-practice). libcurl was part of the main executable and then split out because it increased startup time [1]. I

libcurl dependency for implementing RFC3161 timestamps

2016-03-09 Thread Anton Wuerfel
Hello, for implementing RFC3161 timestamps in git tag, HTTP POST requests have to be sent via libcurl. We already changed http.c to our needs. Is there any best-practice how to introduce this libcurl dependency? There are several options: -As git tag is a builtin part of the main git executable,