summaryrefslogtreecommitdiff
path: root/audio/csound6/files/patch-Top_csound.c
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-11-17 21:07:15 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-11-17 21:07:15 +0000
commitb4340bf78e847ef8579e957b7854229cce8cc8bf (patch)
tree768e9772fd4466b4b9297f281ce87d829baf8913 /audio/csound6/files/patch-Top_csound.c
parentUpdate to 4.0.10 (diff)
Move audio/csound6 -> audio/csound
Having the version in its name doesn't make sense because this is a stable package.
Diffstat (limited to 'audio/csound6/files/patch-Top_csound.c')
-rw-r--r--audio/csound6/files/patch-Top_csound.c65
1 files changed, 0 insertions, 65 deletions
diff --git a/audio/csound6/files/patch-Top_csound.c b/audio/csound6/files/patch-Top_csound.c
deleted file mode 100644
index e5b3f6e4fd2a..000000000000
--- a/audio/csound6/files/patch-Top_csound.c
+++ /dev/null
@@ -1,65 +0,0 @@
---- Top/csound.c.orig 2018-11-07 14:05:23 UTC
-+++ Top/csound.c
-@@ -60,10 +60,14 @@
- //#include "cs_par_dispatch.h"
- #include "find_opcode.h"
-
--#if defined(linux)||defined(__HAIKU__)|| defined(__EMSCRIPTEN__)||defined(__CYGWIN__)
-+#if defined(linux) || defined(__FreeBSD__) || defined(__HAIKU__)|| defined(__EMSCRIPTEN__)||defined(__CYGWIN__)
- #define PTHREAD_SPINLOCK_INITIALIZER 0
- #endif
-
-+#if defined(__FreeBSD__)
-+#include <sys/sysctl.h>
-+#endif
-+
- #include "csound_standard_types.h"
-
- #include "csdebug.h"
-@@ -405,7 +409,7 @@ static const CSOUND cenviron_ = {
- rewriteheader,
- csoundLoadSoundFile,
- fdrecord,
-- fdclose,
-+ fd__close,
- csoundCreateFileHandle,
- csoundGetFileName,
- csoundFileClose,
-@@ -3755,7 +3759,7 @@ void csoundNotifyFileOpened(CSOUND* csou
- /* ------------------------------------ */
-
- #if defined(HAVE_RDTSC)
--#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__))
-+#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) || !(defined(__FreeBSD__) && defined(__i386__))
- #undef HAVE_RDTSC
- #endif
- #endif
-@@ -3768,6 +3772,13 @@ static double timeResolutionSeconds = -1
- static int getTimeResolution(void)
- {
- #if defined(HAVE_RDTSC)
-+#if defined(__FreeBSD__)
-+ size_t size;
-+ int timeResolutionSeconds;
-+ size = sizeof timeResolutionSeconds;
-+ sysctlbyname("hw.clockrate", &timeResolutionSeconds, &size, NULL, 0);
-+
-+#else
- FILE *f;
- char buf[256];
-
-@@ -3803,9 +3814,14 @@ static int getTimeResolution(void)
- }
- }
- fclose(f);
-+#endif /* __FreeBSD__ */
- if (UNLIKELY(timeResolutionSeconds <= 0.0)) {
- fprintf(stderr, Str("No valid CPU frequency entry "
-+#if defined(__FreeBSD__)
-+ "was found.\n"));
-+#else
- "was found in /proc/cpuinfo.\n"));
-+#endif /* __FreeBSD__ */
- return -1;
- }
- /* MHz -> seconds */