aboutsummaryrefslogtreecommitdiff
path: root/games/xdigger
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-09-05 01:17:25 +0000
committerSteve Price <steve@FreeBSD.org>2000-09-05 01:17:25 +0000
commit5a4970805b8740eb94a69a66a07ca182727e7ffc (patch)
treee1eb42a2f95d5be038594685948824fae5b07eb6 /games/xdigger
parent55c08dec0ba13547e4b856b20d662d4f8fe5cfbb (diff)
downloadports-5a4970805b8740eb94a69a66a07ca182727e7ffc.tar.gz
ports-5a4970805b8740eb94a69a66a07ca182727e7ffc.zip
- Support X11BASE properly
PR: 21032 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes: svn path=/head/; revision=32264
Diffstat (limited to 'games/xdigger')
-rw-r--r--games/xdigger/files/patch-ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/xdigger/files/patch-ac b/games/xdigger/files/patch-ac
index 26a45e318adb..35c655b259e9 100644
--- a/games/xdigger/files/patch-ac
+++ b/games/xdigger/files/patch-ac
@@ -5,7 +5,7 @@
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);
++ fd = open(XDIGGER_LIB_DIR "/diamond.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/diamond.au", O_CREAT | O_WRONLY);
+#endif
@@ -14,7 +14,7 @@
close(fd);
+#ifdef __FreeBSD__
-+ fd = open("/usr/X11R6/share/xdigger/stone.au", O_CREAT | O_WRONLY);
++ fd = open(XDIGGER_LIB_DIR "/stone.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/stone.au", O_CREAT | O_WRONLY);
+#endif
@@ -23,7 +23,7 @@
close(fd);
+#ifdef __FreeBSD__
-+ fd = open("/usr/X11R6/share/xdigger/step.au", O_CREAT | O_WRONLY);
++ fd = open(XDIGGER_LIB_DIR "/step.au", O_CREAT | O_WRONLY);
+#else
fd = open("audio/step.au", O_CREAT | O_WRONLY);
+#endif