diff options
author | Yukihiro Nakai <nakai@FreeBSD.org> | 2001-01-24 01:16:14 +0000 |
---|---|---|
committer | Yukihiro Nakai <nakai@FreeBSD.org> | 2001-01-24 01:16:14 +0000 |
commit | 6d5e029d2fe96e71448fe75a8580e55c51e776fa (patch) | |
tree | 149c9ecc081879a4638635ab3af5049c9675f60d /emulators/snes9x | |
parent | Since we don't have our perl threaded by default, PerlMagick not (diff) |
More fix about usb support.
Diffstat (limited to 'emulators/snes9x')
-rw-r--r-- | emulators/snes9x/Makefile | 2 | ||||
-rw-r--r-- | emulators/snes9x/files/patch-af | 17 |
2 files changed, 8 insertions, 11 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index 34c04e1dfb87..31cecdb0691a 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -7,7 +7,7 @@ PORTNAME= snes9x PORTVERSION= 1.34a -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://www.snes9x.com/zips/ DISTNAME= s9xs134a diff --git a/emulators/snes9x/files/patch-af b/emulators/snes9x/files/patch-af index 72ab586dd458..ccb46d5205a6 100644 --- a/emulators/snes9x/files/patch-af +++ b/emulators/snes9x/files/patch-af @@ -1,5 +1,5 @@ ---- unix/unix.cpp.orig Wed Jan 10 06:40:14 2001 -+++ unix/unix.cpp Mon Jan 22 00:17:21 2001 +--- unix/unix.cpp.orig Wed Jan 10 15:40:14 2001 ++++ unix/unix.cpp Wed Jan 24 10:27:30 2001 @@ -51,9 +51,11 @@ #include <ctype.h> @@ -266,7 +266,7 @@ void InitJoysticks () { #ifdef JSIOCGVERSION -@@ -731,6 +755,188 @@ +@@ -731,6 +755,185 @@ } #endif } @@ -290,9 +290,6 @@ + struct hid_item h, new_h; + struct js_info *my_info; + int reportlen, report_id, is_joystick; -+#if __FreeBSD__ <= 4 -+ int* hid_input_ptr; -+#endif + + my_info = &js_info[js_count]; + rd = hid_get_report_desc(fd); @@ -305,7 +302,7 @@ + reportlen = hid_report_size(rd, report_id, hid_input); +#else + *hid_input_ptr = hid_input; -+ reportlen = hid_report_size(rd, report_id, hid_input_ptr); ++ reportlen = hid_report_size(rd, hid_input, &report_id); +#endif + my_info->buf = (char *)malloc(reportlen); + if (my_info->buf == NULL) @@ -455,7 +452,7 @@ #endif // defined (JOYSTICK_SUPPORT) const char *GetHomeDirectory () -@@ -1423,7 +1629,7 @@ +@@ -1423,7 +1626,7 @@ } #endif @@ -464,7 +461,7 @@ static int Rates[8] = { 0, 8192, 11025, 16500, 22050, 29300, 36600, 44000 -@@ -1542,7 +1748,7 @@ +@@ -1542,7 +1745,7 @@ } #endif @@ -473,7 +470,7 @@ void S9xUnixProcessSound (void) { } -@@ -1641,7 +1847,7 @@ +@@ -1641,7 +1844,7 @@ void *S9xProcessSound (void *) { |