Re: [PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-08 Thread Eric Sunshine
On Thu, Jan 8, 2015 at 3:00 PM, Reuben Hawkins wrote: > The checks will override and unset YesPlease settings for HAVE_CLOCK_GETTIME > and HAVE_CLOCK_MONOTONIC in config.mak.uname. I find this hard to grok and would rewrite it as: Set or clear Makefile variables HAVE_CLOCK_GETTIME and HA

[PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-08 Thread Reuben Hawkins
The checks will override and unset YesPlease settings for HAVE_CLOCK_GETTIME and HAVE_CLOCK_MONOTONIC in config.mak.uname. CLOCK_MONOTONIC isn't available on RHEL3, but there are still RHEL3 systems being used in production. Signed-off-by: Reuben Hawkins --- Makefile | 6 ++ config

Re: [PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-07 Thread Eric Sunshine
On Wed, Jan 7, 2015 at 5:31 PM, Reuben Hawkins wrote: > On Wed, Jan 7, 2015 at 1:37 PM, Eric Sunshine wrote: >> On Wed, Jan 7, 2015 at 3:23 PM, Reuben Hawkins wrote: >>> +GIT_CHECK_FUNC(clock_gettime, >>> +[HAVE_CLOCK_GETTIME=YesPlease], >>> +[HAVE_CLOCK_GETTIME=]) >>> +GIT_CONF_SUBST([HAVE_CLOC

Re: [PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-07 Thread Reuben Hawkins
On Wed, Jan 7, 2015 at 1:37 PM, Eric Sunshine wrote: > On Wed, Jan 7, 2015 at 3:23 PM, Reuben Hawkins wrote: >> CLOCK_MONOTONIC isn't available on RHEL3, but there are still RHEL3 >> systems being used in production. This change makes compiling git >> less tedious on older platforms without CLOC

Re: [PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-07 Thread Eric Sunshine
On Wed, Jan 7, 2015 at 3:23 PM, Reuben Hawkins wrote: > CLOCK_MONOTONIC isn't available on RHEL3, but there are still RHEL3 > systems being used in production. This change makes compiling git > less tedious on older platforms without CLOCK_MONOTONIC. The second sentence is implied by the very pr

[PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC

2015-01-07 Thread Reuben Hawkins
CLOCK_MONOTONIC isn't available on RHEL3, but there are still RHEL3 systems being used in production. This change makes compiling git less tedious on older platforms without CLOCK_MONOTONIC. --- Makefile | 4 config.mak.uname | 1 + configure.ac | 22 ++ tra