pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators/snes9x



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Jan  2 11:25:32 UTC 2019

Modified Files:
        pkgsrc/emulators/snes9x: distinfo
Added Files:
        pkgsrc/emulators/snes9x/patches: patch-unix_unix.cpp

Log Message:
emulators/snes9x: Rename a function from log2 to log2l to avoid problems
with libc collisions on certain platforms.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/emulators/snes9x/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/snes9x/patches/patch-unix_unix.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/snes9x/distinfo
diff -u pkgsrc/emulators/snes9x/distinfo:1.20 pkgsrc/emulators/snes9x/distinfo:1.21
--- pkgsrc/emulators/snes9x/distinfo:1.20       Tue Jan  1 22:16:14 2019
+++ pkgsrc/emulators/snes9x/distinfo    Wed Jan  2 11:25:32 2019
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.20 2019/01/01 22:16:14 nia Exp $
+$NetBSD: distinfo,v 1.21 2019/01/02 11:25:32 nia Exp $
 
 SHA1 (snes9x-1.58.tar.gz) = c94ceb8d7b322b4bfa030b1327d815b697e4176a
 RMD160 (snes9x-1.58.tar.gz) = 51f7fe17f003998b35204046ca7d193d37980da1
 SHA512 (snes9x-1.58.tar.gz) = 51f8e92258db58e55f7b0b6c4537a916358891bb5ee35bd984d1970d2fedbdb2f8b3a4f560e0302d3011e521a1072c8a0d69723e8b151f61d33802c02f392d7d
 Size (snes9x-1.58.tar.gz) = 2830667 bytes
 SHA1 (patch-unix_configure) = 9df9a805141396583bceb35bea1bda157ed3ed6b
+SHA1 (patch-unix_unix.cpp) = 96089e2cc990a1b6bb83b94c3509957f91fd046a

Added files:

Index: pkgsrc/emulators/snes9x/patches/patch-unix_unix.cpp
diff -u /dev/null pkgsrc/emulators/snes9x/patches/patch-unix_unix.cpp:1.1
--- /dev/null   Wed Jan  2 11:25:32 2019
+++ pkgsrc/emulators/snes9x/patches/patch-unix_unix.cpp Wed Jan  2 11:25:32 2019
@@ -0,0 +1,33 @@
+$NetBSD: patch-unix_unix.cpp,v 1.1 2019/01/02 11:25:32 nia Exp $
+
+Avoid colliding with libc functions.
+
+--- unix/unix.cpp.orig 2018-12-16 17:04:59.000000000 +0000
++++ unix/unix.cpp
+@@ -156,7 +156,7 @@ bool S9xDisplayPollButton (uint32, bool 
+ bool S9xDisplayPollAxis (uint32, int16 *);
+ bool S9xDisplayPollPointer (uint32, int16 *, int16 *);
+ 
+-static long log2 (long);
++static long log2l (long);
+ static void SoundTrigger (void);
+ static void InitTimer (void);
+ static void NSRTControllerSetup (void);
+@@ -230,7 +230,7 @@ void _makepath (char *path, const char *
+       }
+ }
+ 
+-static long log2 (long num)
++static long log2l (long num)
+ {
+       long    n = 0;
+ 
+@@ -1324,7 +1324,7 @@ bool8 S9xOpenSoundDevice (void)
+               return (FALSE);
+       }
+ 
+-      J = log2(unixSettings.SoundFragmentSize) | (3 << 16);
++      J = log2l(unixSettings.SoundFragmentSize) | (3 << 16);
+       if (ioctl(so.sound_fd, SNDCTL_DSP_SETFRAGMENT, &J) == -1)
+               return (FALSE);
+ 



Home | Main Index | Thread Index | Old Index