>From 43da8392fd967aafb9b63510699afe0aee74f008 Mon Sep 17 00:00:00 2001 From: Alaric Snell-Pym Date: Tue, 11 Oct 2011 22:50:28 +0100 Subject: [PATCH] Make chicken-install submit Chicken version, machine type (eg, x86-64) and software type (eg, linux) to henrietta when requesting an egg. This can be used, in the long run, to gather statistics on what chicken platforms are in widespread use, to better decide what old versions need supporting. However, it will take a while before versions incorporating this patch are in widespread use themselves, so the results will only start to become statistically useful in a few years! --- setup-download.scm | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/setup-download.scm b/setup-download.scm index 9ea39bd..7fa7fb6 100644 --- a/setup-download.scm +++ b/setup-download.scm @@ -50,7 +50,8 @@ (tcp-write-timeout +default-tcp-read/write-timeout+) (define *quiet* #f) - (define *chicken-install-user-agent* (conc "chicken-install " (chicken-version))) + (define *chicken-install-user-agent* (conc "chicken-install " (chicken-version) " " (software-version) " " (machine-type))) + (define *trunk* #f) (define *mode* 'default) (define *windows-shell* (foreign-value "C_WINDOWS_SHELL" bool)) -- 1.7.4.1