Skip to content

Commit

Permalink
update portaudio
Browse files Browse the repository at this point in the history
can't use a modern static portaudio via pkg_config because of rust-lang/pkg-config-rs#102
  • Loading branch information
dansgithubuser committed Apr 25, 2024
1 parent 9b7dfad commit a7af63e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-portaudio-sys/build.rs
Expand Up @@ -83,8 +83,8 @@ mod unix_platform {

use super::{err_to_panic, run};

pub const PORTAUDIO_URL: &'static str = "http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz";
pub const PORTAUDIO_TAR: &'static str = "pa_stable_v19_20140130.tgz";
pub const PORTAUDIO_URL: &'static str = "https://files.portaudio.com/archives/pa_stable_v190700_20210406.tgz";
pub const PORTAUDIO_TAR: &'static str = "pa_stable_v190700_20210406.tgz";
pub const PORTAUDIO_FOLDER: &'static str = "portaudio";

pub fn download() {
Expand Down

0 comments on commit a7af63e

Please sign in to comment.