[tracker/functions] Fixed id3lib configure errors and improved README for Debian Sid amd64



commit 78f23fb2ac21cef0f11232d6fa10be18712f7c6d
Author: Don Pellegrino <don drexel edu>
Date:   Mon Jan 4 10:52:41 2010 +0000

    Fixed id3lib configure errors and improved README for Debian Sid amd64

 README       |   13 ++++++++++++-
 configure.ac |    2 +-
 2 files changed, 13 insertions(+), 2 deletions(-)
---
diff --git a/README b/README
index 435c33e..85b842d 100644
--- a/README
+++ b/README
@@ -122,9 +122,20 @@
 
 4 Compilation
 
-  To compile and install Tracker, use the following commands :
+  The git repository contains input to the GNU Autotools however a
+  number of commands need to be run to initialize GNU Autotools in the
+  project directory. To setup the project for compilation after
+  checking it out from the git repository, use: 
+
+        ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+
+  Or if you don't have autogen.sh (i.e. you are using the released
+  tarball), you can use:
 
         ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+
+  To start compiling the project use:
+
         make
         sudo make install
 
diff --git a/configure.ac b/configure.ac
index a0ef910..c711ba7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -250,7 +250,7 @@ AC_ARG_ENABLE(id3lib,
 
 if test "x$enable_id3lib" != "xno" ; then
    AC_CHECK_HEADER(id3.h,
-   AC_CHECK_LIB(id3, ID3Tag_New))
+   AC_CHECK_LIB([id3], [ID3Tag_New], [], [], [-lstdc++ -lz]))
 
    have_id3lib=${ac_cv_lib_id3_ID3Tag_New:-no}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]