summaryrefslogtreecommitdiffstats
path: root/package/opus-tools/opus-tools-largefile.patch
blob: a10fcbc71404e8cb52e4405e99dc6396253b46e2 (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
From f1d9376b383f4ee7ec2d7c5a1728d38cdb692df6 Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <jacmet@sunsite.dk>
Date: Sat, 15 Dec 2012 00:05:41 +0100
Subject: [PATCH] audio-in.c: Don't force largefile support

Buildroot ensures the correct defines are enabled depending on toolchain
configuration, so don't hard code largefile support here.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 src/audio-in.c |   10 ----------
 1 file changed, 10 deletions(-)

diff --git a/src/audio-in.c b/src/audio-in.c
index 9bf4f6f..e404629 100644
--- a/src/audio-in.c
+++ b/src/audio-in.c
@@ -32,16 +32,6 @@
 # include <config.h>
 #endif
 
-#if !defined(_LARGEFILE_SOURCE)
-# define _LARGEFILE_SOURCE
-#endif
-#if !defined(_LARGEFILE64_SOURCE)
-# define _LARGEFILE64_SOURCE
-#endif
-#if !defined(_FILE_OFFSET_BITS)
-# define _FILE_OFFSET_BITS 64
-#endif
-
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-- 
1.7.10.4