From 23a6fab52ec178af69cbc1d9721bf0124ef7d2bd Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Wed, 8 Jan 2020 22:54:37 +0100 Subject: Qt: remove codecs from about Wireshark dialog Codecs were moved to plugins in g63af1da7e7, they are no more embedded in a library. Change-Id: Id5448d2f83b1b4f7b1aac2620390f99da9327167 Reviewed-on: https://code.wireshark.org/review/35701 Reviewed-by: Pascal Quantin Petri-Dish: Pascal Quantin Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- ui/qt/main.cpp | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/ui/qt/main.cpp b/ui/qt/main.cpp index 9ba20799f3..486a91061c 100644 --- a/ui/qt/main.cpp +++ b/ui/qt/main.cpp @@ -240,27 +240,6 @@ get_gui_compiled_info(GString *str) #else g_string_append(str, ", with SpeexDSP (using bundled resampler)"); #endif - - /* SBC */ -#ifdef HAVE_SBC - g_string_append(str, ", with SBC"); -#else - g_string_append(str, ", without SBC"); -#endif - - /* SpanDSP (G.722, G.726) */ -#ifdef HAVE_SPANDSP - g_string_append(str, ", with SpanDSP"); -#else - g_string_append(str, ", without SpanDSP"); -#endif - - /* BCG729 (G.729) */ -#ifdef HAVE_BCG729 - g_string_append(str, ", with bcg729"); -#else - g_string_append(str, ", without bcg729"); -#endif } // xxx copied from ../gtk/main.c -- cgit v1.2.3