blob: b00c3f06560c7fb2d22cd9e938c21850ab29b82b (
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
|
--- src/jmixer.cpp.orig 2004-12-16 20:04:31.000000000 +0900
+++ src/jmixer.cpp 2012-05-29 07:39:23.000000000 +0900
@@ -20,18 +20,19 @@
*/
#include <iostream>
-#include <math.h>
-#include <stdio.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdio>
+#include <cstdlib>
#include <unistd.h>
#include <dirent.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
-#include <errno.h>
+#include <sys/param.h>
+#include <cerrno>
#include <fcntl.h>
-#include <string.h>
-#include <signal.h>
+#include <cstring>
+#include <csignal>
#include <sys/types.h>
#include <sys/wait.h>
#include <termios.h>
@@ -640,7 +641,11 @@
/* 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__) && __FreeBSD_version < 800501
+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
|