1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Update to 1.06

This commit is contained in:
Emanuel Haupt 2020-01-20 14:12:33 +00:00
parent 1e799db5ab
commit ae826384b6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=523620
3 changed files with 4 additions and 22 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= fasttracker2
DISTVERSIONPREFIX= v
DISTVERSION= 1.05
DISTVERSION= 1.06
CATEGORIES= audio
MAINTAINER= ehaupt@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1577639339
SHA256 (8bitbubsy-ft2-clone-v1.05_GH0.tar.gz) = 3ed4e11591dcb243d3d658be10f1a9f2b7aae71188ffa1155e5e1268c4436c13
SIZE (8bitbubsy-ft2-clone-v1.05_GH0.tar.gz) = 4375314
TIMESTAMP = 1579528638
SHA256 (8bitbubsy-ft2-clone-v1.06_GH0.tar.gz) = acf32bf036930d1e0ef2b5970e5a3440d36974725c225c5f22da5c77cdd4d7bb
SIZE (8bitbubsy-ft2-clone-v1.06_GH0.tar.gz) = 4376560

View File

@ -1,18 +0,0 @@
--- src/ft2_main.c.orig 2019-03-19 07:15:21 UTC
+++ src/ft2_main.c
@@ -188,6 +188,7 @@ int main(int argc, char *argv[])
//benchmarkAudioChannelMixer(); // for development testing
+#ifndef __FreeBSD__
// set up MIDI input (in a thread because it can take quite a while on f.ex. macOS)
initMidiThread = SDL_CreateThread(initMidiFunc, NULL, NULL);
if (initMidiThread == NULL)
@@ -197,6 +198,7 @@ int main(int argc, char *argv[])
return (1);
}
SDL_DetachThread(initMidiThread); // don't wait for this thread, let it clean up when done
+#endif
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);