summaryrefslogtreecommitdiffstats
path: root/plugins/audiooutput
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-08-27 14:15:03 +0200
committerSlávek Banko <slavek.banko@axis.cz>2022-08-27 14:15:03 +0200
commit3e30a7a74408b3217e3f5a22754cdd39c29d3ca2 (patch)
tree1953c059e0184bed19352f3985d943ea633bd3ba /plugins/audiooutput
parent0a7dd146a5b291c69f6f3d4a82b7209e6f4e2847 (diff)
downloadk3b-3e30a7a74408b3217e3f5a22754cdd39c29d3ca2.tar.gz
k3b-3e30a7a74408b3217e3f5a22754cdd39c29d3ca2.zip
Drop automake build support.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'plugins/audiooutput')
-rw-r--r--plugins/audiooutput/Makefile.am9
-rw-r--r--plugins/audiooutput/alsa/Makefile.am14
-rw-r--r--plugins/audiooutput/alsa/configure.in.bot7
-rw-r--r--plugins/audiooutput/alsa/configure.in.in26
-rw-r--r--plugins/audiooutput/arts/Makefile.am13
5 files changed, 0 insertions, 69 deletions
diff --git a/plugins/audiooutput/Makefile.am b/plugins/audiooutput/Makefile.am
deleted file mode 100644
index d8335ad..0000000
--- a/plugins/audiooutput/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-if include_arts
-ARTSDIR=arts
-endif
-
-if include_ALSA
-ALSADIR=alsa
-endif
-
-SUBDIRS = $(ARTSDIR) $(ALSADIR)
diff --git a/plugins/audiooutput/alsa/Makefile.am b/plugins/audiooutput/alsa/Makefile.am
deleted file mode 100644
index 9cd7c03..0000000
--- a/plugins/audiooutput/alsa/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-AM_CPPFLAGS = -I$(srcdir)/../../../libk3b/core -I$(srcdir)/../../../libk3b/plugin $(all_includes)
-
-kde_module_LTLIBRARIES = libk3balsaoutputplugin.la
-
-libk3balsaoutputplugin_la_SOURCES = k3balsaoutputplugin.cpp
-
-libk3balsaoutputplugin_la_CFLAGS = $(ALSA_CFLAGS)
-libk3balsaoutputplugin_la_LIBADD = ../../../libk3b/libk3b.la $(ALSA_LIBS) $(LIB_TDECORE) $(LIB_TQT) $(LIB_TDEUI)
-libk3balsaoutputplugin_la_LDFLAGS = -avoid-version -module -no-undefined $(all_libraries)
-
-pluginsdir = $(kde_datadir)/k3b/plugins
-plugins_DATA = k3balsaoutputplugin.plugin
-
-METASOURCES = AUTO
diff --git a/plugins/audiooutput/alsa/configure.in.bot b/plugins/audiooutput/alsa/configure.in.bot
deleted file mode 100644
index d5c8d17..0000000
--- a/plugins/audiooutput/alsa/configure.in.bot
+++ /dev/null
@@ -1,7 +0,0 @@
-echo ""
-
-if test "x$have_alsa" = xyes; then
- echo "K3b - Audioplayer available (alsa) yes"
-else
- echo "K3b - Audioplayer available (alsa) no"
-fi
diff --git a/plugins/audiooutput/alsa/configure.in.in b/plugins/audiooutput/alsa/configure.in.in
deleted file mode 100644
index 244dce4..0000000
--- a/plugins/audiooutput/alsa/configure.in.in
+++ /dev/null
@@ -1,26 +0,0 @@
-dnl --------- ALSA CHECK BEGIN -------------
-
-AC_DEFUN([KDE_CHECK_ALSA],
-[
- PKG_CHECK_MODULES([ALSA], [alsa >= 0.9], [have_alsa=yes], [have_alsa=no])
- AC_SUBST([ALSA_CFLAGS])
- AC_SUBST([ALSA_LIBS])
-])
-
-AC_ARG_WITH(alsa,
- [AS_HELP_STRING(--with-alsa,
- [enable support for ALSA output @<:@default=check@:>@])],
- [], with_alsa=check)
-
-have_alsa=no
-if test "x$with_alsa" != xno; then
- KDE_CHECK_ALSA
-
- if test "x$with_alsa" != xcheck && test "x$have_alsa" != xyes; then
- AC_MSG_FAILURE([--with-alsa was given, but test for ALSA failed])
- fi
-fi
-
-AM_CONDITIONAL(include_ALSA, [test "x$have_alsa" = "xyes"])
-
-dnl --------- ALSA CHECK END ---------------
diff --git a/plugins/audiooutput/arts/Makefile.am b/plugins/audiooutput/arts/Makefile.am
deleted file mode 100644
index 9197630..0000000
--- a/plugins/audiooutput/arts/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-AM_CPPFLAGS = -I$(srcdir)/../../../libk3b/core -I$(srcdir)/../../../libk3b/plugin $(ARTS_INCLUDES) $(all_includes)
-
-kde_module_LTLIBRARIES = libk3bartsoutputplugin.la
-
-libk3bartsoutputplugin_la_SOURCES = k3bartsoutputplugin.cpp
-
-libk3bartsoutputplugin_la_LIBADD = ../../../libk3b/libk3b.la -lartsc $(LIB_TDECORE) $(LIB_TQT)
-libk3bartsoutputplugin_la_LDFLAGS = -avoid-version -module -no-undefined $(all_libraries)
-
-pluginsdir = $(kde_datadir)/k3b/plugins
-plugins_DATA = k3bartsoutputplugin.plugin
-
-METASOURCES = AUTO