diff options
author | Dan McGee <dpmcgee@gmail.com> | 2010-01-29 19:22:19 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-31 11:50:50 -0800 |
commit | 7eb151d6e289b98d2ad3d1a9ad08fe3693f05a24 (patch) | |
tree | 78b1390ba8ce18edc9440a494d50387a7dec7370 /config.mak.in | |
parent | b0883aa6c77111e88496bd0afe073caf68ab9f99 (diff) | |
download | git-7eb151d6e289b98d2ad3d1a9ad08fe3693f05a24.tar.gz |
Make NO_PTHREADS the sole thread configuration variable
When the first piece of threaded code was introduced in commit 8ecce684, it
came with its own THREADED_DELTA_SEARCH Makefile option. Since this time,
more threaded code has come into the codebase and a NO_PTHREADS option has
also been added. Get rid of the original option as the newer, more generic
option covers everything we need.
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/config.mak.in b/config.mak.in index 67b12f73a1..6008ac9f1b 100644 --- a/config.mak.in +++ b/config.mak.in @@ -56,5 +56,4 @@ NO_DEFLATE_BOUND=@NO_DEFLATE_BOUND@ FREAD_READS_DIRECTORIES=@FREAD_READS_DIRECTORIES@ SNPRINTF_RETURNS_BOGUS=@SNPRINTF_RETURNS_BOGUS@ NO_PTHREADS=@NO_PTHREADS@ -THREADED_DELTA_SEARCH=@THREADED_DELTA_SEARCH@ PTHREAD_LIBS=@PTHREAD_LIBS@ |