diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-08-27 14:15:03 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-08-27 14:15:03 +0200 |
commit | 3e30a7a74408b3217e3f5a22754cdd39c29d3ca2 (patch) | |
tree | 1953c059e0184bed19352f3985d943ea633bd3ba /plugins/decoder/flac | |
parent | 0a7dd146a5b291c69f6f3d4a82b7209e6f4e2847 (diff) | |
download | k3b-3e30a7a74408b3217e3f5a22754cdd39c29d3ca2.tar.gz k3b-3e30a7a74408b3217e3f5a22754cdd39c29d3ca2.zip |
Drop automake build support.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'plugins/decoder/flac')
-rw-r--r-- | plugins/decoder/flac/Makefile.am | 13 | ||||
-rw-r--r-- | plugins/decoder/flac/configure.in.bot | 13 | ||||
-rw-r--r-- | plugins/decoder/flac/configure.in.in | 41 |
3 files changed, 0 insertions, 67 deletions
diff --git a/plugins/decoder/flac/Makefile.am b/plugins/decoder/flac/Makefile.am deleted file mode 100644 index 36ed8ef..0000000 --- a/plugins/decoder/flac/Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ -AM_CPPFLAGS = -I$(srcdir)/../../../libk3b/plugin -I$(srcdir)/../../../libk3bdevice -I$(srcdir)/../../../libk3b/core $(taglib_includes) $(all_includes) - -kde_module_LTLIBRARIES = libk3bflacdecoder.la - -libk3bflacdecoder_la_SOURCES = k3bflacdecoder.cpp - -libk3bflacdecoder_la_LIBADD = ../../../libk3b/libk3b.la ../../../libk3bdevice/libk3bdevice.la $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_TQT) -lFLAC++ -lFLAC $(taglib_libs) -libk3bflacdecoder_la_LDFLAGS = -avoid-version -module -no-undefined $(all_libraries) - -pluginsdir = $(kde_datadir)/k3b/plugins -plugins_DATA = k3bflacdecoder.plugin - -METASOURCES = AUTO diff --git a/plugins/decoder/flac/configure.in.bot b/plugins/decoder/flac/configure.in.bot deleted file mode 100644 index f2d95a4..0000000 --- a/plugins/decoder/flac/configure.in.bot +++ /dev/null @@ -1,13 +0,0 @@ -echo "" - -if test x$have_flac = xyes; then - echo "K3b - FLAC support: yes" -else - echo "K3b - FLAC support: no" -if test "$ac_cv_use_flac" = "yes"; then - if test "$have_flac" = "no"; then - echo "K3b - You are missing the FLAC++ headers and libraries." - echo "K3b - The FLAC decoding plugin won't be compiled." - fi -fi -fi diff --git a/plugins/decoder/flac/configure.in.in b/plugins/decoder/flac/configure.in.in deleted file mode 100644 index 4679bf7..0000000 --- a/plugins/decoder/flac/configure.in.in +++ /dev/null @@ -1,41 +0,0 @@ -dnl === test for FLAC++ and FLAC - begin ==== -AC_ARG_WITH( - flac, - AS_HELP_STRING([--without-flac], [build K3b without FLAC support (default=no)]), - [ac_cv_use_flac=$withval], - [ac_cv_use_flac=yes] -) - -have_flac=no -if test "$ac_cv_use_flac" = "yes"; then - KDE_CHECK_HEADERS(FLAC++/decoder.h, [ - KDE_CHECK_LIB(FLAC,FLAC__stream_decoder_process_single, - have_flac=yes,[],$all_libraries)]) - - AC_MSG_CHECKING(for libFLAC newer than 1.1.1) - AC_CACHE_VAL(k3b_flac_new, - [ - AC_LANG_SAVE - AC_LANG_CPLUSPLUS - AC_TRY_COMPILE( - [ - #include <FLAC++/metadata.h> - ], [ - FLAC::Metadata::VorbisComment* vc; - vc->get_vendor_string().get_field(); - ], k3b_flac_new=no, k3b_flac_new=yes ) - AC_LANG_RESTORE - ]) - AC_MSG_RESULT($k3b_flac_new) - if test $k3b_flac_new = yes; then - AC_DEFINE(FLAC_NEWER_THAN_1_1_1, - 1, - [Define to 1 if your flac library's version is newer than or equal to 1.1.2] - ) - fi -else - have_flac=no -fi - -AM_CONDITIONAL(include_FLAC, [test x$have_flac = xyes]) -dnl === test for FLAC++ and FLAC - end ==== |