c9a6a2a755
* fixed: client segfault on some disconnects * fixed: server segfault after end of rated games * fixed: reusable server listen socket * added some features to XILE Pkgsrc: Added xblast-mini package option to use a 480x392 window instead of the default 960x784 window. Makes the window fit on an EeePC's screen :)
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
$NetBSD: patch-ab,v 1.5 2008/06/06 07:45:56 dsainty Exp $
|
|
|
|
Purge the unnecessary complication of PID_FORMAT, and add NetBSD support. Use
|
|
OSS for sound for NetBSD, because the Sun support is a bit too Sun-centric.
|
|
|
|
--- xbsndsrv.c.orig 2008-05-29 03:32:37.000000000 +1200
|
|
+++ xbsndsrv.c 2008-05-29 03:37:13.000000000 +1200
|
|
@@ -48,8 +48,6 @@
|
|
|
|
#ifdef __sun__
|
|
|
|
-/* format for pids on sun */
|
|
-#define PID_FORMAT "%lu"
|
|
/* needed for bzero(), open()*/
|
|
#include <strings.h>
|
|
#include <fcntl.h>
|
|
@@ -63,8 +61,6 @@
|
|
|
|
#else
|
|
|
|
-/* format for pids, non-sun */
|
|
-#define PID_FORMAT "%u"
|
|
/* non-sun audio includes */
|
|
#ifdef HAVE_SYS_SOUNDCARD_H
|
|
#include <sys/soundcard.h>
|
|
@@ -550,17 +546,17 @@
|
|
ptr = fopen (userPath, "r+");
|
|
if (ptr == NULL) {
|
|
ptr = fopen (userPath, "w+");
|
|
- sprintf (tmp, PID_FORMAT, getpid ());
|
|
+ sprintf (tmp, "%u", (unsigned int)getpid ());
|
|
fwrite (tmp, 1, strlen (tmp), ptr);
|
|
fclose (ptr);
|
|
return 0;
|
|
|
|
}
|
|
- fscanf (ptr, PID_FORMAT, &pid);
|
|
- fprintf (stderr, " " PID_FORMAT " \n", pid);
|
|
+ fscanf (ptr, "%u", &pid);
|
|
+ fprintf (stderr, " %u \n", pid);
|
|
if (kill (pid, 0) == -1 || pid <= 0) {
|
|
fseek (ptr, 0, SEEK_SET);
|
|
- sprintf (tmp, PID_FORMAT, getpid ());
|
|
+ sprintf (tmp, "%u", (unsigned int)getpid ());
|
|
fwrite (tmp, 1, strlen (tmp), ptr);
|
|
fclose (ptr);
|
|
return 0;
|