Gnumach: replace obsolete AC_CONFIG_HEADER with AC_CONFIG_HEADERS

2021-09-17 Thread Miguel Figueiredo
entos, Miguel Figueiredodiff --git a/configure.ac b/configure.ac index e7fdfe6a..019842db 100644 --- a/configure.ac +++ b/configure.ac @@ -190,7 +190,7 @@ AM_CONDITIONAL([disable_smashing_stack_protector], # Output. # -AC_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) AC_CONFIG_

Re: Three Cheers for Samuel!

2020-06-08 Thread Miguel Figueiredo
good day, Joshua -- Best regards / Melhores cumprimentos, Miguel Figueiredo

Re: aptitude not working

2016-11-15 Thread Miguel Figueiredo
in aptitude in Hurd, pressing q to quit and it does not quits. If i repeat the q and then Ctrl+C, it quits and I see the on the console. I've seen this on Virtualbox, but now i have it on qemu with the same behavior. Riccardo BR, Miguel

fixes for format warnings

2013-06-03 Thread Miguel Figueiredo
2013-06-03 Miguel Figueiredo * Fix format warnings -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/vm/vm_resident.c b/vm/vm_resident.c index 7cf4fb1..d2edf5a 100644 --- a/vm/vm_resident.c +++ b/vm/vm_resident.c @@ -395,7 +395,7 @@ void pmap_startup( while

kern/act.c (act_create): remove unused variable

2013-06-02 Thread Miguel Figueiredo
2013-06-02 Miguel Figueiredo * kern/act.c (act_create): remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/kern/act.c b/kern/act.c index 36fa79c..4c3839c 100644 --- a/kern/act.c +++ b/kern/act.c @@ -97,7 +97,6 @@ kern_return_t act_create(task_t task

[proposal] Move defpager from hurd to incubator repo

2013-06-02 Thread Miguel Figueiredo
s in a state where can be used. I propose to move defpager from the hurd repo to the incubator repo so it's less code on the Hurd repo to maintain. defpager would still be available for development on the incubator repo if there's motivation. -- Melhores cumprimentos/Best regards, Migu

ipc/mach_port.c (mach_port_set_syscall_right): remove unused variable

2013-06-02 Thread Miguel Figueiredo
2013-06-02 Miguel Figueiredo * ipc/mach_port.c (mach_port_set_syscall_right): remove unused variable This is for Gnumach. -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/ipc/mach_port.c b/ipc/mach_port.c index d0310b5..46cb4de 100644 --- a/ipc/mach_port.c +++ b/ipc

utils/x.c : remove unused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 - Miguel Figueiredo * utils/x.c : remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/utils/x.c b/utils/x.c index e4e272f..7bbc8ac 100644 --- a/utils/x.c +++ b/utils/x.c @@ -168,7 +168,6 @@ void verify_passwd (const char *name, const char

mach-defpager/default-pager.c : remove unused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * mach-defpager/default-pager.c : remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/mach-defpager/default_pager.c b/mach-defpager/default_pager.c index ec875d4..b445590 100644 --- a/mach-defpager/default_pager.c +++ b

libthreads/cprocs.c (remove unsused variables)

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * libthreads/cprocs.c : remove unsused variables -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/libthreads/cprocs.c b/libthreads/cprocs.c index 7f63fc0..5459d7d 100644 --- a/libthreads/cprocs.c +++ b/libthreads/cprocs.c @@ -341,7 +341,6

libstore/decode.c (store_std_leaf_decode): remove unused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * libstore/decode.c (store_std_leaf_decode): remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/libstore/decode.c b/libstore/decode.c index 64405ec..52aed74 100644 --- a/libstore/decode.c +++ b/libstore/decode.c @@ -35,7

libcons/vcons-move-mouse.c (cons_vcons_move_mouse): add missing break

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo libcons/vcons-move-mouse.c (cons_vcons_move_mouse): add missing break; -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/libcons/vcons-move-mouse.c b/libcons/vcons-move-mouse.c index 6c74d9f..d61067c 100644 --- a/libcons/vcons-move-mouse.c

init/init.c (start_child): don't free before it's used

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * init/init.c (start_child): don't free before it's used -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/init/init.c b/init/init.c index edfe123..930408e 100644 --- a/init/init.c +++ b/init/init.c @@ -1068,14 +1068,13 @@ start_ch

exec/exec.c (check_section): remove unused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * exec/exec.c (check_section): remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/exec/exec.c b/exec/exec.c index a4f2f74..30a5e00 100644 --- a/exec/exec.c +++ b/exec/exec.c @@ -86,7 +86,6 @@ static void check_section

console-client/xkb/compose.c (read_composefile): fclose

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * console-client/xkb/compose.c (read_composefile): fclose iiuc parse_composefile always returns 0 and this makes the if(err) not executing the fclose. cppcheck reported this as memory leak. -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a

hurd/console-client/trans.c (console_setup_node): remove unsused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * console-client/trans.c (console_setup_node): remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/console-client/trans.c b/console-client/trans.c index 6949af5..8219f97 100644 --- a/console-client/trans.c +++ b/console

hurd/console/console.c (netfs_get_dirents): remove unused variable

2013-06-01 Thread Miguel Figueiredo
2013-06-01 Miguel Figueiredo * hurd/console/console.c (netfs_get_dirents): Remove unused variable -- Melhores cumprimentos/Best regards, Miguel Figueiredo diff --git a/console/console.c b/console/console.c index 0577ea0..f598565 100644 --- a/console/console.c +++ b/console/console.c

Re: kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables

2013-05-27 Thread Miguel Figueiredo
Em 26-05-2013 22:39, Samuel Thibault escreveu: Miguel Figueiredo, le Sun 26 May 2013 18:28:55 +0100, a écrit : 2013-05-26 Miguel Figueiredo * kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables I wouldn't do that: they can be read from the debugger. Samuel

kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables

2013-05-26 Thread Miguel Figueiredo
2013-05-26 Miguel Figueiredo * kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables diff --git a/kern/thread.c b/kern/thread.c index 79f526a..2181d49 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -163,10 +163,8 @@ boolean_t stack_alloc_try( if (stack

Re: gnumach/device/blkio.c (disksort) unused function

2013-05-25 Thread Miguel Figueiredo
2013-05-25 Miguel Figueiredo * device/blkio.c (disksort): remove unused function diff --git a/device/blkio.c b/device/blkio.c index 26d4a75..27fec0e 100644 --- a/device/blkio.c +++ b/device/blkio.c @@ -107,132 +107,3 @@ vm_offset_t block_io_mmap() return (0); } -/* - * Disk sort

gnumach/device/blkio.c (disksort) unused function

2013-05-25 Thread Miguel Figueiredo
Hi all, On gnumach/device/blkio.c, disksort function although declared here it's not used on gnumach nor on hurd. I guess it's safe to remove in case of cleanup. -- Melhores cumprimentos/Best regards, Miguel Figueiredo

mach-defpager/kalloc.c: remove useless #define

2013-05-25 Thread Miguel Figueiredo
2013-05-14 Miguel Figueiredo * mach-defpager/kalloc.c: remove useless #define diff --git a/mach-defpager/kalloc.c b/mach-defpager/kalloc.c index 8efb85f..97e3ee8 100644 --- a/mach-defpager/kalloc.c +++ b/mach-defpager/kalloc.c @@ -50,9 +50,6 @@ static void free_hook (void *ptr, const void

mach-defpager/kalloc.c (kalloc_init): remove unused variables

2013-05-25 Thread Miguel Figueiredo
2013-05-14 Miguel Figueiredo * mach-defpager/kalloc.c (kalloc_init): remove unused variables diff --git a/mach-defpager/kalloc.c b/mach-defpager/kalloc.c index 8efb85f..2f42509 100644 --- a/mach-defpager/kalloc.c +++ b/mach-defpager/kalloc.c @@ -92,8 +92,6 @@ boolean_t

Re: Debian GNU/Hurd 2013 released!

2013-05-22 Thread Miguel Figueiredo
cumprimentos/Best regards, Miguel Figueiredo

kern/thread.c (deallocate_here): remove unneeded allocation

2013-05-14 Thread Miguel Figueiredo
2013-05-14 Miguel Figueiredo * kern/thread.c (deallocate_here): remove unneeded allocation diff --git a/kern/thread.c b/kern/thread.c index 87be923..838036f 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -862,7 +862,7 @@ void thread_force_terminate( register thread_t thread

kern/thread.c (new_thread->pc_sample.buffer): remove duplicate

2013-05-14 Thread Miguel Figueiredo
2013-05-14 Miguel Figueiredo * kern/thread.c (new_thread->pc_sample.buffer): remove duplicate line diff --git a/kern/thread.c b/kern/thread.c index 87be923..9dbc677 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -538,7 +538,6 @@ kern_return_t thread_create( new_thr

unused variables

2013-05-13 Thread Miguel Figueiredo
egards, Miguel Figueiredo

Re: Imminent Debian GNU/Hurd release

2013-05-10 Thread Miguel Figueiredo
gards, Miguel Figueiredo

Re: A quarter of the Hurd, Q3/Q4 of 2012: *pthreads*, *hardware* and *porting*.

2013-05-05 Thread Miguel Figueiredo
Em 04-05-2013 23:33, Arne Babenhauserheide escreveu: Hi, [...] A quarter of the Hurd, Q3/Q4 of 2012: *pthreads*, *hardware* and *porting*. Based on the text I would only add new installation CDs. Looks really good. [...] -- Melhores cumprimentos/Best regards, Miguel Figueiredo

Problem with OSKit?

2003-08-14 Thread Miguel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, is there a problem with the savannah OSKit? I just updated my local cvs tree and the 'make' command showed the following output: make[1]: Entering directory `/home/miguel/cvs/hurd/oskit/build/oskit' GNUmakefile:26: Makeconf:

Re: Problem with OSKit?

2003-08-14 Thread Miguel
Ognyan Kulev <[EMAIL PROTECTED]> writes: > Miguel wrote: > >> CC=gcc-2.95 CFLAGS="-g" ./configure --prefix=/home/miguel/hurd --enable-debug >> --enable-modulefile=my-modules.x86.pc > > In your my-modules.x86.pc, is "oskit" uncommented? I should

Re: Problem with OSKit?

2003-08-14 Thread Miguel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry, but the correct configuration command I used was: CC=gcc-2.95 CFLAGS="-g" ../configure --prefix=/home/miguel/hurd --enable-debug --enable-modulefile=my-modules.x86.pc I created a build directory and executed the configure script

Re: Problem with OSKit?

2003-08-14 Thread Miguel
Ognyan Kulev <[EMAIL PROTECTED]> writes: > Miguel wrote: >> I think the problem is that, when first entering the directory 'oskit', >> the GNUmakefile can not include the Makeconf file -- it does not exist! >> Look at the extract from the GNUmakefile: &