diff options
Diffstat (limited to 'audio/audacity-devel/files')
4 files changed, 0 insertions, 62 deletions
diff --git a/audio/audacity-devel/files/patch-libresample-Makefile.in b/audio/audacity-devel/files/patch-libresample-Makefile.in index bcb4513bcd20..e69de29bb2d1 100644 --- a/audio/audacity-devel/files/patch-libresample-Makefile.in +++ b/audio/audacity-devel/files/patch-libresample-Makefile.in @@ -1,11 +0,0 @@ ---- lib-src/libresample/Makefile.in.orig Tue Dec 2 19:46:02 2003 -+++ lib-src/libresample/Makefile.in Tue Dec 2 19:46:25 2003 -@@ -6,7 +6,7 @@ - CC = @CC@ - CFLAGS = @CFLAGS@ -Wall - --LIBS = @LIBS@ -lm -+LIBS = @LDFLAGS@ @LIBS@ -lm - - AR = @AR@ - RANLIB = @RANLIB@ diff --git a/audio/audacity-devel/files/patch-locale_Makefile.in b/audio/audacity-devel/files/patch-locale_Makefile.in index 979310458e10..e69de29bb2d1 100644 --- a/audio/audacity-devel/files/patch-locale_Makefile.in +++ b/audio/audacity-devel/files/patch-locale_Makefile.in @@ -1,11 +0,0 @@ ---- locale/Makefile.in 2008-07-04 23:33:51.000000000 +0000 -+++ locale/Makefile.in.orig 2008-07-04 23:33:28.000000000 +0000 -@@ -14,7 +14,7 @@ - DATADIR=@datadir@ - # This is an intermediate directory that all files destined for installation - # get put into on the way (make DESTDIR=/foo install). --DESTDIR=@destdir@ -+DESTDIR= - # this is where locale-dependant stuff (i.e. .mo files) goes - LOCALEDIR=@localedir@ - INSTALL=@INSTALL@ diff --git a/audio/audacity-devel/files/patch-portaudio-pa_unix.c b/audio/audacity-devel/files/patch-portaudio-pa_unix.c index ff3c8ca818fd..e69de29bb2d1 100644 --- a/audio/audacity-devel/files/patch-portaudio-pa_unix.c +++ b/audio/audacity-devel/files/patch-portaudio-pa_unix.c @@ -1,29 +0,0 @@ ---- lib-src/portaudio/pa_unix_oss/pa_unix.c.orig Tue Nov 30 21:18:35 2004 -+++ lib-src/portaudio/pa_unix_oss/pa_unix.c Tue Nov 30 21:33:58 2004 -@@ -422,7 +422,7 @@ - maxPri = sched_get_priority_max(SCHEDULER_POLICY); - if( schp.sched_priority > maxPri ) schp.sched_priority = maxPri; - -- if (sched_setscheduler(0, SCHEDULER_POLICY, &schp) != 0) -+ if (pthread_setschedparam(pahsc->pahsc_WatchDogThread, SCHEDULER_POLICY, &schp) != 0) - { - ERR_RPT(("PaHost_WatchDogProc: cannot set watch dog priority!\n")); - goto killAudio; -@@ -465,7 +465,7 @@ - lowerAudio: - { - struct sched_param schat = { 0 }; -- if( sched_setscheduler(pahsc->pahsc_AudioThreadPID, SCHED_OTHER, &schat) != 0) -+ if( pthread_setschedparam(pahsc->pahsc_AudioThread, SCHED_OTHER, &schat) != 0) - { - ERR_RPT(("PaHost_WatchDogProc: failed to lower audio priority. errno = %d\n", errno )); - /* Fall through into killing audio thread. */ -@@ -585,7 +585,7 @@ - sched_get_priority_min(SCHEDULER_POLICY)) / 2; - schp.sched_priority = pahsc->pahsc_AudioPriority; - -- if (sched_setscheduler(0, SCHEDULER_POLICY, &schp) != 0) -+ if (pthread_setschedparam(pahsc->pahsc_AudioThread, SCHEDULER_POLICY, &schp) != 0) - { - DBUG(("PortAudio: only superuser can use real-time priority.\n")); - } diff --git a/audio/audacity-devel/files/patch-portaudio-pa_unix.h b/audio/audacity-devel/files/patch-portaudio-pa_unix.h index e4a44ff9a1bf..e69de29bb2d1 100644 --- a/audio/audacity-devel/files/patch-portaudio-pa_unix.h +++ b/audio/audacity-devel/files/patch-portaudio-pa_unix.h @@ -1,11 +0,0 @@ ---- lib-src/portaudio/pa_unix_oss/pa_unix.h.orig Tue Dec 2 19:56:56 2003 -+++ lib-src/portaudio/pa_unix_oss/pa_unix.h Tue Dec 2 19:58:33 2003 -@@ -82,7 +82,7 @@ - #define MAX_TIMEOUT_MSEC (1000) - - /************************************************* Definitions ********/ --#ifdef __linux__ -+#if defined(__linux__) || defined(__FreeBSD__) - #define DEVICE_NAME_BASE "/dev/dsp" - #else - #define DEVICE_NAME_BASE "/dev/audio" |