By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 791
Collapse All | Expand All

(-)/dev/null (+11 lines)
Added Link Here
1
prefix=@prefix@
2
exec_prefix=@prefix@
3
libdir=@libdir@
4
includedir=@includedir@
5
6
Name: akode 
7
Description: aKode is a simple audio-decoding frame-work 
8
Version: 2.0.2 
9
Libs: -L${libdir} -lakode
10
Cflags: -I${includedir}
11
(-)akode-2.0.2/akode/configure.in.in.multilib (+1 lines)
Lines 1-5 Link Here
1
dnl don't remove the below
1
dnl don't remove the below
2
dnl AC_OUTPUT(akode/akode-config)
2
dnl AC_OUTPUT(akode/akode-config)
3
dnl AC_OUTPUT(akode/akode.pc)
3
4
4
AM_CONFIG_HEADER(akode/lib/akode_export.h)
5
AM_CONFIG_HEADER(akode/lib/akode_export.h)
5
6
(-)akode-2.0.2/akode/akode-config.in.multilib (-5 / +4 lines)
Lines 15-23 EOH Link Here
15
}
15
}
16
16
17
prefix=@prefix@
17
prefix=@prefix@
18
exec_prefix=@exec_prefix@
18
akode_libs="`pkg-config --libs akode`"
19
libdir=@libdir@
19
akode_cflags="`pkg-config --cflags akode`"
20
includedir=@includedir@
21
20
22
flags=""
21
flags=""
23
22
Lines 29-38 while test $# -gt 0 Link Here
29
do
28
do
30
  case $1 in
29
  case $1 in
31
    --libs)
30
    --libs)
32
	  flags="$flags -L$libdir -lakode"
31
	  flags="$flags $akode_libs"
33
	  ;;
32
	  ;;
34
    --cflags)
33
    --cflags)
35
	  flags="$flags -I$includedir"
34
	  flags="$flags $akode_cflags"
36
	  ;;
35
	  ;;
37
    --version)
36
    --version)
38
	  echo 2.0.2
37
	  echo 2.0.2
(-)akode-2.0.2/akode/Makefile.am.multilib (+5 lines)
Lines 1-3 Link Here
1
bin_SCRIPTS = akode-config
1
bin_SCRIPTS = akode-config
2
2
3
SUBDIRS= lib plugins akodeplay
3
SUBDIRS= lib plugins akodeplay
4
5
pkgconfigdir = $(libdir)/pkgconfig
6
pkgconfig_DATA = akode.pc
7
8
EXTRA_DIST = akode.pc.in

Return to bug 791