aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-10-10 19:00:50 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-10-10 19:00:50 +0000
commitfe2f2920b843530dc8253da9098889d38dae4241 (patch)
treeba9b84d9709ca7373f5ac6321725d094110b81a9 /gtk/main.c
parent26cce5d9fd36f22a347eb1ebddd3de07e15e31da (diff)
Don't let PortAudio skip the queue on the about dialog ;)
svn path=/trunk/; revision=19478
Diffstat (limited to 'gtk/main.c')
-rw-r--r--gtk/main.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/gtk/main.c b/gtk/main.c
index fee81ca026..822c7ea932 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -2067,17 +2067,6 @@ main(int argc, char *argv[])
/* Assemble the compile-time version information string */
comp_info_str = g_string_new("Compiled ");
-#ifdef HAVE_LIBPORTAUDIO
-#ifdef PORTAUDIO_API_1
- g_string_append(comp_info_str, "with PortAudio <= V18");
-#else
- g_string_append(comp_info_str, "with PortAudio ");
- g_string_append(comp_info_str, Pa_GetVersionText());
-#endif
-#else
- g_string_append(comp_info_str, "without PortAudio");
-#endif /* HAVE_LIBPORTAUDIO */
- g_string_append(comp_info_str, ", ");
g_string_append(comp_info_str, "with ");
g_string_sprintfa(comp_info_str,
@@ -2091,6 +2080,19 @@ main(int argc, char *argv[])
get_compiled_version_info(comp_info_str);
+#ifdef HAVE_LIBPORTAUDIO
+ g_string_append(comp_info_str, " ");
+#ifdef PORTAUDIO_API_1
+ g_string_append(comp_info_str, "with PortAudio <= V18");
+#else
+ g_string_append(comp_info_str, "with PortAudio ");
+ g_string_append(comp_info_str, Pa_GetVersionText());
+#endif
+#else
+ g_string_append(comp_info_str, "without PortAudio");
+#endif /* HAVE_LIBPORTAUDIO */
+ g_string_append(comp_info_str, ".");
+
/* Assemble the run-time version information string */
runtime_info_str = g_string_new("Running ");
get_runtime_version_info(runtime_info_str);