Re: Apache::Scoreboard trouble

2003-10-18 Thread Michael Chamberlain
On Friday, October 17, 2003, at 09:36  pm, Ray Zimmerman wrote:

I have perl-5.8.0 installed in /usr/local with no problems.

Today I installed Apache::Scoreboard but when I try running ...

#!/usr/bin/perl -w
use strict;
use Apache::Scoreboard;
1;
... I get ...

dyld: perl Undefined symbols:
_ap_rwrite
_ap_send_http_header
_ap_set_content_length
_sv2request_rec
Trace/BPT trap
Any ideas?

My guess would be your running an apache1 version of Apache::Scoreboard 
with
an apache2 binary.

Mike.



Re: Problem with System Beep

2003-10-18 Thread Sherm Pendley
On Oct 17, 2003, at 2:53 AM, John Park wrote:

hmm, doesn't seem to work, still.
BTW, did you try searching the list archives? There was a thread about 
this a year or so ago.

http://www.mail-archive.com/[EMAIL PROTECTED]/msg03874.html

Peter Lewis proposed an especially novel solution - instead of printing 
"\a", and hoping that whoever is listening beeps in response, you could 
use Inline::C to call the SysBeep() function directly.

http://www.mail-archive.com/[EMAIL PROTECTED]/msg03889.html

sherm--