On May 31, 2013, at 1:15 PM, Pema Suter <[email protected]> wrote:

> Thank you so much for helping me !
> 

No problem!


Just to make sure, you have already done the following:

1) Obtained the source from SVN via:
        svn co svn://svn.gna.org/svn/gregorio/trunk

2) Ran autoreconf and configure via:

        autoreconf --install -f
        ./configure 

3) Ran 'make' and got the error.

So to fix it, we need to edit the Makefile in trunk/lib/Makefile. There are 
just two lines that need to be changed.

1) DEFAULT_INCLUDES = -I. -I$(top_builddir)/include

        Add  -I/opt/local/include to the end of the line, so it reads:

        DEFAULT_INCLUDES = -I. -I$(top_builddir)/include -I/opt/local/include

2) LIBTOOL_LIB = -lltdl

        Add -L/opt/local/lib BEFORE the -lltdl, so it reads:

        LIBTOOL_LIB = -L/opt/local/lib -lltdl

3) Go back to trunk and run make again. It should work.

4) And then:
        
        sudo make install

will install gregorio for you.

Let me know if you have any problems, or for that matter, success.


---------------------------------------------------------------------
                          Michael Martin
                     [email protected]
                    Thesaurus Precum Latinarum
                http://www.preces-latinae.org/index.htm
----------------------------------------------------------------------






_______________________________________________
Gregorio-users mailing list
[email protected]
https://mail.gna.org/listinfo/gregorio-users

Reply via email to