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 1054
Collapse All | Expand All

(-)a/configure.in.in (+7 lines)
Lines 37-42 dnl cdparanoia check Link Here
37
dnl -------------------------------------
37
dnl -------------------------------------
38
38
39
AC_CHECK_HEADERS(cdda_interface.h, have_paranoia="yes", have_paranoia="no" )
39
AC_CHECK_HEADERS(cdda_interface.h, have_paranoia="yes", have_paranoia="no" )
40
if test x$have_paranoia != xyes; then
41
  AC_CHECK_HEADERS(cdda/cdda_interface.h, have_paranoia="yes", have_paranoia="no" )
42
  if test x$have_paranoia = xyes; then
43
    cdda_includes="-I/usr/include/cdda"
44
  fi
45
fi
46
AC_SUBST(cdda_includes)
40
47
41
dnl ----------------------------------
48
dnl ----------------------------------
42
dnl    Can soundkonverter be compiled?
49
dnl    Can soundkonverter be compiled?
(-)a/src/Makefile.am (-1 / +1 lines)
Lines 1-6 Link Here
1
# set the include path for X, qt and KDE
1
# set the include path for X, qt and KDE
2
INCLUDES = $(all_includes) -I$(top_srcdir)/src/metadata/ \
2
INCLUDES = $(all_includes) -I$(top_srcdir)/src/metadata/ \
3
	-I$(top_srcdir)/src/pluginloader/
3
	-I$(top_srcdir)/src/pluginloader/ $(cdda_includes)
4
4
5
# these are the headers for your project
5
# these are the headers for your project
6
noinst_HEADERS = cdmanager.h cdopener.h combobutton.h config.h \
6
noinst_HEADERS = cdmanager.h cdopener.h combobutton.h config.h \

Return to bug 1054