netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Ian FREISLICH
Hi

While recieving my routing table I used to be able to check how far
it got by counting the output netstat -rn.  It takes about 2 seconds
to recieve the routes from my route-server, but over a minute to
update the kernel routing table.

I'm now getting this error until zebra completes route insertion.

[firewall1.jnb1] ~ $ netstat -rn |wc -l
netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
   1
[firewall1.jnb1] ~ $ netstat -rn |wc -l
  480446

Is there a sysctl that controls this?  There's lots of free memory
(14GB).  I've tuned other limits to stop dummynet crashing which
may have affected this, but in the absence of any documentation of
which mbuf sysctls affect dummynet I'm shooting in the dark:

net.inet.ip.fw.one_pass=0
net.inet.ip.dummynet.io_fast=1
net.inet.ip.dummynet.hash_size=1024
net.pf.states_hashsize=1048576
kern.ipc.nmbclusters=1048576
kern.ipc.maxmbufmem=10737418240
kern.ipc.nmbufs=13045170

Ian

-- 
Ian Freislich
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Hiroki Sato
Ian FREISLICH i...@clue.co.za wrote
  in e1wgkzk-gb...@clue.co.za:

ia Hi
ia
ia While recieving my routing table I used to be able to check how far
ia it got by counting the output netstat -rn.  It takes about 2 seconds
ia to recieve the routes from my route-server, but over a minute to
ia update the kernel routing table.
ia
ia I'm now getting this error until zebra completes route insertion.
ia
ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
ia netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
ia1
ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
ia   480446

 Perhaps does the attached patch fix this?

-- Hiroki
Index: usr.bin/netstat/route.c
===
--- usr.bin/netstat/route.c	(revision 262283)
+++ usr.bin/netstat/route.c	(working copy)
@@ -614,7 +614,7 @@
 	if ((buf = malloc(needed)) == 0) {
 		errx(2, malloc(%lu), (unsigned long)needed);
 	}
-	if (sysctl(mib, 6, buf, needed, NULL, 0)  0) {
+	if (sysctl(mib, 7, buf, needed, NULL, 0)  0) {
 		err(1, sysctl: net.route.0.%d.dump.%d, af, fibnum);
 	}
 	lim  = buf + needed;


pgpO9F0H0qp6s.pgp
Description: PGP signature


Re: netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Ian FREISLICH
Hiroki Sato wrote:
 ia While recieving my routing table I used to be able to check how far
 ia it got by counting the output netstat -rn.  It takes about 2 seconds
 ia to recieve the routes from my route-server, but over a minute to
 ia update the kernel routing table.
 ia
 ia I'm now getting this error until zebra completes route insertion.
 ia
 ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
 ia netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
 ia1
 ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
 ia   480446
 
  Perhaps does the attached patch fix this?

Sadly, not.

Ian

-- 
Ian Freislich
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Don Lewis
On 21 Feb, Ian FREISLICH wrote:
 Hiroki Sato wrote:
 ia While recieving my routing table I used to be able to check how far
 ia it got by counting the output netstat -rn.  It takes about 2 seconds
 ia to recieve the routes from my route-server, but over a minute to
 ia update the kernel routing table.
 ia
 ia I'm now getting this error until zebra completes route insertion.
 ia
 ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
 ia netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
 ia1
 ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
 ia   480446
 
  Perhaps does the attached patch fix this?
 
 Sadly, not.

Maybe you are running into the wired page limit.  Try bumping up the
value of the sysctl vm.max_wired knob.


___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Hiroki Sato
Ian FREISLICH i...@clue.co.za wrote
  in e1wgltz-kf...@clue.co.za:

ia Hiroki Sato wrote:
ia  ia While recieving my routing table I used to be able to check how far
ia  ia it got by counting the output netstat -rn.  It takes about 2 seconds
ia  ia to recieve the routes from my route-server, but over a minute to
ia  ia update the kernel routing table.
ia  ia
ia  ia I'm now getting this error until zebra completes route insertion.
ia  ia
ia  ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
ia  ia netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
ia  ia1
ia  ia [firewall1.jnb1] ~ $ netstat -rn |wc -l
ia  ia   480446
ia 
ia   Perhaps does the attached patch fix this?
ia
ia Sadly, not.

 Hm, how about the attached one?

 I think the cause is just a race when length of the sysctl's output
 is changed in kernel after the buffer allocation in userspace, not
 memory shortage.  Size of the routing table can quickly change.

-- Hiroki
Index: usr.bin/netstat/route.c
===
--- usr.bin/netstat/route.c	(revision 262283)
+++ usr.bin/netstat/route.c	(working copy)
@@ -69,6 +69,7 @@
 #include sysexits.h
 #include unistd.h
 #include err.h
+#include errno.h
 #include netstat.h

 #define	kget(p, d) (kread((u_long)(p), (char *)(d), sizeof (d)))
@@ -560,7 +561,7 @@
 	char *buf, *next, *lim;
 	struct rt_msghdr *rtm;
 	struct sockaddr *sa;
-	int fam = 0, ifindex = 0, size;
+	int fam = 0, ifindex = 0, size, count = 0;

 	struct ifaddrs *ifap, *ifa;
 	struct sockaddr_dl *sdl;
@@ -600,6 +601,7 @@

 	freeifaddrs(ifap);

+retry:
 	mib[0] = CTL_NET;
 	mib[1] = PF_ROUTE;
 	mib[2] = 0;
@@ -607,19 +609,24 @@
 	mib[4] = NET_RT_DUMP;
 	mib[5] = 0;
 	mib[6] = fibnum;
-	if (sysctl(mib, 7, NULL, needed, NULL, 0)  0) {
+	if (sysctl(mib, nitems(mib), NULL, needed, NULL, 0)  0)
 		err(1, sysctl: net.route.0.%d.dump.%d estimate, af, fibnum);
+	if ((buf = malloc(needed)) == NULL)
+		errx(2, malloc(%zd), needed);
+	if (sysctl(mib, nitems(mib), buf, needed, NULL, 0)  0) {
+		if (errno == ENOMEM  count++  20) {
+			warnx(Routing table grew, retrying);
+			sleep(1);
+			free(buf);
+			goto retry;
+		} else
+			err(1, sysctl: net.route.0.%d.dump.%d, af, fibnum);
 	}
-
-	if ((buf = malloc(needed)) == 0) {
-		errx(2, malloc(%lu), (unsigned long)needed);
-	}
-	if (sysctl(mib, 6, buf, needed, NULL, 0)  0) {
-		err(1, sysctl: net.route.0.%d.dump.%d, af, fibnum);
-	}
 	lim  = buf + needed;
 	for (next = buf; next  lim; next += rtm-rtm_msglen) {
 		rtm = (struct rt_msghdr *)next;
+		if (rtm-rtm_version != RTM_VERSION)
+			continue;
 		/*
 		 * Peek inside header to determine AF
 		 */


pgpQk6jd430IH.pgp
Description: PGP signature


[CURRENT]: buildworld fails: libexec/dma-mbox-create: cd: /usr/src/libexec/dma-mbox-create: No such file or directory

2014-02-21 Thread O. Hartmann

Recent sources (At revision 262283) reject to compile with error:

=== libexec/dma-mbox-create (cleandir)
cd: /usr/src/libexec/dma-mbox-create: No such file or directory


signature.asc
Description: PGP signature


Re: netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory

2014-02-21 Thread Ian FREISLICH
Hiroki Sato wrote:
  Hm, how about the attached one?
 
  I think the cause is just a race when length of the sysctl's output
  is changed in kernel after the buffer allocation in userspace, not
  memory shortage.  Size of the routing table can quickly change.

You are correct.  It's growing at about 9000 entries per second (I
wish it were faster).

This is what the output looks like now.  I guess I'm not the average
case.

[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
   1
[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
  314032
[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
  332293
[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
  340368
[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
  374400
[firewall1.jnb1] ~ # netstat -rn |wc -l
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: Routing table grew, retrying
netstat: sysctl: net.route.0.0.dump.0: Cannot allocate memory
   1
[firewall1.jnb1] ~ # netstat -rn |wc -l
  480073

Ian

-- 
Ian Freislich
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [CURRENT]: buildworld fails: libexec/dma-mbox-create: cd: /usr/src/libexec/dma-mbox-create: No such file or directory

2014-02-21 Thread Baptiste Daroussin
On Fri, Feb 21, 2014 at 10:22:32AM +0100, O. Hartmann wrote:
 
 Recent sources (At revision 262283) reject to compile with error:
 
 === libexec/dma-mbox-create (cleandir)
 cd: /usr/src/libexec/dma-mbox-create: No such file or directory

Fixed sorry about it

regards,
Bapt


pgpvUSPg3IpFT.pgp
Description: PGP signature


Re: ARC pressured out, how to control/stabilize ? (reformatted to text/plain)

2014-02-21 Thread Andriy Gapon
on 18/02/2014 15:47 Vitalij Satanivskij said the following:
 No checksume errors or any other errors found for now.

Thank you again!
Could you please send me an output of
sysctl kstat | fgrep 'l2'
from a system that has been patched and with a sufficiently long uptime?

-- 
Andriy Gapon
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org



Re: ARC pressured out, how to control/stabilize ? (reformatted to text/plain)

2014-02-21 Thread Vitalij Satanivskij

Dear Andriy,

system uptime is 8 days, 20:26

Output:

kstat.zfs.misc.arcstats.evict_l2_cached: 9771077767680
kstat.zfs.misc.arcstats.evict_l2_eligible: 3844577713152
kstat.zfs.misc.arcstats.evict_l2_ineligible: 8855320643072
kstat.zfs.misc.arcstats.l2_hits: 79824726
kstat.zfs.misc.arcstats.l2_misses: 217864980
kstat.zfs.misc.arcstats.l2_feeds: 760023
kstat.zfs.misc.arcstats.l2_rw_clash: 61903
kstat.zfs.misc.arcstats.l2_read_bytes: 3058416338944
kstat.zfs.misc.arcstats.l2_write_bytes: 2487863166464
kstat.zfs.misc.arcstats.l2_writes_sent: 732146
kstat.zfs.misc.arcstats.l2_writes_done: 732146
kstat.zfs.misc.arcstats.l2_writes_error: 0
kstat.zfs.misc.arcstats.l2_writes_hdr_miss: 51888
kstat.zfs.misc.arcstats.l2_evict_lock_retry: 4416
kstat.zfs.misc.arcstats.l2_evict_reading: 1
kstat.zfs.misc.arcstats.l2_free_on_write: 282867
kstat.zfs.misc.arcstats.l2_cdata_free_on_write: 326028
kstat.zfs.misc.arcstats.l2_abort_lowmem: 1348
kstat.zfs.misc.arcstats.l2_cksum_bad: 0
kstat.zfs.misc.arcstats.l2_io_error: 0
kstat.zfs.misc.arcstats.l2_size: 257940027392
kstat.zfs.misc.arcstats.l2_asize: 108789048832
kstat.zfs.misc.arcstats.l2_hdr_size: 881715600
kstat.zfs.misc.arcstats.l2_compress_successes: 60790954
kstat.zfs.misc.arcstats.l2_compress_zeros: 0
kstat.zfs.misc.arcstats.l2_compress_failures: 1738173
kstat.zfs.misc.arcstats.l2_write_trylock_fail: 1168505250
kstat.zfs.misc.arcstats.l2_write_passed_headroom: 29511803
kstat.zfs.misc.arcstats.l2_write_spa_mismatch: 1307899433
kstat.zfs.misc.arcstats.l2_write_in_l2: 51108634609
kstat.zfs.misc.arcstats.l2_write_io_in_progress: 637
kstat.zfs.misc.arcstats.l2_write_not_cacheable: 100398037509
kstat.zfs.misc.arcstats.l2_write_full: 97839
kstat.zfs.misc.arcstats.l2_write_buffer_iter: 760023
kstat.zfs.misc.arcstats.l2_write_pios: 732146
kstat.zfs.misc.arcstats.l2_write_buffer_bytes_scanned: 4642717602824192
kstat.zfs.misc.arcstats.l2_write_buffer_list_iter: 48013995
kstat.zfs.misc.arcstats.l2_write_buffer_list_null_iter: 80483



Andriy Gapon wrote:
AG on 18/02/2014 15:47 Vitalij Satanivskij said the following:
AG  No checksume errors or any other errors found for now.
AG 
AG Thank you again!
AG Could you please send me an output of
AG sysctl kstat | fgrep 'l2'
AG from a system that has been patched and with a sufficiently long uptime?
AG 
AG -- 
AG Andriy Gapon
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


lang/expect -- update coming

2014-02-21 Thread Pietro Cerutti
All,

I'm planning to commit an update to bring lang/expect up to the latest
5.45 version. At the same time, I'm going to kill lang/expect-devel,
which would otherwise be left lagging behind at 5.44.

The following ports use either expect or -devel (maintainers CC'd).

devel/pecl-expect
net-mgmt/rancid
net-mgmt/rancid-devel

This is a call to test those three with the new version of lang/expect,
which can be found both as a shar [1] or diff [2].

If nothing comes up, I'm planning to update expect and kill expect-devel
by the end of next week.

Thanks,

[1] http://people.freebsd.org/~gahr/expect-5.45.shar
[2] http://people.freebsd.org/~gahr/expect-5.45.diff

-- 
Pietro Cerutti
The FreeBSD Project
g...@freebsd.org

PGP Public Key:
http://gahr.ch/pgp


pgpg3Ztgue7cD.pgp
Description: PGP signature


Re: lang/expect -- update coming

2014-02-21 Thread Pietro Cerutti
On 2014-Feb-21, 15:38, Pietro Cerutti wrote:
 All,
 
 I'm planning to commit an update to bring lang/expect up to the latest
 5.45 version. At the same time, I'm going to kill lang/expect-devel,
 which would otherwise be left lagging behind at 5.44.
 
 The following ports use either expect or -devel (maintainers CC'd).
 
 devel/pecl-expect
 net-mgmt/rancid
 net-mgmt/rancid-devel

Turns out my regexp-foo sucked this time.. Here's a more complete list.
Thanks koobs@ for noticing.

devel/pecl-expect
misc/dejagnu
misc/sshbuddy
net/freenx
net-mgmt/netmagis-topo
et-mgmt/rancid
net-mgmt/rancid-devel
security/belier


-- 
Pietro Cerutti
The FreeBSD Project
g...@freebsd.org

PGP Public Key:
http://gahr.ch/pgp


pgpTYyVhRyg4A.pgp
Description: PGP signature


[head tinderbox] failure on i386/i386

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 13:00:17 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 13:00:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 13:00:17 - starting HEAD tinderbox run for i386/i386
TB --- 2014-02-21 13:00:17 - cleaning the object tree
TB --- 2014-02-21 13:00:17 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 13:00:22 - At svn revision 262294
TB --- 2014-02-21 13:00:23 - building world
TB --- 2014-02-21 13:00:23 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 13:00:23 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 13:00:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 13:00:23 - SRCCONF=/dev/null
TB --- 2014-02-21 13:00:23 - TARGET=i386
TB --- 2014-02-21 13:00:23 - TARGET_ARCH=i386
TB --- 2014-02-21 13:00:23 - TZ=UTC
TB --- 2014-02-21 13:00:23 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 13:00:23 - cd /src
TB --- 2014-02-21 13:00:23 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 13:00:29 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/local.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/mail.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/net.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/spool.c
/src/libexec/dma/../../contrib/dma/spool.c:418:33: error: comparison of 
integers of different signs: 'unsigned int' and 'time_t' (aka 'int') 
[-Werror,-Wsign-compare]
if (st.st_mtim.tv_sec + period = now.tv_sec)
~~ ^  ~~
1 error generated.
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error 

Fwd: [REL - head-i386-default][math/xppaut] Failed for xppaut-7.0 in package

2014-02-21 Thread Montgomery-Smith, Stephen
I keep getting the following error message from pkg-fallout@.  It seems
to me that the command
cp -r ode* /whereever
doesn't copy the .* files in the directories ode* in FreeBSD-CURRENT.
Is this a bug or a feature?


 Original Message 
Subject: [REL - head-i386-default][math/xppaut] Failed for xppaut-7.0 in
package
Date: Fri, 21 Feb 2014 13:27:54 +
From: pkg-fallout-buil...@freebsd.org
To: step...@freebsd.org
CC: pkg-fall...@freebsd.org

You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: step...@freebsd.org
Last committer: step...@freebsd.org
Ident:  $FreeBSD: head/math/xppaut/Makefile 341303 2014-01-26
23:07:48Z stephen $
Log URL:
http://beefy1.isc.freebsd.org/bulk/head-i386-default/2014-02-21_03h01m36s/logs/xppaut-7.0.log
Build URL:
http://beefy1.isc.freebsd.org/bulk/head-i386-default/2014-02-21_03h01m36s
Log:

 Building math/xppaut
build started at Fri Feb 21 13:27:18 UTC 2014
port directory: /usr/ports/math/xppaut
building for: FreeBSD head-i386-default-job-04 11.0-CURRENT FreeBSD
11.0-CURRENT r261447 i386
maintained by: step...@freebsd.org
Makefile ident:  $FreeBSD: head/math/xppaut/Makefile 341303
2014-01-26 23:07:48Z stephen $
Poudriere version: 3.1-pre

---Begin Environment---
UNAME_m=i386
UNAME_p=i386
OSVERSION=117
UNAME_v=FreeBSD 11.0-CURRENT r261447
UNAME_r=11.0-CURRENT
BLOCKSIZE=K
MAIL=/var/mail/root
STATUS=1
MASTERMNT=/usr/local/poudriere/data/build/head-i386-default/ref
PKG_EXT=txz
tpid=97667
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin
POUDRIERE_BUILD_TYPE=bulk
PKGNG=1
PKGNAME=xppaut-7.0
PKG_DELETE=/usr/local/sbin/pkg-static delete -y -f
PKG_ADD=/usr/local/sbin/pkg-static add
PWD=/root
MASTERNAME=head-i386-default
USER=root
HOME=/root
POUDRIERE_VERSION=3.1-pre
LOCALBASE=/usr/local
PACKAGE_BUILDING=yes
PKG_VERSION=/poudriere/pkg-static version
PKG_BIN=/usr/local/sbin/pkg-static
---End Environment---

---Begin OPTIONS List---
---End OPTIONS List---

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
TMPDIR=/tmp SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
TMPDIR=/tmp SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local
LOCALBASE=/usr/local  LIBDIR=/usr/lib  CC=cc CFLAGS=-O2 -pipe -w
-Wno-return-type -fno-strict-aliasing  CPP=cpp CPPFLAGS=
LDFLAGS=  CXX=c++ CXXFLAGS=-O2 -pipe -w -Wno-return-type
-fno-strict-aliasing  MANPREFIX=/usr/local
BSD_INSTALL_PROGRAM=install  -s -o root -g wheel -m 555
BSD_INSTALL_LIB=install  -s -o root -g wheel -m 444
BSD_INSTALL_SCRIPT=install  -o root -g wheel -m 555
BSD_INSTALL_DATA=install  -o root -g wheel -m 444
BSD_INSTALL_MAN=install  -o root -g wheel -m 444
--End MAKE_ENV--

--SUB_LIST--
PREFIX=/usr/local
LOCALBASE=/usr/local
DATADIR=/usr/local/share/xppaut
DOCSDIR=/usr/local/share/doc/xppaut
EXAMPLESDIR=/usr/local/share/examples/xppaut
WWWDIR=/usr/local/www/xppaut
ETCDIR=/usr/local/etc/xppaut
--End SUB_LIST--

---Begin make.conf---
ARCH=i386
MACHINE=i386
MACHINE_ARCH=i386
USE_PACKAGE_DEPENDS=yes
BATCH=yes
WRKDIRPREFIX=/wrkdirs
PORTSDIR=/usr/ports
PACKAGES=/packages
DISTDIR=/distfiles
 /usr/local/etc/poudriere.d/make.conf 
WITH_PKGNG=yes
NO_RESTRICTED=yes
DISABLE_MAKE_JOBS=poudriere
---End make.conf---
===  Cleaning for xppaut-7.0
===phase: check-config   
===
===phase: pkg-depends
===   xppaut-7.0 depends on file: /usr/local/sbin/pkg - not found
===Verifying install for /usr/local/sbin/pkg in
/usr/ports/ports-mgmt/pkg
===   Installing existing package /packages/All/pkg-1.2.6.txz
Installing pkg-1.2.6... done
If you are upgrading from the old package format, first run:

  # pkg2ng
===   Returning to build of xppaut-7.0
===
===phase: fetch-depends  
===
===phase: fetch  
=== Fetching all distfiles required by xppaut-7.0 for building
===
===phase: checksum   
=== Fetching all distfiles required by xppaut-7.0 for building
= SHA256 Checksum OK for xppaut7.0.tar.gz.
===
===phase: extract-depends
===
===phase: extract
=== Fetching all distfiles required by xppaut-7.0 for building
===  Extracting for xppaut-7.0
= SHA256 Checksum OK 

[head tinderbox] failure on mips/mips

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 16:15:20 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 16:15:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 16:15:20 - starting HEAD tinderbox run for mips/mips
TB --- 2014-02-21 16:15:20 - cleaning the object tree
TB --- 2014-02-21 16:15:20 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 16:15:24 - At svn revision 262294
TB --- 2014-02-21 16:15:25 - building world
TB --- 2014-02-21 16:15:25 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 16:15:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 16:15:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 16:15:25 - SRCCONF=/dev/null
TB --- 2014-02-21 16:15:25 - TARGET=mips
TB --- 2014-02-21 16:15:25 - TARGET_ARCH=mips
TB --- 2014-02-21 16:15:25 - TZ=UTC
TB --- 2014-02-21 16:15:25 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 16:15:25 - cd /src
TB --- 2014-02-21 16:15:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 16:15:32 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 16:53:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 16:53:23 - ERROR: failed to build world
TB --- 2014-02-21 16:53:23 - 1568.12 user 480.74 system 2282.96 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: lang/expect -- update coming

2014-02-21 Thread Dewey Hylton
 From: Pietro Cerutti g...@freebsd.org
 To: freebsd-po...@freebsd.org, freebsd-sta...@freebsd.org, 
 freebsd-current@FreeBSD.org
 Cc: jmoha...@bsd.hu, Martin Wilke m...@freebsd.org, wrig...@gmail.com, 
 fre...@deweyonline.com, pda...@gmail.com,
 romain garbage romain.garb...@gmail.com
 Sent: Friday, February 21, 2014 10:38:24 AM
 Subject: Re: lang/expect -- update coming
 
 On 2014-Feb-21, 15:38, Pietro Cerutti wrote:
  All,
  
  I'm planning to commit an update to bring lang/expect up to the
  latest
  5.45 version. At the same time, I'm going to kill
  lang/expect-devel,
  which would otherwise be left lagging behind at 5.44.
  
  The following ports use either expect or -devel (maintainers CC'd).
  
  devel/pecl-expect
  net-mgmt/rancid
  net-mgmt/rancid-devel
 
 Turns out my regexp-foo sucked this time.. Here's a more complete
 list.
 Thanks koobs@ for noticing.
 
 devel/pecl-expect
 misc/dejagnu
 misc/sshbuddy
 net/freenx
 net-mgmt/netmagis-topo
 et-mgmt/rancid
 net-mgmt/rancid-devel
 security/belier

i'm no longer maintaining the freenx/nxserver ports. they are so outdated at 
this point they should probably be killed off as well, but i have no idea who 
might still be using them.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on ia64/ia64

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 16:15:20 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 16:15:20 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 16:15:20 - starting HEAD tinderbox run for ia64/ia64
TB --- 2014-02-21 16:15:20 - cleaning the object tree
TB --- 2014-02-21 16:15:20 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 16:15:24 - At svn revision 262294
TB --- 2014-02-21 16:15:25 - building world
TB --- 2014-02-21 16:15:25 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 16:15:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 16:15:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 16:15:25 - SRCCONF=/dev/null
TB --- 2014-02-21 16:15:25 - TARGET=ia64
TB --- 2014-02-21 16:15:25 - TARGET_ARCH=ia64
TB --- 2014-02-21 16:15:25 - TZ=UTC
TB --- 2014-02-21 16:15:25 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 16:15:25 - cd /src
TB --- 2014-02-21 16:15:25 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 16:15:32 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 17:05:59 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 17:05:59 - ERROR: failed to build world
TB --- 2014-02-21 17:05:59 - 2218.02 user 551.49 system 3038.89 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-ia64-ia64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [REL - head-i386-default][math/xppaut] Failed for xppaut-7.0 in package

2014-02-21 Thread Antoine Brodin
On Fri, Feb 21, 2014 at 5:50 PM, Montgomery-Smith, Stephen
step...@missouri.edu wrote:
 I keep getting the following error message from pkg-fallout@.  It seems
 to me that the command
 cp -r ode* /whereever
 doesn't copy the .* files in the directories ode* in FreeBSD-CURRENT.
 Is this a bug or a feature?

I think new versions of bsdar/libarchive do not extract ._something anymore.
Just nuke those files in post-extract if present.

Cheers,

Antoine
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on mips64/mips

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 16:53:23 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 16:53:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 16:53:23 - starting HEAD tinderbox run for mips64/mips
TB --- 2014-02-21 16:53:23 - cleaning the object tree
TB --- 2014-02-21 16:53:23 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 16:53:27 - At svn revision 262294
TB --- 2014-02-21 16:53:28 - building world
TB --- 2014-02-21 16:53:28 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 16:53:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 16:53:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 16:53:28 - SRCCONF=/dev/null
TB --- 2014-02-21 16:53:28 - TARGET=mips
TB --- 2014-02-21 16:53:28 - TARGET_ARCH=mips64
TB --- 2014-02-21 16:53:28 - TZ=UTC
TB --- 2014-02-21 16:53:28 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 16:53:28 - cd /src
TB --- 2014-02-21 16:53:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 16:53:35 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 17:31:16 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 17:31:16 - ERROR: failed to build world
TB --- 2014-02-21 17:31:16 - 1562.47 user 460.76 system 2273.11 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-mips64-mips.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[CURRENT]: claws-mail and firefox fail with Invalid alignment

2014-02-21 Thread O. Hartmann
On every FreeBSD 11.0-CURRENT #0 r262294: Fri Feb 21 14:11:20 CET 2014
amd64 I run neither claws-mail nor firfox run after the last
buildworld. They fail both with the error

Invalid alignment

Does anyone see this problem too? I tried to recompile claws-mail and
firefox, but without success (compilation succeeded, but the error
stays).

What happened here? How to solve? 

Regards,

O. Hartmann


signature.asc
Description: PGP signature


Re: [CURRENT]: claws-mail and firefox fail with Invalid alignment

2014-02-21 Thread Dimitry Andric
On 21 Feb 2014, at 18:40, O. Hartmann ohart...@zedat.fu-berlin.de wrote:
 On every FreeBSD 11.0-CURRENT #0 r262294: Fri Feb 21 14:11:20 CET 2014
 amd64 I run neither claws-mail nor firfox run after the last
 buildworld. They fail both with the error
 
 Invalid alignment
 
 Does anyone see this problem too? I tried to recompile claws-mail and
 firefox, but without success (compilation succeeded, but the error
 stays).
 
 What happened here? How to solve? 

Can you try reverting r262277, rebuilding libexec/rtld-elf and
reinstalling it, and seeing if that fixes it?

-Dimitry



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [CURRENT]: claws-mail and firefox fail with Invalid alignment

2014-02-21 Thread O. Hartmann
On Fri, 21 Feb 2014 18:49:13 +0100
Dimitry Andric d...@freebsd.org wrote:

 On 21 Feb 2014, at 18:40, O. Hartmann ohart...@zedat.fu-berlin.de
 wrote:
  On every FreeBSD 11.0-CURRENT #0 r262294: Fri Feb 21 14:11:20 CET
  2014 amd64 I run neither claws-mail nor firfox run after the last
  buildworld. They fail both with the error
  
  Invalid alignment
  
  Does anyone see this problem too? I tried to recompile claws-mail
  and firefox, but without success (compilation succeeded, but the
  error stays).
  
  What happened here? How to solve? 
 
 Can you try reverting r262277, rebuilding libexec/rtld-elf and
 reinstalling it, and seeing if that fixes it?
 
 -Dimitry
 

Hello Dimitry,

in r262277 there is no change in libexec/rtld-elf, I had to go back to
r262270. I did as requested and reinstalling libexec/rtld-elf fixes the
reported issue.

Regards,
Oliver


signature.asc
Description: PGP signature


Re: [CURRENT]: claws-mail and firefox fail with Invalid alignment

2014-02-21 Thread O. Hartmann
On Fri, 21 Feb 2014 19:00:13 +0100
O. Hartmann ohart...@zedat.fu-berlin.de wrote:

 On Fri, 21 Feb 2014 18:49:13 +0100
 Dimitry Andric d...@freebsd.org wrote:
 
  On 21 Feb 2014, at 18:40, O. Hartmann ohart...@zedat.fu-berlin.de
  wrote:
   On every FreeBSD 11.0-CURRENT #0 r262294: Fri Feb 21 14:11:20 CET
   2014 amd64 I run neither claws-mail nor firfox run after the last
   buildworld. They fail both with the error
   
   Invalid alignment
   
   Does anyone see this problem too? I tried to recompile claws-mail
   and firefox, but without success (compilation succeeded, but the
   error stays).
   
   What happened here? How to solve? 
  
  Can you try reverting r262277, rebuilding libexec/rtld-elf and
  reinstalling it, and seeing if that fixes it?
  
  -Dimitry
  
 
 Hello Dimitry,
 
 in r262277 there is no change in libexec/rtld-elf, I had to go back to
 r262270. I did as requested and reinstalling libexec/rtld-elf fixes
 the reported issue.
 
 Regards,
 Oliver

Sorry, it is r262276



signature.asc
Description: PGP signature


[head tinderbox] failure on sparc64/sparc64

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 17:31:17 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 17:31:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 17:31:17 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2014-02-21 17:31:17 - cleaning the object tree
TB --- 2014-02-21 17:31:17 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 17:31:21 - At svn revision 262294
TB --- 2014-02-21 17:31:22 - building world
TB --- 2014-02-21 17:31:22 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 17:31:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 17:31:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 17:31:22 - SRCCONF=/dev/null
TB --- 2014-02-21 17:31:22 - TARGET=sparc64
TB --- 2014-02-21 17:31:22 - TARGET_ARCH=sparc64
TB --- 2014-02-21 17:31:22 - TZ=UTC
TB --- 2014-02-21 17:31:22 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 17:31:22 - cd /src
TB --- 2014-02-21 17:31:22 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 17:31:29 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 18:10:52 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 18:10:52 - ERROR: failed to build world
TB --- 2014-02-21 18:10:52 - 1730.41 user 383.80 system 2374.98 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 15:57:59 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 15:57:59 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 15:57:59 - starting HEAD tinderbox run for i386/pc98
TB --- 2014-02-21 15:57:59 - cleaning the object tree
TB --- 2014-02-21 15:57:59 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 15:58:04 - At svn revision 262294
TB --- 2014-02-21 15:58:05 - building world
TB --- 2014-02-21 15:58:05 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 15:58:05 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 15:58:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 15:58:05 - SRCCONF=/dev/null
TB --- 2014-02-21 15:58:05 - TARGET=pc98
TB --- 2014-02-21 15:58:05 - TARGET_ARCH=i386
TB --- 2014-02-21 15:58:05 - TZ=UTC
TB --- 2014-02-21 15:58:05 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 15:58:05 - cd /src
TB --- 2014-02-21 15:58:05 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 15:58:13 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/local.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/mail.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/net.c
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99 -Qunused-arguments  -fstack-protector -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition 
-Wmissing-variable-declarations -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wformat=2 
-Wno-format-extra-args -Werror -c /src/libexec/dma/../../contrib/dma/spool.c
/src/libexec/dma/../../contrib/dma/spool.c:418:33: error: comparison of 
integers of different signs: 'unsigned int' and 'time_t' (aka 'int') 
[-Werror,-Wsign-compare]
if (st.st_mtim.tv_sec + period = now.tv_sec)
~~ ^  ~~
1 error generated.
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error 

[head tinderbox] failure on powerpc/powerpc

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 17:05:59 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 17:05:59 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 17:05:59 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2014-02-21 17:05:59 - cleaning the object tree
TB --- 2014-02-21 17:05:59 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 17:06:03 - At svn revision 262294
TB --- 2014-02-21 17:06:04 - building world
TB --- 2014-02-21 17:06:04 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 17:06:04 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 17:06:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 17:06:04 - SRCCONF=/dev/null
TB --- 2014-02-21 17:06:04 - TARGET=powerpc
TB --- 2014-02-21 17:06:04 - TARGET_ARCH=powerpc
TB --- 2014-02-21 17:06:04 - TZ=UTC
TB --- 2014-02-21 17:06:04 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 17:06:04 - cd /src
TB --- 2014-02-21 17:06:04 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 17:06:11 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 19:09:25 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 19:09:25 - ERROR: failed to build world
TB --- 2014-02-21 19:09:25 - 6377.55 user 883.67 system 7406.15 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc64/powerpc

2014-02-21 Thread FreeBSD Tinderbox
TB --- 2014-02-21 17:06:09 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2014-02-21 17:06:09 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2014-02-21 17:06:09 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2014-02-21 17:06:09 - cleaning the object tree
TB --- 2014-02-21 17:06:09 - /usr/local/bin/svn stat /src
TB --- 2014-02-21 17:06:13 - At svn revision 262294
TB --- 2014-02-21 17:06:14 - building world
TB --- 2014-02-21 17:06:14 - CROSS_BUILD_TESTING=YES
TB --- 2014-02-21 17:06:14 - MAKEOBJDIRPREFIX=/obj
TB --- 2014-02-21 17:06:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2014-02-21 17:06:14 - SRCCONF=/dev/null
TB --- 2014-02-21 17:06:14 - TARGET=powerpc
TB --- 2014-02-21 17:06:14 - TARGET_ARCH=powerpc64
TB --- 2014-02-21 17:06:14 - TZ=UTC
TB --- 2014-02-21 17:06:14 - __MAKE_CONF=/dev/null
TB --- 2014-02-21 17:06:14 - cd /src
TB --- 2014-02-21 17:06:14 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Feb 21 17:06:21 UTC 2014
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
[...]
cc  -I/src/libexec/dma/../../contrib/dma  -DHAVE_REALLOCF -DHAVE_STRLCPY 
-DHAVE_GETPROGNAME  -DCONF_PATH='/etc/dma'  -DLIBEXEC_PATH='/usr/libexec' 
-DDMA_VERSION='v0.9+'  -DDMA_ROOT_USER='mailnull'  -DDMA_GROUP='mail' 
-std=gnu99  -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args 
-Werror -c aliases_parse.c
cc1: warnings being treated as errors
In file included from aliases_parse.c:15:
/src/libexec/dma/../../contrib/dma/aliases_parse.y:74: warning: redundant 
redeclaration of 'yyparse'
/src/libexec/dma/../../contrib/dma/dma.h:175: warning: previous declaration of 
'yyparse' was here
In file included from aliases_parse.c:16:
aliases_parse.h:17: warning: redundant redeclaration of 'yylval'
/src/libexec/dma/../../contrib/dma/aliases_parse.y:82: warning: previous 
declaration of 'yylval' was here
*** Error code 1

Stop.
bmake[3]: stopped in /src/libexec/dma
*** Error code 1

Stop.
bmake[2]: stopped in /src/libexec
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2014-02-21 19:10:40 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2014-02-21 19:10:40 - ERROR: failed to build world
TB --- 2014-02-21 19:10:40 - 6429.91 user 895.75 system 7470.80 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: Help fixing clang 3.4

2014-02-21 Thread Steve Kargl
On Thu, Feb 20, 2014 at 07:43:54AM +0100, Antoine Brodin wrote:
 On Thu, Feb 20, 2014 at 2:19 AM, Steve Kargl
 s...@troutmask.apl.washington.edu wrote:
  Can someone point to where I disable clang from
  issuing an error and aborting on an unknown option?
 
  % cd /usr/ports/databases/py-sqlite3
  % make
 
  cc ... -R/usr/local/lib -lsqlite3 -o 
  build/lib.freebsd-11.0-CURRENT-amd64-2.7/_sqlite3.so
  cc: error: unknown argument: '-R/usr/local/lib'
  error: command 'cc' failed with exit status 1
  *** Error code 1
 
 You can try this
 http://docs.freebsd.org/cgi/mid.cgi?CAALwa8m9-dpiO4fpA_BG-QeZyo9wsRpDVXHz_CTNUYeFLK7GVA
 

Thanks.  That appears to have fixed that particular.

-- 
Steve
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


base unzip on 10-STABLE/ 11-HEAD unzip: skipping non-regular entry

2014-02-21 Thread Jakub Lach
Hello, 

Unfortunately, this is the case with *zips from Dropbox (Download
as .zip) directory option.

$ /usr/bin/unzip  file.zip 
Archive:  file.zip
unzip: skipping non-regular entry ''
unzip: skipping non-regular entry 'A B C D.pdf'

archivers/unzip manages this case though...

$ /usr/local/bin/unzip  file.zip   
Archive:  file.zip
warning:  stripped absolute path spec from /
mapname:  conversion of  failed
inflating: A B C D.pdf   

Tested on 10-STABLE, but should be the same on HEAD.




--
View this message in context: 
http://freebsd.1045724.n5.nabble.com/base-unzip-on-10-STABLE-11-HEAD-unzip-skipping-non-regular-entry-tp5887996.html
Sent from the freebsd-current mailing list archive at Nabble.com.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: lang/expect -- update coming

2014-02-21 Thread Kubilay Kocak
On 22/02/2014 2:51 AM, Dewey Hylton wrote:
 From: Pietro Cerutti g...@freebsd.org
 To: freebsd-po...@freebsd.org, freebsd-sta...@freebsd.org, 
 freebsd-current@FreeBSD.org
 Cc: jmoha...@bsd.hu, Martin Wilke m...@freebsd.org, wrig...@gmail.com, 
 fre...@deweyonline.com, pda...@gmail.com,
 romain garbage romain.garb...@gmail.com
 Sent: Friday, February 21, 2014 10:38:24 AM
 Subject: Re: lang/expect -- update coming

 On 2014-Feb-21, 15:38, Pietro Cerutti wrote:
 All,

 I'm planning to commit an update to bring lang/expect up to the
 latest
 5.45 version. At the same time, I'm going to kill
 lang/expect-devel,
 which would otherwise be left lagging behind at 5.44.

 The following ports use either expect or -devel (maintainers CC'd).

 devel/pecl-expect
 net-mgmt/rancid
 net-mgmt/rancid-devel

 Turns out my regexp-foo sucked this time.. Here's a more complete
 list.
 Thanks koobs@ for noticing.

 devel/pecl-expect
 misc/dejagnu
 misc/sshbuddy
 net/freenx
 net-mgmt/netmagis-topo
 et-mgmt/rancid
 net-mgmt/rancid-devel
 security/belier
 
 i'm no longer maintaining the freenx/nxserver ports. they are so outdated at 
 this point they should probably be killed off as well, but i have no idea who 
 might still be using them.

While the MAINTAINER line references your email, you do, even if not for
version updates.

As maintainer, you have a couple of PR options up your sleeve:

- Reset maintainer, so someone else can pick them up
- Set EXPIRE with reason and an appropriate lead time to removal

The above can also serve to communicate to
users-come-would-be-maintainers that they might need attention and
provide the impetus to jump in and have a go :)

Koobs
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: BSD XXI Manifesto [agree] [intersting]

2014-02-21 Thread Julian Elischer

On 2/18/14, 3:28 PM, Wojciech A. Koszek wrote:

(cross-posted message: eventual discussion let's keep on hackers@)

Hello,

After being disappointed with the list of submitted FreeBSD ideas, I created
my own Machiavellist vision of XXI-century FreeBSD. I paste it below. If you
want to add something, it's here:

https://wiki.freebsd.org/BSD_XXI_Manifesto

GSOC students could use this as an inspiration for their projects. The idea
is to invite non-C, non-OS, non-kernel developers to help out with FreeBSD
stuff.



BSDXXI manifesto

[nice stuff] removed for brevity

I like all this..  I thought you meant XXI to mean the FreeBSD's 21st 
year

but there is more than one year's worth of stuff there.

I really suggest people seriously look at the list.. lots of really 
neat ideas.
peole who are not necessarily C coders could do lots of this if we had 
a project to gather people under to do it.

PCBSD people would be a core of interested people..


___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: BSD XXI Manifesto [agree] [intersting]

2014-02-21 Thread Allan Jude
On 2014-02-21 21:21, Julian Elischer wrote:
 On 2/18/14, 3:28 PM, Wojciech A. Koszek wrote:
 (cross-posted message: eventual discussion let's keep on hackers@)

 Hello,

 After being disappointed with the list of submitted FreeBSD ideas, I
 created
 my own Machiavellist vision of XXI-century FreeBSD. I paste it below.
 If you
 want to add something, it's here:

 https://wiki.freebsd.org/BSD_XXI_Manifesto

 GSOC students could use this as an inspiration for their projects. The
 idea
 is to invite non-C, non-OS, non-kernel developers to help out with
 FreeBSD
 stuff.

 

 BSDXXI manifesto
 [nice stuff] removed for brevity
 
 I like all this..  I thought you meant XXI to mean the FreeBSD's 21st
 year
 but there is more than one year's worth of stuff there.
 
 I really suggest people seriously look at the list.. lots of really neat
 ideas.
 peole who are not necessarily C coders could do lots of this if we had a
 project to gather people under to do it.
 PCBSD people would be a core of interested people..
 
 
 ___
 freebsd-current@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-current
 To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

I can see the remote controlled installer being especially useful for
'appliance' type devices, like FreeNAS, pfSense, FUDO, etc.

How would your phone find the address of the machine once it boots off
the USB, so you could access the web server?

-- 
Allan Jude



signature.asc
Description: OpenPGP digital signature


Re: BSD XXI Manifesto [agree] [intersting]

2014-02-21 Thread Luigi Rizzo
On Fri, Feb 21, 2014 at 8:59 PM, Allan Jude free...@allanjude.com wrote:

 On 2014-02-21 21:21, Julian Elischer wrote:
  On 2/18/14, 3:28 PM, Wojciech A. Koszek wrote:
  (cross-posted message: eventual discussion let's keep on hackers@)
 
  Hello,
 
  After being disappointed with the list of submitted FreeBSD ideas, I
  created
  my own Machiavellist vision of XXI-century FreeBSD. I paste it below.
  If you
  want to add something, it's here:
 
  https://wiki.freebsd.org/BSD_XXI_Manifesto
 
  GSOC students could use this as an inspiration for their projects. The
  idea
  is to invite non-C, non-OS, non-kernel developers to help out with
  FreeBSD
  stuff.
 
  
 
  BSDXXI manifesto
  [nice stuff] removed for brevity
 
  I like all this..  I thought you meant XXI to mean the FreeBSD's 21st
  year
  but there is more than one year's worth of stuff there.
 
  I really suggest people seriously look at the list.. lots of really neat
  ideas.
  peole who are not necessarily C coders could do lots of this if we had a
  project to gather people under to do it.
  PCBSD people would be a core of interested people..
 
 
  ___
  freebsd-current@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-current
  To unsubscribe, send any mail to 
 freebsd-current-unsubscr...@freebsd.org

 I can see the remote controlled installer being especially useful for
 'appliance' type devices, like FreeNAS, pfSense, FUDO, etc.


yes i agree the approach is nice.
what is unfortunate is that sometimes these appliances
are in environments where there is no [open]
wireless access so one might consider bringing
two usb sticks -- the disk image and a wifi.



 How would your phone find the address of the machine once it boots off
 the USB, so you could access the web server?


I presume UPNP can come to help here.
Otherwise the appliance can try and encode the information with
one of the following methods (with a matching app on the phone):
- with a QR code on the screen, if it has one;
- playing tones on the speakers, if it has one;
- flashing leds (e.g. some USB keys have 'activity' leds)

cheers
luigi
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: BSD XXI Manifesto [agree] [intersting]

2014-02-21 Thread Adrian Chadd
On 21 February 2014 20:59, Allan Jude free...@allanjude.com wrote:

 I can see the remote controlled installer being especially useful for
 'appliance' type devices, like FreeNAS, pfSense, FUDO, etc.

 How would your phone find the address of the machine once it boots off
 the USB, so you could access the web server?

what apple does.



-a
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org