Re: CVS commit: src/lib/librumpuser/build-aux

2016-10-18 Thread coypu
On Tue, Oct 18, 2016 at 10:28:04PM +, Antti Kantee wrote:
> On 17/10/16 18:24, Maya Rashish wrote:
> >Module Name: src
> >Committed By:maya
> >Date:Mon Oct 17 18:24:42 UTC 2016
> >
> >Modified Files:
> > src/lib/librumpuser/build-aux: install-sh
> >
> >Log Message:
> >use mktemp instead of $RANDOM for tmpdir
> >
> >..$RANDOM won't work with our /bin/sh.
> >
> >unsure if this script is used, but it is wrong.
> >might help the spurious build failures that occasionally
> >show up on autobuilds.
> 
> Are you planning to adjust all of the unused install-sh files around the
> tree to make them consistently less wrong?

Maybe I should revert it because I misunderstood things and it does not
matter... sorry for the noise

I was trying to do something about the random failures in builds

http://releng.netbsd.org/builds/netbsd-6/201610160430Z/ews4800mips.build.failed
http://releng.netbsd.org/builds/netbsd-6/201610181650Z/sbmips-mipsel.build.failed


Re: CVS commit: src/lib/librumpuser/build-aux

2016-10-18 Thread Antti Kantee

On 17/10/16 18:24, Maya Rashish wrote:

Module Name:src
Committed By:   maya
Date:   Mon Oct 17 18:24:42 UTC 2016

Modified Files:
src/lib/librumpuser/build-aux: install-sh

Log Message:
use mktemp instead of $RANDOM for tmpdir

..$RANDOM won't work with our /bin/sh.

unsure if this script is used, but it is wrong.
might help the spurious build failures that occasionally
show up on autobuilds.


Are you planning to adjust all of the unused install-sh files around the 
tree to make them consistently less wrong?


re: CVS commit: src

2016-10-18 Thread matthew green
"Emmanuel Dreyfus" writes:
> Module Name:  src
> Committed By: manu
> Date: Tue Oct 18 15:06:17 UTC 2016
> 
> Modified Files:
>   src/lib/libperfuse: libperfuse.3 perfuse.c
>   src/usr.sbin/perfused: msg.c perfused.8
> 
> Log Message:
> Make FUSE socket buffer tunable
> 
> When dealing with high I/O throughput, we could run out of buffer
> space if the filesystem was not consuming requests fast enough.
> Here we slightly raise the buffer size, and we make it tunable
> through the PERFUSE_BUFSIZE environment variable so that we can
> cope with higher requirement later.
> 
> While there, document PERFUSE_OPTIONS environment variable.

i assume this is the cause of the build break:

dependall ===> lib/libperfuse
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c: In function 
'bufvar_from_env':
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c:151:1: error: old-style 
function definition [-Werror=old-style-definition]
 bufvar_from_env(name, defval)
 ^
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c: In function 
'bufvar_from_env':
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c:151:1: error: old-style 
function definition [-Werror=old-style-definition]
 bufvar_from_env(name, defval)
 ^
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c: In function 
'bufvar_from_env':
/home/source/ab/HEAD/src/lib/libperfuse/perfuse.c:151:1: error: old-style 
function definition [-Werror=old-style-definition]
 bufvar_from_env(name, defval)
 ^
cc1: all warnings being treated as errors
--- perfuse.po ---
*** [perfuse.po] Error code 1

please have a look.  thanks.


.mrg.


Re: CVS commit: src/lib/librumpuser/build-aux

2016-10-18 Thread coypu
On Mon, Oct 17, 2016 at 06:24:42PM +, Maya Rashish wrote:
> Module Name:  src
> Committed By: maya
> Date: Mon Oct 17 18:24:42 UTC 2016
> 
> Modified Files:
>   src/lib/librumpuser/build-aux: install-sh
> 
> Log Message:
> use mktemp instead of $RANDOM for tmpdir
> 

Woops, this is totally redundant, but harmless...