LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 04-16-2009, 12:46 AM   #1
jayamurugan
LQ Newbie
 
Registered: Jan 2009
Posts: 18

Rep: Reputation: 0
Question Error executing make command for xmlrpc-c 1.06.32 tarball version


Hi,
I downloaded xmlrpc-c 1.06.32 tarball version. I couldn't configure and install it. I am getting the error when I make it. Below is the error when I execute make command.
--------------------MAKE Command---------------------------
[root@localhost xmlrpc-c-1.06.32]# make
make -C include/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/./include/Makefile \
all
make[1]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/include'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/include'
make -C lib/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/./lib/Makefile \
all
make[1]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib'
make -C util/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/../lib/util/Makefile \
all
make[2]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/util'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/util'
make -C libutil/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/../lib/libutil/Makefile \
all
make[2]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil'
ln -s /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil/../.. srcdir
ln: creating symbolic link `srcdir' to `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil/../..': File exists
make[2]: *** [srcdir] Error 1
make[2]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil'
make[1]: *** [libutil/all] Error 2
make[1]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib'
make: *** [lib/all] Error 2
[root@localhost xmlrpc-c-1.06.32]#
------------------------------------------------------------------------------------------------------------------
I couldn't understand the error here. I am using Red Hat Linux version 2.6.18.

Please let me know if you want even configure command's output . Please help me out. Thanks in Advance.
 
Old 04-16-2009, 02:39 AM   #2
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
It looks like the problem is simply the creation of a symbolic link already existing. Try to do
Code:
make distclean
from /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32 (this should remove the links) and start again with the ./configure step.
 
Old 04-16-2009, 10:21 AM   #3
jayamurugan
LQ Newbie
 
Registered: Jan 2009
Posts: 18

Original Poster
Rep: Reputation: 0
Question Got the below error for 'make distclean'

----------------------------------------------------------------------------
[root@localhost xmlrpc-c-1.06.32]# pwd
/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32
[root@localhost xmlrpc-c-1.06.32]# make distclean
make -C include/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/./include/Makefile \
distclean
make[1]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/include'
rm -f xmlrpc-c/config.h
make[1]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/include'
make -C lib/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/./lib/Makefile \
distclean
make[1]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib'
make -C util/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/../lib/util/Makefile \
distclean
make[2]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/util'
rm -f *.o *.a *.s *.i *.la *.lo
rm -f *.so *.so.*
rm -rf .libs
cat /dev/null >Makefile.depend
rm -f TAGS
rm -f blddir srcdir
rm -f version.h
make[2]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/util'
make -C libutil/ -f /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/../lib/libutil/Makefile \
distclean
make[2]: Entering directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil'
ln -s /home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil/../.. srcdir
ln: creating symbolic link `srcdir' to `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil/../..': File exists
make[2]: *** [srcdir] Error 1
make[2]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib/libutil'
make[1]: *** [libutil/distclean] Error 2
make[1]: Leaving directory `/home/jayam/Cloud_Setup/xmlrpc/xmlrpc-c-1.06.32/lib'
make: *** [lib/distclean] Error 2
[root@localhost xmlrpc-c-1.06.32]#
----------------------------------------------------------------------------

Please help me in proceeding further..
 
Old 04-17-2009, 06:34 AM   #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
Difficult to say, what is wrong, but three things :
1) Never, never run 'make' as root, unless absolute necessary ! ! !

2) And use a simpler location like /home/jayam/tmp :
cd tmp/ ... tar xvf xmlrpc-c-1.06.32.tgz and start from scratch.

See my result, the attached text file, I think it's from
about line 27 ... and I find no
" ... creating symbolic link `srcdir' to ... "

3) May be update your "auto tools" ? ( automake, autoconf, m4 )
I am using CentOS 5.2 = Redhat EL 5.2 .
Attached Files
File Type: txt make-xmlrpc.txt (90.2 KB, 33 views)
 
  


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
My error in mkisofs command to make a command line iso mg92865 Linux - Newbie 1 06-20-2008 11:43 AM
make bzImage failure: make[1]: *** [init/version.o] Error 1 nmainak Linux - Kernel 2 07-16-2006 05:06 PM
executing a loaded module returns "command not found" error neelay1 Linux - Software 1 05-08-2006 02:25 PM
Compling on a higher version and executing on a lower version aditya_shah Programming 0 09-30-2003 11:48 PM
make: cc: command not found make: *** [gzip.o]error 127 zyjk Linux - Newbie 5 02-08-2002 09:58 AM

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

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