26 lines
912 B
Plaintext
26 lines
912 B
Plaintext
$NetBSD: patch-ab,v 1.3 2011/11/22 16:38:28 marino Exp $
|
|
|
|
--- src/jmixer.cpp.orig 2004-04-09 17:50:43.000000000 +0000
|
|
+++ src/jmixer.cpp
|
|
@@ -98,7 +98,7 @@ Stream_mixer::Stream_mixer() {
|
|
error("error initializing POSIX thread mutex");
|
|
if(pthread_cond_init (&_cond, NULL) == -1)
|
|
error("error initializing POSIX thread condtition");
|
|
- unlock();
|
|
+ //unlock();
|
|
}
|
|
|
|
Stream_mixer::~Stream_mixer() {
|
|
@@ -627,7 +627,11 @@ bool Stream_mixer::set_playmode(int ch,
|
|
/* this is the function selecting files for the scandir
|
|
on freebsd systems you should change the following line to:
|
|
int selector(struct dirent *dir) { */
|
|
+#if defined(__FreeBSD__)
|
|
+int selector(struct dirent *dir) {
|
|
+#else
|
|
int selector(const struct dirent *dir) {
|
|
+#endif
|
|
if( strncasecmp(dir->d_name+strlen(dir->d_name)-4,".mp3",4)==0
|
|
#ifdef HAVE_VORBIS
|
|
|| strncasecmp(dir->d_name+strlen(dir->d_name)-4,".ogg",4)==0
|