File: 02_link_with_audclient.patch

package info (click to toggle)
pidgin-audacious 2.0.0-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 300 kB
  • sloc: sh: 457; ansic: 368; makefile: 65
file content (21 lines) | stat: -rw-r--r-- 993 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: The plugin uses symbols from audclient libs, not audacious libs.
Author: Andrey Rahmatullin <wrar@wrar.name>
Bug-Debian: http://bugs.debian.org/702609
Last-Update: 2013-03-09

diff -up pidgin-audacious-2.0.0/configure.in.orig pidgin-audacious-2.0.0/configure.in
--- pidgin-audacious-2.0.0/configure.in.orig	2007-09-02 10:50:47.000000000 +0600
+++ pidgin-audacious-2.0.0/configure.in	2013-03-09 16:04:04.925939669 +0600
@@ -16,9 +16,9 @@ PKG_CHECK_MODULES(AUDACIOUS, [audacious
 
 You must have audacious >= 1.4.0 development headers installed to build.
 ])])
-AUD_CFLAGS=`pkg-config --cflags audacious 2> /dev/null`
-AUD_LIBS=`pkg-config --libs audacious 2> /dev/null`
-AUD_LIB_DIR=`pkg-config --variable=lib_dir audacious 2> /dev/null`
+AUD_CFLAGS=`pkg-config --cflags audclient 2> /dev/null`
+AUD_LIBS=`pkg-config --libs audclient 2> /dev/null`
+AUD_LIB_DIR=`pkg-config --variable=lib_dir audclient 2> /dev/null`
 AC_SUBST(AUD_CFLAGS)
 AC_SUBST(AUD_LIBS)
 AC_SUBST(AUD_LIB_DIR)