LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 07-08-2004, 10:13 AM   #1
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Rep: Reputation: 15
How to install Library?


This is my information about library.

[root@localhost jrtplib]# ls
jrtplib-2.8 jrtplib-2.8.tar.gz
[root@localhost jrtplib]# cd jrt*
[root@localhost jrtplib-2.8]# ls
ChangeLog rtpcontributingsources.h rtppacketprocessor.cpp
config.log rtpdebug.cpp rtppacketprocessor.h
config.status rtpdebug.h rtprandom.cpp
configure rtpdefines.h rtprandom.h
configure.in rtpdestlist.cpp rtprtcpmodule.cpp
doc rtpdestlist.h rtprtcpmodule.h
examples rtperror.cpp rtpsession.cpp
jrtplib2_8.dsp rtperror.h rtpsession.h
jrtplib2_8.dsw rtpexceptionstructs.h rtpsourcedata.cpp
Makefile rtphandlers.cpp rtpsourcedata.h
Makefile.in rtphandlers.h rtpsourcedescription.cpp
README.TXT rtpiptable.cpp rtpsourcedescription.h
rtpconfig.h rtpiptable.h rtpsources.cpp
rtpconfig_unix.h rtplocalinfo.cpp rtpsources.h
rtpconfig_unix.h.in rtplocalinfo.h rtpsrclist.cpp
rtpconfig_win.h rtpmcasttable.cpp rtpsrclist.h
rtpconnection.cpp rtpmcasttable.h rtpstructs.h
rtpconnection.h rtppacket.cpp rtptimeutil.cpp
rtpcontributingsources.cpp rtppacket.h rtptimeutil.h
[root@localhost jrtplib-2.8]#

I want to install the library "jrtplib-2.8", How to install it?
 
Old 07-08-2004, 11:40 AM   #2
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,858

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
./configure
make
su
make install

You can also ./configure --help to see options you can set
 
Old 07-08-2004, 12:31 PM   #3
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
I just install "JThread library". and it have some error.
How to fig about that
This's al my work and my problems.

[root@localhost jthread-1.0.0]# ls
ChangeLog config.status copyheaderfiles.bat jthread.dsp LICENSE.MIT README.TXT
config.cache configure doc jthread.dsw Makefile src
config.log configure.in include lib Makefile.in
[root@localhost jthread-1.0.0]# ./configure
loading cache ./config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for c++... (cached) c++
checking whether the C++ compiler (c++ ) works... yes
checking whether the C++ compiler (c++ ) is a cross-compiler... no
checking whether we are using GNU C++... (cached) yes
checking whether c++ accepts -g... (cached) yes
checking whether gcc and cc understand -c and -o together... (cached) yes
checking for ld... (cached) ld
checking arguments for ld... -shared -soname
checking for ar... (cached) ar
checking arguments for ar... qc
checking how to run the C preprocessor... (cached) gcc -E
checking for pthread.h... (cached) yes
creating ./config.status
creating Makefile
creating src/Makefile
creating doc/Makefile
[root@localhost jthread-1.0.0]# make
make[1]: Entering directory `/home/jvoip/JThread/jthread-1.0.0/src'
cp -f jmutex.o jthread.o ../lib/
cp -f *.h ../include/
make[1]: Leaving directory `/home/jvoip/JThread/jthread-1.0.0/src'
make[1]: Entering directory `/home/jvoip/JThread/jthread-1.0.0/doc'
latex manual.tex
make[1]: latex: Command not found
make[1]: *** [manual.ps] Error 127
make[1]: Leaving directory `/home/jvoip/JThread/jthread-1.0.0/doc'
make: *** [sharedlib] Error 1
[root@localhost jthread-1.0.0]#
 
Old 07-08-2004, 12:34 PM   #4
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
It looks like you need to install latex first.
 
Old 07-08-2004, 12:44 PM   #5
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
What is latex?
 
Old 07-09-2004, 08:51 AM   #6
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
Where I find latex to install ? I find it on internet but it have many latex
 
Old 07-09-2004, 09:41 AM   #7
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,858

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
What is your linux distribution ?
 
Old 07-09-2004, 09:45 AM   #8
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
I'm using linux 9.0
 
Old 07-09-2004, 09:45 AM   #9
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
I'm using linux Redhat 9.0
 
Old 07-09-2004, 02:18 PM   #10
vasudevadas
Member
 
Registered: Jul 2003
Location: Bedford, UK
Distribution: Slackware 11.0, LFS 6.1
Posts: 519

Rep: Reputation: 30
So you'll probably have an rpm on your Red Hat 9 install discs somewhere. I use Mandrake 10, a Red Hat-based distro, and latex is included in mine. Does Red Hat have a package manager thingy that will make finding (and installing) the rpm easier? If so, use it to search for and install latex, and then try ./configure again. Repeat this process until successful!
 
Old 07-10-2004, 03:43 AM   #11
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
my install disc can't read,pls tell me, Where does to find the source of Latex?
 
Old 07-10-2004, 03:55 AM   #12
vasudevadas
Member
 
Registered: Jul 2003
Location: Bedford, UK
Distribution: Slackware 11.0, LFS 6.1
Posts: 519

Rep: Reputation: 30
Do you have TeX already? (Type "man tex" to quickly find out).
 
Old 07-10-2004, 04:23 AM   #13
vanhelsing
Member
 
Registered: May 2004
Posts: 130

Original Poster
Rep: Reputation: 15
[root@localhost root]# man tex
No manual entry for tex

I don't have TeX

pls, Tell me how to do further?
 
Old 07-10-2004, 04:27 AM   #14
vasudevadas
Member
 
Registered: Jul 2003
Location: Bedford, UK
Distribution: Slackware 11.0, LFS 6.1
Posts: 519

Rep: Reputation: 30
Hmmm. Well, the project home page is http://www.latex-project.org/ but reading it it seems awfully complicated. To download a full TeX system is a very big download indeed it seems, so much so that you almost might as well download your distro install discs instead, if the ones you have are unusable. You could certainly do with a usable set.
 
Old 07-10-2004, 06:48 AM   #15
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,858

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
Put your distrib CD in the drive then mount it :
mount /mnt/cdrom

find the latex rpm :
find /mnt/cdrom -name "latex*rpm"

If not found, umount /mnt/cdrom and repeat the procedure with all your distrib cds until you find it, then install rpm from here.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to install .o files into library ieydis Linux - Software 1 11-23-2005 10:38 PM
Install GD Library for PHP4? Truti Linux - Software 0 04-12-2005 03:34 PM
jpeg library install.. eye Red Hat 1 10-15-2003 07:59 PM
gd library install. eye Linux - Software 0 10-15-2003 11:11 AM
I can't install this library carlcromer Linux - Newbie 2 07-01-2002 11:03 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 03:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration