<div>Hello Kyle, </div><div><br></div><div>Yeah I do not know what those lines mean. But these are the "#include <>" lines in my program: </div><div><br></div><div>#include </usr/local/include/taglib/tag.h></div>
<div>#include </usr/local/include/taglib/fileref.h></div><div><br></div><div>Is this correct? If it is then how I can fix the error message returned by g++?</div><br><div class="gmail_quote">On Tue, Jun 28, 2011 at 6:00 AM, <span dir="ltr"><<a href="mailto:taglib-devel-request@kde.org">taglib-devel-request@kde.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Send taglib-devel mailing list submissions to<br>
<a href="mailto:taglib-devel@kde.org">taglib-devel@kde.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
<a href="https://mail.kde.org/mailman/listinfo/taglib-devel" target="_blank">https://mail.kde.org/mailman/listinfo/taglib-devel</a><br>
or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:taglib-devel-request@kde.org">taglib-devel-request@kde.org</a><br>
<br>
You can reach the person managing the list at<br>
<a href="mailto:taglib-devel-owner@kde.org">taglib-devel-owner@kde.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of taglib-devel digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
1. Compile C++/TagLib with g++? (Phong Cao)<br>
2. Re: Compile C++/TagLib with g++? (Kyle)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 28 Jun 2011 00:52:37 -0400<br>
From: Phong Cao <<a href="mailto:phngcv@gmail.com">phngcv@gmail.com</a>><br>
Subject: Compile C++/TagLib with g++?<br>
To: <a href="mailto:taglib-devel@kde.org">taglib-devel@kde.org</a><br>
Message-ID: <<a href="mailto:BANLkTikWa1fCk_7R5Pqt90OO1fA29AfPLA@mail.gmail.com">BANLkTikWa1fCk_7R5Pqt90OO1fA29AfPLA@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
Hello everybody,<br>
<br>
I am trying to build a small music manager that uses TagLib to read metadata<br>
from audio streams. However, I was unable to compile the program. Here is<br>
what I tried:<br>
<br>
g++ -g /home/phongcao/dingo/main.cc -o /home/phongcao/dingo/main `pkg-config<br>
taglib-config --cflags --libs gtkmm-2.4`<br>
<br>
And this was what g++ returned:<br>
<br>
Package taglib-config was not found in the pkg-config search path.<br>
Perhaps you should add the directory containing `taglib-config.pc'<br>
to the PKG_CONFIG_PATH environment variable<br>
No package 'taglib-config' found<br>
<br>
According to the TagLib API documentation: "TagLib installs a taglib-config<br>
and pkg-config file to make it easier to integrate into various build<br>
systems".<br>
<br>
However, I am a total newbie on TagLib and do not know how to compile it<br>
using g++, and there was nothing more than the above statement in the API<br>
documentation.<br>
<br>
Does any of you guys here know how to compile TagLib with g++? if so please<br>
share!<br>
<br>
Thank you for reading my message! Have a good day!<br>
<br>
<br>
Best regards,<br>
<br>
--<br>
Phong V. Cao<br>
<a href="mailto:phngcv@gmail.com">phngcv@gmail.com</a><br>
<a href="mailto:caoph@rider.edu">caoph@rider.edu</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mail.kde.org/pipermail/taglib-devel/attachments/20110628/95dee97d/attachment-0001.htm" target="_blank">http://mail.kde.org/pipermail/taglib-devel/attachments/20110628/95dee97d/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 28 Jun 2011 01:26:19 -0400<br>
From: Kyle <<a href="mailto:gonemad@gmail.com">gonemad@gmail.com</a>><br>
Subject: Re: Compile C++/TagLib with g++?<br>
To: <a href="mailto:taglib-devel@kde.org">taglib-devel@kde.org</a><br>
Message-ID: <<a href="mailto:BANLkTik258APAgL4o6-kxAx4MGXmU_R90g@mail.gmail.com">BANLkTik258APAgL4o6-kxAx4MGXmU_R90g@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
isnt there a NO_CONFIG define or something? i remember setting something<br>
like that when i built it<br>
<br>
On Tue, Jun 28, 2011 at 12:52 AM, Phong Cao <<a href="mailto:phngcv@gmail.com">phngcv@gmail.com</a>> wrote:<br>
<br>
> Hello everybody,<br>
><br>
> I am trying to build a small music manager that uses TagLib to read<br>
> metadata from audio streams. However, I was unable to compile the program.<br>
> Here is what I tried:<br>
><br>
> g++ -g /home/phongcao/dingo/main.cc -o /home/phongcao/dingo/main<br>
> `pkg-config taglib-config --cflags --libs gtkmm-2.4`<br>
><br>
> And this was what g++ returned:<br>
><br>
> Package taglib-config was not found in the pkg-config search path.<br>
> Perhaps you should add the directory containing `taglib-config.pc'<br>
> to the PKG_CONFIG_PATH environment variable<br>
> No package 'taglib-config' found<br>
><br>
> According to the TagLib API documentation: "TagLib installs a taglib-config<br>
> and pkg-config file to make it easier to integrate into various build<br>
> systems".<br>
><br>
> However, I am a total newbie on TagLib and do not know how to compile it<br>
> using g++, and there was nothing more than the above statement in the API<br>
> documentation.<br>
><br>
> Does any of you guys here know how to compile TagLib with g++? if so please<br>
> share!<br>
><br>
> Thank you for reading my message! Have a good day!<br>
><br>
><br>
> Best regards,<br>
><br>
> --<br>
> Phong V. Cao<br>
> <a href="mailto:phngcv@gmail.com">phngcv@gmail.com</a><br>
> <a href="mailto:caoph@rider.edu">caoph@rider.edu</a><br>
><br>
><br>
><br>
> _______________________________________________<br>
> taglib-devel mailing list<br>
> <a href="mailto:taglib-devel@kde.org">taglib-devel@kde.org</a><br>
> <a href="https://mail.kde.org/mailman/listinfo/taglib-devel" target="_blank">https://mail.kde.org/mailman/listinfo/taglib-devel</a><br>
><br>
><br>
<br>
<br>
--<br>
-Kyle<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mail.kde.org/pipermail/taglib-devel/attachments/20110628/92576c0a/attachment-0001.htm" target="_blank">http://mail.kde.org/pipermail/taglib-devel/attachments/20110628/92576c0a/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
taglib-devel mailing list<br>
<a href="mailto:taglib-devel@kde.org">taglib-devel@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/taglib-devel" target="_blank">https://mail.kde.org/mailman/listinfo/taglib-devel</a><br>
<br>
<br>
End of taglib-devel Digest, Vol 84, Issue 18<br>
********************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>Phong V. Cao<div><a href="mailto:phngcv@gmail.com" target="_blank">phngcv@gmail.com</a></div><div><a href="mailto:caoph@rider.edu" target="_blank">caoph@rider.edu</a></div>
<div><br></div><br>