summaryrefslogtreecommitdiff
path: root/audio/nas/patches
diff options
context:
space:
mode:
authoraugustss <augustss>1998-02-09 19:56:11 +0000
committeraugustss <augustss>1998-02-09 19:56:11 +0000
commit61b3b9eea02a5b3e38e15e2cf29b9aedd431ac3c (patch)
tree5201651efe498c1c88b4d2e1a53c77b60ff3aa61 /audio/nas/patches
parent9044451de245ad16cd035279fc64b12b85873ebd (diff)
downloadpkgsrc-61b3b9eea02a5b3e38e15e2cf29b9aedd431ac3c.tar.gz
Remove nas package until someone has ported it.
Diffstat (limited to 'audio/nas/patches')
-rw-r--r--audio/nas/patches/patch-ab16
-rw-r--r--audio/nas/patches/patch-ac12
-rw-r--r--audio/nas/patches/patch-ad55
-rw-r--r--audio/nas/patches/patch-ae25
4 files changed, 0 insertions, 108 deletions
diff --git a/audio/nas/patches/patch-ab b/audio/nas/patches/patch-ab
deleted file mode 100644
index df614f79147..00000000000
--- a/audio/nas/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-*** server/dda/voxware/auvoxware.c.orig Thu Nov 3 11:24:11 1994
---- server/dda/voxware/auvoxware.c Thu Nov 3 11:24:50 1994
-***************
-*** 755,760 ****
---- 755,765 ----
- /*
- * Setup soundcard at maximum audio quality.
- */
-+
-+ #ifdef __FreeBSD__
-+ #define NO_16_BIT_SAMPLING
-+ #endif
-+
- static void setupSoundcard(sndStatPtr)
- SndStat* sndStatPtr;
- {
diff --git a/audio/nas/patches/patch-ac b/audio/nas/patches/patch-ac
deleted file mode 100644
index 67ce9ac3f3b..00000000000
--- a/audio/nas/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-*** ./lib/audio/Astreams.c.orig Thu Nov 3 11:58:30 1994
---- ./lib/audio/Astreams.c Thu Nov 3 11:58:52 1994
-***************
-*** 52,58 ****
- #include <sys/stropts.h>
-
- extern int errno;
-- extern char *sys_errlist[];
-
- /* stolen from <X11/Xproto.h> */
- typedef struct {
---- 52,57 ----
diff --git a/audio/nas/patches/patch-ad b/audio/nas/patches/patch-ad
deleted file mode 100644
index 06c979d270e..00000000000
--- a/audio/nas/patches/patch-ad
+++ /dev/null
@@ -1,55 +0,0 @@
-*** clients/audio/auedit/Graph.c.orig Wed Dec 6 10:11:03 1995
---- clients/audio/auedit/Graph.c Sat Oct 5 11:37:52 1996
-***************
-*** 28,34 ****
- */
-
- #ifndef WIN32
-! #include <values.h>
- #else /* WIN32 */
- #define MAXSHORT 0x7fff
- #endif /* WIN32 */
---- 28,34 ----
- */
-
- #ifndef WIN32
-! #include <limits.h>
- #else /* WIN32 */
- #define MAXSHORT 0x7fff
- #endif /* WIN32 */
-***************
-*** 322,329 ****
-
- for (x = 0; x < (int) w->core.width; x++)
- {
-! minY = MAXSHORT;
-! maxY = -MAXSHORT;
-
- for (; (int) k == x && p < end; k += w->graph.hscale)
- {
---- 322,329 ----
-
- for (x = 0; x < (int) w->core.width; x++)
- {
-! minY = SHRT_MAX;
-! maxY = SHRT_MIN;
-
- for (; (int) k == x && p < end; k += w->graph.hscale)
- {
-***************
-*** 391,397 ****
- GraphWidget w;
- {
- w->graph.vscale = (float) w->core.height / w->graph.numTracks /
-! (MAXSHORT - -MAXSHORT + 1);
-
- w->graph.hscale = (float) ((int) w->core.width - 1) /
- (w->graph.end - w->graph.start);
---- 391,397 ----
- GraphWidget w;
- {
- w->graph.vscale = (float) w->core.height / w->graph.numTracks /
-! (SHRT_MAX - SHRT_MIN + 1);
-
- w->graph.hscale = (float) ((int) w->core.width - 1) /
- (w->graph.end - w->graph.start);
diff --git a/audio/nas/patches/patch-ae b/audio/nas/patches/patch-ae
deleted file mode 100644
index 9de5c29d898..00000000000
--- a/audio/nas/patches/patch-ae
+++ /dev/null
@@ -1,25 +0,0 @@
-*** lib/audio/Imakefile Tue Feb 13 12:18:13 1996
---- lib/audio/Imakefile Tue Feb 13 10:21:19 1996
-***************
-*** 66,73 ****
- #endif /* ProjectX < 5 */
-
- EDB_DEFINES = -DERRORDB=\"$(LIBDIR)/AuErrorDB\"
-
- DEFINES = $(MALLOC_DEFINES) $(SYSV_DEFINES)
-! CONN_DEFINES = ConnectionFlags
- INSTALLFLAGS += $(INSTINCFLAGS)
-
---- 66,78 ----
- #endif /* ProjectX < 5 */
-
-+ #if HasBSD44Sockets
-+ SOCK_DEFINES = -DBSD44SOCKETS
-+ #endif
-+
-+
- EDB_DEFINES = -DERRORDB=\"$(LIBDIR)/AuErrorDB\"
-
- DEFINES = $(MALLOC_DEFINES) $(SYSV_DEFINES)
-! CONN_DEFINES = ConnectionFlags $(SOCK_DEFINES)
- INSTALLFLAGS += $(INSTINCFLAGS)