blob: d2bd34b95a70b5d20f64cd4cf583a872a395e8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-ah,v 1.1.1.1 2004/05/10 13:47:08 wiz Exp $
diff -rcp import/nuv/rtjpeg_aud_plugin.c import/nuv/rtjpeg_aud_plugin.c
*** import/nuv/rtjpeg_aud_plugin.c Tue Apr 8 20:50:11 2003
--- import/nuv/rtjpeg_aud_plugin.c Mon Jun 9 17:47:33 2003
*************** int rtjpeg_aud_open(char *tplorg)
*** 108,114 ****
regions[0].end = -1;
}
! #if defined(__FreeBSD__) || defined(__APPLE__)
rtjpeg_aud_file=open(tplorg, O_RDONLY);
#else
rtjpeg_aud_file=open(tplorg, O_RDONLY|O_LARGEFILE);
--- 108,114 ----
regions[0].end = -1;
}
! #if defined(__FreeBSD__) || defined(__APPLE__) || defined(__NetBSD__)
rtjpeg_aud_file=open(tplorg, O_RDONLY);
#else
rtjpeg_aud_file=open(tplorg, O_RDONLY|O_LARGEFILE);
|