summaryrefslogtreecommitdiff
path: root/emulators/uae/patches
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/uae/patches')
-rw-r--r--emulators/uae/patches/patch-aa13
-rw-r--r--emulators/uae/patches/patch-ab32
2 files changed, 0 insertions, 45 deletions
diff --git a/emulators/uae/patches/patch-aa b/emulators/uae/patches/patch-aa
deleted file mode 100644
index 749020affff..00000000000
--- a/emulators/uae/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/06/19 14:38:08 tron Exp $
-
---- src/Makefile.in.orig Tue Dec 29 00:50:26 1998
-+++ src/Makefile.in Sat Jun 19 15:25:48 1999
-@@ -10,7 +10,7 @@
- CFLAGS = @CFLAGS@ -D__inline__=@ac_cv_c_inline@
- X_CFLAGS = @X_CFLAGS@ @GTK_CFLAGS@ -DSHM_SUPPORT_LINKS=@SHM_SUPPORT_LINKS@
- TARGET = @TARGET@
--LIBRARIES = @LIBRARIES@ @LIBS@ @GTK_LIBS@
-+LIBRARIES = @LIBRARIES@ @LIBS@ @GTK_LIBS@ -lossaudio
- MATHLIB = @MATHLIB@
- RESOBJS = @RESOBJS@
-
diff --git a/emulators/uae/patches/patch-ab b/emulators/uae/patches/patch-ab
deleted file mode 100644
index 2165df3b80b..00000000000
--- a/emulators/uae/patches/patch-ab
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-ab,v 1.1 1999/06/19 15:30:56 tron Exp $
-
---- src/sd-uss/sound.c.orig Wed Jul 15 11:41:13 1998
-+++ src/sd-uss/sound.c Sat Jun 19 17:20:15 1999
-@@ -51,12 +51,12 @@
- /* Try to determine whether sound is available. This is only for GUI purposes. */
- int setup_sound (void)
- {
-- sound_fd = open ("/dev/dsp", O_WRONLY);
-+ sound_fd = open ("/dev/sound", O_WRONLY);
-
- sound_available = 0;
-
- if (sound_fd < 0) {
-- perror ("Can't open /dev/dsp");
-+ perror ("Can't open /dev/sound");
- if (errno == EBUSY) {
- /* We can hope, can't we ;) */
- sound_available = 1;
-@@ -82,10 +82,10 @@
- int rate;
- int dspbits;
-
-- sound_fd = open ("/dev/dsp", O_WRONLY);
-+ sound_fd = open ("/dev/sound", O_WRONLY);
- have_sound = !(sound_fd < 0);
- if (! have_sound) {
-- perror ("Can't open /dev/dsp");
-+ perror ("Can't open /dev/sound");
- if (errno != EBUSY)
- sound_available = 0;
- return 0;