Skip to content

Commit 8a59f24

Browse files
committed
Remove patch for SDL 2.0.8
1 parent 9033c00 commit 8a59f24

File tree

2 files changed

+2
-51
lines changed

2 files changed

+2
-51
lines changed

sdl2-sys/build.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,8 @@ fn download_sdl2() -> PathBuf {
123123
fn patch_sdl2(sdl2_source_path: &Path) {
124124
// vector of <(patch_file_name, patch_file_contents)>
125125
let patches: Vec<(&str, &'static str)> = vec![
126-
// This patch fixes a CMake installation bug introduced in SDL2 2.0.4 on
127-
// the Mac OS platform. Without this patch, the libSDL2.dylib generated
128-
// during the SDL2 build phase will be overwritten by a symlink pointing
129-
// to nothing. A variation of this patch was accepted upstream and
130-
// should be included in SDL2 2.0.9.
131-
// https://bugzilla.libsdl.org/show_bug.cgi?id=4234
132-
("SDL2-2.0.8-4234-mac-os-dylib-fix.patch", include_str!("patches/SDL2-2.0.8-4234-mac-os-dylib-fix.patch")),
126+
// No patches at this time. If needed, add them like this:
127+
// ("SDL-2.x.y-filename.patch", include_str!("patches/SDL-2.x.y-filename.patch")),
133128
];
134129
let sdl_version = format!("SDL2-{}", LASTEST_SDL2_VERSION);
135130

sdl2-sys/patches/SDL2-2.0.8-4234-mac-os-dylib-fix.patch

-44
This file was deleted.

0 commit comments

Comments
 (0)