summaryrefslogtreecommitdiff
path: root/chat/centericq/patches/patch-aa
blob: a3c1e73b45f811b9febfbd089553112a91f73f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
$NetBSD: patch-aa,v 1.3 2005/04/05 12:44:17 wiz Exp $

--- src/icqconf.cc.orig	2005-01-27 00:52:47.000000000 +0100
+++ src/icqconf.cc
@@ -27,7 +27,11 @@
 #include <dirent.h>
 #include <fstream>
 
-#ifdef __sun__
+#ifdef __NetBSD__
+/* Find out about __NetBSD_Version__ */
+#  include <sys/param.h>
+#endif
+#if defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 200040000))
 #include <sys/statvfs.h>
 #endif
 
@@ -644,13 +648,13 @@ void icqconf::loadsounds() {
 
 	    switch(rs) {
 		case rscard:
-		    fo << "*\tmsg\tplay " << SHARE_DIR << "/msg.wav" << endl;
-		    fo << "*\turl\tplay " << SHARE_DIR << "/url.wav" << endl;
-		    fo << "*\temail\tplay " << SHARE_DIR << "/email.wav" << endl;
-		    fo << "*\tonline\tplay " << SHARE_DIR << "/online.wav" << endl;
-		    fo << "*\toffline\tplay " << SHARE_DIR << "/offline.wav" << endl;
-		    fo << "*\tsms\tplay " << SHARE_DIR << "/sms.wav" << endl;
-		    break;
+                   fo << "*\tmsg\t" AUDIO_PLAYER " " << SHARE_DIR << "/msg.wav" << endl;
+                   fo << "*\turl\t" AUDIO_PLAYER " " << SHARE_DIR << "/url.wav" << endl;
+                   fo << "*\temail\t" AUDIO_PLAYER " " << SHARE_DIR << "/email.wav" << endl;
+                   fo << "*\tonline\t" AUDIO_PLAYER " " << SHARE_DIR << "/online.wav" << endl;
+                   fo << "*\toffline\t" AUDIO_PLAYER << SHARE_DIR << "/offline.wav" << endl;
+                   fo << "*\tsms\t" AUDIO_PLAYER " " << SHARE_DIR << "/sms.wav" << endl;
+		   break;
 
 		case rsspeaker:
 		    fo << "*\tmsg\t!spk1" << endl;
@@ -1433,7 +1437,7 @@ string icqconf::gethttpproxypasswd() con
 void icqconf::checkdiskspace() {
     fenoughdiskspace = true;
 
-#ifndef __sun__
+#if !(defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 200040000)))
     struct statfs st;
     if(!statfs(conf.getdirname().c_str(), &st)) {
 #else