Re: Error after upgrading to php 5.4.6

2012-09-04 Thread Bas Smeelen

On 09/04/2012 04:18 AM, Michael Powell wrote:

Paul Macdonald wrote:


On 03/09/2012 12:26, Darrell Betts wrote:

My php pages will no longer render in a web browser after upgrading to
php 5.4.6. Used port upgrade to do this. Running apache 2.2.22_6. Checked
the error log and this is what I receive

[notice] child pid 38232 exit signal Segmentation fault (11)

This does this on all php pages.
Any idea how to fix this error?

[snip]

try editing your /usr/local/etc/php/extensions.ini, comment out all
extensions (restart apache) and see if it stops seg faulting.
If it works, add in the modules one by one until it stops.

Previously i've seen people posting about the order being important


Some while back I thought portupgrading PHP caused the extensions.ini to be
edited after each and every extension rebuild/reinstall, causing a shuffle
like effect. Since I do a backup before, including all configs, I got into
the habit of just copying my old extensions.ini back into place afterwards
prior to restarting PHP and/or web servers.

-Mike
  
Well with pkg_delete -f php5\* , removing all of php's config files in 
/usr/local/etc (keeping a backup of course) and then installing php-5.4.6 
extensions resolved the problem. It does not happen too often that this goes 
wrong, but somehow php can be troublesome at times.


Thanks
Bas



Disclaimer: http://www.ose.nl/email

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


Re: Error after upgrading to php 5.4.6

2012-09-04 Thread Bas Smeelen

On 09/04/2012 04:18 AM, Michael Powell wrote:

Paul Macdonald wrote:


On 03/09/2012 12:26, Darrell Betts wrote:

My php pages will no longer render in a web browser after upgrading to
php 5.4.6. Used port upgrade to do this. Running apache 2.2.22_6. Checked
the error log and this is what I receive

[notice] child pid 38232 exit signal Segmentation fault (11)

This does this on all php pages.
Any idea how to fix this error?

[snip]

try editing your /usr/local/etc/php/extensions.ini, comment out all
extensions (restart apache) and see if it stops seg faulting.
If it works, add in the modules one by one until it stops.

Previously i've seen people posting about the order being important


Some while back I thought portupgrading PHP caused the extensions.ini to be
edited after each and every extension rebuild/reinstall, causing a shuffle
like effect. Since I do a backup before, including all configs, I got into
the habit of just copying my old extensions.ini back into place afterwards
prior to restarting PHP and/or web servers.

-Mike



My previous response was sent too early :(

I still get errors in apache
[Tue Sep 04 08:14:42 2012] [error] [client 192.168.1.189] PHP Warning: 
Unknown: Unable to allocate memory for pool. in Unknown on line 0, referer: 
http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=21
[Tue Sep 04 08:14:43 2012] [notice] child pid 56172 exit signal Segmentation 
fault (11)
[Tue Sep 04 08:14:43 2012] [notice] child pid 56163 exit signal Segmentation 
fault (11)
[Tue Sep 04 08:14:53 2012] [error] [client 192.168.1.189] PHP Warning: 
Unknown: Unable to allocate memory for pool. in Unknown on line 0, referer: 
http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=7
[Tue Sep 04 08:15:59 2012] [notice] child pid 56169 exit signal Segmentation 
fault (11)


So now I will comment out all extensions and start investigating.
Well it turns out to be apc.so, this comes with core php I guess?
For completeness: The php manual states this is for alternative php cache.
http://php.net/manual/en/book.apc.php

With apc.so commented out and testing with cacti and mediawiki all seems to 
go well. My extensions.ini follows below


extension=pdf.so
extension=imagick.so
;extension=apc.so
extension=hash.so
extension=phar.so
extension=zip.so
extension=zlib.so
extension=iconv.so
extension=mysql.so
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite3.so
extension=json.so
extension=tokenizer.so
extension=filter.so
extension=posix.so
extension=ctype.so
extension=dom.so
extension=simplexml.so
extension=xml.so
extension=xmlreader.so
extension=xmlwriter.so
extension=session.so




Disclaimer: http://www.ose.nl/email

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


Re: Error after upgrading to php 5.4.6

2012-09-04 Thread Michael Powell
Bas Smeelen wrote:

[snip]
 
 My previous response was sent too early :(
 
 I still get errors in apache
 [Tue Sep 04 08:14:42 2012] [error] [client 192.168.1.189] PHP Warning:
 Unknown: Unable to allocate memory for pool. in Unknown on line 0,
 referer:
 http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=21
 [Tue Sep 04 08:14:43 2012] [notice] child pid 56172 exit signal
 [Segmentation
 fault (11)
 [Tue Sep 04 08:14:43 2012] [notice] child pid 56163 exit signal
 [Segmentation
 fault (11)
 [Tue Sep 04 08:14:53 2012] [error] [client 192.168.1.189] PHP Warning:
 Unknown: Unable to allocate memory for pool. in Unknown on line 0,
 referer:
 http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=7
 [Tue Sep 04 08:15:59 2012] [notice] child pid 56169 exit signal
 [Segmentation
 fault (11)
 
 So now I will comment out all extensions and start investigating.
 Well it turns out to be apc.so, this comes with core php I guess?
 For completeness: The php manual states this is for alternative php cache.
 http://php.net/manual/en/book.apc.php

I use xcache. However, whenever I rebuild PHP I also rebuild xcache. 
Sometimes when the change is very small you may get away with not doing it, 
but whenever updating between major versions it is a must. I had this happen 
one time too many and just got into the habit of whenever I rebuild/update 
PHP I rebuild xcache as well. I believe it pulls in includes form PHP during 
it's build process so if PHP changes too much xcache will segfault, or just 
outright refuse to load.
 
[snip]

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


asking for help about acpi_tz0: _CRT value is absurd, ignored (256.0C)

2012-09-04 Thread chiehhan
To whom may concern,

I am a greenhorn in the field of freebsd.And when I install Freebsd9.0 on my 
laptop HP NX6330,a control spam acpi_tz0: _CRT value is absurd, ignored 
(256.0C)occurs.

I learned some reference about sysctl and revised the configure file 
sysctl.conf,adding two lines below into sysctl.conf:
hw.acpi.thermal.user_override=1 
hw.acpi.thermal.tz0._CRT=110.0C 
but the control spam remains.

I read the source code about acpi_thermal.c,but still have no idea about how to 
solve this problem.I am a little desperated and turn 
freebsd-questions@freebsd.org for help.Would you please send me a solution? 

My dmesg is belows,
Copyright (c) 1992-2012 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:15:25 UTC 2012
r...@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386
CPU: Intel(R) Core(TM)2 CPU T5600  @ 1.83GHz (1828.79-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x6f6  Family = 6  Model = f  Stepping = 6
  
Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE
  Features2=0xe3bdSSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM
  AMD Features=0x2010NX,LM
  AMD Features2=0x1LAHF
  TSC: P-state invariant, performance statistics
real memory  = 1610612736 (1536 MB)
avail memory = 1558929408 (1486 MB)
Event timer LAPIC quality 400
ACPI APIC Table: HP 3021
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s)
cpu0 (BSP): APIC ID:  0
cpu1 (AP): APIC ID:  1
ioapic0: Changing APIC ID to 1
ioapic0 Version 2.0 irqs 0-23 on motherboard
kbd1 at kbdmux0
acpi0: HPQOEM SLIC-MPC on motherboard
acpi0: Power Button (fixed)
acpi0: reservation of 0, a (3) failed
acpi0: reservation of 10, 5ff0 (3) failed
Timecounter ACPI-fast frequency 3579545 Hz quality 900
acpi_timer0: 24-bit timer at 3.579545MHz port 0x1008-0x100b on acpi0
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
acpi_ec0: Embedded Controller: GPE 0x16 port 0x62,0x66 on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pcib0: Length mismatch for 3 range: 11ff000 vs 11fefff
pci0: ACPI PCI bus on pcib0
pcib1: ACPI PCI-PCI bridge irq 16 at device 1.0 on pci0
pci1: ACPI PCI bus on pcib1
vgapci0: VGA-compatible display port 0x4000-0x40ff mem 
0xd800-0xdfff,0xe440-0xe440 irq 16 at device 0.0 on pci1
hdac0: Intel 82801G High Definition Audio Controller mem 
0xe450-0xe4503fff irq 16 at device 27.0 on pci0
pcib2: ACPI PCI-PCI bridge irq 16 at device 28.0 on pci0
pci8: ACPI PCI bus on pcib2
pcib3: ACPI PCI-PCI bridge irq 17 at device 28.1 on pci0
pci16: ACPI PCI bus on pcib3
wpi0: Intel(R) PRO/Wireless 3945ABG mem 0xe400-0xe4000fff irq 17 at 
device 0.0 on pci16
pcib4: ACPI PCI-PCI bridge irq 19 at device 28.3 on pci0
pci32: ACPI PCI bus on pcib4
uhci0: Intel 82801G (ICH7) USB controller USB-A port 0x5000-0x501f irq 20 at 
device 29.0 on pci0
uhci0: LegSup = 0x2f00
usbus0: Intel 82801G (ICH7) USB controller USB-A on uhci0
uhci1: Intel 82801G (ICH7) USB controller USB-B port 0x5020-0x503f irq 21 at 
device 29.1 on pci0
uhci1: LegSup = 0x2f00
usbus1: Intel 82801G (ICH7) USB controller USB-B on uhci1
uhci2: Intel 82801G (ICH7) USB controller USB-C port 0x5040-0x505f irq 18 at 
device 29.2 on pci0
uhci2: LegSup = 0x2f00
usbus2: Intel 82801G (ICH7) USB controller USB-C on uhci2
uhci3: Intel 82801G (ICH7) USB controller USB-D port 0x5060-0x507f irq 19 at 
device 29.3 on pci0
uhci3: LegSup = 0x2f00
usbus3: Intel 82801G (ICH7) USB controller USB-D on uhci3
ehci0: Intel 82801GB/R (ICH7) USB 2.0 controller mem 0xe4504000-0xe45043ff 
irq 20 at device 29.7 on pci0
usbus4: EHCI version 1.0
usbus4: Intel 82801GB/R (ICH7) USB 2.0 controller on ehci0
pcib5: ACPI PCI-PCI bridge at device 30.0 on pci0
pci2: ACPI PCI bus on pcib5
cbb0: PCI-CardBus Bridge mem 0xe410-0xe4100fff irq 18 at device 6.0 on 
pci2
cardbus0: CardBus bus on cbb0
pccard0: 16-bit PCCard bus on cbb0
pci2: mass storage at device 6.2 (no driver attached)
pci2: base peripheral, SD host controller at device 6.3 (no driver attached)
pci2: simple comms at device 6.4 (no driver attached)
bge0: Broadcom NetXtreme Gigabit Ethernet Controller, ASIC rev. 0x003003 mem 
0xe411-0xe411 irq 16 at device 14.0 on pci2
bge0: CHIP ID 0x3003; ASIC REV 0x03; CHIP REV 0x30; PCI
miibus0: MII bus on bge0
brgphy0: BCM5705 1000BASE-T media interface PHY 1 on miibus0
brgphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 
1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow
bge0: Ethernet address: 00:17:08:49:6c:e8
isab0: PCI-ISA bridge at device 31.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel ICH7M SATA150 controller port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x5080-0x508f 

Re: [solved]: to move csup 90 to subversion 91rc

2012-09-04 Thread Robert Huff

Darrel writes:

  Also, on my amd64 kernel I had to remove 'device atapicam'.
  
  The failed kernel build might be a bug, perhaps I should file a
  report.

As far as I know, this is completely unrelated to
subversion/c(v)sup.  Please check for other issues.


Robert Huff


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


SOLVED: Re: Error after upgrading to php 5.4.6

2012-09-04 Thread Bas Smeelen

On 09/04/2012 09:02 AM, Michael Powell wrote:

Bas Smeelen wrote:

[snip]

My previous response was sent too early :(

I still get errors in apache
[Tue Sep 04 08:14:42 2012] [error] [client 192.168.1.189] PHP Warning:
Unknown: Unable to allocate memory for pool. in Unknown on line 0,
referer:
http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=21
[Tue Sep 04 08:14:43 2012] [notice] child pid 56172 exit signal
[Segmentation
fault (11)
[snip]

Well it turns out to be apc.so, this comes with core php I guess?
  
[snip]
I have found that the faults are present because www/pecl-APC was not 
recompiled/reinstalled.
So I reinstalled www/pecl-APC with portmaster -f and this also reinstalled 
the following ports:

Re-install pecl-APC-3.1.12
Re-install autoconf-2.69
Re-install autoconf-wrapper-20101119
Re-install gmake-3.82_1
Re-install gettext-0.18.1.1
Re-install libiconv-1.14
Re-install libtool-2.4.2
Re-install m4-1.4.16_1,1
Re-install perl-5.12.4_4
Re-install help2man-1.40.11
Re-install p5-Locale-gettext-1.05_3
Re-install php5-5.4.6
Re-install pcre-8.31
Re-install pkgconf-0.8.7_2
Re-install libxml2-2.7.8_3
Re-install apache-2.2.22_6
Re-install apr-ipv6-devrandom-gdbm-db42-1.4.5.1.3.12_1
Re-install db42-4.2.52_5
Re-install gdbm-1.9.1
Re-install automake-1.12.3
Re-install automake-wrapper-20101119
Re-install python27-2.7.3_3
Re-install expat-2.0.1_2

There is nothing about this in UPDATING, should there?
This solved the problem anyway.

Bas


Disclaimer: http://www.ose.nl/email

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


portsnap Generating a Bad file descriptor Error Message

2012-09-04 Thread Pierre-Luc Drouin
Hi,

so I have been having problems using portsnap lately. I always get a Bad
file descriptor message when trying using it on one of my i386 machine:

Looking up portsnap5.freebsd.org mirrors... none found.
Fetching snapshot tag from portsnap5.freebsd.org... done.
Fetching snapshot metadata... done.
Fetching snapshot generated at Mon Sep  3 20:04:44 EDT 2012:
86abb3c6f24b24e7fdadda42805f9ae38f487177dcb949  0% of   67 MB0  Bps
fetch:
http://portsnap5.freebsd.org/s/86abb3c6f24b24e7fdadda42805f9ae38f487177dcb9493f5e0cb4f792490b2f.tgz:
Bad file descriptor
fetch:
86abb3c6f24b24e7fdadda42805f9ae38f487177dcb9493f5e0cb4f792490b2f.tgz: Bad
file descriptor

I tried fsck -y the /var, /tmp and /usr partitions and everything seems
fine. What could the problem be?

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


SOLVED: Re: Error after upgrading to php 5.4.6

2012-09-04 Thread Bas Smeelen

On 09/04/2012 09:02 AM, Michael Powell wrote:

Bas Smeelen wrote:

[snip]

My previous response was sent too early :(

I still get errors in apache
[Tue Sep 04 08:14:42 2012] [error] [client 192.168.1.189] PHP Warning:
Unknown: Unable to allocate memory for pool. in Unknown on line 0,
referer:
http://sys.ose.nl/cacti/graph_view.php?action=treetree_id=1leaf_id=21
[Tue Sep 04 08:14:43 2012] [notice] child pid 56172 exit signal
[Segmentation
fault (11)
[snip]

Well it turns out to be apc.so, this comes with core php I guess?

[snip]


Sorry, this just delays the error but it eventually comes back so I'll keep 
apc.so commented.



I have found that the faults are present because www/pecl-APC was not 
recompiled/reinstalled.
So I reinstalled www/pecl-APC with portmaster -f and this also reinstalled 
the following ports:

Re-install pecl-APC-3.1.12
Re-install autoconf-2.69
Re-install autoconf-wrapper-20101119
Re-install gmake-3.82_1
Re-install gettext-0.18.1.1
Re-install libiconv-1.14
Re-install libtool-2.4.2
Re-install m4-1.4.16_1,1
Re-install perl-5.12.4_4
Re-install help2man-1.40.11
Re-install p5-Locale-gettext-1.05_3
Re-install php5-5.4.6
Re-install pcre-8.31
Re-install pkgconf-0.8.7_2
Re-install libxml2-2.7.8_3
Re-install apache-2.2.22_6
Re-install apr-ipv6-devrandom-gdbm-db42-1.4.5.1.3.12_1
Re-install db42-4.2.52_5
Re-install gdbm-1.9.1
Re-install automake-1.12.3
Re-install automake-wrapper-20101119
Re-install python27-2.7.3_3
Re-install expat-2.0.1_2

There is nothing about this in UPDATING, should there?
This solved the problem anyway.

Bas


Disclaimer: http://www.ose.nl/email

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


Aos meus amigos e aos amigos de meus amigos.

2012-09-04 Thread Walton Carpes
Quando a gente vota, escolhe os candidatos que irão nos representar na busca do 
Bem Comum, que todos nós buscamos.Competência, seriedade, comportamento ético e 
dignidade são qualidades que, embora raras, todos os políticos deviam ter. Mas 
infelizmente nem todos têm.Por isso, vou votar num político que sei que, além 
de cultivar e praticar esses valores, é coerente com eles e trabalha muito, 
mesmo.Trata-se do JOÃO CARLOS NEDEL – 11633, o vereador que mais trabalha o 
dia-a-dia da cidade.Para saber a razão da minha escolha, clique aqui.Depois 
disso, repasse este e-mail a seus amigos e conhecidos, para que também eles 
possam valorizar os seus votos, votando emJOÃO CARLOS NEDEL nº 11633 Um grande 
abraço. Walton Carpes 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Firefox install problem

2012-09-04 Thread Mario Lobo
Hi;

env:
FBSD 8.3-STABLE AMD64
Firefox 15 port

The problem seems to be with the porting itself.

The first problem showed up during configure. Libvpx could not be found and
configure stops.
After examining Config.Log, I found  a compiler switch like this:

-L/usr/local/lib/nss

I made a symlink there to libvpx.so and the port compiled without errors.

Then after issuing a make install, this comes up everytime:

[Snip]
a ./searchplugins/yahoo.xml
a ./dictionaries/en-US.aff
a ./dictionaries/en-US.dic
a ./defaults/pref
a ./defaults/pref/channel-prefs.js
a ./chrome/icons
a ./chrome/icons/default
a ./chrome/icons/default/default16.png
a ./chrome/icons/default/default32.png
a ./chrome/icons/default/default48.png
/usr/ports/www/firefox/work/mozilla-release/config/nsinstall -D
/usr/ports/www/firefox/work/fake/bin
rm -f -f /usr/ports/www/firefox/work/fake/bin/firefox
ln -s /usr/ports/www/firefox/work/fake/lib/firefox/firefox
/usr/ports/www/firefox/work/fake/bin
gmake[1]: Leaving directory
`/usr/ports/www/firefox/work/mozilla-release/browser/installer'
echo 'share/applications/firefox.desktop' 
/usr/ports/www/firefox/work/plist_files
echo @dirrmtry share/applications 
/usr/ports/www/firefox/work/plist_dirs
echo 'share/pixmaps/firefox.png'  /usr/ports/www/firefox/work/plist_files
/bin/mkdir -p /usr/ports/www/firefox/work/fake/libdata
/bin/mv -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
/usr/ports/www/firefox/work/fake/libdata/ || true
mv: rename /usr/ports/www/firefox/work/fake/lib/pkgconfig to
/usr/ports/www/firefox/work/fake/libdata/pkgconfig: No such file or
directory
/bin/rm -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
cd: can't cd to /usr/ports/www/firefox/work/fake/include
*** Error code 2

Stop in /usr/ports/www/firefox.
*** Error code 1

Stop in /usr/ports/www/firefox.

All the fixes I googled that could relate to this, date back to 2005 the
latest,, and none of them helped.

I've been trying to fix this for 2 days now and I'm not getting anywhere so
I can only hope someone can shed a light on this problem here on the list..

My sincere thanks to whoever points me a direction.

-- 
Mario Lobo
http://www.mallavoodoo.com.br
FreeBSD since version 2.2.8 [not Pro-Audio YET!!] (99,7% winfoes FREE)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Error with Coretemp

2012-09-04 Thread Maxim Galkin

Hello, my name is Maxim. Can u help me with my question?
I want to know the temperature of the CPU with the values ​​of sysctl.
The command sysctl-a | grep tempe ... any results

I rebuilt the kernel with the remark:
device coretemp

just trying to add a module with kldload.


# kldstat
May 1 0xc040 b65944 kernel
February 1 0xc0f66000 22d0 accf_http.ko
March 1 0xc0f69000 30d4 coretemp.ko

Anyway sysctl s not display temperature.

My CPU:
Intel(R) Pentium(R) 4 CPU 1.4GHz (1400.09-Mhz 686-class CPU)



Waiting for an answer, thanks in advance.
Galkin M. ___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Firefox install problem

2012-09-04 Thread Alexander Kapshuk

On 09/04/2012 08:11 PM, Mario Lobo wrote:

/bin/mv -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
/usr/ports/www/firefox/work/fake/libdata/  || true
mv: rename /usr/ports/www/firefox/work/fake/lib/pkgconfig to
/usr/ports/www/firefox/work/fake/libdata/pkgconfig: No such file or
directory
/bin/rm -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
   

This might help...

/usr/ports/UPDATING

20120726:
  AFFECTS: users of devel/pkg-config
  AUTHOR: b...@freebsd.org

  devel/pkg-config has been replaced by devel/pkgconf

  # portmaster -o devel/pkgconf devel/pkg-config
  or
  # portupgrade -fo devel/pkgconf pkg-config-\*

  pkgng:
  # pkg set -o devel/pkg-config:devel/pkgconf
  # pkg install -f devel/pkgconf

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


Re: Error with Coretemp

2012-09-04 Thread Warren Block

On Tue, 4 Sep 2012, Maxim Galkin wrote:



Hello, my name is Maxim. Can u help me with my question?
I want to know the temperature of the CPU with the values ??of sysctl.
The command sysctl-a | grep tempe ... any results

I rebuilt the kernel with the remark:
device coretemp

just trying to add a module with kldload.


# kldstat
May 1 0xc040 b65944 kernel
February 1 0xc0f66000 22d0 accf_http.ko
March 1 0xc0f69000 30d4 coretemp.ko

Anyway sysctl s not display temperature.

My CPU:
Intel(R) Pentium(R) 4 CPU 1.4GHz (1400.09-Mhz 686-class CPU)



From coretemp(4):


  The coretemp driver provides support for the on-die digital thermal
   sensor present in Intel Core and newer CPUs.

So the Pentium 4 is too old to be supported by that driver. 
sysutils/mbmon might work.  Some P4 systems might not have accessible 
temperature monitoring.

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


FreeBsd modules

2012-09-04 Thread Brian Stivala
Hi,



I have a watchguard firewall v80 which I’ve decided to amend it to PFSense
based on freebsd. So far I’ve installed PFSense and everything is working
accordingly. This firewall has 2x onboard nic cards and a PCI quad nic, as
per attached photo.



The onboard nics can be recognized however the PCI card is not being
recognised, and the strange thing is that both onboard and the PCI uses the
same chipset Intel 82559er Ethernet. How can I amend changes in freebsd
modules so that the PCI card can be recognised.



Usually in other distros modules can be located in /etc/module however I
cannot find where the modules are located in freebsd.



Can I have some assistance.





Regards,

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

Re: Firefox install problem

2012-09-04 Thread Mario Lobo
2012/9/4 Alexander Kapshuk alexander.kaps...@gmail.com


  This might help...

 /usr/ports/UPDATING

 20120726:
   AFFECTS: users of devel/pkg-config
   AUTHOR: b...@freebsd.org

   devel/pkg-config has been replaced by devel/pkgconf

   # portmaster -o devel/pkgconf devel/pkg-config
   or
   # portupgrade -fo devel/pkgconf pkg-config-\*

   pkgng:
   # pkg set -o devel/pkg-config:devel/pkgconf
   # pkg install -f devel/pkgconf



Thank Alexander but been there, done that.

pkg_info | grep pkg
pkgconf-0.8.7 pkg-config compatible utility which does not depend on glib

-- 
Mario Lobo
http://www.mallavoodoo.com.br
FreeBSD since version 2.2.8 [not Pro-Audio YET!!] (99,7% winfoes FREE)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Firefox install problem

2012-09-04 Thread Alexander Kapshuk

On 09/04/2012 10:29 PM, Mario Lobo wrote:

Thank Alexander but been there, done that.

pkg_info | grep pkg
pkgconf-0.8.7 pkg-config compatible utility which does not depend on glib


Hopefully, somebody else on the list will be of more help than I have been.

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


Re: portsnap Generating a Bad file descriptor Error Message

2012-09-04 Thread Jamie Paul Griffin
[ Pierre-Luc Drouin wrote on Tue  4.Sep'12 at 10:14:18 -0400 ]

 Hi,
 
 so I have been having problems using portsnap lately. I always get a Bad
 file descriptor message when trying using it on one of my i386 machine:
 
 Looking up portsnap5.freebsd.org mirrors... none found.
 Fetching snapshot tag from portsnap5.freebsd.org... done.
 Fetching snapshot metadata... done.
 Fetching snapshot generated at Mon Sep  3 20:04:44 EDT 2012:
 86abb3c6f24b24e7fdadda42805f9ae38f487177dcb949  0% of   67 MB0  Bps
 fetch:
 http://portsnap5.freebsd.org/s/86abb3c6f24b24e7fdadda42805f9ae38f487177dcb9493f5e0cb4f792490b2f.tgz:
 Bad file descriptor
 fetch:
 86abb3c6f24b24e7fdadda42805f9ae38f487177dcb9493f5e0cb4f792490b2f.tgz: Bad
 file descriptor
 
 I tried fsck -y the /var, /tmp and /usr partitions and everything seems
 fine. What could the problem be?
 
I'm not getting that error but I am getting these:

sort: write failed: standard output: Broken pipe
sort: write error

Unrelated i'd imagine but seems portsnap has some issues?

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


Re: Error with Coretemp

2012-09-04 Thread Polytropon
On Tue, 4 Sep 2012 13:17:21 -0600 (MDT), Warren Block wrote:
 On Tue, 4 Sep 2012, Maxim Galkin wrote:
 
 
  Hello, my name is Maxim. Can u help me with my question?
  I want to know the temperature of the CPU with the values ??of sysctl.
  The command sysctl-a | grep tempe ... any results
 
  I rebuilt the kernel with the remark:
  device coretemp
 
  just trying to add a module with kldload.
 
 
  # kldstat
  May 1 0xc040 b65944 kernel
  February 1 0xc0f66000 22d0 accf_http.ko
  March 1 0xc0f69000 30d4 coretemp.ko
 
  Anyway sysctl s not display temperature.
 
  My CPU:
  Intel(R) Pentium(R) 4 CPU 1.4GHz (1400.09-Mhz 686-class CPU)
 
 From coretemp(4):
 
The coretemp driver provides support for the on-die digital thermal
 sensor present in Intel Core and newer CPUs.
 
 So the Pentium 4 is too old to be supported by that driver. 
 sysutils/mbmon might work.  Some P4 systems might not have accessible 
 temperature monitoring.

I've successfully been monitoring CPU temp with a Intel Pentium 4
processor on FreeBSD 5 and 7, using xmbmon and some kernel configuration
tweaks, such as the inclusion of:

device smbus
device iicbus
device iicsmb
device iicbb
device iic

With xmbmon, temperatures could then be queried.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBsd modules

2012-09-04 Thread Matthew Seaman
On 04/09/2012 19:33, Brian Stivala wrote:
 I have a watchguard firewall v80 which I’ve decided to amend it to PFSense
 based on freebsd. So far I’ve installed PFSense and everything is working
 accordingly. This firewall has 2x onboard nic cards and a PCI quad nic, as
 per attached photo.

Unfortunately the list management software ate your photo, but never
mind.  Your verbal description is sufficient.

 The onboard nics can be recognized however the PCI card is not being
 recognised, and the strange thing is that both onboard and the PCI uses the
 same chipset Intel 82559er Ethernet. How can I amend changes in freebsd
 modules so that the PCI card can be recognised.

There may be a good reason for your quad card not being recognised, or
it might just be a bug.

If you run:

   % pciconf -lv

You should be able to pick out your unrecognised device.  If you ask
again on freebsd-...@freebsd.org and include relevant sections from
the pciconf output, you should get to the attention of some of the guys
that write network drivers.

 Usually in other distros modules can be located in /etc/module however I
 cannot find where the modules are located in freebsd.

Verb Sap.  Calling FreeBSD a 'distro' is definitely non-U.  We generally
consider penguins a bit fishy round here...

If you want to locate the kernel modules for various hardware, look in
/boot/kernel.  NIC modules will generally have a name beginning 'if_'.

If you want to see what modules have been loaded into the kernel, then
run:

% kldstat

There's also 'kldload' and 'kldunload' but they aren't going to help you
for this problem.  PCI devices are discovered when the kernel probes the
bus at boot time: if the kernel hasn't already assigned a driver for the
device, then there isn't one available.

 Can I have some assistance.

Keeps asking good questions and you'll get useful answers.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Snmpd.conf and own OIDs

2012-09-04 Thread Maxim Galkin

Guys, please help.
Before us is a challenge, there is a script that rake the value. Furthermore, 
this value should be placed in any OID or create your own Object Identificator 
(OID) for example: 1.3.6.h.h.h.h.h. To then get this OID with snmpwalk / 
snmpget on a remote computer.
read a lot of information, but have not found a concrete example ...

My OS FreeBSD 9.0-RELEASE , net-snmp 5.7.1_7


Wrote a bash script which gives the value of integer 5.
Added to snmpd.conf

exec .1.3.6.1.4.1.1958   / usr / local / bin / bash   / home / user / bin / 
test.sh

then try to get the value:

snmpwalk-v2c-c public localhost .1.3.6.1.4.1.1958

an error that the OID is not found. what am I doing wrong?
SNMPv2-SMI :: enterprises.1958 = No Such Object available on this agent at this 
OID
 

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

Re: Firefox install problem

2012-09-04 Thread Lowell Gilbert
Mario Lobo l...@bsd.com.br writes:

 env:
 FBSD 8.3-STABLE AMD64
 Firefox 15 port

 The problem seems to be with the porting itself.

 The first problem showed up during configure. Libvpx could not be found and
 configure stops.
 After examining Config.Log, I found  a compiler switch like this:

 -L/usr/local/lib/nss

 I made a symlink there to libvpx.so and the port compiled without errors.

That's an incredibly ugly solution; if the vpx port were installed
correctly, it would have been detected, so you're probably just hiding a
real problem.

 Then after issuing a make install, this comes up everytime:

 [Snip]
 a ./searchplugins/yahoo.xml
 a ./dictionaries/en-US.aff
 a ./dictionaries/en-US.dic
 a ./defaults/pref
 a ./defaults/pref/channel-prefs.js
 a ./chrome/icons
 a ./chrome/icons/default
 a ./chrome/icons/default/default16.png
 a ./chrome/icons/default/default32.png
 a ./chrome/icons/default/default48.png
 /usr/ports/www/firefox/work/mozilla-release/config/nsinstall -D
 /usr/ports/www/firefox/work/fake/bin
 rm -f -f /usr/ports/www/firefox/work/fake/bin/firefox
 ln -s /usr/ports/www/firefox/work/fake/lib/firefox/firefox
 /usr/ports/www/firefox/work/fake/bin
 gmake[1]: Leaving directory
 `/usr/ports/www/firefox/work/mozilla-release/browser/installer'
 echo 'share/applications/firefox.desktop' 
 /usr/ports/www/firefox/work/plist_files
 echo @dirrmtry share/applications 
 /usr/ports/www/firefox/work/plist_dirs
 echo 'share/pixmaps/firefox.png'  /usr/ports/www/firefox/work/plist_files
 /bin/mkdir -p /usr/ports/www/firefox/work/fake/libdata
 /bin/mv -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
 /usr/ports/www/firefox/work/fake/libdata/ || true
 mv: rename /usr/ports/www/firefox/work/fake/lib/pkgconfig to
 /usr/ports/www/firefox/work/fake/libdata/pkgconfig: No such file or
 directory
 /bin/rm -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
 cd: can't cd to /usr/ports/www/firefox/work/fake/include
 *** Error code 2

 Stop in /usr/ports/www/firefox.
 *** Error code 1

 Stop in /usr/ports/www/firefox.

 All the fixes I googled that could relate to this, date back to 2005 the
 latest,, and none of them helped.

 I've been trying to fix this for 2 days now and I'm not getting anywhere so
 I can only hope someone can shed a light on this problem here on the list..

 My sincere thanks to whoever points me a direction.

You've done something really weird (in particular, the work/fake
directory would not exist or be referenced in a normal ports
installation). Try emptying your /etc/make.conf and starting from
scratch.

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


回复: Re: asking for help about acpi_tz0: _CRT value is absurd, ignored (256.0C)

2012-09-04 Thread chiehhan
hi,Gilbert
Thanks for your reply.The message acpi_tz0: _CRT value is absurd, ignored 
(256.0C) was printed on my screen when I install FREEBSD9.0.And the message 
appears from time to time when I used my laptop.Annoying

Until now,I do not notice any problem casused by the message obviously. I read 
the source code of the acpi_thermal.c,but have no idea about what temperature 
the acpi_tz0 detected.The message tell me _CRT value is absurd,how to make it 
reasonable and not appears from time to time on my screen?Thanks for your 
kindness.

ps:I install freebsd9.0 to other machine,this message does not appears.


2012-09-05



chiehhan



发件人:Lowell Gilbert
发送时间:2012-09-05 09:07
主题:Re: asking for help about acpi_tz0: _CRT value is absurd, ignored (256.0C) 
收件人:chiehhanchieh...@gmail.com
抄送:freebsd-questionsfreebsd-questions@freebsd.org

chiehhan chieh...@gmail.com writes: 

 To whom may concern, 
 
 I am a greenhorn in the field of freebsd.And when I install Freebsd9.0 on my 
 laptop HP NX6330,a control spam acpi_tz0: _CRT value is absurd, ignored 
 (256.0C)occurs. 
 
 I learned some reference about sysctl and revised the configure file 
 sysctl.conf,adding two lines below into sysctl.conf: 
 hw.acpi.thermal.user_override=1  
 hw.acpi.thermal.tz0._CRT=110.0C  
 but the control spam remains. 
 
 I read the source code about acpi_thermal.c,but still have no idea about how 
 to solve this problem.I am a little desperated and turn 
 freebsd-questions@freebsd.org for help.Would you please send me a solution?  

A solution to what problem? The ignored message isn't a problem on its 
own; do you think it causing some other trouble that you didn't describe? ___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Firefox install problem

2012-09-04 Thread Mario Lobo
First, thanks for replying !

On Tue, 04 Sep 2012 21:14:06 -0400
Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org wrote:

 Mario Lobo l...@bsd.com.br writes:
 
  env:
  FBSD 8.3-STABLE AMD64
  Firefox 15 port
 
  The problem seems to be with the porting itself.
 
  The first problem showed up during configure. Libvpx could not be
  found and configure stops.
  After examining Config.Log, I found  a compiler switch like this:
 
  -L/usr/local/lib/nss
 
  I made a symlink there to libvpx.so and the port compiled without
  errors.
 
 That's an incredibly ugly solution; 

I can't disagree with that! but hey, the problem was getting to compile
correctly and, in the absence of the right knowledge and the presence
of need, that did it.

 if the vpx port were installed
 correctly, it would have been detected, so you're probably just
 hiding a real problem.
 

The problem is libvpx.so is CORRECTLY installed
under /usr/local/lib/vpx, together with all the other correctly
installed libraries on my system so most certainly there is something
uglier than my hack here.


  Then after issuing a make install, this comes up everytime:
 
  [Snip]
  a ./searchplugins/yahoo.xml
  a ./dictionaries/en-US.aff
  a ./dictionaries/en-US.dic
  a ./defaults/pref
  a ./defaults/pref/channel-prefs.js
  a ./chrome/icons
  a ./chrome/icons/default
  a ./chrome/icons/default/default16.png
  a ./chrome/icons/default/default32.png
  /bin/rm -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
  cd: can't cd to /usr/ports/www/firefox/work/fake/include
  *** Error code 2
 
  Stop in /usr/ports/www/firefox.
  *** Error code 1
 
  Stop in /usr/ports/www/firefox.
 
 
 You've done something really weird (in particular, the work/fake
 directory would not exist or be referenced in a normal ports
 installation). Try emptying your /etc/make.conf and starting from
 scratch.

All I've done was csup -L 2 ports-supfile with ports-www in it.
Then cd /usr/ports/www/firefox; make with default options.

As for my /etc/make.conf

CPUTYPE?=nocona
OVERRIDE_LINUX_BASE_PORT=f10
OVERRIDE_LINUX_NONBASE_PORTS=f10
WITH_KDE4=yes
WITH_CUPS=yes
WITH_ICONS=KDE4
WITHOUT_GNOME=yes
PYTHON_DEFAULT_VERSION=python2.7
PERL_VERSION=5.10.4

If it is its fault, it will be the first time in around 3,5 years.

-- 
Mario Lobo
http://www.mallavoodoo.com.br
FreeBSD since 2.2.8 [not Pro-Audio YET!!] (99% winblows FREE)
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Sharing COM ports to Windows hosts

2012-09-04 Thread Victor Sudakov
Peter Vereshagin wrote:
 Depending on a task I think the most interactive user-friendly solution here 
 is
 a minicom(s) each in its own ssh'ed jail(s).

There is special Windows software for managing Natex MUXes. It works
with those MUXes via an RS232 port only. I want to be able to run it
from a remote location. 

Solution 1. A hardware RS232 portserver (e.g. Moxa) and a special
Windows driver for COM-port redirection. Works great. Disadvantage:
it's pretty expensive and occupies additional rack space.

Solution 2. Using an existing networked FreeBSD box sitting next to
the MUX, it already has COM ports. Advantage: cheap, no additional
rack space and power. Disadvantage: doubts if this solution is feasible,
especially on the Windows side.

A minicom or any other interactive terminal emulation software is out
of the question. The MUX managing software uses its own protocol over
RS323 and insists that it be a real port.

Perhaps my English is so poor that I could not present the task
correctly from the very beginning. Sorry for that.

-- 
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:suda...@sibptus.tomsk.ru
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Sharing COM ports to Windows hosts

2012-09-04 Thread Victor Sudakov
per...@pluto.rain.com wrote:
 
  In fact, the question is whether there is a standards compliant
  (not written for some proprietary hardware terminal server
  protocol) driver for Windows. Not exactly a FreeBSD question,
  I know :)
 
 Finding a Windows driver that will work with an existing FreeBSD
 program is certainly one possible approach.  Another, which
 I understood to be the intent of the original inquiry, is finding
 a FreeBSD solution that will work with an existing Windows driver.

I am fine with that too. Whatever works.

 There's surely no reason why a FreeBSD system _can't_ support
 a protocol originally developed by a hardware terminal server
 manufacturer, as vpnc does for the Cisco VPN protocol.

Actually, that was the reason of my question here: perhaps someone has
already found a matching pair (freeware if possible).

Two commercial solutions have already been named: NetDialout from
PCMicro and DialOut/EZ COM Port Redirector from Tactical Software.

Eric has mentioned com0com, but I have not been able to make it work
(I am not much of a Windows guy, and this software is a good example
of Windows hacking, in the good sense of the word, but still, I cannot
figure out how to create the configuration described in the README
file, some components seem missing).

-- 
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:suda...@sibptus.tomsk.ru
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Firefox install problem

2012-09-04 Thread Waitman Gobble
On Sep 4, 2012 7:03 PM, Mario Lobo l...@bsd.com.br wrote:

 First, thanks for replying !

 On Tue, 04 Sep 2012 21:14:06 -0400
 Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org wrote:

  Mario Lobo l...@bsd.com.br writes:
 
   env:
   FBSD 8.3-STABLE AMD64
   Firefox 15 port
  
   The problem seems to be with the porting itself.
  
   The first problem showed up during configure. Libvpx could not be
   found and configure stops.
   After examining Config.Log, I found  a compiler switch like this:
  
   -L/usr/local/lib/nss
  
   I made a symlink there to libvpx.so and the port compiled without
   errors.
 
  That's an incredibly ugly solution;

 I can't disagree with that! but hey, the problem was getting to compile
 correctly and, in the absence of the right knowledge and the presence
 of need, that did it.

  if the vpx port were installed
  correctly, it would have been detected, so you're probably just
  hiding a real problem.
 

 The problem is libvpx.so is CORRECTLY installed
 under /usr/local/lib/vpx, together with all the other correctly
 installed libraries on my system so most certainly there is something
 uglier than my hack here.


   Then after issuing a make install, this comes up everytime:
  
   [Snip]
   a ./searchplugins/yahoo.xml
   a ./dictionaries/en-US.aff
   a ./dictionaries/en-US.dic
   a ./defaults/pref
   a ./defaults/pref/channel-prefs.js
   a ./chrome/icons
   a ./chrome/icons/default
   a ./chrome/icons/default/default16.png
   a ./chrome/icons/default/default32.png
   /bin/rm -f /usr/ports/www/firefox/work/fake/lib/pkgconfig
   cd: can't cd to /usr/ports/www/firefox/work/fake/include
   *** Error code 2
  
   Stop in /usr/ports/www/firefox.
   *** Error code 1
  
   Stop in /usr/ports/www/firefox.
  
 
  You've done something really weird (in particular, the work/fake
  directory would not exist or be referenced in a normal ports
  installation). Try emptying your /etc/make.conf and starting from
  scratch.

 All I've done was csup -L 2 ports-supfile with ports-www in it.
 Then cd /usr/ports/www/firefox; make with default options.

 As for my /etc/make.conf

 CPUTYPE?=nocona
 OVERRIDE_LINUX_BASE_PORT=f10
 OVERRIDE_LINUX_NONBASE_PORTS=f10
 WITH_KDE4=yes
 WITH_CUPS=yes
 WITH_ICONS=KDE4
 WITHOUT_GNOME=yes
 PYTHON_DEFAULT_VERSION=python2.7
 PERL_VERSION=5.10.4

 If it is its fault, it will be the first time in around 3,5 years.

 --
 Mario Lobo
 http://www.mallavoodoo.com.br
 FreeBSD since 2.2.8 [not Pro-Audio YET!!] (99% winblows FREE)

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

hi,

did you _only_  csup www in ports? ill have to check but im not sure libvpx
is in www... im not in a place to check at this exact second but my memory
is that is providing webm support so probably in audio or multimedia

Waitman Gobble
San Jose California
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Firefox install problem

2012-09-04 Thread Warren Block

On Tue, 4 Sep 2012, Waitman Gobble wrote:


On Sep 4, 2012 7:03 PM, Mario Lobo l...@bsd.com.br wrote:


All I've done was csup -L 2 ports-supfile with ports-www in it.
Then cd /usr/ports/www/firefox; make with default options.

As for my /etc/make.conf

CPUTYPE?=nocona
OVERRIDE_LINUX_BASE_PORT=f10
OVERRIDE_LINUX_NONBASE_PORTS=f10
WITH_KDE4=yes
WITH_CUPS=yes
WITH_ICONS=KDE4
WITHOUT_GNOME=yes
PYTHON_DEFAULT_VERSION=python2.7
PERL_VERSION=5.10.4

If it is its fault, it will be the first time in around 3,5 years.


did you _only_  csup www in ports? ill have to check but im not sure libvpx
is in www... im not in a place to check at this exact second but my memory
is that is providing webm support so probably in audio or multimedia


multimedia/libvpx would not have been updated.  Selectively updating 
ports is not supported.  Symlinking libraries to missing versions is 
often a source of mysterious problems later.

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