aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Walbran <qwandor@google.com>2023-11-28 18:49:43 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-11-28 18:49:43 +0000
commitce22f63d0e1f73f091c77c2d650f97942bd2a1ee (patch)
treefc0e3234f36f26e0d426729db68e694889348a39
parent420ff5d4e4c5bcd7ab8146e3c6f24f3592917a6a (diff)
parentf8a4436f38284d92e2176d7fb1412d553b896b87 (diff)
downloadquiche-ce22f63d0e1f73f091c77c2d650f97942bd2a1ee.tar.gz
Remove patch which no longer applies. am: b3b7270dc3 am: f8a4436f38
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/quiche/+/2848256 Change-Id: Ic7bc6c8c3bcd0009f75fe4c49550815fad679b09 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-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()
- }
-