aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorJeffrey Vander Stoep <jeffv@google.com>2020-12-07 17:36:47 +0000
committerJeffrey Vander Stoep <jeffv@google.com>2020-12-07 17:36:47 +0000
commit4a3a1c0677ed68a7dfc5516e91b74abf5ec134b5 (patch)
treec27e514ef344ac0dde0763b35e961a31af334042 /patches
parentf06dc5df83682bac66e9551c7a2a22321cd91e40 (diff)
downloadquiche-4a3a1c0677ed68a7dfc5516e91b74abf5ec134b5.tar.gz
Revert "Add Android.bp"
This reverts commit f06dc5df83682bac66e9551c7a2a22321cd91e40. Reason for revert: b/175022551 Change-Id: Ic625af9c0b917833c115e19dedd061113ec5cd3f
Diffstat (limited to 'patches')
-rw-r--r--patches/env.diff16
1 files changed, 0 insertions, 16 deletions
diff --git a/patches/env.diff b/patches/env.diff
deleted file mode 100644
index 39629cf..0000000
--- a/patches/env.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-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()
- }
-