1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/games/xdigger/files/patch-ac
Steve Price 93e071172d Initial import of xdigger version 1.0.6.
Boulderdash-like KC85 Digger for X Window System.

PR:		7149
Submitted by:	Andrey Zakhvatov <andy@icc.surw.chel.su>
1998-07-12 23:08:56 +00:00

51 lines
1.5 KiB
Plaintext

--- xdigger.c Thu Jan 1 00:06:00 1998
+++ /home/andy/tmp/wrk/xdigger.c Sat Jun 29 23:19:18 1996
@@ -311,17 +315,29 @@
Fill_TonBuffer(TON_AUDIO_LOW, TON_AUDIO_HIGH, TON_AUDIO_RATE, True);
+#ifdef __FreeBSD__
+ fd = open("/usr/X11R6/share/xdigger/diamond.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/diamond.au", O_CREAT | O_WRONLY);
+#endif
fchmod(fd, 0644);
write(fd, &ton_buffer[TON_DIAMANT], ton_laenge[TON_DIAMANT]+24);
close(fd);
+#ifdef __FreeBSD__
+ fd = open("/usr/X11R6/share/xdigger/stone.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/stone.au", O_CREAT | O_WRONLY);
+#endif
fchmod(fd, 0644);
write(fd, &ton_buffer[TON_STEINE], ton_laenge[TON_STEINE]+24);
close(fd);
+#ifdef __FreeBSD__
+ fd = open("/usr/X11R6/share/xdigger/step.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/step.au", O_CREAT | O_WRONLY);
+#endif
fchmod(fd, 0644);
write(fd, &ton_buffer[TON_SCHRITT], ton_laenge[TON_SCHRITT]+24);
close(fd);
@@ -338,7 +354,7 @@
{
printf("Usage: xdigger [-display display] [-1|2|3|...] [-noblink] [-noiconmove] [-vert240] [-sound ");
#ifdef SOUND_DSP_AUDIO
-#ifdef linux
+#if ( defined(linux) || defined(__FreeBSD__) )
printf("dsp|");
#endif
printf("audio|");
@@ -390,7 +406,7 @@
}
#endif
#ifdef SOUND_DSP_AUDIO
-#ifdef linux
+#if ( defined(linux) || defined(__FreeBSD__) )
if(!strcmp(argv[i], "dsp")) sound_device = SD_DSP; else
#endif
if(!strcmp(argv[i], "audio")) sound_device = SD_AUDIO; else