From: Rusty Russell Date: Thu, 9 Apr 2009 05:20:41 +0000 (+0930) Subject: Stephen: "It's portaudio, not libvorbis that needs version >= 19." X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=2a1c08c3e86ac3a9750bfb6f77c236356a2a3f3d Stephen: "It's portaudio, not libvorbis that needs version >= 19." --- diff --git a/ccan/ogg_to_pcm/_info.c b/ccan/ogg_to_pcm/_info.c index 2a5655ae..48d4da88 100644 --- a/ccan/ogg_to_pcm/_info.c +++ b/ccan/ogg_to_pcm/_info.c @@ -33,7 +33,7 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - printf("libvorbis >=19\n"); + printf("libvorbis\n"); return 0; } diff --git a/ccan/wwviaudio/_info.c b/ccan/wwviaudio/_info.c index b039fae0..84a33276 100644 --- a/ccan/wwviaudio/_info.c +++ b/ccan/wwviaudio/_info.c @@ -47,8 +47,8 @@ int main(int argc, char *argv[]) if (strcmp(argv[1], "depends") == 0) { printf("ccan/ogg_to_pcm\n" - "libvorbis >=19\n" - "portaudio\n"); + "libvorbis\n" + "portaudio >=19\n"); return 0; }