LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 04-03-2010, 05:52 AM   #1
mah454
Member
 
Registered: Oct 2009
Location: Iran
Distribution: Debian , Ubuntu , RHEL , CentOS , NetBill
Posts: 134

Rep: Reputation: 15
Compile Amaya


Hello

when run make , I do receive this Error :
Code:
make[1]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools'
make[2]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools/mkdep'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools/mkdep'
make[2]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools/cextract-1.7'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools/cextract-1.7'
make[1]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/tools'
make[1]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa'
make[2]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src'
Making sources for linux-x86-static
make[3]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa'
make[4]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa'
make[5]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa/x86'
make[5]: Nothing to be done for `default'.
make[5]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa/x86'
make[4]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa'
make[3]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/mesa'
make[3]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu'
make[4]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu/sgi'
make[5]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu/sgi'
make[5]: `../../../lib/libGLU.a' is up to date.
make[5]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu/sgi'
make[4]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu/sgi'
make[3]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glu'
make[3]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glw'
make[3]: Nothing to be done for `default'.
make[3]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src/glw'
make[2]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/src'
make[2]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/progs'
Making programs for linux-x86-static
make[2]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa/progs'
make[1]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/Mesa'
make[1]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/wxWidgets_RELEASE'
(if test -d utils/wxrc ; then cd utils/wxrc && make all ; fi)
make[1]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/wxWidgets_RELEASE'
make -C libwww
make[1]: Entering directory `/home/mahsom/Amaya11.3.1/Amaya/linux/libwww'
make[1]: *** No targets specified and no makefile found.  Stop.
make[1]: Leaving directory `/home/mahsom/Amaya11.3.1/Amaya/linux/libwww'
make: *** [libwww] Error 2
I use ubuntu 9.04 .
Thank you ...

Last edited by mah454; 04-03-2010 at 05:54 AM.
 
Old 04-03-2010, 09:57 AM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,185

Rep: Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064Reputation: 8064
Quote:
Originally Posted by mah454 View Post
Hello

when run make , I do receive this Error :

I use ubuntu 9.04 .
Thank you ...
Chances are you skipped/missed a step during build. Read the instructions.
 
Old 04-05-2010, 11:34 AM   #3
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,519

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Amaya 11.3.1 has some bugs, the supposedly bug fixing cvs version ..
http://www.w3.org/Amaya/User/cvs.html : I saw no difference.
Luckily the best behavior is on Ubuntu 9.04 ..
Some issues on other Linux.

sudo apt-get install libcppunit-dev libglu1-mesa-dev \
libgl1-mesa-dev librdf0-dev librasqal1-dev libraptor1-dev

cd Amaya11.3.1/Amaya/ && mkdir build && cd build/ &&
../configure --with-libwww=../../libwww/libwww-config --enable-system-raptor
&& make all && sudo make install
.. And the command amaya displays a nice GUI.

..
This link is referred to in the Ubuntu Forum ..
http://www.w3.org/Amaya/User/Autoconf.html#L437
.....

Last edited by knudfl; 04-05-2010 at 11:42 AM.
 
  


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
Amaya Installation ks.sundarrajan Linux - Newbie 4 03-18-2008 05:44 AM
Amaya....Dreamweaver killer? psychobyte Linux - Desktop 0 02-07-2007 06:18 PM
Amaya Compiling Error alkos333 Slackware 5 01-19-2007 02:18 PM
Amaya and conflicts linda SUSE / openSUSE 3 09-20-2005 02:39 AM
Amaya web editor - how do I......... bigjohn Linux - Software 12 09-05-2004 04:21 PM

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

All times are GMT -5. The time now is 08:35 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