Browse Source

Stephen: "It's portaudio, not libvorbis that needs version >= 19."

Rusty Russell 17 years ago
parent
commit
2a1c08c3e8
2 changed files with 3 additions and 3 deletions
  1. 1 1
      ccan/ogg_to_pcm/_info.c
  2. 2 2
      ccan/wwviaudio/_info.c

+ 1 - 1
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;
 	}
 

+ 2 - 2
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;
 	}