changeset 2770:e21a9128e683 trunk

[svn] - remove -laudacious from audacious.pc.in. -laudclient will be put into audacious.pc if --enable-dbus is specified.
author yaz
date Mon, 14 May 2007 01:10:54 -0700
parents bf2d80abf76e
children 4585019eb82e
files ChangeLog audacious.pc.in configure.ac src/audacious/build_stamp.c
diffstat 4 files changed, 20 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 13 18:38:53 2007 -0700
+++ b/ChangeLog	Mon May 14 01:10:54 2007 -0700
@@ -1,3 +1,19 @@
+2007-05-14 01:38:53 +0000  Ben Tucker <bnt@interchange.ubc.ca>
+  revision [4564]
+  Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
+  
+  trunk/src/audacious/Makefile         |    4 -
+  trunk/src/audacious/dbus-service.h   |   43 +++++++++--
+  trunk/src/audacious/dbus.c           |  132 +++++++++++++++++++++++++++++++----
+  trunk/src/audacious/dbus.h           |    4 +
+  trunk/src/audacious/mpris_player.xml |   27 +++++--
+  trunk/src/audacious/objects.xml      |   26 ++++--
+  trunk/src/audacious/ui_main.c        |    6 +
+  trunk/src/audacious/ui_main.h        |    1 
+  trunk/src/libaudclient/audctrl.c     |   21 +++++
+  9 files changed, 226 insertions(+), 38 deletions(-)
+
+
 2007-05-13 18:57:18 +0000  Ben Tucker <bnt@interchange.ubc.ca>
   revision [4562]
   Added a hook when building dependencies so that the dbus-bindings are created first without producing any error messages.
--- a/audacious.pc.in	Sun May 13 18:38:53 2007 -0700
+++ b/audacious.pc.in	Mon May 14 01:10:54 2007 -0700
@@ -18,5 +18,5 @@
 Description: Audacious is a versatile and handy multi platform media player
 Version: @PACKAGE_VERSION@
 Requires: @PC_REQUIRES@
-Libs: -L${lib_dir} -laudacious
+Libs: -L${lib_dir} @LIBAUDCLIENT_LDFLAGS@
 Cflags: -I${audacious_include_dir}
--- a/configure.ac	Sun May 13 18:38:53 2007 -0700
+++ b/configure.ac	Mon May 14 01:10:54 2007 -0700
@@ -238,6 +238,7 @@
 		DBUS_C=dbus.c
 		DBUS_BINDINGS="dbus-server-bindings.h dbus-client-bindings.h"
 		LIBAUDCLIENT_OBJECTIVE="libaudclient audtool"
+		LIBAUDCLIENT_LDFLAGS="-laudclient"
 		AC_SUBST(DBUS_C)
 		AC_SUBST(DBUS_BINDINGS)
 		AC_SUBST(USE_DBUS)
@@ -246,6 +247,7 @@
 		AC_SUBST(DBUS_SERVICES_DIR)
 		AC_SUBST(DBUS_BINDING_TOOL)
 		AC_SUBST(LIBAUDCLIENT_OBJECTIVE)
+		AC_SUBST(LIBAUDCLIENT_LDFLAGS)
 	fi
 fi
 
--- a/src/audacious/build_stamp.c	Sun May 13 18:38:53 2007 -0700
+++ b/src/audacious/build_stamp.c	Mon May 14 01:10:54 2007 -0700
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070513-4562";
+const gchar *svn_stamp = "20070514-4564";