Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hey guys, this is my first post here and I was hoping somebody could help me out. Ive been toying with Linux for about a month now (Suse 9.3), but the main drawback is that Im not able to compile ANY source code Ive come across.
Ive gotten far enough to install all of the KDE Headers, GCC, Qt, and everything, but after configure finishes and I run make, I get this error when trying to install Taskbar v2:
make[1]: Entering directory `/home/jlewis/mtaskbar-0.7/mtaskbar'
Can't locate object method "path" via package "Request" at /usr/share/autoconf/Autom4te/C4che.pm line 69, <GEN1> line 111.
make[1]: *** [configure] Error 1
make[1]: Leaving directory `/home/jlewis/mtaskbar-0.7/mtaskbar'
make: *** [configure] Error 2
according to apt-get, I have the newest versions of automake, autoconf, and perl.
any ideas? Im looking to make Linux my default OS when I get my laptop, but I need to be able to compile stuff before I do that. Im really still a newb when it comes to linux.
I could be barking up the wrong tree here, but the error message seems to be suggesting that it can't find the "path" object in the source code library. When you look in the directory of mtaskbar is it a program that needs to be compiled first or is it something that can just be run? See if you can find an INSTALL or README within the directory and make sure you follow those directions, if you haven't already done so.
The description you offer doesn't seem to suggest a wide-spread compiler problem, so it is likely to be one of two things, as far as I can tell:
1. The "make" program is looking for something along its installation path and can't find it. If this is where it is to be located then you'd need to specify where it is to be installed. The general form is:
./configure --prefix=/path/in_which/to_install
If it needs some other libraries with which to install, and it can't find those, then see if you have a file called "Request" anywhere (it could be a dependency which hasn't been loaded yet?). Then direct your path variable to that:
export PATH=$PATH:/usr/sbin/:/usr/local/bin (or wherever that file might be)
2. The software itself is corrupted, in which case, contact a developer and ask them what might cause this error message. In my experience, all but one developer I've contacted regarding installation difficulties have been pretty helpful in debugging the process with me.
What other error messages do you get when you try to compile from source?
I first tried Foo_Bar_Foo's advice (mainly because it was the simplest reply I understood lol), and everything worked out, I just deleted the autom4te.cache directory and everything went smooth.
Like I said, Im really fairly new to Linux, and hope to become fairly fluent in it soon, so thanks again guys Im sure Ill be making quite a few more posts around here!
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.