DNS problem with GNU/Hurd machine

2011-08-25 Thread Peter Olson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In the gnu.org zone file there is a reference to a machine called stampede.gnu.org with a comment indicating that it is associated with the GNU/Hurd project. So far as I know the machine has never been operational, but I wanted to check with you to

Re: [PATCH 02/17] Enable silent builds by default if available

2011-08-25 Thread Roland McGrath
So-called "silent" builds are a pox upon debuggability and should never be the default.

Re: Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
On Thu, 2011-08-25 at 16:29 +0200, Guillem Jover wrote: > On Thu, 2011-08-25 at 15:07:47 +0200, Samuel Thibault wrote: > This is coming from the debhelper perl code in: > > /usr/share/perl5/Debian/Debhelper/Buildsystem/autoconf.pm Thanks Guillem, I don't like mysteries unsolved :-( And thanks

Re: Host settings for GNU in configure*?

2011-08-25 Thread Guillem Jover
On Thu, 2011-08-25 at 15:07:47 +0200, Samuel Thibault wrote: > grep -- --build /usr/bin/dh_* > > has at least > > /usr/bin/dh_make: 'CROSS= --build $(DEB_BUILD_GNU_TYPE) > --host $(DEB_HOST_GNU_TYPE)'."\n". > > but what is your actual problem with it? This is coming from t

Re: Host settings for GNU in configure*?

2011-08-25 Thread Samuel Thibault
Svante Signell, le Thu 25 Aug 2011 16:25:55 +0200, a écrit : > On Thu, 2011-08-25 at 16:00 +0200, Samuel Thibault wrote: > > Svante Signell, le Thu 25 Aug 2011 15:54:32 +0200, a écrit : > > > so what? > > > > > And when porting packages it is of large interest to know the variants, > > > so a com

Re: Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
On Thu, 2011-08-25 at 16:00 +0200, Samuel Thibault wrote: > Svante Signell, le Thu 25 Aug 2011 15:54:32 +0200, a écrit : > so what? > > > And when porting packages it is of large interest to know the variants, > > so a common pattern can be used for all cases! > > As I said already, gnu*. You s

[PATCH 16/17] Always initialize A and X variables in BPF code

2011-08-25 Thread Guillem Jover
* device/net_io.c (bpf_do_filter): Remove lint conditional. --- device/net_io.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/device/net_io.c b/device/net_io.c index 1db9bca..8446395 100644 --- a/device/net_io.c +++ b/device/net_io.c @@ -1655,10 +1655,9 @@ bpf_do_filte

[PATCH 15/17] Move cdrom_sleep() definition where it belongs

2011-08-25 Thread Guillem Jover
* linux/dev/kernel/sched.c (cdrom_sleep): Move to ... * linux/src/drivers/block/ide-cd.c: ... here, replace [!MACH] definition, and remove conditionals. --- linux/dev/kernel/sched.c | 10 -- linux/src/drivers/block/ide-cd.c | 11 ++- 2 files changed, 6 insertions(+), 15

Build improvements and warning fixes

2011-08-25 Thread Guillem Jover
I've cleaned up some of the stuff I've had on my local tree for some time now. I'll try to clean up the rest. [PATCH 01/17] Add a .gitignore file [PATCH 02/17] Enable silent builds by default if available I'm resending these two, as they seem to have fallen through the cracks. [PATCH 03/17] Use

Re: Host settings for GNU in configure*?

2011-08-25 Thread Samuel Thibault
Svante Signell, le Thu 25 Aug 2011 15:54:32 +0200, a écrit : > > grep -- --build /usr/bin/dh_* > > > > has at least > > > > /usr/bin/dh_make:'CROSS= --build $(DEB_BUILD_GNU_TYPE) > > --host $(DEB_HOST_GNU_TYPE)'."\n". > > Isn't this only for cross compilation? Possibly, it

[PATCH 10/17] Remove ident tags producing preprocessor warnings

2011-08-25 Thread Guillem Jover
* linux/src/drivers/scsi/FlashPoint.c: Remove #ident tags. --- linux/src/drivers/scsi/FlashPoint.c | 15 ++- 1 files changed, 6 insertions(+), 9 deletions(-) diff --git a/linux/src/drivers/scsi/FlashPoint.c b/linux/src/drivers/scsi/FlashPoint.c index a74c3c5..aae35c0 100644 --- a/l

Re: Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
On Thu, 2011-08-25 at 15:07 +0200, Samuel Thibault wrote: > Svante Signell, le Thu 25 Aug 2011 14:50:33 +0200, a écrit : > > On Thu, 2011-08-25 at 11:01 +0200, Samuel Thibault wrote: > > > Svante Signell, le Thu 25 Aug 2011 10:58:43 +0200, a écrit : > > > > On Thu, 2011-08-25 at 10:48 +0200, Samuel

[PATCH 12/17] Disable unused variables

2011-08-25 Thread Guillem Jover
* i386/i386at/com.c (comstart): Disable `i' variable. * linux/src/drivers/net/at1700.c (net_close): Disable `lp' variable. * linux/dev/include/linux/blk.h (end_request): Disable `nsect' variable on MACH. --- i386/i386at/com.c |2 ++ linux/dev/include/linux/blk.h |2 ++ linux/

[PATCH 13/17] Match signedness of char pointer comparisons and assignments

2011-08-25 Thread Guillem Jover
* linux/dev/drivers/block/genhd.c (msdos_partition): Cast `data' assignment to `unsigned char *'. * linux/src/drivers/block/ide-cd.c (cdrom_queue_request_sense): Cast `buffer' assignment to `unsigned char *'. (cdrom_transfer_packet_command): Change `cmd_buf' argument type to `unsigned char *'. (cdr

[PATCH 11/17] Remove unused variables

2011-08-25 Thread Guillem Jover
* vm/memory_object_proxy.c (memory_object_create_proxy): Remove unused `kr' variable. * linux/dev/glue/block.c (free_buffer): Remove unused `i' variable. (register_blkdev): Remove unused `err' variable. (unregister_blkdev): Likewise. (bread): Likewise. (init_partition): Likewise. * linux/dev/glue/n

[PATCH 14/17] Fix initialization from incompatible pointer type

2011-08-25 Thread Guillem Jover
* linux/dev/glue/block.c (device_get_status): Cast `hg' to `unsigned long' in ioctl call. --- linux/dev/glue/block.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux/dev/glue/block.c b/linux/dev/glue/block.c index cec9687..f28644e 100644 --- a/linux/dev/glue/block.c

[PATCH 09/17] Add header for printf prototype

2011-08-25 Thread Guillem Jover
* vm/memory_object_proxy.c: Include . --- vm/memory_object_proxy.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/vm/memory_object_proxy.c b/vm/memory_object_proxy.c index 4d81a68..cfacca9 100644 --- a/vm/memory_object_proxy.c +++ b/vm/memory_object_proxy.c @@ -40,6 +40,7

[PATCH 07/17] Add prototype for log function

2011-08-25 Thread Guillem Jover
* kern/debug.h (log): New prototype. --- kern/debug.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/kern/debug.h b/kern/debug.h index f4e8200..e429bdd 100644 --- a/kern/debug.h +++ b/kern/debug.h @@ -57,6 +57,8 @@ #endif /* NDEBUG */ +extern void log (int level, co

[PATCH 01/17] Add a .gitignore file

2011-08-25 Thread Guillem Jover
* .gitignore: New file. --- .gitignore | 38 ++ 1 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000..fe5d53a --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +

[PATCH 17/17] Initialize the new map entry when it's a projected buffer

2011-08-25 Thread Guillem Jover
* vm/vm_map.c (vm_map_fork): Call vm_map_entry_create for projected_on buffers too. --- vm/vm_map.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/vm/vm_map.c b/vm/vm_map.c index 751e031..ce83403 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -4157,6 +4157,8 @@ vm_map_t

[PATCH 08/17] Add prototype for free_skbuffs function

2011-08-25 Thread Guillem Jover
* device/ds_routines.c [LINUX_DEV && CONFIG_INET] (free_skbuffs): Add prototype. --- device/ds_routines.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/device/ds_routines.c b/device/ds_routines.c index 93569f2..5b36329 100644 --- a/device/ds_routines.c +++ b/device/ds

[PATCH 02/17] Enable silent builds by default if available

2011-08-25 Thread Guillem Jover
* configure.ac (AM_SILENT_RULES): Add silent rules support if available, and enable it by default. * Makefile.am (AWK_V, AWK_V_, AWK_V_0): New variables. (NM_V, NM_V_, NM_V_0): Likewise. (GZIP_V, GZIP_V_, GZIP_V_0): Likewise. (MIGCOM_V, MIGCOM_V_, MIGCOM_V_0): Likewise. (gnumach-undef): Use NM_V in

[PATCH 03/17] Use AC_LANG_SOURCE inside AC_LANG_CONFTEST to fix autoconf warning

2011-08-25 Thread Guillem Jover
* configure.ac (AC_LANG_CONFTEST): Wrap the source into a AC_LANG_SOURCE call. --- configure.ac |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 9afa81b..7d64d71 100644 --- a/configure.ac +++ b/configure.ac @@ -152,7 +152,8 @@ m4_include(

[PATCH 05/17] Do not take obsolete and unused bcopy and bzero from libc

2011-08-25 Thread Guillem Jover
* Makefile.am (clib_routines): Remove bcopy and bzero. --- Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4eced09..d66ff57 100644 --- a/Makefile.am +++ b/Makefile.am @@ -156,7 +156,7 @@ noinst_PROGRAMS += \ gnumach.o

[PATCH 06/17] Add prototypes for locore functions

2011-08-25 Thread Guillem Jover
* i386/i386at/model_dep.c (discover_x86_cpu_type): Move ... * i386/i386/locore.h: ... here. (inst_fetch, cpu_shutdown): New prototypes. * i386/i386at/kd.c: Include . --- i386/i386/locore.h |6 ++ i386/i386/trap.c|1 + i386/i386at/kd.c|1 + i386/i386at/model_dep

[PATCH 04/17] Disable compiler built-in symbols to avoid namespace clashes

2011-08-25 Thread Guillem Jover
* Makefile.am (AM_CFLAGS): Add -fno-builtin. --- Makefile.am |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index 67aec74..4eced09 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,6 +51,9 @@ AM_CPPFLAGS += \ -I$(top_srcdir)/$(systype)/

Re: Host settings for GNU in configure*?

2011-08-25 Thread Samuel Thibault
Svante Signell, le Thu 25 Aug 2011 14:50:33 +0200, a écrit : > On Thu, 2011-08-25 at 11:01 +0200, Samuel Thibault wrote: > > Svante Signell, le Thu 25 Aug 2011 10:58:43 +0200, a écrit : > > > On Thu, 2011-08-25 at 10:48 +0200, Samuel Thibault wrote: > > > > Svante Signell, le Thu 25 Aug 2011 10:20:

Re: Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
On Thu, 2011-08-25 at 11:01 +0200, Samuel Thibault wrote: > Svante Signell, le Thu 25 Aug 2011 10:58:43 +0200, a écrit : > > On Thu, 2011-08-25 at 10:48 +0200, Samuel Thibault wrote: > > > Svante Signell, le Thu 25 Aug 2011 10:20:44 +0200, a écrit : > > > > > > 1) Where to find the specification r

Re: Host settings for GNU in configure*?

2011-08-25 Thread Guillem Jover
Hi! On Thu, 2011-08-25 at 10:58:43 +0200, Svante Signell wrote: > On Thu, 2011-08-25 at 10:48 +0200, Samuel Thibault wrote: > > Svante Signell, le Thu 25 Aug 2011 10:20:44 +0200, a écrit : > > > > 1) Where to find the specification resulting in i486-pc-gnu? > > > > I don't understand the questio

Re: Host settings for GNU in configure*?

2011-08-25 Thread Samuel Thibault
Svante Signell, le Thu 25 Aug 2011 10:58:43 +0200, a écrit : > On Thu, 2011-08-25 at 10:48 +0200, Samuel Thibault wrote: > > Svante Signell, le Thu 25 Aug 2011 10:20:44 +0200, a écrit : > > > > 1) Where to find the specification resulting in i486-pc-gnu? > > > > I don't understand the question. W

Re: Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
On Thu, 2011-08-25 at 10:48 +0200, Samuel Thibault wrote: > Svante Signell, le Thu 25 Aug 2011 10:20:44 +0200, a écrit : > > 1) Where to find the specification resulting in i486-pc-gnu? > > I don't understand the question. Why would you want that ? Some packages are configured with i486-pc-gnu,

Re: Host settings for GNU in configure*?

2011-08-25 Thread Samuel Thibault
Svante Signell, le Thu 25 Aug 2011 10:20:44 +0200, a écrit : > $host_os: > gnu when specified > gnu0.3 from config.guess Sure, if you force something, config.guess follows it. > 1) Where to find the specification resulting in i486-pc-gnu? I don't understand the question. Why would you want that 

Host settings for GNU in configure*?

2011-08-25 Thread Svante Signell
Hi, I know that may of you are at GHM the rest of this week but anyway. When porting packages to GNU/Hurd sometimes $host and $host_os in configure are set differently: $host: When specified i486-pc-gnu >From config.guess/ in autotools-dev: i686-unknown-gnu0.3 Examples: /usr/share/misc/config.