Still can't build libreoffice

2011-10-02 Thread Doug Barton
I'm on 9-current r225756 amd64. Since the latest version of libreoffice
was committed I always get stuck with cppunittest pegging the cpu at
100% and never completing. I've tried removing the port and letting
libreoffice reinstall it as a dependency, no luck.

Here's where I'm getting stuck:

--
- start unit test #1 on library ../../unxfbsd.pro/lib/libcppu_ifcontainer.so
--
: 
LD_LIBRARY_PATH=/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/clone/ure/cppuhelper/unxfbsd.pro/lib:/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}

/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/bin/cppunit/cppunittester
../../unxfbsd.pro/lib/libcppu_ifcontainer.so
OK (5)

And ktrace'ing the process gets endless repetition of this:

 46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
 46718 cppunittester RET   sigprocmask 0
 46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
 46718 cppunittester RET   sigprocmask 0

Which leads me to believe it's stuck in a loop somewhere.


Any ideas?

Doug

-- 

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: [ANNOUNCE] PostgreSQL 2011-09-26 Cumulative Bug-fix Release

2011-10-02 Thread Axel Rau
Hi,

On 2011-09-26 13:08 CET Selena Deckelmann sel...@postgresql.org wrote:

 The PostgreSQL Global Development Group today released minor version
 updates for all active branches of the PostgreSQL object-relational
 database system, including versions 9.1.1, 9.0.5, 8.4.9, 8.3.16 and
 8.2.22.
 
 All users are strongly urged to update their installations at the next
 scheduled downtime.

Any volunteer work needed for the port upgrade?

Axel
---
PGP-Key:29E99DD6  ☀ +49 151 2300 9283  ☀ computing @ chaos claudius

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


Re: Setting up environment for development/testing

2011-10-02 Thread Marin Atanasov Nikolov
2011/10/1 Fernando Apesteguía fernando.apesteg...@gmail.com:


 These two were my main concern.


 The handbook warns about the difficulty in the configuration of
 tinderbox, but I will give it a try anyway.

 Thank you very much!


Hello Fernando,

Some time ago I have created a documentation for Cfengine 3 and
FreeBSD, and the first chapters are mainly about Tinderbox.

You might want to have a look at it and see if that helps you to
install and configure Tinderbox:

 - http://www.unix-heaven.org/freebsd-cfengine3-handbook

Regards,
Marin


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




-- 
Marin Atanasov Nikolov

dnaeon AT gmail DOT com
daemon AT unix-heaven DOT org
http://www.unix-heaven.org/
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


environment variables for portupgrade: /etc/make.conf or /usr/local/etc/pkgtools.conf?

2011-10-02 Thread Thomas Mueller
How do I make environment variables used by portupgrade visible to portupgrade?

Portupgrade evidently ignores /etc/make.conf, and editing 
/usr/local/etc/pkgtools.conf also fails to help.

I want portupgrade to recognize 
PORTSDIR=/BETA1/usr/ports
and
PACKAGES=/usr/packages

but continue to get


cd: /usr/ports: No such file or directory
cd: /usr/ports/ports-mgmt/portupgrade: No such file or directory

when it should be looking for /BETA1/usr/ports

I was in directory /BETA1/usr/ports/print/py-reportlab2 ; offending command was

portupgrade -o py-reportlab2 py-reportlab |  tee portupg.log

I think that should have been 

portupgrade -o print/py-reportlab2 print/py-reportlab |  tee portupg.log

That failed because print/py-reportlab had already been built and installed, so 
I had to pkg_delete it, then
build py-reportlab2 without portupgrade.

Problem arose because py-reportlab2, a dependency of print/hplip, was broken 
(did not package), 
and I subsequently built and installed py-reportlab .

after a later portsnap fetch update, I decided to go back to 
print/py-reportlab2 .

But I still want to know where portupgrade gets environment variables: 
/etc/make.conf, /usr/local/etc/pkgtools.conf (in Ruby?), or other.

Tom

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


More trouble with wine: won't build for amd64

2011-10-02 Thread Thomas Mueller
Now I find I can't build emulators/wine on my new computer because wine is for 
i386 only.

Any way I can get an i386 compatibility mode?

I could try, perhaps when FreeBSD 9.0 is released, installing and building 
ports on a 16 GB USB stick to run on the older computer (i386), but capable 
also of running on the new computer.  Then I could hopefully build wine.  Ports 
tree and work directories would be on the new computer hard drive rather than 
the USB stick.

I think wine can be built for either i386 or amd64 in Linux.

Tom

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


Re: More trouble with wine: won't build for amd64

2011-10-02 Thread arrowdodger
On Sun, Oct 2, 2011 at 1:48 PM, Thomas Mueller mueller6...@bellsouth.netwrote:

 Now I find I can't build emulators/wine on my new computer because wine is
 for i386 only.

 Any way I can get an i386 compatibility mode?

 I could try, perhaps when FreeBSD 9.0 is released, installing and building
 ports on a 16 GB USB stick to run on the older computer (i386), but capable
 also of running on the new computer.  Then I could hopefully build wine.
  Ports tree and work directories would be on the new computer hard drive
 rather than the USB stick.

 I think wine can be built for either i386 or amd64 in Linux.

 Tom


These links may be helpful for you:
http://wiki.freebsd.org/Wine
http://www.mediafire.com/wine_fbsd64
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: More trouble with wine: won't build for amd64

2011-10-02 Thread Любомир Григоров
You could try to use the unofficial AMD54 package by David Naylor from
http://www.mediafire.com/wine_fbsd64 , has bath ver 8 and ver 9 builds.

I am on PC-BSD 9.0-BETA3 and had no problem running an i386 Wine PBI
parallel with the unofficial AMD64 package. Both were working. Also, when in
doubt, don't compile for hours, use
# pkg_add -r *name*

Cheers.
2011/10/2 Thomas Mueller mueller6...@bellsouth.net

 Now I find I can't build emulators/wine on my new computer because wine is
 for i386 only.

 Any way I can get an i386 compatibility mode?

 I could try, perhaps when FreeBSD 9.0 is released, installing and building
 ports on a 16 GB USB stick to run on the older computer (i386), but capable
 also of running on the new computer.  Then I could hopefully build wine.
  Ports tree and work directories would be on the new computer hard drive
 rather than the USB stick.

 I think wine can be built for either i386 or amd64 in Linux.

 Tom

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




-- 
Lyubomir Grigorov (bgalakazam)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: net-mgmt/aircrack-ng on FreeBSD 7+ / call for testing

2011-10-02 Thread arrowdodger
On Sat, Oct 1, 2011 at 2:09 PM, Jakub Lach jakub_l...@mailplus.pl wrote:

 Hi ports,

 Since some (2 years?) time, injection
 is not supported in monitor mode, but
 should work in ahdemo.

 aircrack-ng did not reflect this
 change, and was basically not working
 as intended.

 I filled a pr, since working on this
 issue was delayed in upstream, and
 there appeared to be simple workaround
 floating around (by richardpl).

 (ports/160564)

 But results are somewhat inconsistent,
 e.g. I still get

 wi_write(): Permission denied

 with AR242x / AR542x, even after
 updating aircrack for patched
 version.

 Others reported success.

 So this is basically call for testing
 net-mgmt/aircrack-ng  and/or finding
 better workaround.

 best regards,
 - Jakub Lach

 PS. Simple guide goes a long way:

 1. Install net-mgmt/aircrack-ng.

 (e.g. portmaster net-mgmt/aircrack-ng)

 2. Set card in ahdemo mode.

 (e.g. ifconfig wlan0 create wlandev ath0 wlanmode ahdemo)

 3. Perform injection test.

 (e.g. aireplay-ng -9 wlan0)

 4. Any wi_write(): Permission denied?

 Still wi_write(): Input/output error ?

 Does airodump-ng work now?

 5. Report back/comment.


My wifi adapter is AR5B95. I've ran all these steps and all air*_ng do not
print anything during run and always exit with error code 1.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: [CFT] misc/xfce4-appfinder development branch

2011-10-02 Thread Rene Ladan
Op 01-10-2011 15:04, Olivier Duchateau schreef:
 Hi everybody,
 
 If Xfce users are insteresting to test the new xfce4-appfinder
 (development version) 2.9.x, you can clone my development repository,
 like this:
 
 hg clone https://code.google.com/p/xfce-ports/ -b devel
 
 and copy misc/xfce4-appfinder/* in your ports tree.
 
 For the next stable release (4.10, not yet released), appfinder and
 xfrun4 will be merge into one application [1]. So Nick Schermer needs
 feedback.
 I'm currently running version 2.9.1 and everything works fine (no
 warning in .xsession-errors).
 
It seems to run fine here (9.0-BETA3 amd64, default Ports Tree with
xorg-dev), except that I get a GLib warning when I launch a program:

(xfce4-appfinder:27883): GLib-GObject-CRITICAL **: void
g_object_unref(gpointer): assertion `G_IS_OBJECT (object)' failed

 Note: You need to update xfce4-utils [2] (and perhaps others lib),
 which contains the old xfce4-run.
 
It looks like xfce4-utils-4.8.2 works fine with xfce4-appfinder too.

 [1] http://wiki.xfce.org/releng/4.10/roadmap/xfce4-appfinder
 [2]  http://www.freebsd.org/cgi/query-pr.cgi?pr=160948
 
Regards,
René
-- 
http://www.rene-ladan.nl:8080/

GPG fingerprint = ADBC ECCD EB5F A6B4 549F  600D 8C9E 647A E564 2BFC
(subkeys.pgp.net)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: environment variables for portupgrade: /etc/make.conf or /usr/local/etc/pkgtools.conf?

2011-10-02 Thread Conrad J. Sabatier
On Sun, 2 Oct 2011 09:35:48 + (GMT)
Thomas Mueller mueller6...@bellsouth.net wrote:

 How do I make environment variables used by portupgrade visible to
 portupgrade?
 
 Portupgrade evidently ignores /etc/make.conf, and
 editing /usr/local/etc/pkgtools.conf also fails to help.
 
 I want portupgrade to recognize 
 PORTSDIR=/BETA1/usr/ports
 and
 PACKAGES=/usr/packages
 
 but continue to get
 
 
 cd: /usr/ports: No such file or directory
 cd: /usr/ports/ports-mgmt/portupgrade: No such file or directory
 
 when it should be looking for /BETA1/usr/ports
 
 I was in directory /BETA1/usr/ports/print/py-reportlab2 ; offending
 command was
 
 portupgrade -o py-reportlab2 py-reportlab |  tee portupg.log
 
 I think that should have been 
 
 portupgrade -o print/py-reportlab2 print/py-reportlab |  tee
 portupg.log
 
 That failed because print/py-reportlab had already been built and
 installed, so I had to pkg_delete it, then build py-reportlab2
 without portupgrade.
 
 Problem arose because py-reportlab2, a dependency of print/hplip, was
 broken (did not package), and I subsequently built and installed
 py-reportlab .
 
 after a later portsnap fetch update, I decided to go back to
 print/py-reportlab2 .
 
 But I still want to know where portupgrade gets environment
 variables: /etc/make.conf, /usr/local/etc/pkgtools.conf (in Ruby?),
 or other.
 
 Tom

Set them in your shell's environment:

export PORTSDIR=/BETA1/usr/ports
export PACKAGES=/usr/packages

-- 
Conrad J. Sabatier
conr...@cox.net
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Setting up environment for development/testing

2011-10-02 Thread Fernando Apesteguía
2011/10/2 Marin Atanasov Nikolov dna...@gmail.com:
 2011/10/1 Fernando Apesteguía fernando.apesteg...@gmail.com:


 These two were my main concern.


 The handbook warns about the difficulty in the configuration of
 tinderbox, but I will give it a try anyway.

 Thank you very much!


 Hello Fernando,

 Some time ago I have created a documentation for Cfengine 3 and
 FreeBSD, and the first chapters are mainly about Tinderbox.

 You might want to have a look at it and see if that helps you to
 install and configure Tinderbox:

  - http://www.unix-heaven.org/freebsd-cfengine3-handbook

Thanks for the link. It seems very useful.


 Regards,
 Marin


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




 --
 Marin Atanasov Nikolov

 dnaeon AT gmail DOT com
 daemon AT unix-heaven DOT org
 http://www.unix-heaven.org/

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


Re: Instafix for FreeBSD ports brokenness on 10.0?

2011-10-02 Thread Jilles Tjoelker
Thanks for the patch, but it does not work properly. There is also a
freebsd[123]* a.out detector which needs to be disabled as well,
otherwise only (for example) a libiconv.so.3.0 appears, no libiconv.so.3
or libiconv.so symlink.

In addition, the below patch is for bsd.port.mk in the src repository,
so it only affects 10.x.

With this, I can build things like libiconv and gettext on a
10.0-CURRENT system without needing even more horrible hacks like faking
uname. Please test as some additional tweaks may be necessary.

The proper fix is indeed in autotools, but I think it is inappropriate
to keep head effectively frozen until this problem can be fixed
properly.

Index: share/mk/bsd.port.mk
===
--- share/mk/bsd.port.mk(revision 225917)
+++ share/mk/bsd.port.mk(working copy)
@@ -14,3 +14,15 @@
 
 .include bsd.own.mk
 .include ${BSDPORTMK}
+
+.if !defined(BEFOREPORTMK)  !defined(INOPTIONSMK)
+# Work around an issue where FreeBSD 10.0 is detected as FreeBSD 1.x.
+run-autotools-fixup:
+   find ${WRKSRC} -type f \( -name config.libpath -o \
+   -name config.rpath -o -name configure -o -name libtool.m4 \) \
+   -exec sed -i '' -e 's/freebsd1\*)/SHOULDNOTMATCHANYTHING1)/' \
+   -e 's/freebsd\[123\]\*)/SHOULDNOTMATCHANYTHING2)/' {} +
+
+.ORDER: run-autotools run-autotools-fixup do-configure
+do-configure: run-autotools-fixup
+.endif

(Sorry for the messed up threading, I am not subscribed to ports@.)

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


Re: Instafix for FreeBSD ports brokenness on 10.0?

2011-10-02 Thread Ed Schouten
* Jilles Tjoelker jil...@stack.nl, 20111002 18:23:
 The proper fix is indeed in autotools, but I think it is inappropriate
 to keep head effectively frozen until this problem can be fixed
 properly.

What I think is even a bigger disgrace, is that we haven't even added
the autotools fixes to our own packages in Ports. This means that people
running FreeBSD 9.0-RELEASE with a binary libtool package will not be
able to generate future-proof source tarballs. This is not just a
10.0-bug, it's a bug in general.

-- 
 Ed Schouten e...@80386.nl
 WWW: http://80386.nl/


pgp5uKANdFZbe.pgp
Description: PGP signature


Re: Still can't build libreoffice

2011-10-02 Thread Baptiste Daroussin
On Sun, Oct 02, 2011 at 12:55:27AM -0700, Doug Barton wrote:
 I'm on 9-current r225756 amd64. Since the latest version of libreoffice
 was committed I always get stuck with cppunittest pegging the cpu at
 100% and never completing. I've tried removing the port and letting
 libreoffice reinstall it as a dependency, no luck.
 
 Here's where I'm getting stuck:
 
 --
 - start unit test #1 on library ../../unxfbsd.pro/lib/libcppu_ifcontainer.so
 --
 : 
 LD_LIBRARY_PATH=/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/clone/ure/cppuhelper/unxfbsd.pro/lib:/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
 /mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/bin/cppunit/cppunittester
 ../../unxfbsd.pro/lib/libcppu_ifcontainer.so
 OK (5)
 
 And ktrace'ing the process gets endless repetition of this:
 
  46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
  46718 cppunittester RET   sigprocmask 0
  46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
  46718 cppunittester RET   sigprocmask 0
 
 Which leads me to believe it's stuck in a loop somewhere.
 
 
 Any ideas?
 
 Doug
 

Now idea at all about that, currently you are the only reporting that to me,
i'll check with some upstream devs, hope they will have more ideas that I do

regards,
Bapt


pgprC7RHfQ4iX.pgp
Description: PGP signature


Re: Still can't build libreoffice

2011-10-02 Thread Kostik Belousov
On Sun, Oct 02, 2011 at 09:54:36PM +0200, Baptiste Daroussin wrote:
 On Sun, Oct 02, 2011 at 12:55:27AM -0700, Doug Barton wrote:
  I'm on 9-current r225756 amd64. Since the latest version of libreoffice
  was committed I always get stuck with cppunittest pegging the cpu at
  100% and never completing. I've tried removing the port and letting
  libreoffice reinstall it as a dependency, no luck.
  
  Here's where I'm getting stuck:
  
  --
  - start unit test #1 on library ../../unxfbsd.pro/lib/libcppu_ifcontainer.so
  --
  : 
  LD_LIBRARY_PATH=/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/clone/ure/cppuhelper/unxfbsd.pro/lib:/mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
  
  /mnt/local2/tmp/home/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/solver/340/unxfbsd.pro/bin/cppunit/cppunittester
  ../../unxfbsd.pro/lib/libcppu_ifcontainer.so
  OK (5)
  
  And ktrace'ing the process gets endless repetition of this:
  
   46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff8030)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_BLOCK,0x80083f720,0x7fff81f0)
   46718 cppunittester RET   sigprocmask 0
   46718 cppunittester CALL  sigprocmask(SIG_SETMASK,0x80083f734,0)
   46718 cppunittester RET   sigprocmask 0
  
  Which leads me to believe it's stuck in a loop somewhere.
  
  
  Any ideas?
  
  Doug
  
 
 Now idea at all about that, currently you are the only reporting that to me,
 i'll check with some upstream devs, hope they will have more ideas that I do

The sigprocmask() syscalls could be issued from the rtld.

I think a drill-down is needed there. Ideally, the minimal C source
program that exhibit the problem is to be determined.

Meantime, if my guess is close to the right, you can compile
rtld/libc/libthr with the debugging information and attach gdb to the
looping process. Then, get several backtraces of the looping thread,
interleaved with continue, to roughly determine the loop block.


pgpu6QJiFYidI.pgp
Description: PGP signature


INDEX build failed for 7.x

2011-10-02 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-7 - please wait.. Done.
Warning: Duplicate INDEX entry: qhull-1.0_2

Committers on the hook:
eadler kmoore stephen sunpoet thierry 

Most recent CVS update was:
U databases/p5-BSON/Makefile
U databases/p5-BSON/distinfo
U databases/p5-DBD-Sybase/Makefile
U databases/p5-DBD-Sybase/distinfo
U devel/p5-perlbrew/Makefile
U devel/p5-perlbrew/distinfo
U german/mythes/Makefile
U german/mythes/distinfo
U irc/weechat-devel/Makefile
U irc/weechat-devel/distinfo
U math/Makefile
U math/qhull/Makefile
U math/qhull/distinfo
U math/qhull/pkg-descr
U math/qhull/pkg-plist
U math/qhull5/Makefile
U math/qhull5/distinfo
U math/qhull5/pkg-descr
U math/qhull5/pkg-plist
U math/qhull5/files/patch-configure
U math/qhull5/files/patch-eg::Makefile.in
U math/qhull5/files/patch-src::Makefile.in
U misc/lxde-common/Makefile
U polish/hunspell/Makefile
U polish/hunspell/distinfo
U security/Makefile
U security/p5-App-Genpass/Makefile
U security/p5-App-Genpass/distinfo
U security/p5-App-Genpass/pkg-descr
U security/p5-App-Genpass/pkg-plist
U textproc/es-mythes/Makefile
U textproc/es-mythes/distinfo
U textproc/nl-mythes/Makefile
U textproc/nl-mythes/distinfo
U textproc/sk-mythes/Makefile
U textproc/sk-mythes/distinfo
U textproc/sl-mythes/Makefile
U textproc/sl-mythes/distinfo
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: INDEX build failed for 7.x

2011-10-02 Thread Stephen Montgomery-Smith

On 10/02/2011 11:17 PM, Erwin Lansing wrote:

INDEX build failed with errors:
Generating INDEX-7 - please wait.. Done.
Warning: Duplicate INDEX entry: qhull-1.0_2

Committers on the hook:
eadler kmoore stephen sunpoet thierry



It should be fixed now.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org