aboutsummaryrefslogtreecommitdiff
path: root/patches/env.diff
blob: 39629cfe5dbb70614131a9afaf72de72abe75e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/src/ffi.rs b/src/ffi.rs
index 13d98cd..39564dc 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -42,7 +42,10 @@ use crate::*;
 
 #[no_mangle]
 pub extern fn quiche_version() -> *const u8 {
-    static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0");
+    //static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0");
+    // ANDROID's build system doesn't support environment variables
+    // so we hardcode the package version here.
+    static VERSION: &str = concat!("0.6.0", "\0");
     VERSION.as_ptr()
 }