diff options
author | Jason W. Bacon <jwb@FreeBSD.org> | 2020-04-24 19:22:03 +0000 |
---|---|---|
committer | Jason W. Bacon <jwb@FreeBSD.org> | 2020-04-24 19:22:03 +0000 |
commit | 9b3ea45e5b615b028b14991c749447d9e25c35ea (patch) | |
tree | 87a0b73a0ede1dc971145cf236f1a3db771ffd3f /audio/praat/files/patch-sys_melder__alloc.cpp | |
parent | security/lego: Update to 3.6.0 (diff) |
audio/praat: Upgrade to 6.1.13
Clean up patches
Switch from OSS to ALSA (upstream default)
Left in and documented patches to ease switch to OSS or JACK in case of
runtime issues
Releasing maintainership as I no longer work with any praat users
Reported by: portscout
Diffstat (limited to 'audio/praat/files/patch-sys_melder__alloc.cpp')
-rw-r--r-- | audio/praat/files/patch-sys_melder__alloc.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/audio/praat/files/patch-sys_melder__alloc.cpp b/audio/praat/files/patch-sys_melder__alloc.cpp deleted file mode 100644 index 261cb1dcbfc8..000000000000 --- a/audio/praat/files/patch-sys_melder__alloc.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- sys/melder_alloc.cpp.orig 2015-05-20 01:47:31 UTC -+++ sys/melder_alloc.cpp -@@ -317,8 +317,8 @@ int Melder_strcmp (const char *string1, - } - - int Melder_str32cmp (const char32 *string1, const char32 *string2) { -- if (string1 == NULL) string1 = U""; -- if (string2 == NULL) string2 = U""; -+ if (string1 == NULL) string1 = (char32 *)""; -+ if (string2 == NULL) string2 = (char32 *)""; - return str32cmp (string1, string2); - } - |