LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 12-29-2009, 02:17 PM   #1
luisfong11
LQ Newbie
 
Registered: Dec 2009
Location: Las Cruces, New Mexico
Distribution: Ubuntu 9.04, Fedora 12, Win XP and Vista
Posts: 5

Rep: Reputation: 0
Problem with Pango Install, make giving error 2


It all started out trying to install the Lives video editor, it turns out i need GTK no problem, then it turns out in need GLIB ATK Cairo and Pango. Glib and Cairo both installed alright, however pango gives me this output when i try make

Code:
[atlas@cronus pango-1.26.0]$ make
make  all-recursive
make[1]: Entering directory `/home/atlas/src/pango-1.26.0'
Making all in pango
make[2]: Entering directory `/home/atlas/src/pango-1.26.0/pango'
  GEN    s-enum-types-h
  GEN    pango-enum-types.h
  GEN    s-enum-types-c
  GEN    pango-enum-types.c
make  all-recursive
make[3]: Entering directory `/home/atlas/src/pango-1.26.0/pango'
Making all in opentype
make[4]: Entering directory `/home/atlas/src/pango-1.26.0/pango/opentype'
  CXX    libharfbuzz_la-hb-font.lo
../../libtool: line 990: g++: command not found
make[4]: *** [libharfbuzz_la-hb-font.lo] Error 1
make[4]: Leaving directory `/home/atlas/src/pango-1.26.0/pango/opentype'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/atlas/src/pango-1.26.0/pango'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/atlas/src/pango-1.26.0/pango'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/atlas/src/pango-1.26.0'
make: *** [all] Error 2
I'm sorta new to Linux I've been using Ubuntu for a year until i upgraded to Fedora 12, which I've been using for about a month. I was so used to Synaptic doing everything for me i just barely learned to compile programs from source
 
Old 12-29-2009, 02:26 PM   #2
cg40oz
LQ Newbie
 
Registered: Dec 2009
Location: /dev/random
Posts: 15

Rep: Reputation: 0
You need to install the g++ compiler, apt-get install gcc; apt-get install gcc-c++

or (fedora)
yum install gcc gcc-c++

Last edited by cg40oz; 12-29-2009 at 02:31 PM.
 
1 members found this post helpful.
Old 12-29-2009, 02:42 PM   #3
luisfong11
LQ Newbie
 
Registered: Dec 2009
Location: Las Cruces, New Mexico
Distribution: Ubuntu 9.04, Fedora 12, Win XP and Vista
Posts: 5

Original Poster
Rep: Reputation: 0
Thank you, i knew it was the c compiler, and i already had gcc installed, i was just missing the c++ compiler. Well gcc-c++ installed correctly however i get this output

Quote:
[atlas@cronus pango-1.26.0]$ make
make all-recursive
make[1]: Entering directory `/home/atlas/src/pango-1.26.0'
Making all in pango
make[2]: Entering directory `/home/atlas/src/pango-1.26.0/pango'
GEN pango-enum-types.h
GEN pango-enum-types.c
make all-recursive
make[3]: Entering directory `/home/atlas/src/pango-1.26.0/pango'
Making all in opentype
make[4]: Entering directory `/home/atlas/src/pango-1.26.0/pango/opentype'
CXX libharfbuzz_la-hb-font.lo
CC libharfbuzz_la-hb-glib.lo
CC libharfbuzz_la-hb-shape.lo
CC libharfbuzz_la-hb-unicode.lo
CXX libharfbuzz_la-hb-ot-layout.lo
CXXLD libharfbuzz.la
libtool: link: unsupported hardcode properties
libtool: link: See the libtool documentation for more information.
libtool: link: Fatal configuration error.
make[4]: *** [libharfbuzz.la] Error 1
make[4]: Leaving directory `/home/atlas/src/pango-1.26.0/pango/opentype'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/atlas/src/pango-1.26.0/pango'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/atlas/src/pango-1.26.0/pango'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/atlas/src/pango-1.26.0'
make: *** [all] Error 2
 
Old 12-29-2009, 03:53 PM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Why install from source ?
Installing a version different from the system
version can disturb other files.
All you have to do is :

1) Fedora : # yum install gtk2-devel
... provides version 2.18.3

2) Ubuntu : sudo apt-get install libgtk2.0-dev
9.10 , Karmic .. version 2.18.3
9.04 , Jaunty .. 2.16.1
8.10 , Intrepid .. 2.14.4
.....

Last edited by knudfl; 12-29-2009 at 03:55 PM.
 
1 members found this post helpful.
Old 12-29-2009, 04:25 PM   #5
luisfong11
LQ Newbie
 
Registered: Dec 2009
Location: Las Cruces, New Mexico
Distribution: Ubuntu 9.04, Fedora 12, Win XP and Vista
Posts: 5

Original Poster
Rep: Reputation: 0
Thank you, i didn't know you could install from yum
 
  


Reply



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
problem with make for pango djamols Linux - Software 3 10-03-2008 01:59 PM
pango install fails on make install Seph64 Linux From Scratch 1 10-15-2005 11:17 PM
Trying to install gtk: pango 1.4.0 error kidicarus Linux - Software 3 06-30-2004 10:31 AM
Please Help! Pango install error while making Spud_Hed Linux - Software 1 05-17-2004 01:11 PM
Pango 1.4.0 make error mafiaman Linux - Software 3 05-17-2004 09:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:09 PM.

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