[brasero] build: add checks for beagle libraryies to configure as it is used in the code



commit 90e5d3c213f82222af7dd1243d7c721cf980f8a5
Author: Stefan Sauer <ensonic google com>
Date:   Thu Aug 25 11:57:51 2011 +0200

    build: add checks for beagle libraryies to configure as it is used in the code
    
    Solves build failure. Fixes #657313

 configure.in    |    7 +++++++
 src/Makefile.am |    6 ++++--
 2 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/configure.in b/configure.in
index f3e9e81..021fa0c 100644
--- a/configure.in
+++ b/configure.in
@@ -213,6 +213,13 @@ PKG_CHECK_MODULES(BRASERO_SM,
 AC_SUBST(BRASERO_SM_CFLAGS)
 AC_SUBST(BRASERO_SM_LIBS)
 
+PKG_CHECK_MODULES(BRASERO_BEAGLE, 		\
+	libbeagle-1.0)
+
+AC_SUBST(BRASERO_BEAGLE_CFLAGS)
+AC_SUBST(BRASERO_BEAGLE_LIBS)
+
+
 #
 # GTK+ stuff (taken and adapted from empathy)
 #
diff --git a/src/Makefile.am b/src/Makefile.am
index f3b1b1f..9d33ffd 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,7 +23,8 @@ INCLUDES = \
 	$(BRASERO_LIBXML_CFLAGS)					\
 	$(BRASERO_SEARCH_CFLAGS)					\
 	$(BRASERO_PL_PARSER_CFLAGS)					\
-	$(BRASERO_SM_CFLAGS)
+	$(BRASERO_SM_CFLAGS)						\
+	$(BRASERO_BEAGLE_CFLAGS)
 
 GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
 RECMARSHALFILES = brasero-marshal.h brasero-marshal.c
@@ -158,7 +159,8 @@ brasero_LDADD =						\
 	$(BRASERO_LIBXML_LIBS)		\
 	$(BRASERO_SEARCH_LIBS)		\
 	$(BRASERO_PL_PARSER_LIBS)	\
-	$(BRASERO_SM_LIBS)
+	$(BRASERO_SM_LIBS)		\
+	$(BRASERO_BEAGLE_LIBS)
 
 EXTRA_DIST =			\
 	brasero-marshal.list



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