LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 11-22-2008, 06:58 PM   #1
gsv666
LQ Newbie
 
Registered: Nov 2008
Location: Australia
Distribution: Ubuntu Karmic
Posts: 17

Rep: Reputation: 0
Question Compiling from SVN error


Hey guys...

Trying to compile Jack and Freebob on Hardy using SVN...

After svn co svn://svn.linux1394.org/libraw1394/trunk libraw1394-svn
and $ cd libraw1394-svn
then $ autoreconf -f -i -s

gave the errors...

/usr/share/aclocal/nspr.m4:8: warning: underquoted definition of AM_PATH_NSPR
/usr/share/aclocal/nspr.m4:8: run info '(automake)Extending aclocal'
/usr/share/aclocal/nspr.m4:8: or see automake
/usr/share/aclocal/nspr.m4:8: warning: underquoted definition of AM_PATH_NSPR
/usr/share/aclocal/nspr.m4:8: run info '(automake)Extending aclocal'
/usr/share/aclocal/nspr.m4:8: or see automake

Any ideas what is going wrong and how I might fix? Or even where I can look for more info...

Thanks
 
Old 11-22-2008, 07:01 PM   #2
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
Have you installed automake yet? By default it is not installed on Ubuntu but I could be wrong. I have not test Ubuntu in quite sometime.
 
Old 11-22-2008, 07:41 PM   #3
gsv666
LQ Newbie
 
Registered: Nov 2008
Location: Australia
Distribution: Ubuntu Karmic
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks for the quick reply... yes I just ran "apt-get install automake" and it returned "automake is already the newest version" so I must have done at one point in the setup...

I followed the link... it led me to of which the relevant section seems to be...

"...Starting with Automake 1.8, aclocal will warn about all underquoted calls to AC_DEFUN. We realize this will annoy a lot of people, because aclocal was not so strict in the past and many third party macros are underquoted; and we have to apologize for this temporary inconvenience. The reason we have to be stricter is that a future implementation of aclocal (see Future of aclocal) will have to temporarily include all these third party .m4 files, maybe several times, including even files that are not actually needed. Doing so should alleviate many problems of the current implementation, however it requires a stricter style from the macro authors. Hopefully it is easy to revise the existing macros. For instance,

# bad style
AC_PREREQ(2.57)
AC_DEFUN(AX_FOOBAR,
[AC_REQUIRE([AX_SOMETHING])dnl
AX_FOO
AX_BAR
])

should be rewritten as

AC_DEFUN([AX_FOOBAR],
[AC_PREREQ([2.57])dnl
AC_REQUIRE([AX_SOMETHING])dnl
AX_FOO
AX_BAR
])

Wrapping the AC_PREREQ call inside the macro ensures that Autoconf 2.57 will not be required if AX_FOOBAR is not actually used. Most importantly, quoting the first argument of AC_DEFUN allows the macro to be redefined or included twice (otherwise this first argument would be expanded during the second definition). For consistency we like to quote even arguments such as 2.57 that do not require it.

If you have been directed here by the aclocal diagnostic but are not the maintainer of the implicated macro, you will want to contact the maintainer of that macro. Please make sure you have the last version of the macro and that the problem already hasn't been reported before doing so: people tend to work faster when they aren't flooded by mails..."

The only part that I understand is the part I have bolded and italicized... cause that certainly resonates with me... lol

Is there anything I can do with this... or more precisely WHAT should I do with this...

Thanks again...
 
Old 11-22-2008, 09:41 PM   #4
gsv666
LQ Newbie
 
Registered: Nov 2008
Location: Australia
Distribution: Ubuntu Karmic
Posts: 17

Original Poster
Rep: Reputation: 0
nvm... closed post... ignored the Warnings and everything worked fine anyway...

Interesting... coming from Windoze ignoring warnings is like laughing at an uzi wielder with a trigger finger... obviously not as important on Linux...
 
Old 11-22-2008, 09:42 PM   #5
gsv666
LQ Newbie
 
Registered: Nov 2008
Location: Australia
Distribution: Ubuntu Karmic
Posts: 17

Original Poster
Rep: Reputation: 0
umm well I would close it if I could work out how? Any guidance?
 
Old 11-22-2008, 10:50 PM   #6
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
I think a mod has to lock the post. Might try asking one of them but It is best to keep a post open as other people may post here in the future.

Glad that it worked out for you.
 
Old 03-31-2009, 02:54 PM   #7
leighgable
LQ Newbie
 
Registered: Mar 2009
Location: paris
Distribution: Crunchbang Linux -- based on 8.10
Posts: 2

Rep: Reputation: 0
trouble compiling jack from SVN

Hello,

I thought I'd add to this post rather than starting another one. I am trying to compile jack from subversion. i have all the necessary build tools installed. I chmod'ed the /tmp directory 1777, and then ran the autogen.sh.

It looked promising (see below), but i there weren't any of the build messages related to jack, like alsa etc. Nevertheless it created a make file. However, when I run make, I get a "no makefile or target" error.

Any ideas?


leigh@tiny:~/jack$ sudo ./autogen.sh --prefix=/usr --with-default-tmpdir=/dev/shm
[sudo] password for leigh:
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `config'.
libtoolize: linking file `config/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: linking file `m4/libtool.m4'
libtoolize: linking file `m4/ltoptions.m4'
libtoolize: linking file `m4/ltsugar.m4'
libtoolize: linking file `m4/ltversion.m4'
libtoolize: linking file `m4/lt~obsolete.m4'
configure.ac:53: installing `config/config.guess'
configure.ac:53: installing `config/config.sub'

leigh@tiny:~/jack$ ls
acinclude.m4 config.log example-clients Makefile.in
aclocal.m4 configure jack man
AUTHORS configure.ac jackd README
autogen.sh COPYING jack.pc.in README.developers
autom4te.cache COPYING.GPL jack.spec.in TODO
BUILDING-FOR-LINUX-2.4-KERNEL COPYING.LGPL libjack tools
config doc m4
config.h.in drivers Makefile.am
 
Old 04-19-2009, 05:55 AM   #8
leighgable
LQ Newbie
 
Registered: Mar 2009
Location: paris
Distribution: Crunchbang Linux -- based on 8.10
Posts: 2

Rep: Reputation: 0
Compiling from SVN error

Hello All,

I just thought I would follow up my post with the response. I didn't have the dev-versions of the necessary libraries installed.

sudo aptitude install libsamplerate0-dev libasound2-dev libsndfile1-dev libncurses5-dev libreadline5-dev
and if you want the FireWire support:
sudo aptitude install libfreebob0-dev

That allowed me to compile.

Best, Leigh
 
  


Reply

Tags
compile, jack, svn


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
Make error while compiling gcc-4.2.3 (LFS-SVN) corbis_demon Linux From Scratch 14 07-25-2008 10:58 AM
problem in compiling svn from source rockyrakesh1331 Linux - Enterprise 1 05-30-2008 03:26 PM
problem in compiling svn from source rockyrakesh1331 Linux - Software 1 05-30-2008 03:25 PM
problem in compiling svn from source rockyrakesh1331 Linux - General 1 05-30-2008 03:19 PM
error compiling php and svn an2ny_18 Linux - Newbie 2 03-11-2006 06:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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