aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-09-12 18:51:22 +0000
committerJörg Mayer <jmayer@loplof.de>2006-09-12 18:51:22 +0000
commit6cf447a76d7170b25452ce075bbb4cc5e3c1cb7f (patch)
tree7860eb278f37b7e59e8f7cf3d66a157c917f655a /version_info.c
parent5f9300b9e23befe1065a9f5643df81be08a89973 (diff)
tshark wouldn't link any more, as it doesn't link against
libportaudio, but version_info.c with libportaudio >= 19 needs to link against this. FIXME: Just print out >= 19 instead of real version string until someone finds a proper solution. svn path=/trunk/; revision=19219
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/version_info.c b/version_info.c
index 3411e86dcb..d3a83844bc 100644
--- a/version_info.c
+++ b/version_info.c
@@ -280,7 +280,14 @@ get_compiled_version_info(GString *str)
g_string_append(str, "with PortAudio <= V18");
#else
g_string_append(str, "with PortAudio ");
+
+#if 0 /* FIXME: tshark doesn't need portaudio but
+ * links against this file
+ */
g_string_append(str, Pa_GetVersionText());
+#else /* 0 (FIXME) */
+ g_string_append(str, ">= V19");
+#endif /* 0 (FIXME) */
#endif
#else
g_string_append(str, "without PortAudio");