Re: FreeBSD 10.0-CURRENT/amd64 r242305: www/apache22: setfib: NO: invalid FIB (max 0)
Am 10/29/12 14:57, schrieb Rainer Hurling: > Am 29.10.2012 14:19 (UTC+1) schrieb O. Hartmann: >> Hello world. >> >> With the most recent FreeBSD 10.0-CURRENT/amd64 r242305, CLAN buildworld >> and with libc++/c++11 compiled, I can not start the Apache 2.22 >> webserver anymore and receive this error on all boxes: >> >> >> service apache22 restart >> Performing sanity check on apache22 configuration: >> Syntax OK >> apache22 not running? (check /var/run/httpd.pid). >> Performing sanity check on apache22 configuration: >> Syntax OK >> Starting apache22. >> setfib: NO: invalid FIB (max 0) >> /usr/local/etc/rc.d/apache22: WARNING: failed to start apache22 > > I don't know, if this is intended. But the following entry in > /etc/rc.conf helps restarting the server: > > apache22_fib=0 > > This is mentioned in the updated rc.conf(5). > Thanks. This helped and seems to resolve the problem. Oliver signature.asc Description: OpenPGP digital signature
[Call for Testers] VirtualBox 4.2.4
Hi virtualbox users! This is again a call for testers to get some feedback before we commit VirtualBox 4.2 to the portstree. If you already run VirtualBox 4.2.0 you should definitely update to 4.2.4 because they fixed quite a few serious bugs upstream. Our plan is still to commit 4.2 to the portstree as soon as FreeBSD 9.1 is out the door. If you are interested in helping with virtualbox maintenance and development or have noticed a bug you can easily find us on IRC. Please update devel/kBuild-devel before updating any of the virtualbox ports and ensure that your Kernel sources match your running kernel before building the virtualbox-ose-kmod port. Changes since VirtualBox 4.1: https://www.virtualbox.org/wiki/Changelog VirtualBox 4.2.4 and 4.1.22 (legacy) Ports: http://people.freebsd.org/~decke/virtualbox/virtualbox-cft-4.2.4-20121030.tar.gz IRC: #freebsd-vbox on Freenode Bernhard on behalf of the new VirtualBox on FreeBSD Team! -- Bernhard Froehlich http://www.bluelife.at/ ___ 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: New port: net/tigervnc call for testers (not PRed yet)
Hello VNC users, Thank you for all people who gave me really useful advices, I could fix some problems on my TigerVNC port. Now it builds with any combinations of options. Please check it out and test again, please help me to make this port better. svn co http://svn.redports.org/meta/net/tigervnc/ Known problems are: - Cannot build with WITH_NEW_XORG (low priority for me) - Cannot build on redports CLANG/amd64 (I can't repeat it) See also redports' build archive. https://redports.org/buildarchive/20121027071840-58789/ I will submit this port in a few weeks if no other problems found. Regards, -- `whois vmeta.jp | nkf -w` meta ___ 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: lib name on LIB_DEPENDS
Em 28/10/2012 15:31, Chris Rees escreveu: > On 28 October 2012 17:53, Lucas Saliés Brum wrote: >> Em 28/10/2012 12:46, Rainer Hurling escreveu: >>> textproc/py-feedparser does not install any library, so you need to test >>> the presence of the python script, installed by this port: >>> >>> /usr/local/lib/python2.7/site-packages/feedparser.py >>> >>> To be path and version independent you should use something like >>> >>> ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser >>> >>> Hope this helps, >>> Rainer >> Thanks for your response Rainer!! >> >> http://paste.sistematico.org/16 >> >> Any hint? >> > Yes, you installed py-feedparser with a different PREFIX somehow :) > > Use pkg_delete -fx py27-feedparser > > Once you've done that, you should be able to make your test port > without problems. > > Chris http://paste.sistematico.org/19 How to fix this? Thank you all. ___ 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: lib name on LIB_DEPENDS
Lucas Saliés Brum wrote on 30.10.2012 17:25: Em 28/10/2012 15:31, Chris Rees escreveu: Yes, you installed py-feedparser with a different PREFIX somehow :) Use pkg_delete -fx py27-feedparser Once you've done that, you should be able to make your test port without problems. Chris http://paste.sistematico.org/19 How to fix this? Thank you all. It complains because py-feedparser is not a shared library. It should be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS instead. -- Regards, Ruslan Tinderboxing kills... the drives. ___ 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: lib name on LIB_DEPENDS
Em 30/10/2012 10:25, Lucas Saliés Brum escreveu: > Em 28/10/2012 15:31, Chris Rees escreveu: >> On 28 October 2012 17:53, Lucas Saliés Brum wrote: >>> Em 28/10/2012 12:46, Rainer Hurling escreveu: textproc/py-feedparser does not install any library, so you need to test the presence of the python script, installed by this port: /usr/local/lib/python2.7/site-packages/feedparser.py To be path and version independent you should use something like ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser Hope this helps, Rainer >>> Thanks for your response Rainer!! >>> >>> http://paste.sistematico.org/16 >>> >>> Any hint? >>> >> Yes, you installed py-feedparser with a different PREFIX somehow :) >> >> Use pkg_delete -fx py27-feedparser >> >> Once you've done that, you should be able to make your test port >> without problems. >> >> Chris > http://paste.sistematico.org/19 > How to fix this? > > Thank you all. Sorry, i missed the Makefile: http://paste.sistematico.org/20 My pkg-plist is blank, anything related? I need to create? ___ 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: lib name on LIB_DEPENDS
Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: > Lucas Saliés Brum wrote on 30.10.2012 17:25: >> Em 28/10/2012 15:31, Chris Rees escreveu: >>> Yes, you installed py-feedparser with a different PREFIX somehow :) >>> >>> Use pkg_delete -fx py27-feedparser >>> >>> Once you've done that, you should be able to make your test port >>> without problems. >>> >>> Chris >> >> http://paste.sistematico.org/19 >> How to fix this? >> >> Thank you all. > > It complains because py-feedparser is not a shared library. It should > be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS > instead. > In some "strange way" it worked!! hahaha Thank you all! Really! But now: [lucas@jazz ~]:$ cgmailservice cgmailservice: Command not found. Maybe missing pkg-plist? ___ 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: lib name on LIB_DEPENDS
Lucas Saliés Brum wrote on 30.10.2012 17:36: Em 30/10/2012 10:25, Lucas Saliés Brum escreveu: Em 28/10/2012 15:31, Chris Rees escreveu: On 28 October 2012 17:53, Lucas Saliés Brum wrote: Em 28/10/2012 12:46, Rainer Hurling escreveu: textproc/py-feedparser does not install any library, so you need to test the presence of the python script, installed by this port: /usr/local/lib/python2.7/site-packages/feedparser.py To be path and version independent you should use something like ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser Hope this helps, Rainer Thanks for your response Rainer!! http://paste.sistematico.org/16 Any hint? Yes, you installed py-feedparser with a different PREFIX somehow :) Use pkg_delete -fx py27-feedparser Once you've done that, you should be able to make your test port without problems. Chris http://paste.sistematico.org/19 How to fix this? Thank you all. Sorry, i missed the Makefile: http://paste.sistematico.org/20 My pkg-plist is blank, anything related? I need to create? change LIB_DEPENDS= ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser with: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>0:${PORTSDIR}/textproc/py-feedparser -- Regards, Ruslan Tinderboxing kills... the drives. ___ 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: lib name on LIB_DEPENDS
On 30 October 2012 13:40, Lucas Saliés Brum wrote: > Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: >> Lucas Saliés Brum wrote on 30.10.2012 17:25: >>> Em 28/10/2012 15:31, Chris Rees escreveu: Yes, you installed py-feedparser with a different PREFIX somehow :) Use pkg_delete -fx py27-feedparser Once you've done that, you should be able to make your test port without problems. Chris >>> >>> http://paste.sistematico.org/19 >>> How to fix this? >>> >>> Thank you all. >> >> It complains because py-feedparser is not a shared library. It should >> be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS >> instead. >> > > In some "strange way" it worked!! hahaha > Thank you all! > Really! > > But now: > [lucas@jazz ~]:$ cgmailservice > cgmailservice: Command not found. > Did you install it afterwards? You're running csh, so you should also run "rehash". (By the way, csh traditionally uses % for a prompt so you don't confuse people who look at the $ and think sh/bash!) Chris ___ 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: lib name on LIB_DEPENDS
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Em 30/10/2012 10:43, Chris Rees escreveu: > On 30 October 2012 13:40, Lucas Saliés Brum wrote: >> Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: >>> Lucas Saliés Brum wrote on 30.10.2012 17:25: Em 28/10/2012 15:31, Chris Rees escreveu: > Yes, you installed py-feedparser with a different PREFIX somehow :) > > Use pkg_delete -fx py27-feedparser > > Once you've done that, you should be able to make your test port > without problems. > > Chris http://paste.sistematico.org/19 How to fix this? Thank you all. >>> >>> It complains because py-feedparser is not a shared library. It should >>> be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS >>> instead. >>> >> >> In some "strange way" it worked!! hahaha >> Thank you all! >> Really! >> >> But now: >> [lucas@jazz ~]:$ cgmailservice >> cgmailservice: Command not found. >> > > Did you install it afterwards? > > You're running csh, so you should also run "rehash". > > (By the way, csh traditionally uses % for a prompt so you don't > confuse people who look at the $ and think sh/bash!) > > Chris [lucas@jazz ~]:$ rehash [lucas@jazz ~]:$ cgmailservice cgmailservice: Command not found. [lucas@jazz ~]:$ Open another instance of terminal not resolved. -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iQEcBAEBAgAGBQJQj98VAAoJEIwYWkMiz4nui1YH/1jzdyQ3oqUskHy9r3AC/Ppq k5AunDcto7iAkv6KibPh4T1QvO7nyv/Q98gqqjdF1HtzMKBHviZSIlgOzzrh2DJD ZFo23gaJDUMO4jtjGA/A2nmaVH4EYP291XxG4ABnar8YFBhYCqkIy5gmGlyMHkPl lRHTLCzJJfDV07aKllphaKfiuADmcK0o/J5uVO1Hd41/GJkc0mrkxYCsQXBqhyWm Xjc0uIRGIzK0a2QC5t4VECXPFcbiorM9d1x71yYQWikjGIwR7u+0AGaZqR1bSkBd 4W2gks9jLmXs883IGEpYOUMJDsvvvqxq494BeSEg4xt1qagjvkGKtlxB93S6nAU= =3xb9 -END PGP SIGNATURE- ___ 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: lib name on LIB_DEPENDS
On 30 October 2012 14:07, Lucas Saliés Brum wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Em 30/10/2012 10:43, Chris Rees escreveu: >> On 30 October 2012 13:40, Lucas Saliés Brum wrote: >>> Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: Lucas Saliés Brum wrote on 30.10.2012 17:25: > Em 28/10/2012 15:31, Chris Rees escreveu: >> Yes, you installed py-feedparser with a different PREFIX somehow :) >> >> Use pkg_delete -fx py27-feedparser >> >> Once you've done that, you should be able to make your test port >> without problems. >> >> Chris > > http://paste.sistematico.org/19 > How to fix this? > > Thank you all. It complains because py-feedparser is not a shared library. It should be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS instead. >>> >>> In some "strange way" it worked!! hahaha >>> Thank you all! >>> Really! >>> >>> But now: >>> [lucas@jazz ~]:$ cgmailservice >>> cgmailservice: Command not found. >>> >> >> Did you install it afterwards? >> >> You're running csh, so you should also run "rehash". >> >> (By the way, csh traditionally uses % for a prompt so you don't >> confuse people who look at the $ and think sh/bash!) >> >> Chris > > [lucas@jazz ~]:$ rehash > [lucas@jazz ~]:$ cgmailservice > cgmailservice: Command not found. > [lucas@jazz ~]:$ > > Open another instance of terminal not resolved. > Did you run make install? Chris ___ 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: lib name on LIB_DEPENDS
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Em 30/10/2012 11:08, Chris Rees escreveu: > On 30 October 2012 14:07, Lucas Saliés Brum wrote: >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> Em 30/10/2012 10:43, Chris Rees escreveu: >>> On 30 October 2012 13:40, Lucas Saliés Brum wrote: Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: > Lucas Saliés Brum wrote on 30.10.2012 17:25: >> Em 28/10/2012 15:31, Chris Rees escreveu: >>> Yes, you installed py-feedparser with a different PREFIX somehow :) >>> >>> Use pkg_delete -fx py27-feedparser >>> >>> Once you've done that, you should be able to make your test port >>> without problems. >>> >>> Chris >> >> http://paste.sistematico.org/19 >> How to fix this? >> >> Thank you all. > > It complains because py-feedparser is not a shared library. It should > be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS > instead. > In some "strange way" it worked!! hahaha Thank you all! Really! But now: [lucas@jazz ~]:$ cgmailservice cgmailservice: Command not found. >>> >>> Did you install it afterwards? >>> >>> You're running csh, so you should also run "rehash". >>> >>> (By the way, csh traditionally uses % for a prompt so you don't >>> confuse people who look at the $ and think sh/bash!) >>> >>> Chris >> >> [lucas@jazz ~]:$ rehash >> [lucas@jazz ~]:$ cgmailservice >> cgmailservice: Command not found. >> [lucas@jazz ~]:$ >> >> Open another instance of terminal not resolved. >> > > Did you run make install? > > Chris Yes, im also trying this: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/plist-autoplist.html -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iQEcBAEBAgAGBQJQj+HuAAoJEIwYWkMiz4nuYd0H/23Rgfg5OQ+88EpmrrHkjP/l 1Hxg8D6rgnV7dZOyyKLrwQ1lLHHzDWTFveoxhW1iXL1GYTaAAq8PDguFXMRtKvLX psGh1EaasP4UtdSJkamxpdBm3d4s9ubpNSwzVG43XYjzZI/KZCUFBnnGW8RDyFic 8mdjxU8QjM4/cMilV+h4/ZwhTZm27jH+yiq6G7AHVTyJKG8YBSyFZ7TDNeR1swiN Q1Z63L/fRwfoAGHSliEmG+A10jH2JfUywKi6NVdXIEFTeocTnwvR32LIlbvhm9v0 toL9karpSehUhuzljwmAfI24KGPn1aGL01Qex2Z2GHVJ+hjxllrwqpV5ry3q9YY= =JV4P -END PGP SIGNATURE- ___ 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: lib name on LIB_DEPENDS
On 30 October 2012 14:19, Lucas Saliés Brum wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Em 30/10/2012 11:08, Chris Rees escreveu: > >> On 30 October 2012 14:07, Lucas Saliés Brum wrote: >>> >>> -BEGIN PGP SIGNED MESSAGE- >>> Hash: SHA1 >>> >>> Em 30/10/2012 10:43, Chris Rees escreveu: On 30 October 2012 13:40, Lucas Saliés Brum wrote: > Em 30/10/2012 10:34, Ruslan Mahmatkhanov escreveu: >> Lucas Saliés Brum wrote on 30.10.2012 17:25: >>> Em 28/10/2012 15:31, Chris Rees escreveu: Yes, you installed py-feedparser with a different PREFIX somehow :) Use pkg_delete -fx py27-feedparser Once you've done that, you should be able to make your test port without problems. Chris >>> >>> http://paste.sistematico.org/19 >>> How to fix this? >>> >>> Thank you all. >> >> It complains because py-feedparser is not a shared library. It should >> be removed from LIB_DEPENDS and added to BUILD and/or RUN_DEPENDS >> instead. >> > > In some "strange way" it worked!! hahaha > Thank you all! > Really! > > But now: > [lucas@jazz ~]:$ cgmailservice > cgmailservice: Command not found. > Did you install it afterwards? You're running csh, so you should also run "rehash". (By the way, csh traditionally uses % for a prompt so you don't confuse people who look at the $ and think sh/bash!) Chris >>> >>> [lucas@jazz ~]:$ rehash >>> [lucas@jazz ~]:$ cgmailservice >>> cgmailservice: Command not found. >>> [lucas@jazz ~]:$ >>> >>> Open another instance of terminal not resolved. >>> >> >> Did you run make install? >> >> Chris > > Yes, im also trying this: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/plist-autoplist.html OK, so you probably installed to a different PREFIX. Use pkg_delete -f `make -VPKGNAME` and reinstall it without changing PREFIX this time, then run rehash, then it should work. Chris ___ 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: lib name on LIB_DEPENDS
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Em 30/10/2012 11:23, Chris Rees escreveu: > pkg_delete -f `make -VPKGNAME` My fault. cgmailservice is installed. [lucas@jazz ~]:$ cgmailservice cgmailservice: Command not found. [lucas@jazz ~]:$ file /usr/local/bin/cgmailservice /usr/local/bin/cgmailservice: Bourne-Again shell script, ASCII text executable [lucas@jazz ~]:$ cat /usr/local/bin/cgmailservice #!/bin/bash #cGmail - GNOME mail checker # #Copyright 2007-2008 Marco Ferragina #Copyright 2009-2010 cGmail Core Team # #See COPYING - GPLv3 PYTHON="/usr/local/bin/python" PYTHONDIR="/usr/local/share/cgmail" test ${PYTHON:0:1} = "@" && PYTHON=python test ${PYTHONDIR:0:1} = "@" && PYTHONDIR=$(dirname $0) exec ${PYTHON} "$PYTHONDIR/cgmailservice.py" $* ${PYTHON} -c "import gtk.gdk; gtk.gdk.notify_startup_complete()" -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iQEcBAEBAgAGBQJQj+UTAAoJEIwYWkMiz4nuJ3MH/j+dACOkf7991XGB6rN8s70L Lc87RTSoGLBzdVFbfU6uVOsVvAOlW8EGwhqCEoHLlpfeJI2XMcAJfBoDZcrCtrIn 2kPBZ5cIjsziN9Ks25Vnu0jEUgSmn13aMgVzja6VbClEZEx3MHFhezAsvTQRtdhl KTb2kUGIhNue99doeOAu0auJ6LtS5sJk4H5y4ELvU49/DNkYrTaHUF9ZxWW3DUiH LdiBa0mQnDLiVbHGD7YQZRxrj5M4EpW7X7r/D8/YPWNGpHNbWQ703v4qs3ae1461 Zn3sIYDqRU7MUeAnE+gj5AY1twrNAMwxh0TdvCO/V8YU4I9JNLcwBWb+V440vmU= =9Vej -END PGP SIGNATURE- ___ 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: lib name on LIB_DEPENDS
Lucas Saliés Brum wrote on 30.10.2012 18:32: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Em 30/10/2012 11:23, Chris Rees escreveu: pkg_delete -f `make -VPKGNAME` My fault. cgmailservice is installed. [lucas@jazz ~]:$ cgmailservice cgmailservice: Command not found. [lucas@jazz ~]:$ file /usr/local/bin/cgmailservice /usr/local/bin/cgmailservice: Bourne-Again shell script, ASCII text executable [lucas@jazz ~]:$ cat /usr/local/bin/cgmailservice #!/bin/bash should be /usr/local/bin/bash instead and shells/bash should be installed. -- Regards, Ruslan Tinderboxing kills... the drives. ___ 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: lib name on LIB_DEPENDS
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Em 30/10/2012 11:39, Ruslan Mahmatkhanov escreveu: > Lucas Saliés Brum wrote on 30.10.2012 18:32: >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> Em 30/10/2012 11:23, Chris Rees escreveu: >>> pkg_delete -f `make -VPKGNAME` >> >> My fault. >> cgmailservice is installed. >> >> [lucas@jazz ~]:$ cgmailservice >> cgmailservice: Command not found. >> [lucas@jazz ~]:$ file /usr/local/bin/cgmailservice >> /usr/local/bin/cgmailservice: Bourne-Again shell script, ASCII text >> executable >> [lucas@jazz ~]:$ cat /usr/local/bin/cgmailservice >> #!/bin/bash > > should be /usr/local/bin/bash instead and shells/bash should be installed. > Oh! Thank you, but i think i need patch all this files to /usr/local/bin instead /usr/bin bash: /usr/local/bin/cgmail: /bin/bash: bad interpreter: Any hint? -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iQEcBAEBAgAGBQJQj+iZAAoJEIwYWkMiz4nunW4H/2CZfkqJgsxjm4QdLfS8bOjN q2pXJyWjjXji+lubdQJwAHj1tpLpCAVHkAvtkaKlMaxAnuEbvAHirntmfEo+NkFX KQQrSDbhwkKvhtURYmM95bcavJaIyNUESuVCcnBP4Mkph6RlPUaylefOkodZhHcG pnxR2yd6P/8rkMyVIEJdbawrI+FoFGCxHoMwiRL56FskNlX/B+CSDnFzor26IbEU KB3j2KwHOP4s/vCHQwRUFDirQLSFYcY63Nf++s0HUhEKWKEXE3bKcR4YdwgB11Za B5qq6bc6aSBc8uyq3moEiP5CmtUhTWOvkrzb+G3rEF2NjNR92v3B02cT3+5Mq3Q= =VCtU -END PGP SIGNATURE- ___ 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"
FreeBSD Port:lang/v8
Vanilla: Hello, again! :-) It seems that the port lang/v8 still has a little problem. The d8 binary doesn't work properly. At first, I thought it was a bug of v8 and reported it to the v8 developers team. They denied it. See https://code.google.com/p/v8/issues/detail?id=2385 I downloaded v8 3.14.5 source tarball and compiled manually. I compiled the source code with strictaliasing off, but d8 binary still didn't work properly. Then I turned on strictaliasing and uncommented Makefile:98 #werror=no. This time d8 worked. Since the --js_arguments feature is very important, could you please trouble a little updating the port? Thank you! -- B.R. HU Dong ___ 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: Can not compile VIrtualbox 4.1.22
On Tuesday 30 October 2012 2:36:44 AM Mikhail Tsatsenko wrote: > 2012/10/29 Mike Jakubik : > > Hello, > > > > There appears to be a typo of some sort in one of the sed files in the > > port. > > > > Hi, > I am unable to reproduce the problem. > Which version of FreeBSD you are using? Also please show me pkg_info > output and make sure that sources under /usr/src, both userland and > kernel binaries are in sync. > > -- > Mikhail Mikhail, I have build and installed latest releng9, updated ports tree, but still the same error "errmsg.sed line 31: Unmatched [ or [^" FreeBSD freebsd.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Tue Oct 30 12:49:12 EDT 2012 root@freebsd.local:/usr/obj/usr/src/sys/FREEBSD amd64 Giant list of pkg_info is below, the listed VirtualBox was installed via pkg_add -r. I have tried both clang and gcc, but to no surprise, same result. Thanks. --- GeoIP-1.4.8_3 Find the country that any IP address or hostname originates ImageMagick-6.7.9.4 Image processing tools ORBit2-2.14.19 High-performance CORBA ORB with support for the C language OpenEXR-1.7.0 A high dynamic-range (HDR) image file format aalib-1.4.r5_6 ASCII art library akonadi-1.7.2_3 Storage server for KDE-Pim alsa-lib-1.0.26 ALSA compatibility library alsa-plugins-1.0.26 ALSA compatibility library plugins appres-1.0.3Program to list application's resources apr-1.4.6.1.4.1_1 Apache Portability Library ark-4.8.4 Archiving tool for KDE aspell-0.60.6.1_2 Spelling checker with better suggestion logic than ispell atk-2.0.1 A GNOME accessibility toolkit (ATK) atkmm-2.22.5C++ wrapper for ATK API library attica-0.2.9,2 Collaboration Services API library autoconf-2.13.000227_6 Automatically configure source code on many Un*x platforms autoconf-2.69 Automatically configure source code on many Un*x platforms autoconf-wrapper-20101119 Wrapper script for GNU autoconf automake-1.12.4 GNU Standards-compliant Makefile generator automake-1.4.6_6GNU Standards-compliant Makefile generator (legacy 1.4) automake-wrapper-20101119 Wrapper script for GNU automake automoc4-0.9.88_3 Automatic moc for Qt 4 packages avahi-app-0.6.29_3 Service discovery on a local network bash-4.2.37 The GNU Project's Bourne Again SHell bigreqsproto-1.1.1 BigReqs extension headers binutils-2.22_3 GNU binary tools bison-2.5.1,1 A parser generator from FSF, (mostly) compatible with Yacc bitmap-1.0.5Bitmap editor and converter utilities for X bitstream-vera-1.10_5 Bitstream Vera TrueType font collection boehm-gc-7.1Garbage collection and memory leak detection for C and C++ boost-jam-1.48.0Build tool from the boost.org boost-libs-1.48.0_1 Free portable C++ libraries (without Boost.Python) ca_root_nss-3.14The root certificate bundle from the Mozilla Project cabextract-1.4 A program to extract Microsoft cabinet (.CAB) files cagibi-0.2.0KDE SSDP/uPNP proxy cairo-1.10.2_4,2Vector graphics library with cross-device output support cairomm-1.10.0_1C++ interface to cairo cantarell-fonts-0.0.10.1 Cantarell, a Humanist sans-serif font family cdparanoia-3.9.8_9 A CDDA extraction tool (also known as ripper) cdrdao-1.2.3_4 Record CD-R[W]s in disk-at-once mode cdrtools-3.00_2 CD/DVD/BluRay and ISO-9660 image creation and extraction to celt-0.11.3_1 The CELT ultra-low delay audio codec chmlib-0.40 A library for dealing with Microsoft ITSS/CHM format files cln-1.3.2 Class Library for Numbers clucene-0.9.21 CLucene is a C++ port of Lucene cmake-2.8.9 A cross-platform Makefile generator cmake-modules-2.8.9 Modules and Templates for CMake compositeproto-0.4.2 Composite extension headers consolekit-0.4.3Framework for defining and tracking users cups-client-1.5.2_2 Common UNIX Printing System: Library cups cups-image-1.5.2_1 Common UNIX Printing System: Library cupsimage cups-pk-helper-0.0.4_3 A helper that makes system-config-printer use PolicyKit curl-7.24.0_1 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) cuse4bsd-kmod-0.1.26 Cuse4BSD character device loopback driver for userspace cyrus-sasl-2.1.25_2 RFC SASL (Simple Authentication and Security Layer) damageproto-1.2.1 Damage extension headers db41-4.1.25_4 The Berkeley DB package, revision 4.1 db42-4.2.52_5 The Berkeley DB package, revision 4.2 dbus-1.4.14_4 A message bus system for inter-application communication dbus-glib-0.94 GLib bindings for the D-BUS messaging system dconf-0.5.1_4 A configuration database system for GNOME desktop-file-utils-0.18 A couple of command line utilities for working with desktop dev86-0.16.18 Robert de Bath's 8086 development tools djbfft-0.76_2 An extremely fast library for floating-point convolution djvulibre-3.5.25.3_1 DjVu base libraries and utilities dmidecode-2.11 A tool for dumping DMI (SMBIOS) contents in
Re: Can not compile VIrtualbox 4.1.22
2012/10/30 Mike Jakubik : > On Tuesday 30 October 2012 2:36:44 AM Mikhail Tsatsenko wrote: >> 2012/10/29 Mike Jakubik : >> > Hello, >> > >> > There appears to be a typo of some sort in one of the sed files in the >> > port. >> > > >> >> Hi, >> I am unable to reproduce the problem. >> Which version of FreeBSD you are using? Also please show me pkg_info >> output and make sure that sources under /usr/src, both userland and >> kernel binaries are in sync. >> >> -- >> Mikhail > > Mikhail, > > I have build and installed latest releng9, updated ports tree, but still the > same error "errmsg.sed line 31: Unmatched [ or [^" Looks like you have gsed port installed. Try to deinstall it and try again. Let me know if it helps. By the way: next time try avoid sending huge outputs in message body. Instead use pastebin or attachments. -- Mikhail > FreeBSD freebsd.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Tue Oct 30 > 12:49:12 EDT 2012 root@freebsd.local:/usr/obj/usr/src/sys/FREEBSD amd64 > > Giant list of pkg_info is below, the listed VirtualBox was installed via > pkg_add -r. > > I have tried both clang and gcc, but to no surprise, same result. > > Thanks. > > --- > > GeoIP-1.4.8_3 Find the country that any IP address or hostname > originates > ImageMagick-6.7.9.4 Image processing tools > ORBit2-2.14.19 High-performance CORBA ORB with support for the C language > OpenEXR-1.7.0 A high dynamic-range (HDR) image file format > aalib-1.4.r5_6 ASCII art library > akonadi-1.7.2_3 Storage server for KDE-Pim > alsa-lib-1.0.26 ALSA compatibility library > alsa-plugins-1.0.26 ALSA compatibility library plugins > appres-1.0.3Program to list application's resources > apr-1.4.6.1.4.1_1 Apache Portability Library > ark-4.8.4 Archiving tool for KDE > aspell-0.60.6.1_2 Spelling checker with better suggestion logic than ispell > atk-2.0.1 A GNOME accessibility toolkit (ATK) > atkmm-2.22.5C++ wrapper for ATK API library > attica-0.2.9,2 Collaboration Services API library > autoconf-2.13.000227_6 Automatically configure source code on many Un*x > platforms > autoconf-2.69 Automatically configure source code on many Un*x platforms > autoconf-wrapper-20101119 Wrapper script for GNU autoconf > automake-1.12.4 GNU Standards-compliant Makefile generator > automake-1.4.6_6GNU Standards-compliant Makefile generator (legacy 1.4) > automake-wrapper-20101119 Wrapper script for GNU automake > automoc4-0.9.88_3 Automatic moc for Qt 4 packages > avahi-app-0.6.29_3 Service discovery on a local network > bash-4.2.37 The GNU Project's Bourne Again SHell > bigreqsproto-1.1.1 BigReqs extension headers > binutils-2.22_3 GNU binary tools > bison-2.5.1,1 A parser generator from FSF, (mostly) compatible with Yacc > bitmap-1.0.5Bitmap editor and converter utilities for X > bitstream-vera-1.10_5 Bitstream Vera TrueType font collection > boehm-gc-7.1Garbage collection and memory leak detection for C and C++ > boost-jam-1.48.0Build tool from the boost.org > boost-libs-1.48.0_1 Free portable C++ libraries (without Boost.Python) > ca_root_nss-3.14The root certificate bundle from the Mozilla Project > cabextract-1.4 A program to extract Microsoft cabinet (.CAB) files > cagibi-0.2.0KDE SSDP/uPNP proxy > cairo-1.10.2_4,2Vector graphics library with cross-device output support > cairomm-1.10.0_1C++ interface to cairo > cantarell-fonts-0.0.10.1 Cantarell, a Humanist sans-serif font family > cdparanoia-3.9.8_9 A CDDA extraction tool (also known as ripper) > cdrdao-1.2.3_4 Record CD-R[W]s in disk-at-once mode > cdrtools-3.00_2 CD/DVD/BluRay and ISO-9660 image creation and extraction > to > celt-0.11.3_1 The CELT ultra-low delay audio codec > chmlib-0.40 A library for dealing with Microsoft ITSS/CHM format files > cln-1.3.2 Class Library for Numbers > clucene-0.9.21 CLucene is a C++ port of Lucene > cmake-2.8.9 A cross-platform Makefile generator > cmake-modules-2.8.9 Modules and Templates for CMake > compositeproto-0.4.2 Composite extension headers > consolekit-0.4.3Framework for defining and tracking users > cups-client-1.5.2_2 Common UNIX Printing System: Library cups > cups-image-1.5.2_1 Common UNIX Printing System: Library cupsimage > cups-pk-helper-0.0.4_3 A helper that makes system-config-printer use PolicyKit > curl-7.24.0_1 Non-interactive tool to get files from FTP, GOPHER, > HTTP(S) > cuse4bsd-kmod-0.1.26 Cuse4BSD character device loopback driver for userspace > cyrus-sasl-2.1.25_2 RFC SASL (Simple Authentication and Security Layer) > damageproto-1.2.1 Damage extension headers > db41-4.1.25_4 The Berkeley DB package, revision 4.1 > db42-4.2.52_5 The Berkeley DB package, revision 4.2 > dbus-1.4.14_4 A message bus system for inter-application communication > dbus-glib-0.94 GLib bindings for the D-BUS messaging
Re: [Call for Testers] VirtualBox 4.2.4
On Tuesday 30 October 2012 5:16:14 AM Bernhard Fröhlich wrote: > Hi virtualbox users! > > This is again a call for testers to get some feedback before we commit > VirtualBox 4.2 to the portstree. If you already run VirtualBox 4.2.0 you > should definitely update to 4.2.4 because they fixed quite a few serious > bugs upstream. > > Bernhard on behalf of the new VirtualBox on FreeBSD Team! Hello, i have just tried to compile this on an up to date releng9 system. - Base GCC, compiles ok, works ok. - GCC47, fails, due to ugly -fno-format-extensions and -fformat-extensions compiler hacks. - Clang, fails, details are below. Build: Compiling VBoxC - /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src-client/ConsoleImpl.cpp clang++: warning: argument unused during compilation: '-fpermissive' [- Wunused-command-line-argument] In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src-client/ConsoleImpl.cpp:46: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/ConsoleImpl.h:21: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/VirtualBoxBase.h:27: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/string.h:46: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/cpp/ministring.h:32: /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/cpp/list.h:152:39: warning: unused parameter 'p' [-Wunused-parameter] static inline void erase(T2 *p, size_t /* i */) { /* Nothing to do here. */ } ^ In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src-client/ConsoleImpl.cpp:46: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/ConsoleImpl.h:22: /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/array.h:1388:39: warning: indirection of non-volatile null pointer will be deleted, not trap [-Wnull-dereference] AssertReturn(m.arr != NULL, **((const nsID * *)NULL)); ~~^~~~ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/assert.h:600:21: note: expanded from macro 'AssertReturn' return (rc); \ ^ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/array.h:1388:39: note: consider using __builtin_trap() or qualifying pointer with 'volatile' AssertReturn(m.arr != NULL, **((const nsID * *)NULL)); ^ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/assert.h:600:21: note: expanded from macro 'AssertReturn' return (rc); \ ^ In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src-client/ConsoleImpl.cpp:46: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/ConsoleImpl.h:22: /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/array.h:1389:38: warning: indirection of non-volatile null pointer will be deleted, not trap [-Wnull-dereference] AssertReturn(aIdx < size(), **((const nsID * *)NULL)); ~^~~~ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/assert.h:600:21: note: expanded from macro 'AssertReturn' return (rc); \ ^ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/array.h:1389:38: note: consider using __builtin_trap() or qualifying pointer with 'volatile' AssertReturn(aIdx < size(), **((const nsID * *)NULL)); ^ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/iprt/assert.h:600:21: note: expanded from macro 'AssertReturn' return (rc); \ ^ In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src-client/ConsoleImpl.cpp:50: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/GuestImpl.h:26: In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include/GuestCtrlImplPrivate.h:25: /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include/VBox/com/ErrorInfo.h:35:1: warning: struct 'IProgress' was previously declared as a class [-Wmismatched-tags] struct IProgress; ^ /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/VirtualBox_XPCOM.h:17319:20: note: previous use is here class NS_NO_VTABLE IProgress : public nsISupports { ^ /usr/ports/emulators/virtualbox- ose/work/V
Re: Can not compile VIrtualbox 4.1.22
On Tuesday 30 October 2012 1:57:46 PM Mikhail Tsatsenko wrote: > 2012/10/30 Mike Jakubik : > > On Tuesday 30 October 2012 2:36:44 AM Mikhail Tsatsenko wrote: > >> 2012/10/29 Mike Jakubik : > >> > Hello, > >> > > >> > There appears to be a typo of some sort in one of the sed files in the > >> > port. > >> > >> Hi, > >> I am unable to reproduce the problem. > >> Which version of FreeBSD you are using? Also please show me pkg_info > >> output and make sure that sources under /usr/src, both userland and > >> kernel binaries are in sync. > >> > >> Mikhail > > > > Mikhail, > > > > I have build and installed latest releng9, updated ports tree, but still > > the same error "errmsg.sed line 31: Unmatched [ or [^" > > Looks like you have gsed port installed. Try to deinstall it and try > again. Let me know if it helps. > By the way: next time try avoid sending huge outputs in message body. > Instead use pastebin or attachments. I just finished testing the 4.2.4 port, and i had no problems with sed there, its a reasonable assumption that gsed may be the problem, however the port should use the correct sed. Thanks. ___ 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"
Halloween Weekend Sale Get 15% Off this Weekend
Halloween Sale - GET 15% OFF USE COUPON CODE "HALL" Brand New | You Asked for it You Got it ! | 100% Targetted Followers FaceBook Likes | YouTube Views | Twitter Followers : http://promogoons.com/?product=new-100-targeted-followers 100% Targeted Followers : http://promogoons.com/?product=new-100-targeted-followers Get 100% Laser-Targeted Followers . Packages from 1000 to 4000 targeted Followers per month , read more... : http://promogoons.com/?product=new-100-targeted-followers : http://promogoons.com/?product=twitter 10,000 Followers $20 : http://promogoons.com/?product=twitter Get 10,000 Untargeted Followers for just $50 . We can help you jumpstart your twitter account , read more ... : http://promogoons.com/?product=twitter : http://promogoons.com/?product=youtube Real Youtube Views : http://promogoons.com/?product=youtube Need Youtube Views to catch that A&R's eye ? We have 100% Real Views and are Partner Safe, read more... : http://promogoons.com/?product=youtube : http://promogoons.com/?product=facebook FaceBook Likes : http://promogoons.com/?product=facebook Lets face it , who doesnt need more facebook likes ? We have what you need , read more ... : http://promogoons.com/?product=facebook : http://promogoons.com/?product=soundcloud SoundCloud Plays : http://promogoons.com/?product=soundcloud Fast , Economical and Fun, Let Us Help you get more Soundcloud plays , read more... : http://promogoons.com/?product=soundcloud : http://promogoons.com/?product=datpiff-plays DatPiff Streams : http://promogoons.com/?product=datpiff-plays Got A Hot Mixtape on DatPiff ? ? Cant Seem to cut through the wack tapes on the front page ? read more... : http://promogoons.com/?product=datpiff-plays REPEAT CLIENTS GET 15% OFF | USE COUPON CODE "HALL" ON CHECKOUT Promogoons.com : http://promogoons.com | The Major Label's Dirty Little Secret Dave George - 678 508 2941 - sa...@promogoons.com : mailto:sa...@promogoons.com Skype | Yahoo | AIM : Promogoons United Promotions - po box 1526 - atlanta - GA - 30316 Subscribe to this newsletter: https://www.mynewsletterbuilder.com/tools/subscription.php?username=beatsforrappers&send_id=8130586478&l=s&newsletter_id=1411516624 Unsubscribe freebsd-ports@freebsd.org: https://www.mynewsletterbuilder.com/tools/subscription.php?username=beatsforrappers&send_id=8130586478&l=u&email=freebsd-ports@freebsd.org Change your preferences: https://www.mynewsletterbuilder.com/tools/subscription.php?username=beatsforrappers&send_id=8130586478&l=p&email=freebsd-ports@freebsd.org Forward to a friend: https://www.mynewsletterbuilder.com/tools/forward.php?username=beatsforrappers&newsletter_id=1411516624&send_id=8130586478 Report this email as spam: https://www.mynewsletterbuilder.com/tools/abuse_report.php?username=beatsforrappers&send_id=8130586478&email=freebsd-ports@freebsd.org This email was sent using MyNewsletterBuilder.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: [Call for Testers] VirtualBox 4.2.4
Hi! I compiled 4.2.4 on a generic 9.0-RELEASE amd64. It compiled and started, thank you very much! -- p...@opsec.eu+49 171 3101372 8 years to go ! ___ 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: [Call for Testers] VirtualBox 4.2.4
On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik wrote: > On Tuesday 30 October 2012 5:16:14 AM Bernhard Fröhlich wrote: >> Hi virtualbox users! >> >> This is again a call for testers to get some feedback before we commit >> VirtualBox 4.2 to the portstree. If you already run VirtualBox 4.2.0 you >> should definitely update to 4.2.4 because they fixed quite a few serious >> bugs upstream. >> >> Bernhard on behalf of the new VirtualBox on FreeBSD Team! > > > Hello, i have just tried to compile this on an up to date releng9 system. > > - Base GCC, compiles ok, works ok. > > - GCC47, fails, due to ugly -fno-format-extensions and -fformat-extensions > compiler hacks. Patches are welcome but it's not supported from us yet and probably will never be. > - Clang, fails, details are below. Clang does not support global registered variables so it's not supposed to work. -- Bernhard Froehlich http://www.bluelife.at/ ___ 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: [Call for Testers] VirtualBox 4.2.4
On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: > On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik > > Hello, i have just tried to compile this on an up to date releng9 system. > > > > - Base GCC, compiles ok, works ok. > > > > - GCC47, fails, due to ugly -fno-format-extensions and > > -fformat-extensions compiler hacks. > > Patches are welcome but it's not supported from us yet and probably will > never be. Thats a shame, i'll see if i can make it work, though im not an expert in this field. > > > - Clang, fails, details are below. > > Clang does not support global registered variables so it's not supposed to > work. My understanding is that Clang will be the default compiler in FreeBSD 10, how will the port be compiled then? ___ 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: [Call for Testers] VirtualBox 4.2.4
On 30 October 2012 20:05, Mike Jakubik wrote: > On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: >> On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik >> > Hello, i have just tried to compile this on an up to date releng9 system. >> > >> > - Base GCC, compiles ok, works ok. >> > >> > - GCC47, fails, due to ugly -fno-format-extensions and >> > -fformat-extensions compiler hacks. >> >> Patches are welcome but it's not supported from us yet and probably will >> never be. > > Thats a shame, i'll see if i can make it work, though im not an expert in this > field. > >> >> > - Clang, fails, details are below. >> >> Clang does not support global registered variables so it's not supposed to >> work. > > My understanding is that Clang will be the default compiler in FreeBSD 10, how > will the port be compiled then? Default, but not the only compiler :) Chris ___ 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: [Call for Testers] VirtualBox 4.2.4
2012/10/31 Mike Jakubik : > On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: >> On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik >> > Hello, i have just tried to compile this on an up to date releng9 system. >> > >> > - Base GCC, compiles ok, works ok. >> > >> > - GCC47, fails, due to ugly -fno-format-extensions and >> > -fformat-extensions compiler hacks. >> >> Patches are welcome but it's not supported from us yet and probably will >> never be. > > Thats a shame, i'll see if i can make it work, though im not an expert in this > field. > >> >> > - Clang, fails, details are below. >> >> Clang does not support global registered variables so it's not supposed to >> work. > > My understanding is that Clang will be the default compiler in FreeBSD 10, how > will the port be compiled then? VBox port will be using gcc from ports tree (as a build dependency). -- Mikhail > ___ > 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" ___ 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: [Call for Testers] VirtualBox 4.2.4
On Tuesday 30 October 2012 4:24:24 PM Mikhail Tsatsenko wrote: > 2012/10/31 Mike Jakubik : > > On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: > >> On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik > > > > My understanding is that Clang will be the default compiler in FreeBSD > > 10, how will the port be compiled then? > > VBox port will be using gcc from ports tree (as a build dependency). > I see, should it not support an up to date version of gcc then? I dont like the idea of having a dependancy on an obsolete compiler just to compile one port. ___ 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: [Call for Testers] VirtualBox 4.2.4
2012/10/31 Mike Jakubik : > On Tuesday 30 October 2012 4:24:24 PM Mikhail Tsatsenko wrote: >> 2012/10/31 Mike Jakubik : >> > On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: >> >> On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik >> > >> > My understanding is that Clang will be the default compiler in FreeBSD >> > 10, how will the port be compiled then? >> >> VBox port will be using gcc from ports tree (as a build dependency). >> > > I see, should it not support an up to date version of gcc then? I dont like > the idea of having a dependancy on an obsolete compiler just to compile one > port. I am sorry for confusion. But saying gcc from ports tree I meant some day when gcc will be removed from base system. Until it happens (and it will probably not at least in FreeBSD10) VirtualBox will be compiled with gcc 4.2 from base system. -- Mikhail ___ 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: [Call for Testers] VirtualBox 4.2.4
On Tuesday 30 October 2012 4:44:51 PM Mikhail Tsatsenko wrote: > I am sorry for confusion. But saying gcc from ports tree I meant some > day when gcc will be removed from base system. Until it happens (and > it will probably not at least in FreeBSD10) VirtualBox will be > compiled with gcc 4.2 from base system. > No appology necessary, i understand what you mean. My point is, will it require gcc 4.2 from ports, or will it compile with a more up to date version of gcc, such as gcc 4.7. Thanks. ___ 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: [Call for Testers] VirtualBox 4.2.4
On Tuesday 30 October 2012 4:05:06 PM Mike Jakubik wrote: > On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: > > On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik > > > > > Hello, i have just tried to compile this on an up to date releng9 > > > system. > > > > > > - Base GCC, compiles ok, works ok. > > > > > > - GCC47, fails, due to ugly -fno-format-extensions and > > > -fformat-extensions compiler hacks. > > > > Patches are welcome but it's not supported from us yet and probably will > > never be. > > Thats a shame, i'll see if i can make it work, though im not an expert in > this field. This was apprantly already discussed by others two years ago. http://lists.freebsd.org/pipermail/freebsd-emulation/2010-July/007873.html I've modified Config.kmk to exclude those FreeBSD custom compiler options and it continued to compile. Unforntunately it did fail again but for a different reason, it seems like getting this to work with an up to date version of gcc wouldnt be too hard by someone who knew what they were doing. --- kBuild: Compiling VBoxSVC - /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp In file included from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp:44:0: /usr/include/cam/cam.h:261:39: error: 'FILE' has not been declared In file included from /usr/include/cam/cam_ccb.h:42:0, from /usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp:45: /usr/include/cam/scsi/scsi_all.h:2183:31: error: 'FILE' has not been declared /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp: In function 'int getDVDInfoFromCAM(DriveInfoList*, bool*)': /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp:254:122: warning: invalid conversion from 'int' to 'periph_pattern_flags' [-fpermissive] /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp: At global scope: /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.2.4/src/VBox/Main/src- server/freebsd/HostHardwareFreeBSD.cpp:337:12: warning: unused parameter 'isDVD' [-Wunused-parameter] kmk: *** [/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/obj/VBoxSVC/src- server/freebsd/HostHardwareFreeBSD.o] Error 1 The failing command: @g++47 -c -O2 -g -pipe -pedantic -Wshadow -Wshadow -Wall -Wextra -Wno-missing- field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno- long-long -Wno-long-long -Wno-delete-non-virtual-dtor -Wno-variadic-macros - Wno-long-long -Wno-non-virtual-dtor -Wshadow -fshort-wchar -fpermissive - fexceptions -frtti -O2 -mtune=generic -fno-omit-frame-pointer -fno-strict- aliasing -fvisibility-inlines-hidden -fvisibility=hidden - DVBOX_HAVE_VISIBILITY_HIDDEN -DRT_USE_VISIBILITY_DEFAULT -g -pipe -pedantic - Wshadow -Wshadow -Wall -Wextra -Wno-missing-field-initializers -Wno-trigraphs - fdiagnostics-show-option -Wno-long-long -Wno-long-long -Wno-delete-non- virtual-dtor -Wno-variadic-macros -Wno-long-long -Wno-non-virtual-dtor - Wshadow -fshort-wchar -fpermissive -fexceptions -frtti -O2 -mtune=generic - fno-omit-frame-pointer -fno-strict-aliasing -fvisibility-inlines-hidden - fvisibility=hidden -DVBOX_HAVE_VISIBILITY_HIDDEN -DRT_USE_VISIBILITY_DEFAULT - m64 -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/src/VBox/Main/include - I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/obj/VBoxSVC - I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/obj/Main/ - I/usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.2.4/src/VBox/Main - I/usr/include -I/usr/X11R6/include -I/usr/local/include - I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/xpcom -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/string -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/xpcom -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/nsprpub -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release/bin/sdk/bindings/xpcom/include/ipcd -I/usr/local/include/libpng -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/include -I/usr/ports/emulators/virtualbox- ose/work/VirtualBox-4.2.4/out/freebsd.amd64/release -DVBOX - DVBOX_WITH_DEBUGGER -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS - DVBOX_WITH_HARDENING -DRT_OS_FREEBS
Re: [Call for Testers] VirtualBox 4.2.4
On Tue, Oct 30, 2012 at 10:04 PM, Mike Jakubik wrote: > On Tuesday 30 October 2012 4:05:06 PM Mike Jakubik wrote: >> On Tuesday 30 October 2012 3:56:29 PM Bernhard Fröhlich wrote: >> > On Tue, Oct 30, 2012 at 8:12 PM, Mike Jakubik >> > >> > > Hello, i have just tried to compile this on an up to date releng9 >> > > system. >> > > >> > > - Base GCC, compiles ok, works ok. >> > > >> > > - GCC47, fails, due to ugly -fno-format-extensions and >> > > -fformat-extensions compiler hacks. >> > >> > Patches are welcome but it's not supported from us yet and probably will >> > never be. >> >> Thats a shame, i'll see if i can make it work, though im not an expert in >> this field. Default compiler for 10.0 will be CLANG from base but gcc 4.2 will still be in base so we should be able to use that without additional work. That should give us at least one more release cycle if we need it. > This was apprantly already discussed by others two years ago. > > http://lists.freebsd.org/pipermail/freebsd-emulation/2010-July/007873.html > > I've modified Config.kmk to exclude those FreeBSD custom compiler options and > it > continued to compile. Unforntunately it did fail again but for a different > reason, it seems like getting this to work with an up to date version of gcc > wouldnt be too hard by someone who knew what they were doing. Andriy Gapon has some more recent patches for an older vbox version that also work with gcc 4.6: http://people.freebsd.org/~avg/vbox4-gcc45.patch -- Bernhard Froehlich http://www.bluelife.at/ ___ 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: [Call for Testers] VirtualBox 4.2.4
On Oct 30, 2012, at 15:56, Bernhard Fröhlich wrote: > Clang does not support global registered variables so it's not supposed to > work. Is this a feature? Is there a reason why clang couldn't be updated to support this if actual software is using it? ___ 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"