Re: SMPEG

2003-10-12 Thread James McDonald
Ted Ozolins wrote:

I've been trying to compile smpeg-0.4.4 and it keeps crapping out with 
the following message.
I'm runing Slackware 9.1 (upgraded from 9.0 to 9.1 using swaret) No 
matter what I try, I get this same ending. Any ideas?

[EMAIL PROTECTED]:/home/ted/smpeg-0.4.4# gcc -g -O2 -I/usr/include/SDL 
-D_REENTRANT -DTHREADED_AUDIO -I/usr/include/gtk-1.2 
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include 
-I/usr/X11R6/include -DNDEBUG -I.. -DNOCONTROLS -I. -I./audio 
-I./video -o .libs/plaympeg plaympeg.o .libs/libsmpeg.so -L/usr/lib 
-lSDL -lpthread -lm -lSDL -lpthread -lm -lSDL -lpthread -lm -L/usr/lib 
-Wl,-rpath,/usr/lib -lSDL -lpthread -lm
.libs/libsmpeg.so: undefined reference to `operator new[](unsigned)'
.libs/libsmpeg.so: undefined reference to `operator delete(void*)'
.libs/libsmpeg.so: undefined reference to `operator delete[](void*)'
.libs/libsmpeg.so: undefined reference to `operator new(unsigned)'
collect2: ld returned 1 exit status
[EMAIL PROTECTED]:/home/ted/smpeg-0.4.4# .lib

TIA
Firstly IANAE (I am not an expert) but when I get undefined reference 
errors I look at all the -l statements in the compile command line 
and make sure I have a corresponding libm or libSDL or libpthread etc in 
/usr/lib (or wherever your distro keeps your libraries) and also that I 
have the development headers for those packages installed.



--
James McDonald
Singleton Australia
61+ (0)2 65712401
61+ 0428 320 219
Roumanian-Yiddish cooking has killed more Jews than Hitler.
-- Zero Mostel
Linux 2.4.22 #1 Mon Sep 1 20:03:11 EST 2003 athlon i386 GNU/Linux
17:15:00 up 8 days, 15:16, 1 user, load average: 0.57, 0.19, 0.05
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: SMPEG SOLVED

2003-10-12 Thread Ted Ozolins
James McDonald wrote:

Firstly IANAE (I am not an expert) but when I get undefined reference 
errors I look at all the -l statements in the compile command line 
and make sure I have a corresponding libm or libSDL or libpthread etc in 
/usr/lib (or wherever your distro keeps your libraries) and also that I 
have the development headers for those packages installed.
I went looking for the devel-libs and I didn't have them. Once I 
downloaded and compiled those it all worked just fine. Dang! impatience 
can sure slow things downG
--
Ted Ozolins (VE7TVO)
Westbank, B. C.

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: httpd process is becoming *zombie*

2003-10-12 Thread Chong Yu Meng
Hi

Can you give us a snippet of your Apache error logs ? Mark down the time 
that you actually get the zombie process. Is your Apache solely serving 
static web pages or executing some Perl/CGI/Java/PHP scripts as well ?

Regards,
pascal chong
Swapana Ghosh wrote:

Hi

 

Have you bothered to check the apache error log?  Random cronjobs
shouldn't normally have any connection to other processes becoming
zombies.  Which version of apache are you running?  Which kernel version
are you using?
 

Yes i have checked the apache error log.. But i am not gettung any clue there
for the processes which are becoming *zombie* under httpd . Here is the version
of apache and kernel of our server.
server [root /root]# rpm -q apache
apache-1.3.20-RaQ4_1C1
server [root /root]# rpm -q kernel
kernel-2.2.16C28_III-4
server [root /root]#
Thanks
-Swapna
__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users
 

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: SMPEG SOLVED

2003-10-12 Thread Collins Richey
On Sun, 12 Oct 2003 01:17:47 -0700 Ted Ozolins [EMAIL PROTECTED] wrote:

 James McDonald wrote:
 
  
  Firstly IANAE (I am not an expert) but when I get undefined reference 
  errors I look at all the -l statements in the compile command line 
  and make sure I have a corresponding libm or libSDL or libpthread etc in 
  /usr/lib (or wherever your distro keeps your libraries) and also that I 
  have the development headers for those packages installed.
 
 I went looking for the devel-libs and I didn't have them. Once I 
 downloaded and compiled those it all worked just fine. Dang! impatience 
 can sure slow things downG

Ah, the marvels, once again, of distros and package managers that don't do
dependancy resolution for you!

On my accursed distro, I never have to worry about this grin.  I might want
a different approach on a server, but for a PODU (plain ole desktop user), it's
great that when I install a package everything necessary is installed.

-- 
Collins Richey - Denver Area
if you fill your heart with regrets of yesterday and the 
worries of tomorrow, you have no today to be thankful for.


___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: SMPEG SOLVED

2003-10-12 Thread James McDonald
Collins Richey wrote:

On Sun, 12 Oct 2003 01:17:47 -0700 Ted Ozolins [EMAIL PROTECTED] wrote:

 

James McDonald wrote:

   

Firstly IANAE (I am not an expert) but when I get undefined reference 
errors I look at all the -l statements in the compile command line 
and make sure I have a corresponding libm or libSDL or libpthread etc in 
/usr/lib (or wherever your distro keeps your libraries) and also that I 
have the development headers for those packages installed.
 

I went looking for the devel-libs and I didn't have them. Once I 
downloaded and compiled those it all worked just fine. Dang! impatience 
can sure slow things downG
   

Ah, the marvels, once again, of distros and package managers that don't do
dependancy resolution for you!
On my accursed distro, I never have to worry about this grin.  I might want
a different approach on a server, but for a PODU (plain ole desktop user), it's
great that when I install a package everything necessary is installed.
 

I know what you mean I just installed apt4rpm and it is amazing how it 
unpains the rpm dependency nigthmare... only problem is I like to use 
CVS for a lot of things and  so the stable packages aren't much use...





--
James McDonald
Singleton Australia
61+ (0)2 65712401
61+ 0428 320 219


Linux 2.4.22 #1 Mon Sep 1 20:03:11 EST 2003 athlon i386 GNU/Linux
03:00:00 up 9 days, 1:01, 4 users, load average: 0.18, 0.11, 0.12
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: SMPEG SOLVED

2003-10-12 Thread Ted Ozolins
Collins Richey wrote:

Ah, the marvels, once again, of distros and package managers that don't do
dependancy resolution for you!
On my accursed distro, I never have to worry about this grin.  I might want
a different approach on a server, but for a PODU (plain ole desktop user), it's
great that when I install a package everything necessary is installed.
My computer does (or did) run the accursed distro, unfortunately the 
manufacturer used the screwed up capacitors on that board and now is 
down for a while. I'm using my sons computer (PII-300) while he's away 
(St.Catherines Ontario). This puppy has Slackware 9.1 and the libs I was 
installing are not included in the distro. Before my system went down, I 
had all this stuff compiled and installed without a glitch. I guess 
thats the draw-back of that accursed distro G

--
Ted Ozolins (VE7TVO)
Westbank, B. C.
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


sourceforge.net

2003-10-12 Thread Ted Ozolins
anyone able to connect to the above. I keep getting timed out.
--
Ted Ozolins (VE7TVO)
Westbank, B. C.
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: sourceforge.net

2003-10-12 Thread Kurt Wall
Quoth Ted Ozolins:
 anyone able to connect to the above. I keep getting timed out.

Times out here. traceroute falls over at 66.35.210.202:

$ traceroute -n www.sourceforge.net
traceroute to sourceforge.net (66.35.250.203), 30 hops max, 38 byte packets
 1  192.168.0.1  0.410 ms  0.253 ms  0.250 ms
 2  66.93.172.1  28.790 ms  37.991 ms  28.084 ms
 3  63.251.83.187  26.802 ms  27.367 ms  26.098 ms
 4  216.52.127.73  87.186 ms  201.182 ms  202.422 ms
 5  12.118.132.13  29.878 ms  30.168 ms  28.124 ms
 6  12.123.217.9  28.567 ms  30.190 ms  29.977 ms
 7  12.123.9.113  208.736 ms  223.688 ms  246.368 ms
 8  192.205.32.46  29.896 ms  28.767 ms  29.455 ms
 9  208.172.146.100  108.273 ms  104.821 ms  106.958 ms
10  208.172.156.198  106.189 ms  105.606 ms  106.248 ms
11  66.35.194.35  104.821 ms  104.880 ms  107.620 ms
12  66.35.210.202  109.029 ms  109.019 ms  111.805 ms
13  * * *
[...]

K
-- 
Whenever you find that you are on the side of the majority, it is time
to reform.
-- Mark Twain
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: sourceforge.net

2003-10-12 Thread Mike McKinlay
On Sunday 12 October 2003 21:08, Ted Ozolins wrote:
 sourceforge.net
timd out on me too.
   Mike
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: sourceforge.net

2003-10-12 Thread Mike McKinlay
On Sunday 12 October 2003 21:08, Ted Ozolins wrote:
 anyone able to connect to the above. I keep getting timed out.
It just came no problem on second try at this addresshttp://sourceforge.net/;
   
   
Mike
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users


Re: sourceforge.net

2003-10-12 Thread Ted Ozolins
Kurt Wall wrote:

K
Whatever was the prob seems OK now and am getting in.

--
Ted Ozolins (VE7TVO)
Westbank, B. C.
___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users